Opened 16 years ago
Closed 16 years ago
#10231 closed (fixed)
djangoproject.com - urls.py
Reported by: | Ference | Owned by: | nobody |
---|---|---|---|
Component: | *.djangoproject.com | Version: | 1.0 |
Severity: | Keywords: | ||
Cc: | Triage Stage: | Unreviewed | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
http://code.djangoproject.com/browser/djangoproject.com/django_website/urls.py
Line 45:
(r'^sitemap.xml$', cache_page(sitemap_views.sitemap, 60 * 60 * 6), {'sitemaps': sitemaps}),
Ok: http://www.djangoproject.com/sitemap.xml
Huh?: http://www.djangoproject.com/sitemapfxml
Shouldn't it be like this?
(r'^sitemap\.xml$', cache_page(sitemap_views.sitemap, 60 * 60 * 6), {'sitemaps': sitemaps}),
Note:
See TracTickets
for help on using tickets.
(In [9849]) Fixed #10231 -- Escaped a period in a URLpattern in the djangoproject.com URLconf. Thanks, Ference