~ubuntuone-pqm-team/django-saml2-idp/stable

« back to all changes in this revision

Viewing changes to idptest/urls.py

  • Committer: guitarman at vt
  • Date: 2010-08-18 18:10:59 UTC
  • Revision ID: svn-v4:41e50629-eb6e-b841-421f-ad03d4eac035:trunk:2
Added initial blank django project.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
from django.conf.urls.defaults import *
 
2
 
 
3
# Uncomment the next two lines to enable the admin:
 
4
# from django.contrib import admin
 
5
# admin.autodiscover()
 
6
 
 
7
urlpatterns = patterns('',
 
8
    # Example:
 
9
    # (r'^idptest/', include('idptest.foo.urls')),
 
10
 
 
11
    # Uncomment the admin/doc line below and add 'django.contrib.admindocs' 
 
12
    # to INSTALLED_APPS to enable admin documentation:
 
13
    # (r'^admin/doc/', include('django.contrib.admindocs.urls')),
 
14
 
 
15
    # Uncomment the next line to enable the admin:
 
16
    # (r'^admin/', include(admin.site.urls)),
 
17
)