summaryrefslogtreecommitdiff
path: root/docs/topics/http
AgeCommit message (Collapse)Author
2017-11-01[2.0.x] Fixed #28741 -- Removed unnecessary leading dot from cross-domain ↵Tim Graham
cookie examples. Backport of afd375fc343baa46e61036087bc43b3d096bb0ca from master
2017-10-30[2.0.x] Fixed 'a'/'an' mix-ups in docs.Ville Skyttä
Backport of 617686e226231fe8ad3f2e49d3efabf6f5f434d3 from master
2017-09-25[2.0.x] Fixed #28627 -- Added slug converter to some path() examples in docs.Christopher Schäpers
Backport of 6da140724dba546d2f3aced1308e617747b0385c from master
2017-09-20Fixed #28593 -- Added a simplified URL routing syntax per DEP 0201.Sjoerd Job Postmus
Thanks Aymeric Augustin for shepherding the DEP and patch review. Thanks Marten Kenbeek and Tim Graham for contributing to the code. Thanks Tom Christie, Shai Berger, and Tim Graham for the docs.
2017-06-26Refs #23919 -- Stopped inheriting from object to define new style classes.Mariusz Felisiak
Tests and docs complement to cecc079168e8669138728d31611ff3a1e7eb3a9f.
2017-05-22Updated various links in docs to avoid redirectsClaude Paroz
Thanks Tim Graham and Mariusz Felisiak for review and completion.
2017-05-20Pointed Dive into Python links to python3 siteMichiel Beijen
The old site handles python2, and is thus no longer relevant for Django. Also I pointed the search path links to the proper sections.
2017-02-11Fixed #27367 -- Doc'd and tested reversing of URLs with the same name.Robert Roskam
Thanks Reinout van Rees for contributing to the patch.
2017-02-11Fixed #25978 -- Deprecated shorcuts.render_to_response().Tim Graham
2017-01-25Refs #23919 -- Replaced super(ClassName, self) with super() in docs.chillaranand
2017-01-17Removed versionadded/changed annotations for 1.10.Tim Graham
2017-01-17Refs #26601 -- Removed support for old-style middleware using ↵Tim Graham
settings.MIDDLEWARE_CLASSES.
2016-10-14Fixed #27349 -- Doc'd the CSRF_FAILURE_VIEW setting in view topic guide.David D Lowe
2016-08-19Replaced old DateTimeAwareJSONEncoder with DjangoJSONEncoder in docs.Brightcells
2016-08-11Documented the cache_control() decorator.Kevin Christopher Henry
2016-08-09Fixed #27041 -- Documented that built-in middleware are compatible with ↵Ville Skyttä
MIDDLEWARE and MIDDLEWARE_CLASSES.
2016-07-22Fixed #18348 -- Documented SesssionStore.create()Preetham Nosum
2016-07-12Fixed #26831 -- Documented session data must be JSON encodable for ↵Md. Sadaf Noor
JSONSerializer.
2016-06-17Added urlpatterns variable in docs/topics/http/urls.txt.Trey Hunner
2016-06-17Refs #26601 -- Improved backwards-compatibility of DEP 5 middleware ↵Carl Meyer
exception handling.
2016-06-09Fixed #21588 -- Corrected handler initialization in "modifying upload ↵Berker Peksag
handlers" example.
2016-06-04Used snippet directive in file upload example.Berker Peksag
2016-06-03Fixed #26604 -- Added a multiple file upload example to ↵Berker Peksag
topics/http/file-uploads.txt.
2016-06-03Fixed #26021 -- Applied hanging indentation to docs.Ed Henderson
2016-05-31Fixed #26503 -- Removed an outdated example from session docs.Berker Peksag
2016-05-28Refs #22634 -- Removed unneeded app_label in custom session engine example.Tim Graham
2016-05-20Removed versionadded/changed annotations for 1.9.Tim Graham
2016-05-17Fixed #26601 -- Improved middleware per DEP 0005.Florian Apolloner
Thanks Tim Graham for polishing the patch, updating the tests, and writing documentation. Thanks Carl Meyer for shepherding the DEP.
2016-05-11Refs #26052 -- Corrected a sentence for conditional_content_removal() removal.Tim Graham
2016-05-07Fixed a typoMatthias K
2016-04-20Fixed #26520 -- Fixed a regression where SessionBase.pop() didn't return a ↵Tobias Kroenke
KeyError.
2016-04-04Fixed #26452 -- Loaded middleware on server start rather than on first request.David Evans
2016-02-01Fixed #26124 -- Added missing code formatting to docs headers.rowanv
2016-01-29Added a missing session setting in docs.Tim Graham
2016-01-22Fixed #26020 -- Normalized header stylings in docs.Elif T. Kus
2015-12-31Fixed #26013 -- Moved django.core.urlresolvers to django.urls.Marten Kenbeek
Thanks to Tim Graham for the review.
2015-12-23Refs #25963 -- Fixed typo in docs/topics/http/shortcuts.txtAlasdair Nicol
2015-12-23Fixed #25854 -- Removed deprecated usage of template.render() with ↵Alasdair Nicol
RequestContext in docs.
2015-12-23Fixed #25969 -- Replaced render_to_response() with render() in docs examples.Tim Graham
2015-12-03Fixed many spelling mistakes in code, comments, and docs.Josh Soref
2015-12-01Fixed #25778 -- Updated docs links to use https when available.Jon Dufresne
2015-11-16Fixed #25755 -- Unified spelling of "website".Agnieszka Lasyk
2015-09-23Removed versionadded/changed annotations for 1.8.Tim Graham
2015-09-23Removed dictionary and context_instance parameters for render functions.Tim Graham
Per deprecation timeline.
2015-09-23Removed dirs parameter in template engine methods and related funtions.Tim Graham
Per deprecation timeline.
2015-09-23Removed current_app argument to render() and TemplateResponse().Tim Graham
Per deprecation timeline.
2015-09-23Refs #23957 -- Required session verification per deprecation timeline.Tim Graham
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