Chris McDonough
2015-04-03 ebb588e5b86920b00d10319e1ded681dd3109222
Merge branch 'master' of github.com:Pylons/pyramid
3 files modified
14 ■■■■■ changed files
README.rst 6 ●●●● patch | view | raw | blame | history
docs/_themes @ 382cba 2 ●●● patch | view | raw | blame | history
docs/narr/viewconfig.rst 6 ●●●● patch | view | raw | blame | history
README.rst
@@ -6,7 +6,11 @@
.. image:: https://readthedocs.org/projects/pyramid/badge/?version=master
        :target: http://docs.pylonsproject.org/projects/pyramid/en/master/
        :alt: Documentation Status
        :alt: Master Documentation Status
.. image:: https://readthedocs.org/projects/pyramid/badge/?version=latest
        :target: http://docs.pylonsproject.org/projects/pyramid/en/latest/
        :alt: Latest Documentation Status
Pyramid is a small, fast, down-to-earth, open source Python web framework.
It makes real-world web application development and
docs/_themes
@@ -1 +1 @@
Subproject commit b14bf8c2a0d95ae8e3d38d07ad3721370ae6f3f8
Subproject commit 382cba80fbd6a7424818d17ec63ca520e485f108
docs/narr/viewconfig.rst
@@ -325,7 +325,7 @@
``match_param``
  This param may be either a single string of the format "key=value" or a
  dict of key/value pairs.
  tuple containing one or more of these strings.
  This argument ensures that the view will only be called when the
  :term:`request` has key/value pairs in its :term:`matchdict` that equal
@@ -334,8 +334,8 @@
  hand side of the expression (``edit``) for the view to "match" the current
  request.
  If the ``match_param`` is a dict, every key/value pair must match for the
  predicate to pass.
  If the ``match_param`` is a tuple, every key/value pair must match
  for the predicate to pass.
  If ``match_param`` is not supplied, the view will be invoked without
  consideration of the keys and values in ``request.matchdict``.