annotate gpp/urls.py @ 18:5c03abb0cd0a

Added a BSD style license file.
author Brian Neal <bgneal@gmail.com>
date Sun, 19 Apr 2009 18:36:26 +0000
parents f408971657b9
children aa2b41c5212b
rev   line source
gremmie@1 1 from django.conf.urls.defaults import *
bgneal@6 2 from django.conf import settings
gremmie@1 3 from django.contrib import admin
gremmie@1 4 from news.feeds import LatestNewsFeed
gremmie@1 5
gremmie@1 6 admin.autodiscover()
gremmie@1 7
gremmie@1 8 feeds = {
gremmie@1 9 'news': LatestNewsFeed,
gremmie@1 10 }
gremmie@1 11
gremmie@1 12 urlpatterns = patterns('',
gremmie@1 13 (r'^admin/doc/', include('django.contrib.admindocs.urls')),
gremmie@1 14 (r'^admin/', include(admin.site.urls)),
gremmie@1 15 (r'^accounts/', include('accounts.urls')),
gremmie@1 16 (r'^calendar/', include('gcalendar.urls')),
gremmie@1 17 (r'^comments/', include('comments.urls')),
gremmie@1 18 (r'^contact/', include('contact.urls')),
gremmie@1 19 (r'^downloads/', include('downloads.urls')),
gremmie@1 20 url(r'^feeds/(?P<url>.*)/$',
gremmie@1 21 'django.contrib.syndication.views.feed',
gremmie@1 22 {'feed_dict': feeds },
gremmie@1 23 'feeds-news'),
gremmie@1 24 (r'^irc/', include('irc.urls')),
gremmie@1 25 (r'^legal/', include('legal.urls')),
gremmie@1 26 (r'^links/', include('weblinks.urls')),
gremmie@1 27 (r'^member_map/', include('membermap.urls')),
gremmie@1 28 (r'^messages/', include('messages.urls')),
gremmie@1 29 (r'^news/', include('news.urls')),
gremmie@1 30 (r'^podcast/', include('podcast.urls')),
gremmie@1 31 (r'^polls/', include('polls.urls')),
gremmie@1 32 (r'^potd/', include('potd.urls')),
gremmie@1 33 (r'^profile/', include('bio.urls')),
gremmie@1 34 (r'^shout/', include('shoutbox.urls')),
bgneal@12 35 (r'^smiley/', include('smiley.urls')),
gremmie@1 36 )
gremmie@1 37
gremmie@1 38 if settings.DEBUG:
gremmie@1 39 urlpatterns += patterns('',
gremmie@1 40 (r'^static/(?P<path>.*)$', 'django.views.static.serve', {'document_root': settings.MEDIA_ROOT}),
gremmie@1 41 )