Changeset 55
- Timestamp:
- 07/15/05 11:52:08 (3 years ago)
- Files:
-
- django/trunk/django/core/exceptions.py (modified) (1 diff)
- django/trunk/django/core/xheaders.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/core/exceptions.py
r3 r55 1 "Global CMSexceptions"1 "Global Django exceptions" 2 2 3 3 from django.core.template import SilentVariableFailure django/trunk/django/core/xheaders.py
r3 r55 1 1 """ 2 Some pages in our CMSare served up with custom HTTP headers containing useful3 information about those pages -- namely, the content type and object ID.2 Pages in Django can are served up with custom HTTP headers containing useful 3 information about those pages -- namely, the content type and object ID. 4 4 5 5 This module contains utility functions for retrieving and doing interesting 6 6 things with these special "X-Headers" (so called because the HTTP spec demands 7 that custom headers are prefxed with "X-" .)7 that custom headers are prefxed with "X-"). 8 8 9 9 Next time you're at slashdot.org, watch out for X-Fry and X-Bender. :)
