summaryrefslogtreecommitdiff
path: root/docs/ref
AgeCommit message (Collapse)Author
2016-02-02Made identation of default setting docs more consistenct.Tim Graham
2016-02-01Unified some doc links to OneToOneField and ManyToManyField.Tim Graham
2016-02-01Fixed #26124 -- Added missing code formatting to docs headers.rowanv
2016-01-30Fixed #26156 -- Added createsuperuser instructions to admin docs.Yoong Kang Lim
2016-01-29Made formatting of docs for settings defaults more consistent.Tim Graham
2016-01-29Fixed #26137 -- Confirmed support for SpatiaLite 4.2/4.3 and added instructions.Tim Graham
2016-01-29Fixed #26150 -- Sorted app_labels in migrate command outputMarkus Holtermann
2016-01-28Fixed #25917 -- Clarified reversibility of RemoveField.Tim Graham
Thanks kaifeldhoff for the draft patch.
2016-01-28Fixed #25354 -- Added class/app_label interpolation for related_query_name.James Pulec
2016-01-25Fixed #25968 -- Changed project/app templates to use a "py-tpl" suffix.Chris Lamb
Debian packages unconditionally byte-compile .py files on installation and do not silence errors by design. Therefore, we need a way of shipping these invalid .py files without a .py extension but ensuring that when we template them, they end up as .py. We don't special-case .py files so that the all the TemplateCommand command-line options (eg. extra_files and extensions) still work entirely as expected and it may even be useful for other formats too.
2016-01-23Fixed #24109 -- Allowed RunSQL and RunPython operations to be elided.Simon Charette
Thanks to Markus Holtermann and Tim Graham for their review.
2016-01-22Fixed #24116 -- Moved AdminSite.check_dependencies() to system checks.Vincenzo Pandolfo
2016-01-22Fixed #26118 -- Added 'is' operator to if template tag.Preston Timmons
2016-01-22Fixed #26020 -- Normalized header stylings in docs.Elif T. Kus
2016-01-22Fixed #26121 -- Updated MySQL storage engine example.Tim Graham
default_storage_engine was introduced in MySQL 5.5.3. storage_engine was removed in MySQL 5.7.5.
2016-01-21Changed `action="."` to `action=""` in tests and docs.Luke Plant
`action="."` strips query parameters from the URL which is not usually what you want. Copy-paste coding of these examples could lead to difficult to track down bugs or even data loss if the query parameter was meant to alter the scope of a form's POST request.
2016-01-15Added docs about configuring CSRF support in AngularJS.Danilo Bargen
2016-01-14Fixed #23868 -- Added support for non-unique django-admin-options in docs.Tim Graham
Also documented missing short command line options to fix #24134. This bumps the minimum sphinx version required to build the docs to 1.3.4. Thanks Simon Charette for review.
2016-01-14Fixed #26078 -- Clarified "old vs. new" in model._meta upgrade guide.Tim Graham
Thanks Thomas Güttler for the suggestion.
2016-01-14Fixed #25697 -- Made default error views error when passed a nonexistent ↵Iacopo Spalletti
template_name.
2016-01-13Refs #25769 -- Updated docs to reflect get_version() uses PEP 0440.Tim Graham
2016-01-12Removed an unncessary docs cross-reference for call_command().Tim Graham
2016-01-12Made CommandError use the exception directive in docs.Tim Graham
2016-01-11Added missing period to "etc.".pp
2016-01-11Fixed #25385 -- Allowed importing views.generic.View from views.View.Varun Sharma
2016-01-11Fixed #25684 -- Made runserver use logging for request/response output.Flavio Curella
Thanks andreif for the contributing to the patch.
2016-01-11Refs #25755 -- Unified a couple more spellings of 'website'.pp
2016-01-08Refs #25995 -- Documented that JSONField doesn't handle sophisticated ↵Tim Graham
serialization.
2016-01-08Fixed #20846 -- Decreased User.username max_length to 150 characters.Collin Anderson
2016-01-08Fixed #21113 -- Made LogEntry.change_message language independentClaude Paroz
Thanks Tim Graham for the review.
2016-01-07Fixed #25928 -- Clarified precendence of USE_THOUSAND_SEPARATOR and locale ↵wingston sharon
formats.
2016-01-06Fixed #25680 -- Added django-admin shell --command option.Niels Van Och
Add a -c option to the shell command to execute a command passed as a string as Django.
2016-01-06Refs #25878 -- Added the expected return type of CSRF_FAILURE_VIEW.Tim Graham
2016-01-05Fixed #25878 -- Documented requirement that handler404 return a 404 response.Tim Graham
2016-01-04Fixed #26032 -- Moved "project root directory" to a separate paragraph.Tim Graham
2015-12-31Fixed #26013 -- Moved django.core.urlresolvers to django.urls.Marten Kenbeek
Thanks to Tim Graham for the review.
2015-12-30Fixed #25748 -- Added clarification on projects vs. applications.Tim Graham
Thanks Thomas Güttler for motivating this addition.
2015-12-26Fixed #8065 -- Made id_list an optional argument for QuerySet.in_bulk().Bryan Marty
2015-12-25Fixed #14286 -- Added models.BigAutoField.Alexander Sosnovskiy
2015-12-25Added docs example for manually creating a column with RunSQL.Gen1us2k
2015-12-24Refs #13008 -- Forwardported 1.8.8 release note.Tim Graham
Forwardport of b51086d57313e7ea857f4b96b62d25e600ee0a8d from stable/1.8.x
2015-12-24Discouraged use of /tmp with predictable names.Chris Lamb
The use of predictable filenames in /tmp often leads to symlink attacks so remove the most obvious use of them in the docs.
2015-12-23Removed an extra header in docs/ref/templates/api.txt.Tim Graham
2015-12-23Fixed #25979 -- Dropped support for PostgreSQL 9.1.Tim Graham
2015-12-23Fixed #25969 -- Replaced render_to_response() with render() in docs examples.Tim Graham
2015-12-23Documented that GDAL is required to initialize GEOSGeometry from JSON.Sergey Fedoseev
2015-12-23Refs #25141 -- Removed note that says that GEOSGeometry.json requires GDAL.Sergey Fedoseev
2015-12-22Fixed #25950 -- Added support for GEOSisClosed.Sergey Fedoseev
2015-12-22Fixed #25965 -- Added removal of sql* commands to 1.9 release notes.Tim Graham
2015-12-22Fixed #25838 -- Added "python" as an interface to the shell command.Jon Dufresne
Deprecates the "--plain" option.