summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorBen Bangert <ben@groovie.org>2010-11-16 10:46:23 -0800
committerBen Bangert <ben@groovie.org>2010-11-16 10:46:23 -0800
commitae60bafb11bcf3a85a8ed3c78b8fc57961e8c3b6 (patch)
tree9b0da66955d2c0d7d7a74c9d5c628cb4851babfc /docs
parent36c1596c229bbaf7745c2a1f2c4dfcfdefb5535d (diff)
downloadpyramid-ae60bafb11bcf3a85a8ed3c78b8fc57961e8c3b6.tar.gz
pyramid-ae60bafb11bcf3a85a8ed3c78b8fc57961e8c3b6.tar.bz2
pyramid-ae60bafb11bcf3a85a8ed3c78b8fc57961e8c3b6.zip
- Added Mako TemplateLookup settings for ``mako.error_handler``,
``mako.default_filters``, and ``mako.imports``.
Diffstat (limited to 'docs')
-rw-r--r--docs/narr/environment.rst48
1 files changed, 48 insertions, 0 deletions
diff --git a/docs/narr/environment.rst b/docs/narr/environment.rst
index 2aa4064cd..6df0998d6 100644
--- a/docs/narr/environment.rst
+++ b/docs/narr/environment.rst
@@ -201,6 +201,54 @@ should be changed accordingly.
| |
+-----------------------------+
+Mako Error Handler
+++++++++++++++++++
+
+Python callable which is called whenever Mako compile or runtime exceptions
+occur. The callable is passed the current context as well as the exception. If
+the callable returns True, the exception is considered to be handled, else it
+is re-raised after the function completes. Is used to provide custom
+error-rendering functions.
+
++-----------------------------+
+| Config File Setting Name |
++=============================+
+| ``mako.error_handler`` _ |
+| |
+| |
+| |
++-----------------------------+
+
+Mako Default Filters
+++++++++++++++++++++
+
+List of string filter names that will be applied to all Mako expressions.
+
++-----------------------------+
+| Config File Setting Name |
++=============================+
+| ``mako.default_filters`` _ |
+| |
+| |
+| |
++-----------------------------+
+
+Mako Import
++++++++++++
+
+String list of Python statements, typically individual “import” lines, which
+will be placed into the module level preamble of all generated Python modules.
+
+
++-----------------------------+
+| Config File Setting Name |
++=============================+
+| ``mako.imports``________ _ |
+| |
+| |
+| |
++-----------------------------+
+
Examples
--------