summaryrefslogtreecommitdiff
path: root/docs/ref
AgeCommit message (Collapse)Author
2017-06-03Fixed typo in docs/ref/forms/fields.txt.Tim Graham
2017-06-03Refs #28192 -- Fixed documentation of ChoiceField choices requirementClaude Paroz
Thanks Tim Graham for noticing the issue.
2017-06-03Fixed #28190 -- Clarifed how include/extends treat template names.Anupam
2017-06-02Fixed #26028 -- Added overriding templates howto.Philip James
2017-06-02Fixed #28260 -- Allowed customizing the test tablespace initial and ↵Mariusz Felisiak
autoextend size on Oracle. Thanks Tim Graham for the review.
2017-06-02Fixed #28266 -- Fixed typo in docs/ref/models/instances.txt.Lachlan Musicman
2017-06-01Fixed #27639 -- Added chunk_size parameter to QuerySet.iterator().François Freitag
2017-06-01Clarified QuerySet.iterator()'s docs on server-side cursors.François Freitag
2017-05-31Refs #27777 -- Improved docs/added test for File context manager change.Ingo Klöcker
2017-05-30Refs #26294 -- Fixed typo in docs/ref/django-admin.txt.René Fleschenberg
2017-05-29Removed incorrect "required" attribute in docs/ref/forms/fields.txt.Tim Graham
2017-05-27Corrected REPL example in forms docs for Python 3.Jon Dufresne
2017-05-27Fixed #27922 -- Added ErrorDict.get_json_data().Tim Heap
2017-05-27Fixed #27881 -- Added diffsettings --output option.Chris Lamb
Thanks Haris Ibrahim K. V. for writng docs.
2017-05-26Fixed #27978 -- Allowed loaddata to read data from stdin.Pavel Kulikov
Thanks Squareweave for the django-loaddata-stdin project from which this is adapted.
2017-05-25Fixed #28239 -- Removed docs for a removed arg of template.Context.Tim Graham
2017-05-23Fixed #27859 -- Ignored db_index for TextField/BinaryField on Oracle and MySQL.Mariusz Felisiak
Thanks Zubair Alam for the initial patch and Tim Graham for the review.
2017-05-22Fixed #28112 -- Added 'time_zone' in GeoIP2.city() dict.R3turnz
2017-05-22Updated various links in docs to avoid redirectsClaude Paroz
Thanks Tim Graham and Mariusz Felisiak for review and completion.
2017-05-22Fixed #28015 -- Added makemessages --add-location option.Ling-Xiao Yang
Thanks François Freitag for review.
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-05-15Refs #27996 -- Skipped RandomUUID test on PostgreSQL 9.3.Tim Graham
2017-05-14Fixed #28195 -- Added OSMWidget.default_zoom attribute.Danilo Bargen
2017-05-14Refs #28196 -- Removed mentions of bytestrings for EmailMessageClaude Paroz
With Python 3, there are no more reasons to special-case EmailMessage arguments which should be plain strings.
2017-05-13Documented OSMWidget.default_lat/lon.Danilo Bargen
2017-05-12Fixed widgets module path in docs/ref/contrib/gis/forms-api.txt.Tim Graham
2017-05-06Fixed #28062 -- Added a setting to disable server-side cursors on PostgreSQL.François Freitag
When a connection pooler is set up in transaction pooling mode, queries relying on server-side cursors fail. The DISABLE_SERVER_SIDE_CURSORS setting in DATABASES disables server-side cursors for this use case.
2017-05-05Fixed typo in docs/ref/forms/fields.txt.Christoph Schindler
2017-05-04Fixed #28160 -- Prevented hiding GDAL exceptions when it's not installed.Tim Graham
2017-05-04Fixed broken links to Oracle docs.Mariusz Felisiak
2017-05-02Fixed broken link to mysqlclient docs.Tim Graham
2017-04-26Fixed #28037 -- Clarified that QueryDict.items()/values() are generators.Daniel F Moisset
2017-04-26Added links and cosmetic edits to docs/ref/request-response.txt.Tim Graham
2017-04-26Fixed #28137 -- Deprecated HttpRequest.xreadlines().Josh Schneier
2017-04-26Fixed #27730 -- Doc'd that template vars created outside a block can't be ↵kapil garg
used in it.
2017-04-26Refs #23919 -- Removed File's Python 2 proxied methods.Josh Schneier
2017-04-26Fixed #27644 -- Doc'd FileSystemStorage.get_created_time().Ingo Klöcker
2017-04-25Fixed #27996 -- Added RandomUUID function and CryptoExtension to ↵Paolo Melchiorre
contrib.postgres.
2017-04-25Removed nonexistent methods from File's docs.Josh Schneier
read() and write() were removed in 68a890e79f660484d05482902663b6168f0bd71e.
2017-04-24Renamed "Mac OS X" to "macOS" in docs.Michiel Beijen
2017-04-14Fixed #28067 -- Clarified __str__() return type when using ↵Tim Graham
python_2_unicode_compatible().
2017-04-14Double quoted HTML attributes in widget docsClaude Paroz
2017-04-12Corrected docs regarding MySQL support of Length GIS function.Sergey Fedoseev
2017-04-11Fixed outdated TIME_FORMAT in docs/ref/templates/builtins.txt.Christoph Schindler
The format changed in 22bfc451467ec6e13044a87a97cf00e9f8a845e4.
2017-04-11Updated docs after changing select_for_update() to raise NotSupportedError.Ran Benita
Follow up to 054a44d6f0f75395bd02a21e31ea904a24750a2b.
2017-04-10Fixed #27947 -- Doc'd that model Field.error_messages often don't propagate ↵Taavi Teska
to forms.
2017-04-07Fixed #27777 -- Made File.open() work with the with statement (#8310)Ingo Klöcker
Fixed #27777 -- Made File.open() work with the with statement
2017-04-06Fixed #28031 -- Removed notes about old uWSGI/sentry versions (refs #20537).Richard Barrell
2017-04-05Fixed #28025 -- Fixed typo in docs/ref/models/querysets.txt.Sudhanshu Mishra
2017-04-03Refs #27834 -- Removed Value wrapping from StrIndex's substring param.Adam Johnson