summaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)Author
2014-12-02[1.7.x] Fixed #23934 -- Fixed regression in admin views obj parameter.Kamil Braun
Backport of 0623f4dea46eefba46efde6c6528f7d813ef4391 from master
2014-12-02[1.7.x] Fixed #23909 -- Prevented crash when collecting SQL for RunSQLClaude Paroz
Thanks James Rivett-Carnac for the report and Markus Holtermann for the review. Backport of e11c6fd21 from master.
2014-12-01[1.7.x] Fixed #23880 -- Added missing index_together handling for SQLiteMarkus Holtermann
Backport of d2202ec2d4d0477b682c6d0051f27ab4843ef89f from master
2014-11-29[1.7.x] Removed instructions to create a PostgreSQL cluster in GIS docsClaude Paroz
Creating a new cluster is neither required not recommendable for most users. The previous section explains how to create a user with sufficient permissions to automatically create a database during tests.
2014-11-27[1.7.x] Added notes on registering signals in ready() and using dispatch_uid.wrwrwr
Refs #23641. Backport of d66bda60590daabe21f60a532a613a31a10fedbd from master
2014-11-27[1.7.x] Fixed typo in docs/topics/forms/modelforms.txt.wrwrwr
Backport of a15aba66f2fc650f70a791fb7fa880cf85cb1229 from master
2014-11-27[1.7.x] Fixed #23847 -- Improved the email_check example in the auth ↵Berker Peksag
documentation. Backport of 87bd13617c57a806deb550e3af1c06ce00517a9c from master.
2014-11-26[1.7.x] Fixed #23901 -- Documented how to use SpatiaLite with Homebrew.Kenial Lee
Backport of cc870b8ef5e3464c6f051e3ef0a25dfc4b597452 from master
2014-11-26[1.7.x] Release notes for ff3d746e8d8e8fbe6de287bd0f4c3a9fa23c18dcLuke Plant
Backport of 8b15018fd57b7b10df321b61a17601982660ebdc from master
2014-11-25[1.7.x] Fixed #23754 -- Always allowed reference to the primary key in the adminSimon Charette
This change allows dynamically created inlines "Add related" button to work correcly as long as their associated foreign key is pointing to the primary key of the related model. Thanks to amorce for the report, Julien Phalip for the initial patch, and Collin Anderson for the review. Backport of f9c4e14aeca7df79991bca8ac2d743953cbd095c from master
2014-11-25[1.7.x] Added warning about get_inline_instances() permission checking; refs ↵Simon Charette
#23754. Backport of e0d1f2684ae60573b209783f9fd4f9db163ad704 from master
2014-11-25[1.7.x] Fixed #23898 -- Added missing context to admin's deleted_selected view.Redouane Zait
Backport of 8e7b384d89db67e450aef1f2eb9a12703a5942e9 from master
2014-11-25[1.7.x] Fixed typo in docs/ref/django-admin.txtRichard Olsson
Backport of c1552af1fe5832011e3b1c3e5b40c20ff3dbe6f9 from master
2014-11-24[1.7.x] Fixed #23907 -- Added admin.site.register in tutorial 2 for consistency.Tim Graham
Backport of 1dbdc03382 from master
2014-11-24[1.7.x] Fixed #23888 -- Fixed crash in File.__repr__() when name contains ↵Sergey Fedoseev
unicode. Backport of 1e9ac504e4 from master
2014-11-24[1.7.x] Further fixes to the migration notes for get_query_setLuke Plant
This rename is very tricky for the case of subclasses which define get_query_set and haven't been updated yet, which applies to all projects in the form of RelatedManager from Django 1.5. Backport of 0c623da66406d1f20b5e26d497d57da5ad0de066 from master
2014-11-24[1.7.x] Fixed #23543 -- Added docs on testing management command output.Danilo Bargen
Backport of cdee8659763ee7044c1507bcd2202581b1744f0b from master
2014-11-24[1.7.x] Better migration docs for get_query_set -> get_querysetLuke Plant
This way they won't need to fix things again when get_query_set disappears Backport of 91e2780dfba5609b0f83d51aee1cf7e8fe78b1f7 from master
2014-11-23[1.7.x] Fixed #23900 -- Added missing imports in code example.Kevin Ndung'u
The Preventing header injection example included classes that are not imported. Thanks to Collin Anderson and Berker Peksağ for the reviews. Backport of 0d74209ef66111f29f122d5f5fdf8e2964890cc5 from master.
2014-11-22Revert "[1.7.x] Fixed #23892 -- Made deconstructible classes forwards ↵Carl Meyer
compatible" This reverts commit 8014001d9287d516c58be80ad71fb63593648b3d. Adding kwargs to deconstructed objects does not achieve useful forward-compatibility in general, since the additional kwargs are silently dropped rather than having their expected effect. In fact, it can cause the failure to be more difficult to debug. Thanks Shai Berger for discussion.
2014-11-22[1.7.x] Fixed #23892 -- Made deconstructible classes forwards compatibleCarl Meyer
Backport of f36151ed169813f2873e13ca9de616cfa4095321 from master.
2014-11-22[1.7.x] Updated an old note about GEOSGeometry.transformClaude Paroz
Backport of b0a58b9085b from master.
2014-11-21[1.7.x] Fixed #23778 -- Added a doc section on using the Django runner for ↵Stanislas Guerra
reusable apps. Backport of 06726965c3e53e9a6b87e1532951a93d5f94f426 from master.
2014-11-21[1.7.x] Fixed #23865 -- documented how to assign errors to a field in ↵Alasdair Nicol
Model.clean() Also added a unit test wit the simpler syntax which we have documented, where the dictionary values are strings. Backport of 5b26a014a81ba0d404d46e11d2b45c01d92b97e5 from master
2014-11-21[1.7.x] Fixed typo in docs/internals/release-process.txt.Tom V
Backport of a3aeba0f9535e59133e49374a6485a85f26d756e from master
2014-11-21[1.7.x] Fixed #23794 -- Fixed migrations crash when removing a field that's ↵Andrzej Pragacz
part of index/unique_together. Backport of 72729f844e0dd9bd01b3874171b89ab0d136a40e from master
2014-11-20[1.7.x] Fixed #23605 -- Fixed nested subquery regressionAnssi Kääriäinen
Added relabeled_clone() method to sql.Query to fix the problem. It manifested itself in rare cases where at least double nested subquery's filter condition might target non-existing alias. Thanks to Trac alias ris for reporting the problem. Backport of 5c481db29572a387651681b43d5d4523f96b3793 from master
2014-11-20[1.7.x] Added missing backticks to form validation docsAlasdair Nicol
Backport of 38ab0f13fac428dd05dad02ef7c94da5035927ad from master
2014-11-20[1.7.x] Fixed #23817 -- Updated docs on QuerySet evaluationMichal Petrucha
Removed inaccurate info about partial evaluation after refs #18702. Added information on modifying sliced QuerySets; refs #22503. Backport of 327df551e89a505c5756becee97c40198f38aff2 from master
2014-11-19[1.7.x] Fixed #23410 -- Avoided unnecessary rollbacks in related apps when ↵Carl Meyer
migrating backwards. Backport of ab2819aa7b09d36d9ff24830a9825aa52b87fdb4 from master.
2014-11-19[1.7.x] Fixed #22248 -- Made RenameModel reversibleStratos Moros
Backport of cf7a2a000e from master
2014-11-18[1.7.x] Fixed #23799 -- Made makemigrations respect --no-optimize.Tillmann Karras
Thanks to yamila-moreno for the idea of a skip message. Backport of d18810131995dac63f9d89b0beaeadfc935130aa from master
2014-11-17[1.7.x] Fix malformed note directive.Carl Meyer
2014-11-17[1.7.x] Fixed #23859 -- Fixed a migration crash when a field is renamed that ↵Markus Holtermann
is part of an index_together Backport of 7b4a994599b75a07cb07d1e0cc26b3bbf25ab7a6 from master.
2014-11-17[1.7.x] Fixed #23855 -- Removed unnecessary all() in tutorial 3.Tim Graham
Backport of 8fce7978307058f9bc7d9f815858f27fdd954409 from master
2014-11-16[1.7.x] Fixed #23690 - fixed examples of manual rendering of form fieldsnmundar
Documentation for rendering form fields manually is now updated to use fields id_for_label instead of hardcoded values with additional mention of label_tag for alternative generation of complete label tag. Backport of 48515ee1f7bec437544a0a958332483298f4028b from master
2014-11-16[1.7.x] Fixes a race condition in the documentation.Peter Sagerson
The example for django.contrib.admin.ModelAdmin.get_form modifies self.exclude. However, since ModelAdmin instances are global and have no thread- or request-locality, this is not safe for concurrent requests.[1] This updated documentation demonstrates a safe method to override admin forms on a per-request basis. [1] https://groups.google.com/forum/#!topic/django-users/AmoUDtEefyA Backport of 0d1a9d203a970a82a2f81edf0ba7d4b55442fd78 from master
2014-11-15[1.7.x] Fixed #23808 -- Documented that migrations table is created when ↵Andreas Madsack
using runserver without migrating first. Backport of 27c9b3a27d313e75732c1e8e966b320ddbde499d from master
2014-11-15[1.7.x] Fixed #23793 -- Clarified password reset behavior in auth docsErik Romijn
Backport of c5132382f081bd1b5a3618bbf23fa0cf720af14b from master.
2014-11-15[1.7.x] Fixed #23665 -- Noted precedence of settings.USE_L10N in ↵Berker Peksag
MONTH_DAY_FORMAT and YEAR_MONTH. Backport of 4f90c99635149fae2f488c03f0b52303fe97e0aa from master
2014-11-13[1.7.x] Fixed #23588 -- Added a link in tutorial for list_display options.Tim Graham
Backport of 3a550bb6d32172fc1ec5dd314d20ef1235db995a from master
2014-11-13[1.7.x] Fixed #23802 -- Typos in 1.7 release notes.Tim Graham
Backport of d5a109f6e6684b2ea8028af5c57f4257872d11aa from master
2014-11-13[1.7.x] Added missing docs for 1_7.W001 check.Tim Graham
Backport of 098368d82f67715723b5bd4445a8fe92a0ceae98 from master
2014-11-13[1.7.x] Updated Fink doc section to be version-agnosticClaude Paroz
Backport of 7fd1f3a645f from master.
2014-11-13[1.7.x] Removed thread customizations of six which are now built-in.Tim Graham
Backport of 7ef81b5cdd from master
2014-11-13[1.7.x] Fixed #23761 -- Fixed crash with MySQL validator and db_type is None.Adam DePue
The issue was fixed on master in e9103402c0fa873aea58a6a11dba510cd308cb84.
2014-11-12[1.7.x] Fixed #23795 -- Fixed a regression in custom form fieldsBaptiste Mispelon
Custom form fields having a `queryset` attribute but no `limit_choices_to` could no longer be used in ModelForms. Refs #2445. Thanks to artscoop for the report. Backport of bfb11b95626f39e2f5e18d97d7761c6f93dcc1a9 from master. Conflicts: django/forms/fields.py
2014-11-12[1.7.x] Fixed #23774 -- Clarified QuerySet.order_by() and related models.Tim Graham
Backport of 11b7680d0e from master
2014-11-10[1.7.x] Fix a typo in 1.7 release notesaruseni
Backport of faf4d5c510 from master
2014-11-10[1.7.x] Fixed a typo in 1.6 release notes.aruseni
Backport of 006451f894 from master