summaryrefslogtreecommitdiff
path: root/docs/topics/http
AgeCommit message (Collapse)Author
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.
2014-08-23Fixed #23344 -- Removed duplicate docs for file upload settings.Tim Graham
2014-08-19Removed unnecessary code-block directives.areski
2014-08-12Fixed #23276 -- Deprecated passing views as strings to url().Tim Graham
2014-08-06Removed a doc reference to the deprecated `mimetype` kwarg.Mohammed Attia
2014-08-04Fixed #23169 - Misc docs fixes.areski
2014-08-02Fixed #23149 -- Clarified note on HTTPOnly in cookie-based session docsErik Romijn
2014-07-30Fixed #23067 -- Updated docs to use django-adminChristoph Heer
2014-07-26Fixed #23097 -- Switched to new octal format in docsDavid Hoffman
2014-07-16Fixed #23023 -- Added warning against local-memory cache.Tim Graham
Thanks django at kerz.id.au.
2014-07-09Revert "Improve cookie based session backend docs." refs #20418Tim Graham
This reverts commit d9c01da1f8ba3d4e0947fd1d619c8f4a9b013360. This is poor advice as it breaks the test client login (refs #22934). We can add a note like this back after refs #22986 is resolved.
2014-06-24Fixed typo in middleware docs.Peter Kowalczyk
Function definition should have an ending colon.
2014-06-10Fixed #22801 -- Added 'www.' to diveintopython.net linksMaxime Turcotte
2014-06-03Fixed #22384 -- Deprecated reversing URLs by dotted path.Tim Graham
2014-06-01Fixed #21938 -- Moved documentation for error views to reference guide.Jonathan Lindén
2014-05-22Fixed #20816 -- Added hints about Django middleware orderingClaude Paroz
Thanks gthb Trac user for the report, kolypto StackOverflow user for the initial list and Tim Graham for the review.
2014-05-16Simplified an unnecessarily complex paragraph in view docsErik Romijn
2014-05-11Fixed #20936 -- When logging out/ending a session, don't create a new, empty ↵Matt Robenolt
session. Previously, when logging out, the existing session was overwritten by a new sessionid instead of deleting the session altogether. This behavior added overhead by creating a new session record in whichever backend was in use: db, cache, etc. This extra session is unnecessary at the time since no session data is meant to be preserved when explicitly logging out.
2014-04-25Fixed #22517, "view prefix" still referenced in urlconf docsBen Davis
2014-04-16Fixed #22378 -- Updated \d to [0-9]+ in urlpatterns of docs and tests.chriscauley
Thanks tomwys for the suggestion.