summaryrefslogtreecommitdiff
path: root/docs/glossary.rst
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2011-01-03 03:10:15 -0500
committerChris McDonough <chrism@plope.com>2011-01-03 03:10:15 -0500
commit5653d13e554433adf34fd81b2c6593a54e7c4ea1 (patch)
tree4729e7ff7778d05c5d4f73818343b7bd70fb8b09 /docs/glossary.rst
parent83373586ea80ea5057da5fc4ede43278af47a318 (diff)
downloadpyramid-5653d13e554433adf34fd81b2c6593a54e7c4ea1.tar.gz
pyramid-5653d13e554433adf34fd81b2c6593a54e7c4ea1.tar.bz2
pyramid-5653d13e554433adf34fd81b2c6593a54e7c4ea1.zip
- Add a new API ``pyramid.url.current_route_url``, which computes a URL based
on the "current" route (if any) and its matchdict values.
Diffstat (limited to 'docs/glossary.rst')
-rw-r--r--docs/glossary.rst5
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/glossary.rst b/docs/glossary.rst
index ce2d77d8d..890f7e837 100644
--- a/docs/glossary.rst
+++ b/docs/glossary.rst
@@ -857,3 +857,8 @@ Glossary
view argument and return value mapping. This is a plug point for
extension builders, not normally used by "civilians".
+ matchdict
+ The dictionary attached to the :term:`request` object as
+ ``request.matchdict`` when a :term:`URL dispatch` route has been matched.
+ Its keys are names as identified within the route pattern; its values are
+ the values matched by each pattern name.