Changeset 8937
- Timestamp:
- 09/03/08 14:58:34 (4 months ago)
- Files:
-
- django/trunk/docs/releases/1.0-porting-guide.txt (modified) (1 diff)
- django/trunk/docs/releases/1.0.txt (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/releases/1.0-porting-guide.txt
r8869 r8937 339 339 ``dispatcher.connect(callback, sig, sender=Any)`` ``sig.connect(callback, sender=None)`` 340 340 ================================================= ====================================== 341 342 Comments 343 -------- 344 345 If you were using Django 0.96's ``django.contrib.comments`` app, you'll need to 346 upgrade to the new comments app introduced in 1.0. See 347 :ref:`ref-contrib-comments-upgrade` for details. 341 348 342 349 Template tags django/trunk/docs/releases/1.0.txt
r8874 r8937 35 35 ============================== 36 36 37 Django 1.0 has a number of backwards-incompatible changes from Django 0.96. If you have apps written against Django 0.96 that you need to port, see our detailed porting guide: 37 Django 1.0 has a number of backwards-incompatible changes from Django 0.96. If 38 you have apps written against Django 0.96 that you need to port, see our 39 detailed porting guide: 38 40 39 41 .. toctree:: … … 42 44 1.0-porting-guide 43 45 44 A complete list of backwards-incompatible changes can be found at http://code.djangoproject.com/wiki/BackwardsIncompatibleChanges. 46 A complete list of backwards-incompatible changes can be found at 47 http://code.djangoproject.com/wiki/BackwardsIncompatibleChanges. 45 48 46 49 What's new in Django 1.0 … … 49 52 A *lot*! 50 53 51 Since Django 0.96, we've made over 4,000 code commits, fixed more than 2,000 bugs, and edited, added, or removed around 350,000 lines of code. We've also added 40,000 lines of new documentation, and greatly improved what was already there. 52 53 In fact, new documentation is one of our favorite features of Django 1.0, so we might as well start there. First, there's a new documentation site: 54 Since Django 0.96, we've made over 4,000 code commits, fixed more than 2,000 55 bugs, and edited, added, or removed around 350,000 lines of code. We've also 56 added 40,000 lines of new documentation, and greatly improved what was already 57 there. 58 59 In fact, new documentation is one of our favorite features of Django 1.0, so we 60 might as well start there. First, there's a new documentation site: 54 61 55 62 http://docs.djangoproject.com/ … … 58 65 awesome. There's now dedicated search, indexes, and more. 59 66 60 We can't possibly document everything that's new in 1.0, but the documentation will be your definitive guide. Anywhere you see something like: 67 We can't possibly document everything that's new in 1.0, but the documentation 68 will be your definitive guide. Anywhere you see something like: 61 69 62 70 .. versionadded:: 1.0 … … 168 176 additional parameter to ``save()`` which can force a specific operation. 169 177 170 See XXXfor details.178 See :ref:`ref-models-force-insert` for details. 171 179 172 180 Split ``CacheMiddleware`` … … 191 199 <ref-contrib-comments-index>` is available, as well as :ref:`an upgrade guide 192 200 <ref-contrib-comments-upgrade>` if you were using the previous incarnation of 193 the comments application. .201 the comments application. 194 202 195 203 Removal of deprecated features … … 205 213 introduced in the Django 1.0 alpha releases. 206 214 207 XXX more features?208 209 215 Thanks 210 216 ======
