summaryrefslogtreecommitdiff
path: root/docs/api/flash.rst
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2010-12-22 18:27:07 -0500
committerChris McDonough <chrism@plope.com>2010-12-22 18:27:07 -0500
commit319793d9b3d127ba2a9245713ef4f01b32918e95 (patch)
tree651a3ec0365c68d947938265bd5a9223a8d24d86 /docs/api/flash.rst
parent5801195412d2c809182304d09cc2860c61c6cc93 (diff)
downloadpyramid-319793d9b3d127ba2a9245713ef4f01b32918e95.tar.gz
pyramid-319793d9b3d127ba2a9245713ef4f01b32918e95.tar.bz2
pyramid-319793d9b3d127ba2a9245713ef4f01b32918e95.zip
- Added CSRF token generation, as described in the narrative chapter entitled
"Preventing Cross-Site Request Forgery Attacks".
Diffstat (limited to 'docs/api/flash.rst')
-rw-r--r--docs/api/flash.rst36
1 files changed, 0 insertions, 36 deletions
diff --git a/docs/api/flash.rst b/docs/api/flash.rst
deleted file mode 100644
index 94907958d..000000000
--- a/docs/api/flash.rst
+++ /dev/null
@@ -1,36 +0,0 @@
-.. _flash_module:
-
-:mod:`pyramid.flash`
---------------------
-
-Flash Category Constants
-~~~~~~~~~~~~~~~~~~~~~~~~
-
-The following attributes represent constants for use as flash messaging
-category values (see :ref:`flash_chapter`).
-
-.. attribute:: DEBUG
-
- An alternate spelling for the string ``debug``. Represents development
- debug messages.
-
-.. attribute:: INFO
-
- An alternate spelling for the string ``info``. Represents messages that
- are informational for user consumption.
-
-.. attribute:: SUCCESS
-
- An alternate spelling for the string ``success``. Represents messages that
- tell the user about a successful action.
-
-.. attribute:: WARNING
-
- An alternate spelling for the string ``warning``. Represents messages
- that tell the user about a condition that is not a success, but is neither
- an error.
-
-.. attribute:: ERROR
-
- An alternate spelling for the string ``success``. Represents messages
- that tell the user about an unsuccessful action.