summaryrefslogtreecommitdiff
path: root/docs/glossary.rst
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2013-09-08 22:52:54 -0400
committerChris McDonough <chrism@plope.com>2013-09-08 22:52:54 -0400
commitc6601f77f91dc933ca429d1448f4c6b27857b608 (patch)
tree2bfcccd8bcfedd224409dc8b49f1f05d3ce0f819 /docs/glossary.rst
parent95e97113b3fe108a1dbf908ae6716b89e786c91d (diff)
downloadpyramid-c6601f77f91dc933ca429d1448f4c6b27857b608.tar.gz
pyramid-c6601f77f91dc933ca429d1448f4c6b27857b608.tar.bz2
pyramid-c6601f77f91dc933ca429d1448f4c6b27857b608.zip
- The ``renderer_globals_factory`` argument to the
``pyramid.config.Configurator` constructor and its ``setup_registry`` method has been removed. The ``set_renderer_globals_factory`` method of ``pyramid.config.Configurator`` has also been removed. The (internal) ``pyramid.interfaces.IRendererGlobals`` interface was also removed. These arguments, methods and interfaces had been deprecated since 1.1. Use a ``BeforeRender`` event subscriber as documented in the "Hooks" chapter of the Pyramid narrative documentation instead of providing renderer globals values to the configurator.
Diffstat (limited to 'docs/glossary.rst')
-rw-r--r--docs/glossary.rst7
1 files changed, 3 insertions, 4 deletions
diff --git a/docs/glossary.rst b/docs/glossary.rst
index 8ade889a3..7dc69c7c4 100644
--- a/docs/glossary.rst
+++ b/docs/glossary.rst
@@ -798,9 +798,8 @@ Glossary
:term:`Internationalization`.
renderer globals
- Values injected as names into a renderer based on application
- policy. See :ref:`adding_renderer_globals` for more
- information.
+ Values injected as names into a renderer by a
+ :class:`pyramid.event.BeforeRender` event.
response callback
A user-defined callback executed by the :term:`router` at a
@@ -1021,4 +1020,4 @@ Glossary
add-on
A Python :term:`distribution` that uses Pyramid's extensibility
to plug into a Pyramid application and provide extra,
- configurable services. \ No newline at end of file
+ configurable services.