Fix URLs that weren't properly anchored

This commit is contained in:
Magnus Hagander
2012-05-25 12:50:59 +02:00
parent 9ba9d2f436
commit 4102dd72de

View File

@ -77,12 +77,12 @@ urlpatterns = patterns('',
### ###
# Special sections # Special sections
### ###
(r'account/', include('account.urls')), (r'^account/', include('account.urls')),
### ###
# Sitemap (FIXME: support for >50k urls!) # Sitemap (FIXME: support for >50k urls!)
### ###
(r'sitemap.xml', 'pgweb.core.views.sitemap'), (r'^sitemap.xml', 'pgweb.core.views.sitemap'),
### ###
# Legacy URLs from the old website, that are likely to be used from other # Legacy URLs from the old website, that are likely to be used from other