annotate examples/project/zoo/urls.py @ 12:a6e52c3b64a8 tip

added a version code to nosedjango
author Victor Ng <victor@monkeybean.ca>
date Fri, 29 Aug 2008 14:10:47 -0400
parents a82369f2574e
children
rev   line source
8
a82369f2574e http client tests
Victor Ng <victor@monkeybean.ca>
parents:
diff changeset
1 from django.conf.urls.defaults import *
a82369f2574e http client tests
Victor Ng <victor@monkeybean.ca>
parents:
diff changeset
2
a82369f2574e http client tests
Victor Ng <victor@monkeybean.ca>
parents:
diff changeset
3 # Uncomment the next two lines to enable the admin:
a82369f2574e http client tests
Victor Ng <victor@monkeybean.ca>
parents:
diff changeset
4 # from django.contrib import admin
a82369f2574e http client tests
Victor Ng <victor@monkeybean.ca>
parents:
diff changeset
5 # admin.autodiscover()
a82369f2574e http client tests
Victor Ng <victor@monkeybean.ca>
parents:
diff changeset
6
a82369f2574e http client tests
Victor Ng <victor@monkeybean.ca>
parents:
diff changeset
7 urlpatterns = patterns('project.zoo.views',
a82369f2574e http client tests
Victor Ng <victor@monkeybean.ca>
parents:
diff changeset
8 # Example:
a82369f2574e http client tests
Victor Ng <victor@monkeybean.ca>
parents:
diff changeset
9 (r'^$', 'index'),
a82369f2574e http client tests
Victor Ng <victor@monkeybean.ca>
parents:
diff changeset
10 )