bgneal@403: """ bgneal@403: urls for the podcast application bgneal@403: bgneal@403: """ bgneal@1028: from django.conf.urls import url bgneal@403: from django.views.decorators.cache import cache_page bgneal@403: bgneal@1028: import podcast.views bgneal@403: gremmie@1: bgneal@1028: urlpatterns = [ bgneal@1028: url(r'^$', podcast.views.index, name='podcast-main'), bgneal@1028: url(r'^(\d+)/$', podcast.views.detail, name='podcast-detail'), bgneal@1028: url(r'^feed.xml/$', cache_page(3600)(podcast.views.feed), name='podcast-feed'), bgneal@1028: ]