Author: russellm
Date: 2008-08-27 07:12:17 -0500 (Wed, 27 Aug 2008)
New Revision: 8624

Modified:
   djangoproject.com/djangodocs/urls.py
Log:
Fixed #8591: Corrected URL pattern to catch release notes. Thanks to kegan for 
the report, and Marc Fargas (telenieko) for the patch.

Modified: djangoproject.com/djangodocs/urls.py
===================================================================
--- djangoproject.com/djangodocs/urls.py        2008-08-27 11:50:02 UTC (rev 
8623)
+++ djangoproject.com/djangodocs/urls.py        2008-08-27 12:12:17 UTC (rev 
8624)
@@ -11,7 +11,7 @@
         djangodocs.views.language,
     ),
     url(
-        r'^(?P<lang>[a-z-]+)/(?P<version>[\w.-]+)/(?P<url>[\w/-]*)$',
+        r'^(?P<lang>[a-z-]+)/(?P<version>[\w.-]+)/(?P<url>[\w./-]*)$',
         djangodocs.views.document,
     ),
     url(


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

Reply via email to