summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/api/viewderivers.rst16
-rw-r--r--docs/narr/hooks.rst9
2 files changed, 19 insertions, 6 deletions
diff --git a/docs/api/viewderivers.rst b/docs/api/viewderivers.rst
new file mode 100644
index 000000000..a4ec107b6
--- /dev/null
+++ b/docs/api/viewderivers.rst
@@ -0,0 +1,16 @@
+.. _viewderivers_module:
+
+:mod:`pyramid.viewderivers`
+---------------------------
+
+.. automodule:: pyramid.viewderivers
+
+ .. attribute:: INGRESS
+
+ Constant representing the request ingress, for use in ``under``
+ arguments to :meth:`pyramid.config.Configurator.add_view_deriver`.
+
+ .. attribute:: MAPPED_VIEW
+
+ Constant representing the closest view deriver, for use in ``over``
+ arguments to :meth:`pyramid.config.Configurator.add_view_deriver`.
diff --git a/docs/narr/hooks.rst b/docs/narr/hooks.rst
index a32e94d1a..3a1ad8363 100644
--- a/docs/narr/hooks.rst
+++ b/docs/narr/hooks.rst
@@ -1580,12 +1580,6 @@ There are several built-in view derivers that :app:`Pyramid` will automatically
apply to any view. Below they are defined in order from furthest to closest to
the user-defined :term:`view callable`:
-``authdebug_view``
-
- Used to output useful debugging information when
- ``pyramid.debug_authorization`` is enabled. This element is a no-op
- otherwise.
-
``secured_view``
Enforce the ``permission`` defined on the view. This element is a no-op if no
@@ -1593,6 +1587,9 @@ the user-defined :term:`view callable`:
default permission was assigned via
:meth:`pyramid.config.Configurator.set_default_permission`.
+ This element will also output useful debugging information when
+ ``pyramid.debug_authorization`` is enabled.
+
``owrapped_view``
Invokes the wrapped view defined by the ``wrapper`` option.