annotate gpp/urls.py @ 11:cc8eb028def1

Update jquery-ui and theme version that is hosted on google. In preparation for having jquery on every page (?), make it so that the autocomplete plug is using the 'global' jquery, and not the one that came with it. It seems to work okay with jquery 1.3.2.
author Brian Neal <bgneal@gmail.com>
date Tue, 14 Apr 2009 02:35:35 +0000
parents b6263ac72052
children f408971657b9
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')),
gremmie@1 35 )
gremmie@1 36
gremmie@1 37 if settings.DEBUG:
gremmie@1 38 urlpatterns += patterns('',
gremmie@1 39 (r'^static/(?P<path>.*)$', 'django.views.static.serve', {'document_root': settings.MEDIA_ROOT}),
gremmie@1 40 )