Added 'Multiple view prefixes' section to docs/url_dispatch.txt. Thanks, Slowness Chen

git-svn-id: http://code.djangoproject.com/svn/django/trunk@2816 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2006-05-02 19:22:33 +00:00
parent cc4196a407
commit aba95b718c
1 changed files with 31 additions and 0 deletions

View File

@ -288,6 +288,37 @@ that in automatically.
.. _Django overview: http://www.djangoproject.com/documentation/overview/
Multiple view prefixes
----------------------
In practice, you'll probably end up mixing and matching views to the point
where the views in your ``urlpatterns`` won't have a common prefix. However,
you can still take advantage of the view prefix shortcut to remove duplication.
Just add multiple ``patterns()`` objects together, like this:
Old::
from django.conf.urls.defaults import *
urlpatterns = patterns( ''
(r'^/?$', 'django.views.generic.date_based.archive_index'),
(r'^(?P<year>\d{4})/(?P<month>[a-z]{3})/$', 'django.views.generic.date_based.archive_month'),
(r'^tag/(?P<tag>\w+)/$', 'weblog.views.tag'),
)
New::
from django.conf.urls.defaults import *
urlpatterns = patterns('django.views.generic.date_based'
(r'^/?$', 'archive_index'),
(r'^(?P<year>\d{4})/(?P<month>[a-z]{3})/$','archive_month'),
)
urlpatterns += patterns('weblog.views',
(r'^tag/(?P<tag>\w+)/$', 'tag'),
)
Including other URLconfs
========================