Changeset 3913
- Timestamp:
- 10/23/06 02:46:22 (2 years ago)
- Files:
-
- django/trunk/docs/generic_views.txt (modified) (8 diffs)
- django/trunk/docs/request_response.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/generic_views.txt
r3526 r3913 185 185 186 186 * ``mimetype``: The MIME type to use for the resulting document. Defaults 187 to the value of the ``DEFAULT_ MIME_TYPE`` setting.187 to the value of the ``DEFAULT_CONTENT_TYPE`` setting. 188 188 189 189 * ``allow_future``: A boolean specifying whether to include "future" … … 271 271 272 272 * ``mimetype``: The MIME type to use for the resulting document. Defaults 273 to the value of the ``DEFAULT_ MIME_TYPE`` setting.273 to the value of the ``DEFAULT_CONTENT_TYPE`` setting. 274 274 275 275 * ``allow_future``: A boolean specifying whether to include "future" … … 358 358 359 359 * ``mimetype``: The MIME type to use for the resulting document. Defaults 360 to the value of the ``DEFAULT_ MIME_TYPE`` setting.360 to the value of the ``DEFAULT_CONTENT_TYPE`` setting. 361 361 362 362 * ``allow_future``: A boolean specifying whether to include "future" … … 439 439 440 440 * ``mimetype``: The MIME type to use for the resulting document. Defaults 441 to the value of the ``DEFAULT_ MIME_TYPE`` setting.441 to the value of the ``DEFAULT_CONTENT_TYPE`` setting. 442 442 443 443 * ``allow_future``: A boolean specifying whether to include "future" … … 524 524 525 525 * ``mimetype``: The MIME type to use for the resulting document. Defaults 526 to the value of the ``DEFAULT_ MIME_TYPE`` setting.526 to the value of the ``DEFAULT_CONTENT_TYPE`` setting. 527 527 528 528 * ``allow_future``: A boolean specifying whether to include "future" … … 634 634 635 635 * ``mimetype``: The MIME type to use for the resulting document. Defaults 636 to the value of the ``DEFAULT_ MIME_TYPE`` setting.636 to the value of the ``DEFAULT_CONTENT_TYPE`` setting. 637 637 638 638 * ``allow_future``: A boolean specifying whether to include "future" … … 708 708 709 709 * ``mimetype``: The MIME type to use for the resulting document. Defaults 710 to the value of the ``DEFAULT_ MIME_TYPE`` setting.710 to the value of the ``DEFAULT_CONTENT_TYPE`` setting. 711 711 712 712 **Template name:** … … 820 820 821 821 * ``mimetype``: The MIME type to use for the resulting document. Defaults 822 to the value of the ``DEFAULT_ MIME_TYPE`` setting.822 to the value of the ``DEFAULT_CONTENT_TYPE`` setting. 823 823 824 824 **Template name:** django/trunk/docs/request_response.txt
r3545 r3913 342 342 ------- 343 343 344 ``__init__(content='', mimetype=DEFAULT_ MIME_TYPE)``344 ``__init__(content='', mimetype=DEFAULT_CONTENT_TYPE)`` 345 345 Instantiates an ``HttpResponse`` object with the given page content (a 346 string) and MIME type. The ``DEFAULT_ MIME_TYPE`` is ``'text/html'``.346 string) and MIME type. The ``DEFAULT_CONTENT_TYPE`` is ``'text/html'``. 347 347 348 348 ``content`` can be an iterator or a string. If it's an iterator, it should
