summaryrefslogtreecommitdiff
path: root/docs/narr/hybrid.rst
diff options
context:
space:
mode:
authorChris McDonough <chrism@agendaless.com>2009-12-27 22:47:08 +0000
committerChris McDonough <chrism@agendaless.com>2009-12-27 22:47:08 +0000
commit8c56ae41b6f0221d72f1a255ce1a3ac467b98d79 (patch)
treed310d7be53ae0f4760e09b437975dcebce52d02b /docs/narr/hybrid.rst
parentd7b12a30237d51d761cab0b08c5da1163ea534ee (diff)
downloadpyramid-8c56ae41b6f0221d72f1a255ce1a3ac467b98d79.tar.gz
pyramid-8c56ae41b6f0221d72f1a255ce1a3ac467b98d79.tar.bz2
pyramid-8c56ae41b6f0221d72f1a255ce1a3ac467b98d79.zip
- Added manual index entries to generated index.
Diffstat (limited to 'docs/narr/hybrid.rst')
-rw-r--r--docs/narr/hybrid.rst13
1 files changed, 13 insertions, 0 deletions
diff --git a/docs/narr/hybrid.rst b/docs/narr/hybrid.rst
index a08425a5a..14cb1d4ab 100644
--- a/docs/narr/hybrid.rst
+++ b/docs/narr/hybrid.rst
@@ -100,6 +100,9 @@ code just won't have any ``<route>`` declarations. Instead, its ZCML
above will match the URL ``/a/b/c/foobar`` or ``/foobar``, etc,
assuming that no view is named "a", "b", or "c" during traversal.
+.. index::
+ single: hybrid mode application
+
Hybrid Applications
-------------------
@@ -199,6 +202,10 @@ It's :term:`view name` will be looked for during traversal. So if our
URL is "http://example.com/one/two/a/another", the ``.views.another``
view will be called.
+.. index::
+ pair: route; factory
+ single: route factory
+
Route Factories
---------------
@@ -218,6 +225,9 @@ In this way, each route can use a different factory, making it
possible to traverse different graphs based on some routing parameter
within the same application.
+.. index::
+ pair: subpath; route
+
.. _star_subpath:
Using ``*subpath`` in a Route Path
@@ -453,6 +463,9 @@ you must the special ``*traverse`` token to the route's "path"., e.g.:
route_name="abc"
/>
+.. index::
+ pair: route; ordering
+
Route Ordering
~~~~~~~~~~~~~~