Ticket #17470: 17470.patch
File 17470.patch, 3.8 KB (added by , 13 years ago) |
---|
-
docs/releases/0.95.txt
92 92 easy checklist_ for reference when undertaking the porting operation. 93 93 94 94 .. _Removing The Magic: http://code.djangoproject.com/wiki/RemovingTheMagic 95 .. _checklist: http://code.djangoproject.com/wiki/MagicRemovalCheatSheet 195 .. _checklist: http://code.djangoproject.com/wiki/MagicRemovalCheatSheet 96 96 97 97 Problem reports and getting help 98 98 ================================ 99 99 100 Need help resolving a problem with Django? The documentation in the distribution101 is also available online_ at the `Django Web site`_. The :doc:`FAQ </faq/index>` 102 document is especially recommended, as it contains a number of issues that come 103 up time and again.100 Need help resolving a problem with Django? The documentation in the 101 distribution is also available :doc:`online </index>` at the `Django Web 102 site`_. The :doc:`FAQ </faq/index>` document is especially recommended, as it 103 contains a number of issues that come up time and again. 104 104 105 105 For more personalized help, the `django-users`_ mailing list is a very active 106 106 list, with more than 2,000 subscribers who can help you solve any sort of … … 113 113 Django users and developers from around the world. Friendly people are usually 114 114 available at any hour of the day -- to help, or just to chat. 115 115 116 .. _online: http://www.djangoproject.com/documentation/0.95/117 116 .. _Django Web site: http://www.djangoproject.com/ 118 117 .. _django-users: http://groups.google.com/group/django-users 119 118 -
docs/releases/0.96.txt
50 50 maintained, and it will be removed in a future release of Django. 51 51 52 52 Also, note that some features, like the new :setting:`DATABASE_OPTIONS` 53 setting (see the `databases documentation`_ for details), are only54 a vailable on the "mysql" backend, and will not be made available for53 setting (see the :doc:`databases documentation </ref/databases>` for details), 54 are only available on the "mysql" backend, and will not be made available for 55 55 "mysql_old". 56 56 57 .. _databases documentation: http://www.djangoproject.com/documentation/0.96/databases/58 59 57 Database constraint names changed 60 58 --------------------------------- 61 59 … … 164 162 for most common cases. We recommend that anyone new to form handling skip the 165 163 old forms system and start with the new. 166 164 167 For more information about ``django.newforms``, read the `newforms168 documentation `_.165 For more information about ``django.newforms``, read the :doc:`newforms 166 documentation </topics/forms/index>`. 169 167 170 .. _newforms documentation: http://www.djangoproject.com/documentation/0.96/newforms/171 172 168 URLconf improvements 173 169 -------------------- 174 170 … … 220 216 :mod:`doctest` or :mod:`unittest` and test your views with a simple test client. 221 217 222 218 There is also new support for "fixtures" -- initial data, stored in any of the 223 supported `serialization formats`_, that will be loaded into your database at the 224 start of your tests. This makes testing with real data much easier. 219 supported :doc:`serialization formats </topics/serialization>`, that will be 220 loaded into your database at the start of your tests. This makes testing with 221 real data much easier. 225 222 226 See `the testing documentation`_for the full details.223 See :doc:`the testing documentation </topics/testing>` for the full details. 227 224 228 .. _the testing documentation: http://www.djangoproject.com/documentation/0.96/testing/229 .. _serialization formats: http://www.djangoproject.com/documentation/0.96/serialization/230 231 225 Improvements to the admin interface 232 226 ----------------------------------- 233 227