X-Git-Url: https://git.sommitrealweird.co.uk/sommitrealweird.git/blobdiff_plain/c9c77db037a1fbb61629825276825d80aab64edd..2f8f1efa5214444b2e867bde2a6f5297d1f3caea:/sommitrealweird/urls.py diff --git a/sommitrealweird/urls.py b/sommitrealweird/urls.py index 38f78a1..6e7cf99 100644 --- a/sommitrealweird/urls.py +++ b/sommitrealweird/urls.py @@ -1,6 +1,9 @@ -from django.conf.urls.defaults import * -from settings import MEDIA_ROOT, MEDIA_URL -from blog.feeds import LatestBlogEntries +from django.conf.urls import include, url +from django.conf.urls.static import static +import bpcms.views +import django.views.static +from settings import MEDIA_ROOT, MEDIA_URL, STATIC_ROOT, STATIC_URL +from blog.feeds import LatestBlogEntries, LatestBlogEntriesRss from django.contrib import admin handler404 = 'generic.views.render_404' @@ -9,17 +12,26 @@ feeds_dict = { 'blog': LatestBlogEntries, } +rssfeeds_dict = { + 'blog': LatestBlogEntriesRss, + } + admin.autodiscover() -urlpatterns = patterns('', +urlpatterns = [ # Example: # (r'^sommitrealweird/', include('sommitrealweird.foo.urls')), # Uncomment this for admin: - (r'^$', 'bpcms.views.document_view', {'slug': 'index'}), - (r'^media/(?P.*)$', 'django.views.static.serve', {'document_root': MEDIA_ROOT, 'show_indexes': True}), - (r'^admin/(.*)$', admin.site.root), - (r'^blog/', include('blog.urls')), - (r'^feeds/(?P.*)/', 'django.contrib.syndication.views.feed', {'feed_dict': feeds_dict}), - (r'^(?:content/|)', include('bpcms.urls')) -) + url(r'^$', bpcms.views.document_view, {'slug': 'index'}), + url(r'^media/(?P.*)$', django.views.static.serve, {'document_root': MEDIA_ROOT, 'show_indexes': True}), + url(r'^static/(?P.*)$', django.views.static.serve, {'document_root': STATIC_ROOT, 'show_indexes': True}), + url(r'^admin/', admin.site.urls), + url(r'^blog/', include('blog.urls')), + url(r'^photo/', include('photo.urls')), + #url(r'^photos/', include('photo.urls')), + url(r'^css-doc/(?P.*)$', bpcms.views.css_view), + url(r'^feeds/rss/blog/', LatestBlogEntriesRss()), + url(r'^feeds/blog/', LatestBlogEntries()), + url(r'^', include('bpcms.urls')) +]