summaryrefslogtreecommitdiff
path: root/docs/topics/http
AgeCommit message (Collapse)Author
2016-06-04[1.9.x] Used snippet directive in file upload example.Berker Peksag
Backport of b9c04801d4b9ad37bd062cbca1a521eaf4047aa8 from master
2016-06-03[1.9.x] Fixed #26604 -- Added a multiple file upload example to ↵Berker Peksag
topics/http/file-uploads.txt. Backport of 54febdb8be7c9793caae9c781f4d6b7cbbdcd900 from master
2016-06-03[1.9.x] Fixed #26021 -- Applied hanging indentation to docs.Ed Henderson
Backport of 4a4d7f980e2a66756e1e424f7648dcd28ff765b7 from master
2016-05-31[1.9.x] Fixed #26503 -- Removed an outdated example from session docs.Berker Peksag
Backport of 698c8dfc2a5c5865a8bb163c1ae70b75d53e6415 from master
2016-05-28[1.9.x] Refs #22634 -- Removed unneeded app_label in custom session engine ↵Tim Graham
example. Backport of cc0d1eaaea40dc9d784c6974be1ce631a2087c11 from master
2016-05-07[1.9.x] Fixed a typo in docs/topics/http/urls.txtMatthias K
Backport of 8b2fce0f70f41518a4d20ee1c27f42fd7ad64bf4 from master
2016-04-20[1.9.x] Fixed #26520 -- Fixed a regression where SessionBase.pop() didn't ↵Tobias Kroenke
return a KeyError. Backport of b040ac06ebba2348cece7390b88f746d2c91d07b from master
2016-02-01[1.9.x] Fixed #26124 -- Added missing code formatting to docs headers.Tim Graham
Backport of a6ef025dfb2a1d1bd23893408eef6d066fb506d9 from master
2016-01-29[1.9.x] Added a missing session setting in docs.Tim Graham
Backport of 9a5c94588e20e51c0c1b3fd50a2ca2716876b195 from master
2016-01-22[1.9.x] Fixed #26020 -- Normalized header stylings in docs.Elif T. Kus
Backport of bca9faae95db2a92e540fbd08505c134639916fe from master
2015-12-23[1.9.x] Refs #25963 -- Fixed typo in docs/topics/http/shortcuts.txtAlasdair Nicol
Backport of 28d05a4c195e2e01cdbc1435d58b44ece5ccc170 from master
2015-12-23[1.9.x] Fixed #25854 -- Removed deprecated usage of template.render() with ↵Alasdair Nicol
RequestContext in docs. Backport of 32c7d93e5f0638c5a1ec8e2525c967be444fcef1 from master
2015-12-23[1.9.x] Fixed #25969 -- Replaced render_to_response() with render() in docs ↵Tim Graham
examples. Backport of 4d83b0163e15f8352fd17fa121e929842ff2b686 from master
2015-12-22[1.9.x] Fixed #25963 -- Clarified render_to_response() context_instance ↵Tim Graham
deprecation.
2015-12-03[1.9.x] Fixed many spelling mistakes in code, comments, and docs.Josh Soref
Backport of 93452a70e8a62c7408eeded444f5088d4a26212d from master
2015-12-01[1.9.x] Fixed #25778 -- Updated docs links to use https when available.Jon Dufresne
Backport of 7aabd6238028f4bb78d0687bbccc97bcf634e28b from master
2015-11-16[1.9.x] Fixed #25755 -- Unified spelling of "website".Agnieszka Lasyk
Backport of 1f8dad69158a96d0649d321ce08ecc9c0465f962 from master
2015-08-31Clarified 404.html usage, excplicitly stated that it's used when DEBUG is FalseDavid Sanders
Thanks to Keryn Knight, Curtis Maloney and Tim Graham for their reviews.
2015-08-27Fixed #22634 -- Made the database-backed session backends more extensible.Sergey Kolosov
Introduced an AbstractBaseSession model and hooks providing the option of overriding the model class used by the session store and the session store class used by the model.
2015-08-27Removed historical note about session serialization.Tim Graham
2015-08-18Used consistent capitalization and hyphenation of "class-based views" in docs.Anton Strogonoff
2015-08-08Updated Wikipedia links to use httpsClaude Paroz
2015-07-27Fixed #25159 -- Removed brackets from class/function/method signatures in docs.Tim Graham
Thanks hellbeast for the initial patch.
2015-07-27Fixed #24127 -- Changed the default current_app to the current namespace.Marten Kenbeek
Changed the url template tag to use request.resolver_match.namespace as a default for the current_app argument if request.current_app is not set.
2015-06-24Renamed RemovedInDjangoXYWarnings for new roadmap.Tim Graham
Forwardport of ae1d663b7913f6da233c55409c4973248372d302 from stable/1.8.x plus more.
2015-06-20Fixed #14200 -- Added a fallback if HttpRequest.urlconf is None.Marten Kenbeek
Made BaseHandler fall back to settings.ROOT_URLCONF if HttpRequest.urlconf is set to None, rather than raising ImproperlyConfigured.
2015-06-08Fixed #21927 -- Made application and instance namespaces more distinct.Marten Kenbeek
Made URL application namespaces be set in the included URLconf and instance namespaces in the call to include(). Deprecated other ways to set application and instance namespaces.
2015-06-08Fixed #24796 -- Added a hint on placement of SecurityMiddleware in ↵Marissa Zhou
MIDDLEWARE_CLASSES. Also moved it in the project template.
2015-05-25Fixed typos in HTTP decorator docs.I am Clinton
2015-05-17Fixed typo in docs/topics/http/sessions.txtTim Graham
2015-05-14Minor edits to docs/topics/http/urls.txtI am Clinton
2015-05-08Fixed #24763 -- Moved DoesNotExist exception to model docs.David Krisch
2015-04-28Fixed #13008 -- Added more Cache-Control headers to never_cache() decorator.Markus Bertheau
2015-04-24Fixed #24700 -- Added dash to slug regex in http docsMarcus Pennington
2015-04-24Updated startproject MIDDLEWARE_CLASSES in docs.Daniel Harding
2015-04-13Fixed #24621 -- Fixed and documented SessionBase.pop's second argumentAdam Zapletal
Changed SessionBase.pop's second argument to explicitly be default=None rather than *args since _session is always a dict. Thanks gabor for the report and Tim Graham for the review.
2015-03-23Fixed #13525 -- Added tests and docs for nested parameters in URL patterns.Bas Peschier
When reversing, only outer parameters are used if captured parameters are nested. Added tests to check the edge cases and documentation for the behavior with an example to avoid it.
2015-02-03Fixed #24149 -- Normalized tuple settings to lists.darkryder
2015-02-03Fixed #24168 -- Allowed selecting a template engine in a few APIs.Aymeric Augustin
Specifically in rendering shortcuts, template responses, and class-based views that return template responses. Also added a test for render_to_response(status=...) which was missing from fdbfc980. Thanks Tim and Carl for the review.
2015-02-01Removed versionadded/changed notes for 1.7.Tim Graham
2015-01-17Removed request.REQUEST per deprecation timeline; refs #18659.Tim Graham
2015-01-16Fixed #24143 -- Encouraged use of Http404 messages for debugging.Keryn Knight
2015-01-10Wrote main documentation for templates.Aymeric Augustin
2014-12-28Deprecated current_app in TemplateResponse and render(_to_response).Aymeric Augustin
2014-12-28Deprecated some arguments of django.shortcuts.render(_to_response).Aymeric Augustin
dictionary and context_instance and superseded by context. Refactored tests that relied context_instance with more modern idioms.
2014-11-27Fixed #14664 -- Logged a warning if MiddlewareNotUsed is raised in DEBUG mode.Berker Peksag
2014-11-23Deprecated dirs argument to override TEMPLATE_DIRS.Aymeric Augustin
Cancels 2f0566fa. Refs #4278.
2014-11-03Fixed versionchanged indentation in docs/.Berker Peksag
2014-10-16Fixed some intersphinx references.Tim Graham
2014-08-26Fixed #17707, #20734 -- Added examples to URL namespacing docs.Tim Graham
Thanks Daniele Procida for review.