Author: jacob
Date: 2009-05-12 12:23:43 -0500 (Tue, 12 May 2009)
New Revision: 10746

Modified:
   django/trunk/docs/ref/contrib/comments/upgrade.txt
Log:
Fixed #9675: added note about upgrading the URLconf to the comment upgrade 
guide.

Modified: django/trunk/docs/ref/contrib/comments/upgrade.txt
===================================================================
--- django/trunk/docs/ref/contrib/comments/upgrade.txt  2009-05-12 17:23:33 UTC 
(rev 10745)
+++ django/trunk/docs/ref/contrib/comments/upgrade.txt  2009-05-12 17:23:43 UTC 
(rev 10746)
@@ -25,7 +25,16 @@
       functions: ``{% get_comment_form %}``, which returns a form for posting a
       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
 --------------
 


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to