From a1d6fdafce04dd08783e4fa6938d45d31c69ee8f Mon Sep 17 00:00:00 2001 From: Jacob Kaplan-Moss Date: Tue, 12 May 2009 17:25:29 +0000 Subject: [PATCH] [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 --- docs/ref/contrib/comments/upgrade.txt | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/docs/ref/contrib/comments/upgrade.txt b/docs/ref/contrib/comments/upgrade.txt index b3656f31dd8ed..e1ff4ed2cd82b 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 --------------