summaryrefslogtreecommitdiff
path: root/docs/ref
AgeCommit message (Collapse)Author
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 #23736 -- Corrected the description of the value that ↵Tim Graham
silent_variable_failure uses. Thanks Aymeric Augustin for the report. Backport of e7cb4f2fba from master
2014-10-30[1.7.x] Fixed #23737 -- Recommended the render() shortcut more strongly.Tim Graham
Thanks Aymeric Augustin for the report. Backport of f85fcc75e3 from master
2014-10-30[1.7.x] Explained why admindocs omits model methods with arguments.Zan Anderle
Backport of 9e3aaa5a46 from master
2014-10-30[1.7.x] Removed extra period.Aymeric Augustin
Backport of 8f79c15 from master
2014-10-30[1.7.x] Fixed #23558 -- documented slugify limitationsDavid Hoffman
Backport of 03467368db from master
2014-10-30[1.7.x] Fixed #23575 -- Added a code example for custom AdminSite.Berker Peksag
Backport of 4a9b4a23bd 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-29[1.7.x] Added cross reference in admin docs to topic about saving objects in ↵P.A. SCHEMBRI
formsets. Backport of 388c6038fd from master
2014-10-27[1.7.x] Fixed QuerySet datetimes argument name in docs.Oliver Meinusch
Backport of 6b39401baf from master
2014-10-27[1.7.x] Fixed #23446 -- Officially recommended mysqlclient as MySQL driverClaude Paroz
Thanks Corey Farwell for the report and Tim Graham for the review. Thanks also to Inada Naoki for creating and maintaining mysqlclient. Backport of 7f089ac2e3 from master.
2014-10-24[1.7.x] Fixed typo in docs/ref/request-response.txtJames Doherty
Backport of adf8fb34ce from master
2014-10-19[1.7.x] Fixed a typo in urlencode documentation.wrwrwr
Backport of 62a53bdf11 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-16[1.7.x] Fixed #23667 -- Incorrect settings reference for language cookie.Tim Graham
Thanks jamesbeith for the report. Backport of bedd439297 from master
2014-10-17[1.7.x] Fixed #23615 -- Validate that a Model instance's "check" attribute ↵Rigel Di Scala
is a method. The "check" name is a reserved word used by Django's check framework, and cannot be redefined as something else other than a method, or the check framework will raise an error. This change amends the django.core.checks.model_check.check_all_models() function, so that it verifies that a model instance's attribute "check" is actually a method. This new check is assigned the id "models.E020". Conflicts: docs/ref/checks.txt Backport of a5c77417a6 from master
2014-10-16[1.7.x] Fixed #12008 -- Clarified relationship between template blocks and ↵mcgeeco
includes. Thanks Daniele Procida for suggested wording. Backport of 80b8d3bee0 from master
2014-10-12[1.7.x] Fixed #23639 -- Fixed doc error in RegexValidator.regexDori
Thanks to @claudep for the report and the original patch. Backport of c48a29a02a457cfdb1cff11009401459ba24e870 from master.
2014-10-10[1.7.x] Fixed #23631 -- Removed outdated note on MySQL timezone support.Tim Graham
Thanks marfire for the report. Backport of 9db3653670 from master
2014-10-09[1.7.x] Fixed #23609 -- Fixed IntegrityError that prevented altering a NULL ↵Markus Holtermann
column into a NOT NULL one due to existing rows Thanks to Simon Charette, Loic Bistuer and Tim Graham for the review. Backport of f633ba778d from master
2014-10-06[1.7.x] Fixed #23607 -- Typo in docs/ref/contrib/staticfiles.txt.Tim Graham
Thanks Rolandde for the report. Backport of 87eedfff44 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-06[1.7.x] Updated links in admin docs to use :ref:Kostochko Dmitriy
per Sphinx docs: "Using ref is advised over standard reStructuredText links to sections because it works across files, when section headings are changed, and for all builders that support cross-references. Backport of 13409b932a from master
2014-10-06[1.7.x] Fixed #23597 -- Clarified the manager that ↵Ismail Badawi
{Single,Multiple}ObjectMixin.model uses. Backport of e501d4c505 from master
2014-10-04[1.7.x] Made minor typographic correction to SECRET_KEY docs.Erik Romijn
Backport of 2bb00b0b0b5232aff806c8a9b3f1126c1cf79221 from master.
2014-10-04[1.7.x] Fixed #22310 -- Documented exact usage of SECRET_KEYErik Romijn
Backport of 4ad57bbe31bc1813264824111de2f9f74dbda0d6 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-29[1.7.x] Fixed #17638 -- Added crosslinks between topic and reference guides.Duane Hilton
Thanks oinopion for the suggestion and jarus for the initial patch. Backport of 054bdfeff1 from master
2014-09-24[1.7.x] Fixed #23421 -- Corrected TEST SERIALIZE setting.Tim Graham
Thanks gkoller for the report and Markus Holtermann for review.
2014-09-24[1.7.x] Fixed #22959 -- Documented that class-based validators need to be ↵Markus Holtermann
deconstructible. Backport of c692e37b63 from master
2014-09-24[1.7.x] Corrected --noinput docs for makemigrations; refs #23407.Tim Graham
Backport of 450a616004 from master
2014-09-24[1.7.x] Fixed #23426 -- Don't require double percent sign in RunSQL without ↵Markus Holtermann
parameters Backport of b9a670b227 from master
2014-09-17[1.7.x] Fixed #23499 -- Error in built-in template tag "now" documentationJoseph Dougherty
Backport of ab8248361e0a7b4fc7684eaaa5891e16b8562683 from master.
2014-09-09[1.7.x] Fixed #11775 -- Made ABSOLUTE_URL_OVERRIDES work with models that ↵Tim Graham
don't define get_absolute_url(). Thanks jukvalim for the report and initial patch, and Preston Timmons for review. Backport of c32bc1a7a7 from master
2014-09-06[1.7.x] Fixed #23340 -- Corrected naturaltime docs to match behavior.Collin Anderson
Thanks zachborboa for the report and blackguest for the patch. Backport of 7353e26d5d and 0a2bc6e6bd from master
2014-09-05[1.7.x] Fixed #22534: Reinforce swappable documentationAndrew Godwin
2014-09-05[1.7.x] Added missing periods in docs/ref/checks.txt.Sébastien Fievet
Backport of 5d04433903 from master
2014-09-05[1.7.x] Fixed imports in `Sitemap for static views` exampleJohn-Scott Atlakson
Backport of 344f37718b from master
2014-09-04[1.7.x] Fixed typo in docs/ref/checks.txt.Tim Graham
Backport of 2ca244aae6 from master
2014-09-04[1.7.x] Fixed documentation links to Query Expression API.Thomas Chaumeny
Backport of d7a9659110 from master
2014-09-02[1.7.x] Added missing import in docs/ref/signals.txt.Alexey Efimov
Backport of 4a303341fc from master
2014-09-02Revert "[1.7.x] Undocumented SeparateDatabaseAndState so crash is not RB. ↵Tim Graham
Refs #22918" This reverts commit a7ac5f018726694e3a79180ef97f2813c715fac0.
2014-09-01[1.7.x] Undocumented SeparateDatabaseAndState so crash is not RB. Refs #22918Andrew Godwin
2014-08-31[1.7.x] Fixed #23391 -- Removed an erroneous backtip from the form's ↵Simon Charette
documentation. Thanks to Trac alias nessita for the report. Backport of ab9c886459 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-29[1.7.x] Fixed #22786 -- Documented value_from_datadict caveatClaude Paroz
Thanks blueyed for the report and Tim Graham for the review. Backport of 909015a51b from master.
2014-08-28[1.7.x] Documented correct kwargs for post_syncdb/migrate.Aymeric Augustin
d562527a rename the db to using in the wrong signal. Thanks Maik Hoepfel for the report. Backport of 569e0a2 from master
2014-08-28[1.7.x] Fixed #23374 -- Renamed StaticLiveServerCase to StaticLiveServerTestCaseClaude Paroz
Refs #20739. Thanks Raphaël Hertzog for the report and the initial patch. Backport of 3a44e2000 from master.
2014-08-27[1.7.x] Documented --database option for migrate.Tim Graham
Thanks Mike O'Connor for the reporty. Backport of 6aae07fe61 from master
2014-08-27[1.7.x] Fixed #23354 -- Documented that ModelChoiceField to_field_name ↵Tim Graham
should be a unique field. Thanks Keryn Knight for the suggestion. Backport of 83762da3fb from master