summaryrefslogtreecommitdiff
path: root/docs/ref/models
AgeCommit message (Collapse)Author
2015-03-13[1.7.x] Refs #24462 -- Emphasized that order_by() clears previous ordering.Tim Graham
Backport of b9d9ab23bdcc404708aada664e718a9d56415ca3 from master
2015-03-12[1.7.x] Fixed typo in docs/ref/models/fields.txtSteven Das
Backport of 53bc6e2e98b4889082049f50718b13f8d5d84b6b from master
2015-03-09[1.7.x] Fixed #24432 -- Added docs for ManyToManyFields that reside in and ↵Floris den Hengst
refer to the same model. Backport of b9b8411129efe13642cef1fc6bbfc62bed717352 from master
2015-02-08[1.7.x] Fixed spelling mistakes in docs.Tim Graham
2015-02-04[1.7.x] Fixed typos of "select_related" in docs.Josh Schneier
Backport of 7d363ed43247a80d2b764723e1bf6e0e6da4e82f from master
2015-01-24[1.7.x] Fixed #24190 -- Clarified len(queryset)Collin Anderson
Backport of ee23e03637aa8b82311f93b0a660574a0512891a from master
2014-12-24[1.7.x] Fixed #24041 -- Documented effect of changing a model instance's ↵Helen Sherwood-Taylor
primary key. Backport of 4ccdf6e57f49d7e981dcd88c1db65229b8b92487 from master
2014-12-08[1.7.x] Fixed #23974 -- Clarified wording of FileField.save/delete save ↵Tim Graham
parameter. Thanks GreenAsJade. Backport of 1aa41dd000e0779c8b1de1f8e7aa4a0f2f752655 from master
2014-12-06[1.7.x] Fixed #23965 -- Mentioned that FieldFile inherits from FileTim Graham
Backport of 5281d9620d13386fd4403f7aa6b9a2afd9b5a93f 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-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-12[1.7.x] Fixed #23774 -- Clarified QuerySet.order_by() and related models.Tim Graham
Backport of 11b7680d0e from master
2014-11-03[1.7.x] Fixed versionchanged indentation in docs/.Berker Peksag
Backport of 5c517ec218 from master
2014-10-31[1.7.x] Fixed #23732 -- Corrected and enhanced select_related() docs.Tim Graham
Thanks Daniele Procida for the report and review. Backport of e958c760f9 from master
2014-10-30[1.7.x] Fixed #23725 -- Substituted AUTH_USER_MODEL for User in docs.Raul Cumplido
Backport of 68d3db8a7b from master
2014-10-27[1.7.x] Fixed QuerySet datetimes argument name in docs.Oliver Meinusch
Backport of 6b39401baf from master
2014-10-18[1.7.x] Fixed #23676 -- Rearranged sentence; "by default" applies only to ↵Jon Dufresne
max length Backport of c1b9f99a81 from master
2014-10-06[1.7.X] Fixed #23602 -- Add comment on get_absolute_url regarding user inputCarl Meyer
Backport of 04bd84786d39b8a17620dfb3b354599d8d95417b from master.
2014-10-01[1.7.x] Added flat=False to signature of QuerySet.values_list()jnothman
Backport of 20f868bc5a from master
2014-09-05[1.7.x] Fixed #22534: Reinforce swappable documentationAndrew Godwin
2014-09-04[1.7.x] Fixed documentation links to Query Expression API.Thomas Chaumeny
Backport of d7a9659110 from master
2014-08-29[1.7.x] Corrected a usage example of `related_query_name`.Simon Charette
Thanks to Petr Glotov for spotting this. Backport of 05a8cef428 from master
2014-08-19[1.7.x] Fixed #17272 -- Documented that non-editable fields are skipped ↵Tim Graham
during model validation. Thanks mitar for the report. Backport of c587bd5a94 from master
2014-08-19[1.7.x] Fixed #4991 -- Emphasized XSS ramifications of help_text not being ↵Tim Graham
escaped. Backport of 5dbe2a9431 from master
2014-08-02[1.7.x] Updated MySQL links to version 5.6.Tim Graham
Backport of fb4f3e04b1 from master
2014-07-30[1.7.x] Fixed #23134 -- Fixed typos in docs/ref/models/querysets.txt.Tim Graham
Thanks Josh Kupershmidt. Backport of 66630f589c from master
2014-07-28[1.7.x] Fixed #22491 -- documented how select_for_update() should be tested.Moayad Mardini
Thanks Andreas Pelme for the report. Backport of 668d432d0a from master
2014-07-26[1.7.x] Fixed #22553 -- Added refreshing queryset info to docs.David Hoffman
Backport of 6d5daa30cf from master
2014-07-24[1.7.x] Fixed #23094 -- Removed redundant argument in select_related() example.Tim Graham
Thanks thegeekofalltrades at gmail.com for the report. Backport of 5f919b9c81 from master
2014-07-10[1.7.x] Fixed #22809 -- Added model Field API reference.Jorge C. Leitão
Thanks to @timgraham for the review. Backport of e1fa7dffdc from master
2014-07-09[1.7.x] Fixed #22351 -- Removed usage of lambdas in model field options.Tim Graham
Thanks claudep for review. Backport of 5ebf03b7dd from master
2014-07-08[1.7.x] Fixed #22812 -- Refactored lookup API documentation.Jorge C. Leitão
Thanks Anssi and Tim for reviews. Backport of 8780849da0 from master
2014-06-18[1.7.x] Fixed #14481 -- Documented implicit "through" class created by ↵Jorge C. Leitão
ManyToManyField. Thanks to jonathanmorgan for the report and initial patch. Backport of de90129070 from master
2014-06-17[1.7.x] Fixed #22819 -- Renamed output_type -> output_field in query ↵Tim Graham
expression API. Thanks jorgecarleitao for the suggestion. Backport of 95cc0e15b4 from master
2014-06-15[1.7.x] Fixed #22660: Doc'd you can't have unmigrated apps depend on migratedAndrew Godwin
2014-06-12[1.7.x] Fixed #22813 -- Updated Pillow URL in documentationClaude Paroz
Backport of dfa3505ff1 from master.
2014-06-04[1.7.x] Fixed #22710 -- Amended aggregation note for empty QuerySetsGuillaume Pannatier
Thanks smeaton for report and Joël Rochat for spell check Backport of 7f27cca5c5 from master
2014-05-30[1.7.x] Fixed #22710 -- Documented aggregation behavior for empty QuerySets.Guillaume Pannatier
Thanks matklad for the report. Backport of 7c6e96ec1f from master
2014-05-25[1.7.x] Fixed typo in docs/ref/models/custom-lookups.txt.Matthew Schinckel
Backport of 2b432d4634 from master
2014-05-15[1.7.x] Fixed typo that disabled code example highlightingÉric Araujo
Backport of 5ab95168cc from master
2014-04-30[1.7.x] Fixed #19195 -- Allow explicit ordering by a relation `_id` field.Simon Charette
Thanks to chrisedgemon for the report and shaib, akaariai and timgraham for the review. Backport of 24ec9538b7 from master
2014-04-30[1.7.x] Fixed #22537 -- Add tests and improved docs for field subclass with ↵Mike Fogel
choices. Backport of 7fd1b35ed7 from master
2014-04-25[1.7.x] Fixed #22493 - Added warnings to raw() and extra() docs about SQL ↵Moayad Mardini
injection Thanks Erik Romijn for the suggestion. Backport of 3776926cfe from master
2014-04-21[1.7.x] Fixed queries that may return unexpected results on MySQL due to ↵Erik Romijn
typecasting. This is a security fix. Disclosure will follow shortly. Backport of 75c0d4ea3ae48970f788c482ee0bd6b29a7f1307 from master
2014-04-18[1.7.x] Fixed #22473 -- Emphasized that Model.clean() is not called from ↵Tim Graham
Model.save(). Backport of b43bbd6d39 from master
2014-04-10[1.7.x] Documentation fixes for the select_for_update change.Shai Berger
Refs #22343; thanks Tim Graham for the fixes. Backport of 59b1d30 from master
2014-04-10[1.7.x] Fixed #22343 -- Disallowed select_for_update in autocommit modeShai Berger
The ticket was originally about two failing tests, which are fixed by putting their queries in transactions. Thanks Tim Graham for the report, Aymeric Augustin for the fix, and Simon Charette, Tim Graham & Loïc Bistuer for review. Backport of b990df1d63 from master
2014-04-08[1.7.x] Fixed #22405 -- Fixed string error in models/queries docs.Anubhav Joshi
Backport of 36de29200e1ea713c278f7672ab1790e1500c423 from master.
2014-03-24[1.7.x] Fixed #22048 - Enhanced docs to cover nonexistent one-to-one ↵Adam Kaliński
relationships. Thanks EvilDMP for the suggestion. Backport of ec08d62a20 from master
2014-03-21[1.7.x] Replaced an instance of PIL with Pillow in the docs.Tim Graham
Done in 4965a774074780f3e4858bcc975476f71edf2c2c on master.