Django

Code

root/django/branches/0.95-bugfixes/examples/urls.py

Revision 2809, 157 bytes (checked in by adrian, 3 years ago)

MERGED MAGIC-REMOVAL BRANCH TO TRUNK. This change is highly backwards-incompatible. Please read http://code.djangoproject.com/wiki/RemovingTheMagic for upgrade instructions.

Line 
1 from django.conf.urls.defaults import *
2
3 urlpatterns = patterns('',
4     (r'^$', 'examples.views.index'),
5     (r'^hello/', include('examples.hello.urls')),
6 )
Note: See TracBrowser for help on using the browser.