summaryrefslogtreecommitdiff
path: root/docs/developer-features.txt
diff options
context:
space:
mode:
authorpjenvey <devnull@localhost>2007-02-01 00:42:28 +0000
committerpjenvey <devnull@localhost>2007-02-01 00:42:28 +0000
commit6588ec61918779ecbb52587a89021df91162d2a0 (patch)
treed33dfb06d9b1c62328d721d9832ff0ddfa5f3b37 /docs/developer-features.txt
parent9292b021de8b35e677e499ae588c0976727754ca (diff)
downloadpaste-6588ec61918779ecbb52587a89021df91162d2a0.tar.gz
o remove paste.pycgiwrapper reference
o mention paste.request, fileapp, httpheaders, auth, wsgiwrappers and registry (thanks eleftherios)
Diffstat (limited to 'docs/developer-features.txt')
-rw-r--r--docs/developer-features.txt17
1 files changed, 14 insertions, 3 deletions
diff --git a/docs/developer-features.txt b/docs/developer-features.txt
index faca9e2..6985ad1 100644
--- a/docs/developer-features.txt
+++ b/docs/developer-features.txt
@@ -27,13 +27,20 @@ Dispatching
Web Application
---------------
-* Run CGI programs as WSGI applications in ``paste.cgiapp`` (and
- Python-specific CGI programs with ``paste.pycgiwrapper``)
+* Easily deal with incoming requests and sending a response in
+ ``paste.wsgiwrappers``
+
+* Work directly with the WSGI environment in ``paste.request``
+
+* Run CGI programs as WSGI applications in ``paste.cgiapp``
* Traverse files and load WSGI applications from ``.py`` files (or
static files), in ``paste.urlparser``
-* Serve static directories of files, also in ``paste.urlparser``
+* Serve static directories of files, also in ``paste.urlparser`` and
+ ``paste.fileapp``
+
+* Handling of request-local module globals sanely in ``paste.registry``
Tools
-----
@@ -41,6 +48,10 @@ Tools
* Catch HTTP-related exceptions (e.g., ``HTTPNotFound``) and turn them
into proper responses in ``paste.httpexceptions``
+* Manage HTTP header fields with ``paste.httpheaders``
+
+* Handle authentication/identification of requests in ``paste.auth``
+
* Create sessions in ``paste.session`` and ``paste.flup_session``
* Gzip responses in ``paste.gzip``