Django

Code

root/django/trunk/django/http/__init__.py


Mode:

Legend:

Added
Modified
Copied or renamed
Rev Chgset Date Author Log Message
(edit) @8705 [8705] 08/29/08 11:49:19 jacob Fixed #8278: fixed QueryDict.update(QueryDict). Thanks, julien.
(edit) @8666 [8666] 08/28/08 11:18:32 jacob Fixed an inconsistancy in redirects with META['SERVER_PORT'] being …
(edit) @8490 [8490] 08/23/08 12:28:12 mtredinnick Fixed #7494 -- Fixed build_absolute_url() for some types of (uncommon) …
(edit) @8460 [8460] 08/21/08 08:55:21 mtredinnick Fixed #7233 -- Ensured that QueryDict? classes are always unpicklable. …
(edit) @8202 [8202] 08/03/08 14:55:26 gwilson Fixed #8092, #3828 -- Removed dictionary access for request objects so …
(edit) @8015 [8015] 07/21/08 02:57:10 mtredinnick Changed/fixed the way Django handles SCRIPT_NAME and PATH_INFO …
(edit) @7995 [7995] 07/19/08 14:37:55 mtredinnick Revert [7991] - [7993]. I was committing from the wrong branch. Sorry …
(edit) @7991 [7991] 07/19/08 14:32:01 mtredinnick First part of setting request.path correctly. Still needs: - testing …
(edit) @7814 [7814] 07/01/08 10:10:51 jacob Fixed #2070: refactored Django's file upload capabilities. A description …
(edit) @7334 [7334] 03/20/08 02:16:16 mtredinnick Fixed #6616 -- Added an is_ajax() method to HttpRequest that uses the de …
(edit) @7257 [7257] 03/17/08 08:49:04 mtredinnick Fixed #6764 -- Added some error checking around cookie decoding. …
(edit) @7205 [7205] 03/07/08 21:46:33 gwilson A few styling fixes.
(edit) @7204 [7204] 03/07/08 21:31:42 gwilson Fixed #6657 -- Don't set secure attribute on cookie if secure=False is …
(edit) @7167 [7167] 02/27/08 01:58:00 mtredinnick Removed an unnecessary default argument in one deepcopy() method and …
(edit) @6927 [6927] 12/17/07 02:05:51 mtredinnick Fixed #5956 -- Added a better error description for non-ASCII HTTP …
(edit) @6895 [6895] 12/05/07 03:28:56 mtredinnick Fixed #6063 -- Caught one place in HttpResponse that was not returning a …
(edit) @6662 [6662] 11/10/07 21:55:44 mtredinnick Fixed #5898 -- Changed a few response processing paths to make things …
(edit) @6549 [6549] 10/20/07 02:01:12 mtredinnick Fixed #5562 -- Changed settings of Expires heading when expiring a cookie …
(edit) @6548 [6548] 10/20/07 01:50:16 mtredinnick Fixed #4969 -- Changed content retrieval in HttpResponse to be more robust …
(edit) @6546 [6546] 10/20/07 00:58:48 mtredinnick Changed the way we handle HTTP headers internally so that they …
(edit) @6537 [6537] 10/19/07 22:32:21 mtredinnick Changed HttpResponse.get() to lower case the header value before looking …
(edit) @6449 [6449] 10/03/07 17:21:43 mtredinnick Fixed #4986 -- Fixed a logic bug from [6166].
(edit) @6296 [6296] 09/15/07 12:46:03 mtredinnick Added a get_host() method to HttpRequest. There is still an …
(edit) @6235 [6235] 09/14/07 17:33:56 jacob Added more dict-like methods to HttpResponse as part of the …
(edit) @6225 [6225] 09/14/07 16:53:13 jacob Backwards-incompatible change: renamed HttpResponse.headers to …
(edit) @6221 [6221] 09/14/07 16:41:48 jacob Fixed the breakage in [6164] in a different, better way: HttpResponse now …
(edit) @6212 [6212] 09/14/07 15:34:29 jacob Fixed #2970: made HttpResponse headers case-insensitive. Thanks to …
(edit) @6211 [6211] 09/14/07 14:55:24 jacob Fixed #5445: added some compatibility code for the lack of iter in …
(edit) @6167 [6167] 09/14/07 00:39:59 mtredinnick Fixed a typo from [6164].
(edit) @6166 [6166] 09/14/07 00:39:42 mtredinnick Fixed #4986 -- Improved get_host() host detection. Thanks, SmileyChris?.
(edit) @6164 [6164] 09/14/07 00:28:00 mtredinnick Fixed #987 -- Convert relative URI portions into absolute URIs in HTTP …
(edit) @6098 [6098] 09/11/07 09:04:40 russellm Refs #5138 -- Refactored implementation of contains in HttpRequest
(edit) @6097 [6097] 09/11/07 08:36:09 russellm Fixed #5318 -- Added contains method to HttpRequest, mirroring …
(edit) @5874 [5874] 08/12/07 07:02:08 mtredinnick Fixed #4947 -- Avoid displaying uploaded file contents in the debug web …
(edit) @5873 [5873] 08/12/07 07:01:31 mtredinnick Clarified the reasoning in a comment.
(edit) @5844 [5844] 08/11/07 04:37:42 mtredinnick Fixed #3526 -- Added content_type as an alias for mimetype to the …
(edit) @5644 [5644] 07/11/07 01:55:12 mtredinnick Fixed #4815 -- Fixed decoding of request parameters when the input …
(edit) @5609 [5609] 07/04/07 07:11:04 mtredinnick Merged Unicode branch into trunk (r4952:5608). This should be …
(edit) @5554 [5554] 06/27/07 08:02:38 mtredinnick Added a parameter to HttpResponse's constructor to enable explicit status …
(edit) @5511 [5511] 06/22/07 02:15:04 mtredinnick Backed out the changes in [5482] for a bit whilst some more investigation …
(edit) @5482 [5482] 06/17/07 02:11:37 mtredinnick Fixed #4565 -- Changed template rendering to use iterators, rather …
(edit) @5289 [5289] 05/19/07 13:34:00 mtredinnick Fixed #4337 -- Added pop() method to QueryDict?. Thanks, Gary Wilson.
(edit) @5187 [5187] 05/11/07 03:22:06 mtredinnick Fixed #4270 -- Don't permit deleting of items from an immutable …
(edit) @5091 [5091] 04/26/07 08:30:48 mtredinnick Fixed #4040 -- Changed uses of has_key() to "in". Slight …
(edit) @4866 [4866] 03/30/07 01:48:19 mtredinnick Fixed #3875 -- Added HttpResponseBadRequest?. Thanks, Scott Barr.
(edit) @4865 [4865] 03/30/07 01:46:36 mtredinnick Refactored the HttpResponse sub-classes so that adding a subclass that …
(edit) @4615 [4615] 02/26/07 12:52:15 jacob Fixed another Python 2.3 bug (this one on django.http.parse_file_upload). …
(edit) @4486 [4486] 02/11/07 17:50:35 mtredinnick Revert [4485] in order to fix accidental mod_python breakage. Refs #2920.
(edit) @4485 [4485] 02/11/07 00:20:52 russellm Refs #2920 -- Replaced implicit uses of _() with explicit imports or calls …
(edit) @4472 [4472] 02/09/07 21:56:21 adrian Fixed #3437 -- Fixed incorrect logic in django.http.HttpResponse
(edit) @4135 [4135] 11/29/06 10:44:10 adrian Fixed #3080 -- Fixed bug in delete_cookie() method. Thanks, nowell strite
(edit) @3791 [3791] 09/22/06 07:32:00 mtredinnick Fixed #2560 -- Add close() support to HttpResponse iterators. Thanks, …
(edit) @3545 [3545] 08/09/06 10:40:24 adrian Fixed #2503 -- Fixed HttpResponse.delete_cookie() to work properly. It now …
(edit) @3410 [3410] 07/21/06 11:20:22 jacob Fixed #2092: added a "is_secure()" method to HttpRequest which correctly …
(edit) @3166 [3166] 06/19/06 23:06:16 adrian Fixed #2078 -- Improved HttpResponseRedirect? and …
(edit) @3164 [3164] 06/19/06 22:48:31 adrian Added 'method' attribute to HttpRequest objects
(edit) @3144 [3144] 06/18/06 21:04:37 mtredinnick Fixed #1646 -- Added HttpResponseNotAllowed?, as suggested by Ian Holsman.
(copy) @2809 [2809] 05/01/06 20:31:56 adrian MERGED MAGIC-REMOVAL BRANCH TO TRUNK. This change is highly …
copied from django/branches/magic-removal/django/http/__init__.py:
(edit) @2676 [2676] 04/11/06 08:45:15 adrian magic-removal: Merged to [2675]
Note: See TracRevisionLog for help on using the revision log.