summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJacob Kaplan-Moss <jacob@jacobian.org>2008-09-03 19:58:34 +0000
committerJacob Kaplan-Moss <jacob@jacobian.org>2008-09-03 19:58:34 +0000
commite62ab770540f4610fdd2d921f4d6d90c0aa46050 (patch)
tree860f0b88c43b2c9acbbb332463b6bd832b560908 /docs
parent9d5e77d26db2afad52777321d7d650d911df5a34 (diff)
A collection of improvements and cleanups to the 1.0 release notes and porting guide.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8937 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.0-porting-guide.txt7
-rw-r--r--docs/releases/1.0.txt24
2 files changed, 22 insertions, 9 deletions
diff --git a/docs/releases/1.0-porting-guide.txt b/docs/releases/1.0-porting-guide.txt
index 2819ee84e5..fae72b0fe5 100644
--- a/docs/releases/1.0-porting-guide.txt
+++ b/docs/releases/1.0-porting-guide.txt
@@ -339,6 +339,13 @@ Old (0.96) New (1.0)
``dispatcher.connect(callback, sig, sender=Any)`` ``sig.connect(callback, sender=None)``
================================================= ======================================
+Comments
+--------
+
+If you were using Django 0.96's ``django.contrib.comments`` app, you'll need to
+upgrade to the new comments app introduced in 1.0. See
+:ref:`ref-contrib-comments-upgrade` for details.
+
Template tags
-------------
diff --git a/docs/releases/1.0.txt b/docs/releases/1.0.txt
index 8e914947f2..db3e9bf3cc 100644
--- a/docs/releases/1.0.txt
+++ b/docs/releases/1.0.txt
@@ -34,30 +34,38 @@ See the :ref:`API stability guide <misc-api-stability>` for full details.
Backwards-incompatible changes
==============================
-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:
+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:
.. toctree::
:maxdepth: 1
1.0-porting-guide
-A complete list of backwards-incompatible changes can be found at http://code.djangoproject.com/wiki/BackwardsIncompatibleChanges.
+A complete list of backwards-incompatible changes can be found at
+http://code.djangoproject.com/wiki/BackwardsIncompatibleChanges.
What's new in Django 1.0
========================
A *lot*!
-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.
+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.
-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:
+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:
http://docs.djangoproject.com/
The documentation has been greatly improved, cleaned up, and generally made
awesome. There's now dedicated search, indexes, and more.
-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:
+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:
.. versionadded:: 1.0
This feature is new in Django 1.0
@@ -167,7 +175,7 @@ SQL level is suitable for the majority of cases, there are occasional situations
where forcing one or the other is useful. As a result, models can now support an
additional parameter to ``save()`` which can force a specific operation.
-See XXX for details.
+See :ref:`ref-models-force-insert` for details.
Split ``CacheMiddleware``
-------------------------
@@ -190,7 +198,7 @@ major rewrite and refactoring of Django's bundled comment system, greatly
increasing its flexibility and customizability. :ref:`Full documentation
<ref-contrib-comments-index>` is available, as well as :ref:`an upgrade guide
<ref-contrib-comments-upgrade>` if you were using the previous incarnation of
-the comments application..
+the comments application.
Removal of deprecated features
------------------------------
@@ -204,8 +212,6 @@ replaced by ``ModelForm``) and a number of deprecated features which were
replaced by the dispatcher, file-uploading and file-storage refactorings
introduced in the Django 1.0 alpha releases.
-XXX more features?
-
Thanks
======