repo.or.cz
/
django.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fixed #9199 -- We were erroneously only prepending "www" to the domain if we
[django.git]
/
examples
/
urls.py
blob
69b465f65dc1cd9094e5eaf2589b15bbb5538117
1
from
django
.
conf
.
urls
.
defaults
import
*
2
3
urlpatterns
=
patterns
(
''
,
4
(
r
'^$'
,
'examples.views.index'
),
5
(
r
'^hello/'
,
include
(
'examples.hello.urls'
)),
6
)