Actually add comments to blog, tidy up rst handling to make sure we get xhtml1.1...
[sommitrealweird.git] / sommitrealweird / urls.py
index dc24d72990bf072f98dc7d31eb03e68093c5b023..6106b9f61afdb47f47c7b6f5ca6ef76ba1311f8e 100644 (file)
@@ -26,7 +26,9 @@ urlpatterns = patterns('',
     (r'^blog/', include('blog.urls')),
     (r'^photo/', include('photo.urls')),
     (r'^photos/', include('photo.urls')),
+    (r'^css-doc/(?P<slug>.*)$', 'bpcms.views.css_view'),
     (r'^feeds/rss/(?P<url>.*)/', 'django.contrib.syndication.views.feed', {'feed_dict': rssfeeds_dict}),
     (r'^feeds/(?P<url>.*)/', 'django.contrib.syndication.views.feed', {'feed_dict': feeds_dict}),
+    (r'^comments/', include('django.contrib.comments.urls')),
     (r'^(?:content/|)', include('bpcms.urls'))
 )