summaryrefslogtreecommitdiff
path: root/docs/ref
AgeCommit message (Collapse)Author
2014-04-21[1.5.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-21[1.5.x] Corrected the section identifier for MySQL unicode reference.Matt Lauber
Backport of b2514c02e1 from master
2014-03-22[1.5.x] Clarified strip_tags documentationClaude Paroz
The fact that strip_tags cannot guarantee to really strip all non-safe HTML content was not clear enough. Also see: https://www.djangoproject.com/weblog/2014/mar/22/strip-tags-advisory/ Partial backport (doc-only) of 6ca6c36f82 from master.
2014-01-29[1.5.x] Fix typo CRSF -> CSRFIan Foote
Backport of af64f829d7 from master
2014-01-23[1.5.x] Fixed some punctuation; thanks Chris Jerdonek.Tim Graham
Backport of 81830ce34f from master
2014-01-22[1.5.x] Always use parentheses when documenting a method with no arguments.Baptiste Mispelon
Backport of 05d36dc06e6d767bb28993c65a54b703f319a386 from master.
2014-01-22[1.5.x] Don't show `self` in the list of arguments of a method.Baptiste Mispelon
This is consistent with Python's official documentation and it's a sphinx recommendation too[1]. [1] http://sphinx-doc.org/markup/desc.html#dir-method Refs #21855. Backport of 79e1d6ebd70898d514a44b85648e3d24104c4243 from master.
2014-01-16[1.5.x] Fixed #21768 -- Corrected TemplateView context section.Tim Graham
Thanks nedbatchelder for the report and claudep for the patch. Backport of c05b2f58e7 from master
2014-01-15[1.5.x] Fixed typo in storage docsKevin Wood
Backport of 82f466b571 from master
2014-01-02[1.5.x] Fixed minor typos.Nathan Smith
Backport of 44d40ba521 from master
2013-12-30[1.5.x] Fixed #21710 -- Documented User.get_short_name()Tim Graham
Thanks Keryn Knight for the report. Backport of 0150830687 from master
2013-12-18[1.5.x] Fixed #21632 -- Docs: Removed example with callable as query parameterKevin Christopher Henry
Using callables as query parameters is undocumented and not working, so this changes an example from the ForeignKey.limit_choices_to documentation that uses it. Backport of d34c8c338a from master
2013-11-28[1.5.x] Fixed #21515 -- Corrected example of template.Context in documentation.Baptiste Mispelon
Thanks to trac user oubiga for the report. Backport of 077af42139db84d88f293ab5eadc989a9169dce1 from master.
2013-11-25[1.5.x] Fixed #21507 -- Corrected default widget information for FileFieldLudwik Trammer
Backport of 70e61310d6 from master
2013-11-24[1.5.x] Fixed typo in previous commit; refs #21490.Tim Graham
Backport of 03bc0a8ac5 from master
2013-11-24[1.5.x] Fixed #21490 -- Fixed custom admin URL reverse example.Tim Graham
Thanks glarrain for the report. Backport of bfe7377adb from master
2013-11-19[1.5.x] Fixed the base class note in the Date Views docs.Rocky Meza
Backport of 42197e31aa from master
2013-11-12[1.5.x] Removed a mention of `Form._errors` from the documentation.Baptiste Mispelon
Also removed a sentence that was incorrect: raising a `ValidationError` inside `Form.clean` doesn't clear the `cleaned_data` attribute. Thanks to loic84 and timograham for the review. Backport of 9aa6d4bdb6618ba4f17acc7b7c0d1462d6cbc718 and 0048ed77c7016a03aed6dbc255a6372f3df2ccd5 from master.
2013-11-10[1.5.x] Fixed #21372 -- Corrected docs regarding translating LANGUAGES.Bernardo Pires
Corrected LANGUAGES documentation on how to translate language names. Now using django.utils.translation.ugettext_lazy instead of a dummy gettext() function. Thanks to Salvatore for the report. Backport of 8bc350b38516d8c3a14aed113dd3402b9375b75c from master. Conflicts: docs/topics/i18n/translation.txt
2013-11-08[1.5.x] Added missing parameter in npgettext_lazy docsglts
Backport of 413307fe35 from master
2013-11-01[1.5.x] Fixed spelling ("dependant" -> "dependent")Tim Graham
Dependent means reliant on. A dependant is a person like a child or spouse. Thanks Andrew Wilcox for the report. Backport of 090315f5df from master
2013-11-01[1.5.x] Fixed #21364 -- Specified InnoDB full-text support from MySQL 5.6.4 onClaude Paroz
Thanks thevlad at gmail.com for the report. Backport of 89116cf24a from master.
2013-11-01[1.5.x] Fixed #21359 -- Corrected MySQL collation name in databases docsClaude Paroz
Thanks k_sze for the report. Backport of 67c6c1a7c from master.
2013-10-30[1.5.x] Fixed #21316 -- Documented that modifying safe strings makes them ↵Tim Graham
unsafe. Thanks dev@simon.net.nz for the suggestion and vijay_shanker for the patch. Backport of 1edef50880 from master
2013-10-23Fixed #13245: Explained Oracle's behavior w.r.t db_tableShai Berger
and how to prevent table-name truncation Thanks russellm & timo for discussion, and timo for review. Backported from master 317040a73b77be8f8210801793b2ce6d1a69301e
2013-10-21[1.5.x] Fixed #21296 -- Added docs for PostgreSQL and unix domains sockets.Riccardo Magliocchetti
Backport of 1e39982b6e from master
2013-10-18[1.5.x] Fixed #21212 -- Documented the reverse name for OneToOneField.Juergen Schackmann
Thanks bjb at credil.org for the report. Backport of f8632572ad from master
2013-10-14[1.5.x] Fixed #21210 -- Documented when runserver doesn't auto-restart.Bouke Haarsma
Thanks gergely at polonkai.eu for the suggestion. Backport of 9b7d38ed5a from master
2013-10-13Fixed #21261 -- Added missing import in RedirectView docsAymeric Augustin
Thanks yokomizor.
2013-10-01[1.5.x] Fixed #21180 -- Additional deprecation notes for databrowse.Tim Graham
Thanks einsteiger for the suggestion.
2013-09-30[1.5.x] Fixed #21154 -- Updated TemplateResponse docs to better explain context.Curtis Maloney
Thanks mrmachine for the report. Backport of c39c9f2ad8 from master
2013-09-23[1.5.x] Removed extra p (topppings->toppings)Brett Koonce
Backport of 946a2226ea from master
2013-09-23[1.5.x] Fixed #21120 -- Added more explicit text on using validators and ↵Ben Huckvale
link to writing validators. Thanks nicolas at niconomicon.net for the suggestion. Backport of 98e0453f00 from master
2013-09-22[1.5.x] Fixed a couple of typos in GeoDjango docs.Ramiro Morales
8b366a50f4 from master.
2013-09-21[1.5.x] Correct very minor typomlissner
Just changed as to has. Backport of d8f2d940cc from master
2013-09-21[1.5.x] Fixed #21133 -- Clarifed documentation about strftime formatting.Curtis Maloney
Backport of 43a2ec7999 from master
2013-09-13[1.5.x] Fixed #21101 -- Updated urlize documentation to mention email addressesGoetz
Backport of 39b49fd339 from master
2013-09-11[1.5.x] Fixed #20887 -- Added a warning to GzipMiddleware in light of BREACH.Tim Graham
Thanks EvilDMP for the report and Russell Keith-Magee for the draft text. Backport of da843e7dba from master
2013-09-10[1.5.x] Fixed #21075 - Improved doc for calling call_command with arguments.oz123
Backport of fca4c4826e from master
2013-09-07[1.5.x] Fixed #20005 -- Documented that Oracle databases need execute ↵Tim Graham
permission on SYS.DBMS_LOB. Thanks jafula for the suggestion. Backport of a86ecc80a2 from master
2013-09-07[1.5.x] Fixed #16992 -- Added InnoDB warning regarding reuse of ↵Keith Edmiston
AUTO_INCREMENT values. Thanks kent at nsc.liu.se for the report. Backport of c54fa1a7bc from master
2013-09-06[1.5.x] Fixed #19295 -- Documented that CachedStaticFilesStorage isn't ↵Keith Edmiston
compatible with runserver --insecure. Backport of 028db97503 from master
2013-09-04[1.5.x] Fixed #20958 -- Documented that GenericForeignKey fields can't be ↵Tim Graham
accessed in forms. Thanks marky1991. Backport of 533d1ab334 from master
2013-08-29[1.5.x] Added links to file docs.Jorge C. Leitão
Backport of d72f83c410 from master
2013-08-22[1.5.x] Typos introduced in 57c82f909b.Ramiro Morales
2013-08-22[1.5.x] Fixed #20922 -- Allowed customizing the serializer used by ↵Tim Graham
contrib.sessions Added settings.SESSION_SERIALIZER which is the import path of a serializer to use for sessions. Thanks apollo13, carljm, shaib, akaariai, charettes, and dstufft for reviews. Backport of b0ce6fe656 from master
2013-08-22[1.5.x] Fixed #20944 -- Removed inaccurate statement about View.dispatch().Marc Tamlyn
Backport of bac4d03ce6 from master
2013-08-22[1.5.x] Made description of LANGUAGE_CODE setting more clear.Ramiro Morales
297f5af222 from master.
2013-08-20[1.5.x] Documentation - Noted that OneToOneField doesn't respect unique.Kevin Christopher Henry
Added OneToOneField to the list of model fields for which the unique argument isn't valid. (OneToOneFields are inherently unique, and if the user supplies a value for unique it is ignored / overwritten.)
2013-08-14[1.5.x] Added some doc links for django.contrib.messagesTim Graham
Backport of b6178fa24b from master