Changeset 3191
- Timestamp:
- 06/21/06 18:06:24 (2 years ago)
- Files:
-
- django/trunk/docs/fastcgi.txt (modified) (1 diff)
- django/trunk/docs/request_response.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/fastcgi.txt
r3175 r3191 4 4 5 5 Although the current preferred setup for running Django is Apache_ with 6 `mod_python`_, many people use shared hosting, on which FastCGI _is the only6 `mod_python`_, many people use shared hosting, on which FastCGI is the only 7 7 viable option. In some setups, FastCGI also allows better security -- and, 8 8 possibly, better performance -- than mod_python. django/trunk/docs/request_response.txt
r3164 r3191 50 50 dictionary -- if, say, a form is requested via the POST HTTP method but 51 51 does not include form data. Therefore, you shouldn't use ``if request.POST`` 52 to check for use of the POST method; instead, check `method`_. 52 to check for use of the POST method; instead, use ``if reuqest.method == 53 "POST"`` (see above). 53 54 54 55 Note: ``POST`` does *not* include file-upload information. See ``FILES``.
