summaryrefslogtreecommitdiff
path: root/docs/ref
AgeCommit message (Collapse)Author
2016-10-31Updated Oracle docs links to Oracle 12c.Mariusz Felisiak
2016-10-28Fixed #27188 -- Allowed using unique=True with FileField.Michael Scott
Thanks Tim Graham for the initial patch.
2016-10-28Added require_ready argument to get_model methods.Aymeric Augustin
This allows bringing back the behavior of Django < 1.7. Also fixed the check for the app registry being ready in AppConfig.get_model(s), which was inconsistent with the equivalent check in Apps.get_model(s). That part is a backwards-incompatible change.
2016-10-28Modified readiness check in AppConfig.get_model(s).Aymeric Augustin
It was inconsistent with the equivalent check in Apps.get_model(s) because I made incorrect assumptions when I wrote that code and needlessly complicated readiness checks. This is a backwards-incompatible change.
2016-10-27Fixed #27327 -- Simplified time zone handling by requiring pytz.Tim Graham
2016-10-26Fixed #27299 -- Documented the Widget.use_required_attribute() method.Jon Dufresne
Thanks Tim Graham for the review and edits.
2016-10-26Clarified when the post_migrate signal is sent during migrate.Thomas Güttler
2016-10-25Reverted "Fixed #26401 -- Added BaseAuthConfig to use auth without migrations."Jon Dufresne
This reverts commit 1ec1633cb294d8ce2a65ece6b56c258483596fba as it doesn't handle ContentType's auth.Permission dependency. Thus, it doesn't allow auth without migrations.
2016-10-25Updated postgresql.org links to https and made them canonical.Marti Raudsepp
2016-10-19Fixed #27361 -- Used "from django import forms" in forms api docs.Zach Borboa
2016-10-17Fixed ModelAdmin.get_max_num() example if obj is None.Riccardo Magliocchetti
2016-10-14Fixed #27345 -- Stopped setting the Date header in ConditionalGetMiddleware.Tim Graham
2016-10-13Refs #19705 -- Made GZipMiddleware make ETags weak.Kevin Christopher Henry
Django's conditional request processing can now produce 304 Not Modified responses for content that is subject to compression.
2016-10-13Fixed #27342 -- Corrected QuerySet.update_or_create() example.Tim Graham
2016-10-11Fixed typo in docs/ref/checks.txt.Nick Pope
2016-10-10Fixed #26447 -- Deprecated settings.USE_ETAGS in favor of ↵Denis Cornehl
ConditionalGetMiddleware.
2016-10-07Fixed #24941 -- Added ModelAdmin.get_exclude().Zach Borboa
Thanks Ola Sitarska for the initial patch.
2016-10-07Fixed #25475 -- Doc'd how to use a literal % in Func.template.Tim Graham
2016-10-07Doc'd that model instances with pk=None don't compare equal.Adam Chainz
2016-10-07Fixed #26327 -- Added JsonAgg to contrib.postgres.Mads Jensen
Thanks Tim Graham for review.
2016-10-06Fixed docs typos in lines ending with a dash.Tim Graham
2016-10-06Documented AppRegistryNotReady.Aymeric Augustin
2016-10-04Fixed typos in docs/ref/contrib/admin/javascript.txt.aruseni
2016-10-04Fixed typo in docs/ref/contrib/admin/javascript.txt.aruseni
2016-10-03Fixed #27307 -- Added missing url names in sitemaps docs.Tim Graham
2016-10-01Refs #26940 -- Re-allowed makemessages without settingsClaude Paroz
Thanks Tim Graham for the review.
2016-09-30Refs #27186 -- Fixed model form default fallback for CheckboxSelectMultiple.Tim Graham
2016-09-30Confirmed support for PostGIS 2.3.Tim Graham
2016-09-30Updated links to the current version of PostGIS docs.Tim Graham
2016-09-30Updated links to the current version of MySQL docs.Tim Graham
2016-09-29Normalized spelling of "Web server/page" in docs.Tim Graham
2016-09-29Fixed import typos in the docs.Frank Wiles
2016-09-28Fixed typo in docs/ref/contrib/gis/install/postgis.txt.Christian Bundy
2016-09-28Fixed #27226 -- Removed patch_response_headers()'s setting of the ↵Rinat Khabibiev
Last-Modified header.
2016-09-27Fixed #27076 -- Documented contrib.admin.sites.AdminSite.register().Austin Simmons
2016-09-27Fixed #27053 -- Documented contrib.auth.get_user().Berker Peksag
2016-09-26Fixed #27276 -- Doc'd how to reverse admin's login view.Jonatas CD
2016-09-22Fixed #27186 -- Fixed model form default fallback for MultiWidget, ↵Tim Graham
FileInput, SplitDateTimeWidget, SelectDateWidget, and SplitArrayWidget. Thanks Matt Westcott for the review.
2016-09-21Fixed #26610 -- Added CITextField to contrib.postgres.Mads Jensen
2016-09-17Corrected docs for return type of Field.formfield().zhuanyenan
2016-09-15Fixed typo in docs/ref/settings.txt.Tim Graham
2016-09-12Fixed #23155 -- Added request argument to user_login_failed signal.Gavin Wahl
2016-09-12Fixed #25187 -- Made request available in authentication backends.Aleksej Manaev
2016-09-12Fixed #27209 -- Fixed typo in docs/ref/models/database-functions.txt.Simon Charette
Thanks Valentin Ignatyev for the report.
2016-09-10Fixed #26401 -- Added BaseAuthConfig to use auth without migrations.Jon Dufresne
2016-09-09Normalized spelling of ETag.Tim Graham
2016-09-08Fixed #27175 -- Deprecated silencing exceptions from the {% include %} ↵Jon Dufresne
template tag. Thanks Tim Graham for the review.
2016-09-06Fixed #24865 -- Added remove_stale_contenttypes management command.Tim Graham
Thanks Simon Charette for the review.
2016-09-03Fixed #25788 -- Enabled the cached template loader if debug is False.Tim Graham
2016-09-03Replaced smart_* by force_* calls whenever possibleClaude Paroz
The smart_* version should only be used when a lazy string should keep its lazy status.