summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorJacob Kaplan-Moss <jacob@jacobian.org>2009-05-12 17:25:29 +0000
committerJacob Kaplan-Moss <jacob@jacobian.org>2009-05-12 17:25:29 +0000
commita1d6fdafce04dd08783e4fa6938d45d31c69ee8f (patch)
tree2fa4599c3149225e69a1063f81fd67fc96b8d73f /docs/ref
parentda4ddabbe56c04c5f827a135c97cbe3ab30524fe (diff)
[1.0.X] Fixed #9675: added note about upgrading the URLconf to the comment upgrade guide. Backport of [10746] from trunk.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@10748 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/contrib/comments/upgrade.txt9
1 files changed, 9 insertions, 0 deletions
diff --git a/docs/ref/contrib/comments/upgrade.txt b/docs/ref/contrib/comments/upgrade.txt
index b3656f31dd..e1ff4ed2cd 100644
--- a/docs/ref/contrib/comments/upgrade.txt
+++ b/docs/ref/contrib/comments/upgrade.txt
@@ -26,6 +26,15 @@ The main changes from the old system are:
new comment, and ``{% render_comment_form %}``, which renders said form
using the ``comments/form.html`` template.
+ * The way comments are include in your URLconf have changed; you'll need to
+ replace::
+
+ (r'^comments/', include('django.contrib.comments.urls.comments')),
+
+ with::
+
+ (r'^comments/', include('django.contrib.comments.urls')),
+
Upgrading data
--------------