summaryrefslogtreecommitdiff
path: root/docs/ref
AgeCommit message (Collapse)Author
2015-10-23Fixed #25397 -- Documented class-based view context variable clash with ↵Jacek Bzdak
context processors.
2015-10-23Clarified that the test client response content attribute is bytes.薛丞宏
2015-10-22Fixed #25519 -- Made the admin "View site" link point to sites running on a ↵Dheerendra Rathor
subpath. Used request.META['SCRIPT_NAME'] as the site_url if it hasn't been customized from the default value of '/'.
2015-10-21Fixed #21894 -- Corrected a form.clean() example in case a superclass ↵Tim Graham
doesn't return data.
2015-10-21Fixed #25574 -- Documented {{ dict.items }} shadowing in for template tag docs.Jacek Bzdak
2015-10-21Fixed #25576 -- Added IOBase methods required by TextIOWrapper to HttpResponse.Jon Dufresne
2015-10-21Fixed #25578 -- Corrected the casing of "GitHub".Yusuke Miyazaki
2015-10-14Refs #25535 -- Minor edits to ForeignObject check changes.Tim Graham
2015-10-13Fixed quotes in GeoQuerySet aggregates examples.Sergey Fedoseev
2015-10-13Fixed typo in docs/ref/models/relations.txt.Tim Graham
2015-10-12Added precision about GeoJSON field outputsClaude Paroz
2015-10-11Fixed #25498 -- Documented ST_Distance/ST_Distance_Sphere differenceClaude Paroz
Thanks Bibhas Debnath for the report and Tim Graham for the review.
2015-10-09Fixed #25499 -- Added the ability to pass an expression in distance lookupsClaude Paroz
Thanks Bibhas Debnath for the report and Tim Graham for the review.
2015-10-07Added some function links in translation docsClaude Paroz
2015-10-06Fixed #25516 -- Documented that parallel test excution doesn't work with pdb.Tim Graham
2015-10-06Fixed #25508 -- Modified QuerySet.__repr__() to disambiguate it from a list.Tim Graham
2015-10-05Fixed #25500 -- Added --fail-level option to check command.Jon Dufresne
This option specifies the level that check command exits with a non-zero status. Default is ``ERROR``.
2015-10-03Upgraded OpenLayers version from 2.13 to 2.13.1Claude Paroz
Thanks Daniel Hahler for the initial patch.
2015-10-03Fixed #25398 -- Revised instances of os.path.join()Andrew Artajos
Replaced occurrences of os.path.join(BASE_DIR, 'folder/subfolder') to os.path.join(BASE_DIR, 'folder', 'subfolder')
2015-10-02Fixed link to the MySQL Connector/Python Django Backend documentation.Nick Williams
2015-09-29Made cosmetic cleanups to docs/ref/contrib/contenttypes.txtTim Graham
2015-09-28Fixed #24323 -- Documented @admin.register can't be used with super(XXXAdmin ↵Tim Graham
in __init__().
2015-09-25Corrected use of 'affect' vs 'effect' in docs.Rob Hudson
2015-09-25Fixed #25462 -- Removed Model.__unicode__() in favor of ↵Tim Graham
@python_2_unicode_compatible.
2015-09-24Bumped latest Python 2.7 release in docs/ref/databases.txt.Tim Graham
2015-09-23Removed versionadded/changed annotations for 1.8.Tim Graham
2015-09-23Made template response APIs enforce the use of dict and backend-specific ↵Tim Graham
template objects. Per deprecation timeline; refs 79deb6a0716e554cac5308e86f5754f19ad436dc.
2015-09-23Removed template.loader.BaseLoader per deprecation timeline.Tim Graham
2015-09-23Removed deprecated TEMPLATE_* settings per deprecation timeline.Tim Graham
2015-09-23Removed current_app argument to render() and TemplateResponse().Tim Graham
Per deprecation timeline.
2015-09-23Refs #24099 -- Removed compatibility shim for ContentType.name field.Tim Graham
2015-09-23Refs #23656 -- Required FormMixin.get_form() form_class parameter to be ↵Tim Graham
optional. Per deprecation timeline.
2015-09-23Refs #23957 -- Required session verification per deprecation timeline.Tim Graham
2015-09-23Refs #24152 -- Removed deprecated GeoQuerySet aggregate methods.Tim Graham
Per deprecation timeline.
2015-09-23Refs #23151 -- Removed RegexField.error_message per deprecation timeline.Tim Graham
2015-09-23Refs #24133 -- Removed legacy formatting syntax in success_url placeholders.Tim Graham
Per deprecation timeline.
2015-09-23Refs #23359 -- Removed the migrate --list option per deprecation timeline.Tim Graham
2015-09-23Refs #9893 -- Removed shims for lack of max_length support in file storage ↵Tim Graham
per deprecation timeline.
2015-09-23Refs #23269 -- Removed the removetags template tag and related functions per ↵Tim Graham
deprecation timeline.
2015-09-23Refs #22384 -- Removed the ability to reverse URLs by dotted path per ↵Tim Graham
deprecation timeline.
2015-09-23Refs #23276 -- Removed passing views as strings to url() per deprecation ↵Tim Graham
timeline.
2015-09-23Refs #22218 -- Removed conf.urls.patterns() per deprecation timeline.Tim Graham
2015-09-23Refs #23261 -- Removed old style list syntax for unordered_list filterTim Graham
Per deprecation timeline.
2015-09-23Refs #24451 -- Removed comma-separated {% cycle %} syntax per deprecation ↵Tim Graham
timeline.
2015-09-23Refs #24022 -- Removed the ssi tag per deprecation timeline.Tim Graham
2015-09-23Refs #22789 -- Removed contrib.webdesign per deprecation timeline.Tim Graham
2015-09-23Refs #12663 -- Removed deprecated Model._meta methods.Tim Graham
2015-09-23Fixed #25386 -- Warned about differences between Engine and DjangoTemplates.Tim Graham
2015-09-23Added some more links in form field docsClaude Paroz
2015-09-22Fixed #24509 -- Added Expression support to SQLInsertCompilerAlex Hill