summaryrefslogtreecommitdiff
path: root/docs/glossary.rst
diff options
context:
space:
mode:
authorChris McDonough <chrism@agendaless.com>2008-07-26 06:21:00 +0000
committerChris McDonough <chrism@agendaless.com>2008-07-26 06:21:00 +0000
commit649923746d5a1e8d3d3487640d99903fd0169c08 (patch)
tree3072e24db94312ade5b80d562b977a2a72a59425 /docs/glossary.rst
parent7f4c9865b0def48df1c6dfeb842f93a8b0f21259 (diff)
downloadpyramid-649923746d5a1e8d3d3487640d99903fd0169c08.tar.gz
pyramid-649923746d5a1e8d3d3487640d99903fd0169c08.tar.bz2
pyramid-649923746d5a1e8d3d3487640d99903fd0169c08.zip
Tweaks.
Diffstat (limited to 'docs/glossary.rst')
-rw-r--r--docs/glossary.rst17
1 files changed, 15 insertions, 2 deletions
diff --git a/docs/glossary.rst b/docs/glossary.rst
index 8251133b3..b42d2cc7e 100644
--- a/docs/glossary.rst
+++ b/docs/glossary.rst
@@ -122,5 +122,18 @@ Glossary
deployment system developed by Ian Bicking.
LXML
`lxml <http://codespeak.net/lxml/>`_ is a XML processing library
- for Python.
-
+ for Python by Martijn Faassen and others.
+ z3c.pt
+ `z3c.pt <http://pypi.python.org/pypi/z3c.pt>`_ is an
+ implementation of the `Zope Page Template
+ <http://wiki.zope.org/ZPT/FrontPage>`_ templating language by
+ Malthe Borch. It has serveral extensions, such as the ability
+ to use bracketed- ``${name}`` syntax. It is also much faster
+ than the reference implementation of ZPT.
+ Routes
+ A `system by Ben Bangert <http://routes.groovie.org/>`_ which
+ parses URLs and compares them against a number of user defined
+ mappings. In terms of :mod:`repoze.bfg`, a Route can supplant
+ graph traversal when deciding which *view* should be called. See
+ :ref:`urldispatch_module` for more information about (optional)
+ Routes integration in bfg.