Changeset 5945
- Timestamp:
- 08/19/07 10:08:21 (1 year ago)
- Files:
-
- django/trunk/docs/url_dispatch.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/url_dispatch.txt
r5939 r5945 205 205 ) 206 206 207 This function takes five arguments, most of which are optional:: 208 209 url(regex, view, kwargs=None, name=None, prefix='') 210 207 211 See `Naming URL patterns`_ for why the ``name`` parameter is useful. 212 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. 208 216 209 217 handler404
