#10231: djangoproject.com - urls.py
-----------------------------+----------------------------------------------
Reporter: Ference | Owner: nobody
Status: new | Milestone:
Component: Django Web site | Version: 1.0
Keywords: | Stage: Unreviewed
Has_patch: 0 |
-----------------------------+----------------------------------------------
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}),
}}}
--
Ticket URL: <http://code.djangoproject.com/ticket/10231>
Django <http://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---