view gpp/news/urls.py @ 133:c515b7401078

Use the new common way to apply markItUp to textareas and to get the smiley and markdown help dialogs for all the remaining apps except for forums and comments.
author Brian Neal <bgneal@gmail.com>
date Fri, 27 Nov 2009 00:21:47 +0000
parents dbd703f7d63a
children 1246a4f1ab4f
line wrap: on
line source
"""urls for the News application"""
from django.conf.urls.defaults import *

urlpatterns = patterns('news.views',
   url(r'^page/(?P<page>\d+)/$', 'index', name='news-index_page'),
   url(r'^archive/$', 'archive_index', name='news-archive_index'),
   url(r'^archive/(?P<year>\d{4})/(?P<month>\d\d?)/page/(?P<page>\d+)/$', 
      'archive', 
      name='news-archive_page'),
   (r'^categories/$', 'category_index'),
   (r'^category/(?P<category>\d+)/page/(?P<page>\d+)/$', 'category'),
   (r'^email/(\d+)/$', 'email_story'),
   (r'^email/thanks/$', 'email_thanks'),
   url(r'^search/page/(?P<page>\d+)/$', 'search', name='news-search_page'),
   (r'^story/(\d+)/$', 'story'),
   (r'^submit/$', 'submit'),
   (r'^submit/thanks/$', 'submit_thanks'),
   url(r'^tags/$', 'tags', name='news-tag_index'),
   url(r'^tag/(?P<tag_name>[^/]+)/page/(?P<page>\d+)/$', 
      'tag', 
      name='news-tag_page'),
)

urlpatterns += patterns('django.views.generic.simple',
   (r'^$', 'redirect_to', {'url': 'page/1/'}),
)