Mercurial > public > sg101
comparison gpp/urls.py @ 12:f408971657b9
Changed the shoutbox: posts are now made by Ajax. The smiley farm is loaded only on demand. jQuery is now in the base template. May add scrolling later.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Wed, 15 Apr 2009 01:13:17 +0000 |
parents | b6263ac72052 |
children | aa2b41c5212b |
comparison
equal
deleted
inserted
replaced
11:cc8eb028def1 | 12:f408971657b9 |
---|---|
30 (r'^podcast/', include('podcast.urls')), | 30 (r'^podcast/', include('podcast.urls')), |
31 (r'^polls/', include('polls.urls')), | 31 (r'^polls/', include('polls.urls')), |
32 (r'^potd/', include('potd.urls')), | 32 (r'^potd/', include('potd.urls')), |
33 (r'^profile/', include('bio.urls')), | 33 (r'^profile/', include('bio.urls')), |
34 (r'^shout/', include('shoutbox.urls')), | 34 (r'^shout/', include('shoutbox.urls')), |
35 (r'^smiley/', include('smiley.urls')), | |
35 ) | 36 ) |
36 | 37 |
37 if settings.DEBUG: | 38 if settings.DEBUG: |
38 urlpatterns += patterns('', | 39 urlpatterns += patterns('', |
39 (r'^static/(?P<path>.*)$', 'django.views.static.serve', {'document_root': settings.MEDIA_ROOT}), | 40 (r'^static/(?P<path>.*)$', 'django.views.static.serve', {'document_root': settings.MEDIA_ROOT}), |