diff options
| author | Chris McDonough <chrism@plope.com> | 2012-10-13 19:02:21 -0400 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2012-10-13 19:02:21 -0400 |
| commit | fc766d828601884203c63dffe4c3b31624f54f2f (patch) | |
| tree | 76648c8fc2e255b6bb002c59997e413addcb1760 /docs | |
| parent | 89c380bb7ad1a22209c354033809294f82deeba5 (diff) | |
| parent | 06a904f88a64dc0c12b8ed7803287bac8786ff67 (diff) | |
| download | pyramid-fc766d828601884203c63dffe4c3b31624f54f2f.tar.gz pyramid-fc766d828601884203c63dffe4c3b31624f54f2f.tar.bz2 pyramid-fc766d828601884203c63dffe4c3b31624f54f2f.zip | |
Merge branch 'mmerickel-feature.multi-predicates' into 1.4-branch
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/narr/viewconfig.rst | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/docs/narr/viewconfig.rst b/docs/narr/viewconfig.rst index f65435cc6..3c7897969 100644 --- a/docs/narr/viewconfig.rst +++ b/docs/narr/viewconfig.rst @@ -290,12 +290,13 @@ configured view. of the ``REQUEST_METHOD`` of the :term:`WSGI` environment. ``request_param`` - This value can be any string. A view declaration with this argument - ensures that the view will only be called when the :term:`request` has a - key in the ``request.params`` dictionary (an HTTP ``GET`` or ``POST`` - variable) that has a name which matches the supplied value. + This value can be any string or a sequence of strings. A view declaration + with this argument ensures that the view will only be called when the + :term:`request` has a key in the ``request.params`` dictionary (an HTTP + ``GET`` or ``POST`` variable) that has a name which matches the a + supplied value. - If the value supplied has a ``=`` sign in it, + If any value supplied has a ``=`` sign in it, e.g. ``request_param="foo=123"``, then the key (``foo``) must both exist in the ``request.params`` dictionary, *and* the value must match the right hand side of the expression (``123``) for the view to "match" the current |
