annotate examples/project/urls.py @ 8:a82369f2574e

http client tests
author Victor Ng <victor@monkeybean.ca>
date Thu, 28 Aug 2008 12:42:31 -0400
parents 8d0793b2358b
children
rev   line source
6
8d0793b2358b update testapp to django 1.0b1
Victor Ng <victor@monkeybean.ca>
parents: 0
diff changeset
1 from django.conf.urls.defaults import *
8d0793b2358b update testapp to django 1.0b1
Victor Ng <victor@monkeybean.ca>
parents: 0
diff changeset
2
8d0793b2358b update testapp to django 1.0b1
Victor Ng <victor@monkeybean.ca>
parents: 0
diff changeset
3 # Uncomment the next two lines to enable the admin:
8d0793b2358b update testapp to django 1.0b1
Victor Ng <victor@monkeybean.ca>
parents: 0
diff changeset
4 # from django.contrib import admin
8d0793b2358b update testapp to django 1.0b1
Victor Ng <victor@monkeybean.ca>
parents: 0
diff changeset
5 # admin.autodiscover()
8d0793b2358b update testapp to django 1.0b1
Victor Ng <victor@monkeybean.ca>
parents: 0
diff changeset
6
8d0793b2358b update testapp to django 1.0b1
Victor Ng <victor@monkeybean.ca>
parents: 0
diff changeset
7 urlpatterns = patterns('',
8d0793b2358b update testapp to django 1.0b1
Victor Ng <victor@monkeybean.ca>
parents: 0
diff changeset
8 # Example:
8
a82369f2574e http client tests
Victor Ng <victor@monkeybean.ca>
parents: 6
diff changeset
9 (r'^zoo/', include('project.zoo.urls')),
6
8d0793b2358b update testapp to django 1.0b1
Victor Ng <victor@monkeybean.ca>
parents: 0
diff changeset
10
8d0793b2358b update testapp to django 1.0b1
Victor Ng <victor@monkeybean.ca>
parents: 0
diff changeset
11 # Uncomment the next line to enable admin documentation:
8d0793b2358b update testapp to django 1.0b1
Victor Ng <victor@monkeybean.ca>
parents: 0
diff changeset
12 # (r'^admin/doc/', include('django.contrib.admindocs.urls')),
8d0793b2358b update testapp to django 1.0b1
Victor Ng <victor@monkeybean.ca>
parents: 0
diff changeset
13
8d0793b2358b update testapp to django 1.0b1
Victor Ng <victor@monkeybean.ca>
parents: 0
diff changeset
14 # Uncomment the next line for to enable the admin:
8d0793b2358b update testapp to django 1.0b1
Victor Ng <victor@monkeybean.ca>
parents: 0
diff changeset
15 # (r'^admin/(.*)', admin.site.root),
8d0793b2358b update testapp to django 1.0b1
Victor Ng <victor@monkeybean.ca>
parents: 0
diff changeset
16 )