summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorianb <devnull@localhost>2006-03-13 03:36:35 +0000
committerianb <devnull@localhost>2006-03-13 03:36:35 +0000
commit2f73592d856d62d69ac1787db29f01ca94ccdfdb (patch)
tree3124b471d329b2cc9bf62b2437188649d5b9d839 /docs
parentdc01a06001c07131c58204650b453ccf07165b57 (diff)
downloadpaste-2f73592d856d62d69ac1787db29f01ca94ccdfdb.tar.gz
Added a get_cookie_headers function; added a dictionary-like object that dynamically reads headers from the WSGI environment; altered request object to cache a little less (still more to remove); made urlvars a request value
Diffstat (limited to 'docs')
-rw-r--r--docs/do-it-yourself-framework.txt16
1 files changed, 16 insertions, 0 deletions
diff --git a/docs/do-it-yourself-framework.txt b/docs/do-it-yourself-framework.txt
index 35bcded..42210b1 100644
--- a/docs/do-it-yourself-framework.txt
+++ b/docs/do-it-yourself-framework.txt
@@ -7,6 +7,10 @@ A Do-It-Yourself Framework
.. contents::
+.. comments:
+
+ Explain SCRIPT_NAME/PATH_INFO better
+
Introduction and Audience
=========================
@@ -453,6 +457,18 @@ Easy! But let's make it *more* fancy...
So go make an error now. And hit the little +'s. And type stuff in
to the boxes.
+Configuration
+=============
+
+Now that you've created your framework and application (I'm sure it's
+much nicer than the one I've given so far) you might find the manually
+plugging together of some of these pieces a little crude. Well, if
+*you* don't, anyone else who uses your app and wants to install it in
+a different location or configure it differently won't be as happy.
+
+So, we want to separate the application setup from the application
+configuration.
+
What's Next?
============