annotate ygroup/urls.py @ 697:67f8d49a9377

Cleaned up the code a bit. Separated the S3 stuff out into its own class. This class maybe should be in core. Still want to do some kind of context manager around the temporary file we are creating to ensure it gets deleted.
author Brian Neal <bgneal@gmail.com>
date Sun, 08 Sep 2013 21:02:58 -0500
parents ee87ea74d46b
children 5ba2508939f7
rev   line source
bgneal@323 1 """
bgneal@323 2 urls.py - URLs for the ygroup application.
bgneal@323 3
bgneal@323 4 """
bgneal@574 5 from django.conf.urls import patterns, url
bgneal@574 6 from django.views.generic import DetailView
bgneal@323 7
bgneal@574 8 from ygroup.models import Post
bgneal@323 9 from ygroup.views import ThreadIndexView, ThreadView
bgneal@323 10
bgneal@323 11
bgneal@323 12 urlpatterns = patterns('',
bgneal@323 13 url(r'^threads/$',
bgneal@323 14 ThreadIndexView.as_view(),
bgneal@323 15 name='ygroup-thread_index'),
bgneal@323 16 url(r'^thread/(\d+)/$',
bgneal@323 17 ThreadView.as_view(),
bgneal@323 18 name='ygroup-thread_view'),
bgneal@323 19 url(r'^post/(?P<pk>\d+)/$',
bgneal@323 20 DetailView.as_view(model=Post, context_object_name='post'),
bgneal@323 21 name='ygroup-post_view'),
bgneal@323 22 )
bgneal@323 23