Author: adrian
Date: 2009-02-21 02:34:43 -0600 (Sat, 21 Feb 2009)
New Revision: 9849
Modified:
djangoproject.com/django_website/urls.py
Log:
Fixed #10231 -- Escaped a period in a URLpattern in the djangoproject.com
URLconf. Thanks, Ference
Modified: djangoproject.com/django_website/urls.py
===================================================================
--- djangoproject.com/django_website/urls.py 2009-02-21 07:29:21 UTC (rev
9848)
+++ djangoproject.com/django_website/urls.py 2009-02-21 08:34:43 UTC (rev
9849)
@@ -42,7 +42,7 @@
(r'^documentation/', include('django_website.apps.docs.urls')),
(r'^r/', include('django.conf.urls.shortcut')),
(r'^rss/(?P<url>.*)/$', 'django.contrib.syndication.views.feed',
{'feed_dict': feeds}),
- (r'^sitemap.xml$', cache_page(sitemap_views.sitemap, 60 * 60 * 6),
{'sitemaps': sitemaps}),
+ (r'^sitemap\.xml$', cache_page(sitemap_views.sitemap, 60 * 60 * 6),
{'sitemaps': sitemaps}),
(r'^weblog/', include('django_website.apps.blog.urls')),
(r'^freenode\.9xJY7YIUWtwn\.html$',
'django.views.generic.simple.direct_to_template', {'template':
'freenode_tmp.html'}),
(r'', include('django.contrib.flatpages.urls')),
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---