summaryrefslogtreecommitdiff
path: root/docs/api
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2013-10-20 16:15:34 -0400
committerChris McDonough <chrism@plope.com>2013-10-20 16:15:34 -0400
commit2a6e6b3776b07589f8bbaaf4c72419f2bdf5e218 (patch)
tree5074ba1d0d378b91b640e234c9c9267fcbe06015 /docs/api
parent6c98b17ed9aadbe485c6473c3f76e1b2b529dc78 (diff)
parent0264cc0c3d4ca091d4d5c8bd0c2fda38a3f8a0c7 (diff)
downloadpyramid-2a6e6b3776b07589f8bbaaf4c72419f2bdf5e218.tar.gz
pyramid-2a6e6b3776b07589f8bbaaf4c72419f2bdf5e218.tar.bz2
pyramid-2a6e6b3776b07589f8bbaaf4c72419f2bdf5e218.zip
Merge branch 'master' into fix.basic-authentication-encodings
Diffstat (limited to 'docs/api')
-rw-r--r--docs/api/exceptions.rst2
-rw-r--r--docs/api/httpexceptions.rst6
-rw-r--r--docs/api/session.rst8
3 files changed, 11 insertions, 5 deletions
diff --git a/docs/api/exceptions.rst b/docs/api/exceptions.rst
index ab158f18d..0c630571f 100644
--- a/docs/api/exceptions.rst
+++ b/docs/api/exceptions.rst
@@ -5,6 +5,8 @@
.. automodule:: pyramid.exceptions
+ .. autoclass:: BadCSRFToken
+
.. autoclass:: PredicateMismatch
.. autoclass:: Forbidden
diff --git a/docs/api/httpexceptions.rst b/docs/api/httpexceptions.rst
index 6a08d1048..b50f10beb 100644
--- a/docs/api/httpexceptions.rst
+++ b/docs/api/httpexceptions.rst
@@ -7,9 +7,9 @@
.. attribute:: status_map
- A mapping of integer status code to exception class (eg. the
- integer "401" maps to
- :class:`pyramid.httpexceptions.HTTPUnauthorized`).
+ A mapping of integer status code to HTTP exception class (eg. the integer
+ "401" maps to :class:`pyramid.httpexceptions.HTTPUnauthorized`). All
+ mapped exception classes are children of :class:`pyramid.httpexceptions`,
.. autofunction:: exception_response
diff --git a/docs/api/session.rst b/docs/api/session.rst
index 31bc196ad..dde9d20e9 100644
--- a/docs/api/session.rst
+++ b/docs/api/session.rst
@@ -5,12 +5,16 @@
.. automodule:: pyramid.session
- .. autofunction:: UnencryptedCookieSessionFactoryConfig
-
.. autofunction:: signed_serialize
.. autofunction:: signed_deserialize
.. autofunction:: check_csrf_token
+ .. autofunction:: SignedCookieSessionFactory
+
+ .. autofunction:: UnencryptedCookieSessionFactoryConfig
+
+ .. autofunction:: BaseCookieSessionFactory
+