diff options
| author | Chris McDonough <chrism@plope.com> | 2012-10-13 19:02:01 -0400 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2012-10-13 19:02:01 -0400 |
| commit | 06a904f88a64dc0c12b8ed7803287bac8786ff67 (patch) | |
| tree | f4f820a4d01b5d6288ef3e0ddec8b0c0970e417c /docs/narr | |
| parent | b1d2a373d74a433b247ea2f1186f1e314244490c (diff) | |
| download | pyramid-06a904f88a64dc0c12b8ed7803287bac8786ff67.tar.gz pyramid-06a904f88a64dc0c12b8ed7803287bac8786ff67.tar.bz2 pyramid-06a904f88a64dc0c12b8ed7803287bac8786ff67.zip | |
add docs and changelog note
Diffstat (limited to 'docs/narr')
| -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 |
