gremmie@1: """urls for the podcast application""" gremmie@1: from django.conf.urls.defaults import * gremmie@1: gremmie@1: urlpatterns = patterns('podcast.views', gremmie@1: url(r'^$', 'index', name='podcast-main'), gremmie@1: (r'^(\d+)/$', 'detail'), gremmie@1: (r'^feed.xml/$', 'feed'), gremmie@1: )