Author: jacob Date: 2009-05-12 12:25:29 -0500 (Tue, 12 May 2009) New Revision: 10748
Modified: django/branches/releases/1.0.X/docs/ref/contrib/comments/upgrade.txt Log: [1.0.X] Fixed #9675: added note about upgrading the URLconf to the comment upgrade guide. Backport of [10746] from trunk. Modified: django/branches/releases/1.0.X/docs/ref/contrib/comments/upgrade.txt =================================================================== --- django/branches/releases/1.0.X/docs/ref/contrib/comments/upgrade.txt 2009-05-12 17:25:07 UTC (rev 10747) +++ django/branches/releases/1.0.X/docs/ref/contrib/comments/upgrade.txt 2009-05-12 17:25:29 UTC (rev 10748) @@ -26,6 +26,15 @@ 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 -~----------~----~----~----~------~----~------~--~---