Fixed #5550: Documented the context used by the default view for 404 and 500 errors.
[django.git] / docs / url_dispatch.txt
blob6ed7043fd5227c57cdf9c31041452f95b715cb7d
1 ==============
2 URL dispatcher
3 ==============
5 A clean, elegant URL scheme is an important detail in a high-quality Web
6 application. Django lets you design URLs however you want, with no framework
7 limitations.
9 There's no ``.php`` or ``.cgi`` required, and certainly none of that
10 ``0,2097,1-1-1928,00`` nonsense.
12 See `Cool URIs don't change`_, by World Wide Web creator Tim Berners-Lee, for
13 excellent arguments on why URLs should be clean and usable.
15 .. _Cool URIs don't change: http://www.w3.org/Provider/Style/URI
17 Overview
18 ========
20 To design URLs for an app, you create a Python module informally called a
21 **URLconf** (URL configuration). This module is pure Python code and
22 is a simple mapping between URL patterns (as simple regular expressions) to
23 Python callback functions (your views).
25 This mapping can be as short or as long as needed. It can reference other
26 mappings. And, because it's pure Python code, it can be constructed
27 dynamically.
29 How Django processes a request
30 ==============================
32 When a user requests a page from your Django-powered site, this is the
33 algorithm the system follows to determine which Python code to execute:
35     1. Django looks at the ``ROOT_URLCONF`` setting in your `settings file`_.
36        This should be a string representing the full Python import path to your
37        URLconf. For example: ``"mydjangoapps.urls"``.
38     2. Django loads that Python module and looks for the variable
39        ``urlpatterns``. This should be a Python list, in the format returned by
40        the function ``django.conf.urls.defaults.patterns()``.
41     3. Django runs through each URL pattern, in order, and stops at the first
42        one that matches the requested URL.
43     4. Once one of the regexes matches, Django imports and calls the given
44        view, which is a simple Python function. The view gets passed a
45        `request object`_ as its first argument and any values captured in the
46        regex as remaining arguments.
48 .. _settings file: ../settings/
49 .. _request object: ../request_response/#httprequest-objects
51 Example
52 =======
54 Here's a sample URLconf::
56     from django.conf.urls.defaults import *
58     urlpatterns = patterns('',
59         (r'^articles/2003/$', 'news.views.special_case_2003'),
60         (r'^articles/(\d{4})/$', 'news.views.year_archive'),
61         (r'^articles/(\d{4})/(\d{2})/$', 'news.views.month_archive'),
62         (r'^articles/(\d{4})/(\d{2})/(\d+)/$', 'news.views.article_detail'),
63     )
65 Notes:
67     * ``from django.conf.urls.defaults import *`` makes the ``patterns()``
68       function available.
70     * To capture a value from the URL, just put parenthesis around it.
72     * There's no need to add a leading slash, because every URL has that. For
73       example, it's ``^articles``, not ``^/articles``.
75     * The ``'r'`` in front of each regular expression string is optional but
76       recommended. It tells Python that a string is "raw" -- that nothing in
77       the string should be escaped. See `Dive Into Python's explanation`_.
79 Example requests:
81     * A request to ``/articles/2005/03/`` would match the third entry in the
82       list. Django would call the function
83       ``news.views.month_archive(request, '2005', '03')``.
85     * ``/articles/2005/3/`` would not match any URL patterns, because the
86       third entry in the list requires two digits for the month.
88     * ``/articles/2003/`` would match the first pattern in the list, not the
89       second one, because the patterns are tested in order, and the first one
90       is the first test to pass. Feel free to exploit the ordering to insert
91       special cases like this.
93     * ``/articles/2003`` would not match any of these patterns, because each
94       pattern requires that the URL end with a slash.
96     * ``/articles/2003/03/3/`` would match the final pattern. Django would call
97       the function ``news.views.article_detail(request, '2003', '03', '3')``.
99 .. _Dive Into Python's explanation: http://diveintopython.org/regular_expressions/street_addresses.html#re.matching.2.3
101 Named groups
102 ============
104 The above example used simple, *non-named* regular-expression groups (via
105 parenthesis) to capture bits of the URL and pass them as *positional* arguments
106 to a view. In more advanced usage, it's possible to use *named*
107 regular-expression groups to capture URL bits and pass them as *keyword*
108 arguments to a view.
110 In Python regular expressions, the syntax for named regular-expression groups
111 is ``(?P<name>pattern)``, where ``name`` is the name of the group and
112 ``pattern`` is some pattern to match.
114 Here's the above example URLconf, rewritten to use named groups::
116     urlpatterns = patterns('',
117         (r'^articles/2003/$', 'news.views.special_case_2003'),
118         (r'^articles/(?P<year>\d{4})/$', 'news.views.year_archive'),
119         (r'^articles/(?P<year>\d{4})/(?P<month>\d{2})/$', 'news.views.month_archive'),
120         (r'^articles/(?P<year>\d{4})/(?P<month>\d{2})/(?P<day>\d+)/$', 'news.views.article_detail'),
121     )
123 This accomplishes exactly the same thing as the previous example, with one
124 subtle difference: The captured values are passed to view functions as keyword
125 arguments rather than positional arguments. For example:
127     * A request to ``/articles/2005/03/`` would call the function
128       ``news.views.month_archive(request, year='2005', month='03')``, instead
129       of ``news.views.month_archive(request, '2005', '03')``.
131     * A request to ``/articles/2003/03/3/`` would call the function
132       ``news.views.article_detail(request, year='2003', month='03', day='3')``.
134 In practice, this means your URLconfs are slightly more explicit and less prone
135 to argument-order bugs -- and you can reorder the arguments in your views'
136 function definitions. Of course, these benefits come at the cost of brevity;
137 some developers find the named-group syntax ugly and too verbose.
139 The matching/grouping algorithm
140 -------------------------------
142 Here's the algorithm the URLconf parser follows, with respect to named groups
143 vs. non-named groups in a regular expression:
145 If there are any named arguments, it will use those, ignoring non-named arguments.
146 Otherwise, it will pass all non-named arguments as positional arguments.
148 In both cases, it will pass any extra keyword arguments as keyword arguments.
149 See "Passing extra options to view functions" below.
151 What the URLconf searches against
152 =================================
154 The URLconf searches against the requested URL, as a normal Python string. This
155 does not include GET or POST parameters, or the domain name.
157 For example, in a request to ``http://www.example.com/myapp/``, the URLconf
158 will look for ``/myapp/``.
160 In a request to ``http://www.example.com/myapp/?page=3``, the URLconf will look
161 for ``/myapp/``.
163 The URLconf doesn't look at the request method. In other words, all request
164 methods -- ``POST``, ``GET``, ``HEAD``, etc. -- will be routed to the same
165 function for the same URL.
167 Syntax of the urlpatterns variable
168 ==================================
170 ``urlpatterns`` should be a Python list, in the format returned by the function
171 ``django.conf.urls.defaults.patterns()``. Always use ``patterns()`` to create
172 the ``urlpatterns`` variable.
174 Convention is to use ``from django.conf.urls.defaults import *`` at the top of
175 your URLconf. This gives your module access to these objects:
177 patterns
178 --------
180 A function that takes a prefix, and an arbitrary number of URL patterns, and
181 returns a list of URL patterns in the format Django needs.
183 The first argument to ``patterns()`` is a string ``prefix``. See
184 "The view prefix" below.
186 The remaining arguments should be tuples in this format::
188     (regular expression, Python callback function [, optional dictionary [, optional name]])
190 ...where ``optional dictionary`` and ``optional name`` are optional. (See
191 `Passing extra options to view functions`_ below.)
196 **New in Django development version**
198 You can use the ``url()`` function, instead of a tuple, as an argument to
199 ``patterns()``. This is convenient if you want to specify a name without the
200 optional extra arguments dictionary. For example::
202     urlpatterns = patterns('',
203         url(r'/index/$', index_view, name="main-view"),
204         ...
205     )
207 This function takes five arguments, most of which are optional::
209     url(regex, view, kwargs=None, name=None, prefix='')
211 See `Naming URL patterns`_ for why the ``name`` parameter is useful.
213 The ``prefix`` parameter has the same meaning as the first argument to
214 ``patterns()`` and is only relevant when you're passing a string as the
215 ``view`` parameter.
217 handler404
218 ----------
220 A string representing the full Python import path to the view that should be
221 called if none of the URL patterns match.
223 By default, this is ``'django.views.defaults.page_not_found'``. That default
224 value should suffice.
226 handler500
227 ----------
229 A string representing the full Python import path to the view that should be
230 called in case of server errors. Server errors happen when you have runtime
231 errors in view code.
233 By default, this is ``'django.views.defaults.server_error'``. That default
234 value should suffice.
236 include
237 -------
239 A function that takes a full Python import path to another URLconf that should
240 be "included" in this place. See `Including other URLconfs`_ below.
242 Notes on capturing text in URLs
243 ===============================
245 Each captured argument is sent to the view as a plain Python string, regardless
246 of what sort of match the regular expression makes. For example, in this
247 URLconf line::
249     (r'^articles/(?P<year>\d{4})/$', 'news.views.year_archive'),
251 ...the ``year`` argument to ``news.views.year_archive()`` will be a string, not
252 an integer, even though the ``\d{4}`` will only match integer strings.
254 A convenient trick is to specify default parameters for your views' arguments.
255 Here's an example URLconf and view::
257     # URLconf
258     urlpatterns = patterns('',
259         (r'^blog/$', 'blog.views.page'),
260         (r'^blog/page(?P<num>\d+)/$', 'blog.views.page'),
261     )
263     # View (in blog/views.py)
264     def page(request, num="1"):
265         # Output the appropriate page of blog entries, according to num.
267 In the above example, both URL patterns point to the same view --
268 ``blog.views.page`` -- but the first pattern doesn't capture anything from the
269 URL. If the first pattern matches, the ``page()`` function will use its
270 default argument for ``num``, ``"1"``. If the second pattern matches,
271 ``page()`` will use whatever ``num`` value was captured by the regex.
273 Performance
274 ===========
276 Each regular expression in a ``urlpatterns`` is compiled the first time it's
277 accessed. This makes the system blazingly fast.
279 The view prefix
280 ===============
282 You can specify a common prefix in your ``patterns()`` call, to cut down on
283 code duplication.
285 Here's the example URLconf from the `Django overview`_::
287     from django.conf.urls.defaults import *
289     urlpatterns = patterns('',
290         (r'^articles/(\d{4})/$', 'mysite.news.views.year_archive'),
291         (r'^articles/(\d{4})/(\d{2})/$', 'mysite.news.views.month_archive'),
292         (r'^articles/(\d{4})/(\d{2})/(\d+)/$', 'mysite.news.views.article_detail'),
293     )
295 In this example, each view has a common prefix -- ``'mysite.news.views'``.
296 Instead of typing that out for each entry in ``urlpatterns``, you can use the
297 first argument to the ``patterns()`` function to specify a prefix to apply to
298 each view function.
300 With this in mind, the above example can be written more concisely as::
302     from django.conf.urls.defaults import *
304     urlpatterns = patterns('mysite.news.views',
305         (r'^articles/(\d{4})/$', 'year_archive'),
306         (r'^articles/(\d{4})/(\d{2})/$', 'month_archive'),
307         (r'^articles/(\d{4})/(\d{2})/(\d+)/$', 'article_detail'),
308     )
310 Note that you don't put a trailing dot (``"."``) in the prefix. Django puts
311 that in automatically.
313 .. _Django overview: ../overview/
315 Multiple view prefixes
316 ----------------------
318 In practice, you'll probably end up mixing and matching views to the point
319 where the views in your ``urlpatterns`` won't have a common prefix. However,
320 you can still take advantage of the view prefix shortcut to remove duplication.
321 Just add multiple ``patterns()`` objects together, like this:
323 Old::
325     from django.conf.urls.defaults import *
327     urlpatterns = patterns('',
328         (r'^$', 'django.views.generic.date_based.archive_index'),
329         (r'^(?P<year>\d{4})/(?P<month>[a-z]{3})/$', 'django.views.generic.date_based.archive_month'),
330         (r'^tag/(?P<tag>\w+)/$', 'weblog.views.tag'),
331     )
333 New::
335     from django.conf.urls.defaults import *
337     urlpatterns = patterns('django.views.generic.date_based',
338         (r'^$', 'archive_index'),
339         (r'^(?P<year>\d{4})/(?P<month>[a-z]{3})/$','archive_month'),
340     )
342     urlpatterns += patterns('weblog.views',
343         (r'^tag/(?P<tag>\w+)/$', 'tag'),
344     )
346 Including other URLconfs
347 ========================
349 At any point, your ``urlpatterns`` can "include" other URLconf modules. This
350 essentially "roots" a set of URLs below other ones.
352 For example, here's the URLconf for the `Django website`_ itself. It includes a
353 number of other URLconfs::
355     from django.conf.urls.defaults import *
357     urlpatterns = patterns('',
358         (r'^weblog/',        include('django_website.apps.blog.urls.blog')),
359         (r'^documentation/', include('django_website.apps.docs.urls.docs')),
360         (r'^comments/',      include('django.contrib.comments.urls.comments')),
361     )
363 Note that the regular expressions in this example don't have a ``$``
364 (end-of-string match character) but do include a trailing slash. Whenever
365 Django encounters ``include()``, it chops off whatever part of the URL matched
366 up to that point and sends the remaining string to the included URLconf for
367 further processing.
369 .. _`Django website`: http://www.djangoproject.com/
371 Captured parameters
372 -------------------
374 An included URLconf receives any captured parameters from parent URLconfs, so
375 the following example is valid::
377     # In settings/urls/main.py
378     urlpatterns = patterns('',
379         (r'^(?P<username>\w+)/blog/', include('foo.urls.blog')),
380     )
382     # In foo/urls/blog.py
383     urlpatterns = patterns('foo.views',
384         (r'^$', 'blog.index'),
385         (r'^archive/$', 'blog.archive'),
386     )
388 In the above example, the captured ``"username"`` variable is passed to the
389 included URLconf, as expected.
391 Passing extra options to view functions
392 =======================================
394 URLconfs have a hook that lets you pass extra arguments to your view functions,
395 as a Python dictionary.
397 Any URLconf tuple can have an optional third element, which should be a
398 dictionary of extra keyword arguments to pass to the view function.
400 For example::
402     urlpatterns = patterns('blog.views',
403         (r'^blog/(?P<year>\d{4})/$', 'year_archive', {'foo': 'bar'}),
404     )
406 In this example, for a request to ``/blog/2005/``, Django will call the
407 ``blog.views.year_archive()`` view, passing it these keyword arguments::
409     year='2005', foo='bar'
411 This technique is used in `generic views`_ and in the `syndication framework`_
412 to pass metadata and options to views.
414 .. _generic views: ../generic_views/
415 .. _syndication framework: ../syndication_feeds/
417 .. admonition:: Dealing with conflicts
419     It's possible to have a URL pattern which captures named keyword arguments,
420     and also passes arguments with the same names in its dictionary of extra
421     arguments. When this happens, the arguments in the dictionary will be used
422     instead of the arguments captured in the URL.
424 Passing extra options to ``include()``
425 --------------------------------------
427 Similarly, you can pass extra options to ``include()``. When you pass extra
428 options to ``include()``, *each* line in the included URLconf will be passed
429 the extra options.
431 For example, these two URLconf sets are functionally identical:
433 Set one::
435     # main.py
436     urlpatterns = patterns('',
437         (r'^blog/', include('inner'), {'blogid': 3}),
438     )
440     # inner.py
441     urlpatterns = patterns('',
442         (r'^archive/$', 'mysite.views.archive'),
443         (r'^about/$', 'mysite.views.about'),
444     )
446 Set two::
448     # main.py
449     urlpatterns = patterns('',
450         (r'^blog/', include('inner')),
451     )
453     # inner.py
454     urlpatterns = patterns('',
455         (r'^archive/$', 'mysite.views.archive', {'blogid': 3}),
456         (r'^about/$', 'mysite.views.about', {'blogid': 3}),
457     )
459 Note that extra options will *always* be passed to *every* line in the included
460 URLconf, regardless of whether the line's view actually accepts those options
461 as valid. For this reason, this technique is only useful if you're certain that
462 every view in the the included URLconf accepts the extra options you're passing.
464 Passing callable objects instead of strings
465 ===========================================
467 Some developers find it more natural to pass the actual Python function object
468 rather than a string containing the path to its module. This alternative is
469 supported -- you can pass any callable object as the view.
471 For example, given this URLconf in "string" notation::
473     urlpatterns = patterns('',
474         (r'^archive/$', 'mysite.views.archive'),
475         (r'^about/$', 'mysite.views.about'),
476         (r'^contact/$', 'mysite.views.contact'),
477     )
479 You can accomplish the same thing by passing objects rather than strings. Just
480 be sure to import the objects::
482     from mysite.views import archive, about, contact
484     urlpatterns = patterns('',
485         (r'^archive/$', archive),
486         (r'^about/$', about),
487         (r'^contact/$', contact),
488     )
490 The following example is functionally identical. It's just a bit more compact
491 because it imports the module that contains the views, rather than importing
492 each view individually::
494     from mysite import views
496     urlpatterns = patterns('',
497         (r'^archive/$', views.archive),
498         (r'^about/$', views.about),
499         (r'^contact/$', views.contact),
500     )
502 The style you use is up to you.
504 Note that if you use this technique -- passing objects rather than strings --
505 the view prefix (as explained in "The view prefix" above) will have no effect.
507 Naming URL patterns
508 ===================
510 **New in Django development version**
512 It's fairly common to use the same view function in multiple URL patterns in
513 your URLconf. For example, these two URL patterns both point to the ``archive``
514 view::
516     urlpatterns = patterns('',
517         (r'/archive/(\d{4})/$', archive),
518         (r'/archive-summary/(\d{4})/$', archive, {'summary': True}),
519     )
521 This is completely valid, but it leads to problems when you try to do reverse
522 URL matching (through the ``permalink()`` decorator or the ``{% url %}``
523 `template tag`_). Continuing this example, if you wanted to retrieve the URL for
524 the ``archive`` view, Django's reverse URL matcher would get confused, because
525 *two* URLpatterns point at that view.
527 To solve this problem, Django supports **named URL patterns**. That is, you can
528 give a name to a URL pattern in order to distinguish it from other patterns
529 using the same view and parameters. Then, you can use this name in reverse URL
530 matching.
532 Here's the above example, rewritten to used named URL patterns::
534     urlpatterns = patterns('',
535         url(r'/archive/(\d{4})/$', archive, name="full-archive"),
536         url(r'/archive-summary/(\d{4})/$', archive, {'summary': True}, "arch-summary"),
537     )
539 With these names in place (``full-archive`` and ``arch-summary``), you can
540 target each pattern individually by using its name::
542     {% url arch-summary 1945 %}
543     {% url full-archive 2007 %}
545 Even though both URL patterns refer to the ``archive`` view here, using the
546 ``name`` parameter to ``url()`` allows you to tell them apart in templates.
548 The string used for the URL name can contain any characters you like. You are
549 not restricted to valid Python names.
551 .. note::
553     When you name your URL patterns, make sure you use names that are unlikely
554     to clash with any other application's choice of names. If you call your URL
555     pattern ``comment``, and another application does the same thing, there's
556     no guarantee which URL will be inserted into your template when you use
557     this name.
559     Putting a prefix on your URL names, perhaps derived from the application
560     name, will decrease the chances of collision. We recommend something like
561     ``myapp-comment`` instead of ``comment``.
563 .. _template tag: ../templates/#url
565 Utility methods
566 ===============
568 reverse()
569 ---------
571 If you need to use something similar to the ``{% url %}`` `template tag`_ in
572 your code, Django provides the ``django.core.urlresolvers.reverse()``. The
573 ``reverse()`` function has the following signature::
575     reverse(viewname, urlconf=None, args=None, kwargs=None)
577 ``viewname`` is either the function name (either a function reference, or the
578 string version of the name, if you used that form in ``urlpatterns``) or the
579 `URL pattern name`_.  Normally, you won't need to worry about the
580 ``urlconf`` parameter and will only pass in the positional and keyword
581 arguments to use in the URL matching. For example::
583     from django.core.urlresolvers import reverse
585     def myview(request):
586         return HttpResponseRedirect(reverse('arch-summary', args=[1945]))
588 .. _URL pattern name: `Naming URL patterns`_
590 permalink()
591 -----------
593 The ``permalink()`` decorator is useful for writing short methods that return
594 a full URL path. For example, a model's ``get_absolute_url()`` method. Refer
595 to the `model API documentation`_ for more information about ``permalink()``.
597 .. _model API documentation: ../model-api/#the-permalink-decorator