~chipaca/unity-lens-video/custom-user-agent

2 by Janos Gyerik
added most base files, nothing visible yet
1
from django.conf.urls.defaults import *
2
3
urlpatterns = patterns('bashoneliners.main.views',
4
    (r'^$', 'index'),
5
    (r'^oneliner/(?P<pk>\d+)/$', 'oneliner'),
12 by Janos Gyerik
adjusted texts
6
    (r'^rules/$', 'rules'),
2 by Janos Gyerik
added most base files, nothing visible yet
7
)
8
9
# eof