summaryrefslogtreecommitdiff
path: root/docs/topics
AgeCommit message (Collapse)Author
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-19[1.7.x] Fixed #22417 -- Added additional documentation for refs #16969.Tim Graham
Thanks Jon Foster for the report. Backport of 1b3a3fc1e4 from master
2014-04-18[1.7.x] Fixed #22471 -- Corrected misprint in i18n docsErik Romijn
Backport of 54d5c37de6572eae57a66339bb38719e681cee82 from master.
2014-04-16[1.7.x] Fixed #22455 -- Documented return values for send_mail and ↵Mariano Rezk
send_mass_mail Backport of 7cd74fc96ee982acfed7a98e76d4623eabde146d from master.
2014-04-16[1.7.x] Fixed spelling errors in documentation.Tim Graham
Backport of b5ce21accb from master
2014-04-16[1.7.x] Added a note regarding django.contrib.auth.authenticate.Tim Graham
Thanks Josh Brown for the suggestion. Backport of ae5b662796 from master
2014-04-15[1.7.x] Fixed #22443 -- Document smtp.EmailBackend.timeout default valueMariano Rezk
Django 1.7 introduces a new timeout parameter for the SMTP email backend: http://docs.djangoproject.com/en/dev/topics/email/#django.core.mail.backends.smtp.EmailBackend.timeout However, there was no mention of the default value for this parameter. Backport of 4e3d8ae61055dbb83d193585f2f36af6537b31cc from master.
2014-04-14[1.7.x] Improve migrations/schema docsAndrew Godwin
2014-04-12[1.7.x] Also allowed a non-overridden setting to be deletedClaude Paroz
Refs #20032, #18824. Thanks ztorstri at gmail.com for the report. Backport of 3417ba0309 from master.
2014-04-12[1.7.x] Fixed #22102 -- Made SimpleTestCase tests run before ↵Claude Paroz
unittest.TestCase ones Thanks aptiko for the report and Tim Graham for the review. Backport of 3e3a7372f5 from master.
2014-04-10[1.7.x] Fixed #22419 -- Typo in docs/topics/db/multi-db.txt.Tim Graham
Thanks Josh Kupershmidt. Backport of c487b1e230 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 #16205 -- Added an installation for Windows.Anubhav Joshi
Backport of d35d2f61c5 from master
2014-04-08[1.7.x] Fixed #9535 -- Added a reference guide for file upload classes.Anubhav Joshi
Backport of c8c2b8a638 from master
2014-04-05[1.7.x] Fixed #22216 -- Added Form.non_field_errors to form API doc.Tim Graham
Backport of d2f4553d705951ca8043d687f9493c559f494a0c from master
2014-04-05[1.7.x] Fixed #21649 -- Added optional invalidation of sessions when user ↵Tim Graham
password changes. Thanks Paul McMillan, Aymeric Augustin, and Erik Romijn for reviews. Backport of fd23c06023 from master
2014-04-02[1.7.x] Fixed #22347 -- Unified FileSystemStorage documentation.Vishal Lal
Thanks nliberg for the report. Backport of ca93f02c62 from master
2014-03-30[1.7.x] Corrected an import in a model form docs example.Ramiro Morales
cb5dd99bb4 from master.
2014-03-27[1.7.x] Fixed #21941 -- Documented the kwargs param of django.conf.urls.url().Tim Martin
Thanks cjerdonek for the report. Backport of a779757706 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-24[1.7.x] Fixed #22247 -- Replaced "upstream" with "downstream" in cache docs.Tim Graham
Thanks valgarv at gmx.net for the report. Backport of 60d2dde286 from master
2014-03-24[1.7.x] Fixed #22265 -- Clarfied consistent behavior of migrations.Moayad Mardini
Thanks aruseni for the report. Backport of bff77e2aa8 from master
2014-03-17Amended login required mixin documentation to honor **initkwargs.Simon Charette
2014-03-17Fixed #22006 -- Documented how to write a login_required mixin for CBVs.Tim Graham
Thanks django at patjack.co.uk for the suggestion and mockforest for the draft patch.
2014-03-13Fixed #22262 -- Added the correct line in the last example of Translator linesDejan Noveski
2014-03-13Fixed a grammar error in topics/i18n/translation.Iain Dawson
Hooks are quantum; you can not have an amount of them.
2014-03-11Fixed #22217 - ManyToManyField.through_fields fixes.Akis Kesoglou
- Docs description of arguments mix up. - Keep it from erroneously masking E332 check. - Add checks E338 and E339, tweak message of E337.
2014-03-10Fixed #21875 -- Clarified that get_user_model() only works at run time.Aymeric Augustin
Thanks Benjamin White for the report.
2014-03-09Corrected a few missed references to old test settingsShai Berger
2014-03-05Fixed #14549 - Removed restriction of single FKs on intermediary tablesAkis Kesoglou
Thanks to Loic Bistuer for review. Minor changes to error messages done by committer.
2014-03-04Fixed #22085 -- Added a feature for setting non-expiring keys as the default.zedr
This feature allows the default `TIMEOUT` Cache argument to be set to `None`, so that cache instances can set a non-expiring key as the default, instead of using the default value of 5 minutes. Previously, this was possible only by passing `None` as an argument to the set() method of objects of type `BaseCache` (and subtypes).
2014-03-03Fixed #21986 -- Added some guidelines for database indexes.Alex de Landgraaf
Thanks django-issues at colons.co for the suggestion.
2014-03-03Fixed some typos and formatting issues in docs.Rodolfo Carvalho
2014-03-03Fixed #22193 -- Made hint a truly optional arugment on check messages.Russell Keith-Magee
Thanks to Thomas Güttler for the suggestion.
2014-03-03Added first cut at reference documentation for the checks framework.Russell Keith-Magee
2014-03-02Fixed some typos in the documentation.Baptiste Mispelon
Thanks to Rodolfo Carvalho and Piotr Kasprzyk for the patch.
2014-03-01Fixed #15318 -- Added settings for language cookie max-age, path, domainSergey Kolosov
Introduced a number of settings to configure max-age, path, and domain for the language cookie: LANGUAGE_COOKIE_AGE, LANGUAGE_COOKIE_PATH and LANGUAGE_COOKIE_DOMAIN. Thanks sahid for the suggestion.
2014-02-28Fixed spelling mistakes in docs.Tim Graham
2014-02-28Fixed doc typos.Tim Graham
2014-02-25Removed a nonexistent link in the docs.Tim Graham
2014-02-25Fixed #12670 -- Added a note about permissions of files stored in ↵Rik
FILE_UPLOAD_TEMP_DIR. Thanks simon29 for the suggestion.
2014-02-25Fixed #22071 -- Added a warning regarding override_settings and aliasing.Henk Vos
Thanks EvilDMP for the suggestion.
2014-02-25Fixed docs typos.Szczepan Cieślik
2014-02-23Merge pull request #2363 from nheyning/22019_add_objects_docDaniele Procida
Fixed #22019 -- added documentation on Model attributes
2014-02-23added documentation on Model attributesNicolaas Heyning
2014-02-22Fixed #22113 -- changed object_name to model_name in CBV docs.Marcin Sokół
Thanks to trac user nikunj.sg for the report.
2014-02-22Fixed #22032 -- added documentation for settings.MIGRATION_MODULESGreg Chapple
2014-02-22Fixed #22120 -- Documented persistent activation of languages and cleaned up ↵Erik Romijn
language session key use
2014-02-22Fixed #22007 -- Fixed cbv docs - make imports consistentMartin Matusiak
Thanks to trac user kinjal.dixit for the report.
2014-02-20Capitalize SQL keywordsDavid Sanders