Home | Trees | Indices | Help |
---|
|
1 from django.conf.urls.defaults import * 2 3 4 urlpatterns = patterns('madrona.screencasts.views', 5 (r'^$', 'listTutorials'), 6 (r'^(\w+)/$', 'showVideo'), 7 url(r'^(?P<pk>\d)/show/$', 'showVideoByPk', name='screencasts-show-video'), 8 url(r'^(?P<pk>\d+)/show_youtube/$', 'showYoutubeVideo', name='screencasts-show-youtube-video'), 9 ) 10
Home | Trees | Indices | Help |
---|
Generated by Epydoc 3.0.1 on Tue Oct 30 11:31:05 2012 | http://epydoc.sourceforge.net |