diff options
| author | Chris McDonough <chrism@plope.com> | 2011-01-08 00:17:29 -0500 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2011-01-08 00:17:29 -0500 |
| commit | 134c5cb12490ff357e5ee0917c42a87140249a04 (patch) | |
| tree | b606219aeb0ae605e3768852827269bf81bda51e /docs/narr/urldispatch.rst | |
| parent | 14f863d9b5c323303155c79901f22c5d0e1dbe69 (diff) | |
| parent | f7f0dd818138f3a4284fe1614a66dc121c9da86c (diff) | |
| download | pyramid-134c5cb12490ff357e5ee0917c42a87140249a04.tar.gz pyramid-134c5cb12490ff357e5ee0917c42a87140249a04.tar.bz2 pyramid-134c5cb12490ff357e5ee0917c42a87140249a04.zip | |
Merge branch 'caseman-master'
Diffstat (limited to 'docs/narr/urldispatch.rst')
| -rw-r--r-- | docs/narr/urldispatch.rst | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/docs/narr/urldispatch.rst b/docs/narr/urldispatch.rst index c0b132a04..e64513a96 100644 --- a/docs/narr/urldispatch.rst +++ b/docs/narr/urldispatch.rst @@ -26,7 +26,7 @@ specific bit of code, defined in your application, that receives the :term:`request` and returns a :term:`response` object. Where appropriate, we will describe how view lookup interacts with -:term:`resource location`. The :ref:`views_chapter` chapter describes +:term:`resource location`. The :ref:`view_config_chapter` chapter describes the details of :term:`view lookup`. High-Level Operational Overview @@ -95,7 +95,7 @@ Route Configuration That Names a View Callable When a route configuration declaration names a ``view`` attribute, the value of the attribute will reference a :term:`view callable`. This view callable will be invoked when the route matches. A view callable, as described in -:ref:`views_chapter`, is developer-supplied code that "does stuff" as the +:ref:`view_chapter`, is developer-supplied code that "does stuff" as the result of a request. For more information about how to create view callables, see :ref:`views_chapter`. @@ -865,7 +865,8 @@ The ``mypackage.views`` module referred to above might look like so: The view has access to the matchdict directly via the request, and can access variables within it that match keys present as a result of the route pattern. -See :ref:`views_chapter` for more information about views. +See :ref:`views_chapter`, and :ref:`view_config_chapter` for more +information about views. Example 2 ~~~~~~~~~ |
