summaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)Author
2013-10-13Fixed #19560 -- Identified field in warning for naive datetime.Aymeric Augustin
Thanks gcc for the report and vajrasky for the patch.
2013-10-12Forms docs: More emphasis in 'id' value customizability.Ramiro Morales
2013-10-12Updated OpenLayers version from 2.11 to 2.13Claude Paroz
2013-10-11Fixed #15582 -- Documented how TransactionTestCase.multi_db affects fixtures.Tim Graham
Thanks slinkp for the suggestion.
2013-10-11Minor edits to docs/topics/db/queries.txt.Cody Scott
2013-10-11Fixed #13252 -- Added ability to serialize with natural primary keys.Tai Lee
Added ``--natural-foreign`` and ``--natural-primary`` options and deprecated the ``--natural`` option to the ``dumpdata`` management command. Added ``use_natural_foreign_keys`` and ``use_natural_primary_keys`` arguments and deprecated the ``use_natural_keys`` argument to ``django.core.serializers.Serializer.serialize()``. Thanks SmileyChris for the suggestion.
2013-10-11Fixed #8918 -- Made FileField.upload_to optional.Tim Graham
Thanks leahculver for the suggestion and dc and vajrasky for work on the patch.
2013-10-10Small improvements to docs/topics/db/models.txtCody Scott
2013-10-10Whitespace cleanup.Tim Graham
* Removed trailing whitespace. * Added newline to EOF if missing. * Removed blank lines at EOF. * Removed some stray tabs.
2013-10-09Fixed #21222 - Documented that 'default' and 'other' must be different ↵Tim Graham
databases when running tests. Thanks vernondcole for the suggestion.
2013-10-09Fixed grammar/typos in auth customization docsClaude Paroz
2013-10-08Fix grammatical errors in email documentationDan Loewenherz
2013-10-08Fixed #21164 -- Added documentation for issue with test users.Russell Keith-Magee
The package renaming restores the older package names (which were also the documented package names). This doesn't affect test discovery because the module in question doesn't contain any tests. Thanks to Carl for the design discussion.
2013-10-07Re-added link to SQLite notes from DB section of install doc.Ramiro Morales
2013-10-04Fixed #21213 -- Added docs for Django's mailing lists.Unai Zalakain
Added docs/internals/mailing-lists.txt documenting the use of django's mailing lists. All references across docs changed to point to this page. The referencing makes use of substitution because there's no way to make a :ref: link in a non-inline fashion in Sphinx. It also makes use of rst_epilog Sphinx conf for making this substitutions across all the docs.
2013-10-04Fixed #19321 -- Allowed redirect middleware HTTP responses to be overridden.Ryan Kaskel
Thanks Melevir for the suggestion.
2013-10-03Fixed #21218 -- Typo on docs/howto/upgrade-version.txtTim Graham
Thanks ryan at ryangallen.com for the report.
2013-10-03Fixed #19277 -- Added LocaleMiddleware.response_redirect_classEmil Stenström
Thanks ppetrid at yawd.eu for the suggestion.
2013-10-03Fixed #21216 -- Allow `OneToOneField` reverse accessor to be hidden.Simon Charette
2013-10-02Fixed #10913 -- Documented how related_name affects QuerySet filteringTim Graham
Thanks neithere for the suggestion.
2013-10-02Changed the doc to use gender-neutral pronouns when possible.Baptiste Mispelon
2013-10-02Clarified session replay attack differences with cookie backend.Tim Graham
2013-10-01Fixed #15185 -- Allowed ModelAdmin.list_display_links=None to disable change ↵Ramiro Morales
list links. Thanks rm_ for the suggestion.
2013-10-01Fixed #21147 -- Avoided time.time precision issue with cache backends.Michael Manfre
The precision of time.time() is OS specific and it is possible for the resolution to be low enough to allow reading a cache key previously set with a timeout of 0.
2013-10-01Fixed #21031 -- Updated schema migrations FAQ.Tim Graham
Thanks ramiro for the report.
2013-10-01Fixed #21195 -- Clarifed usage of template_name in tutorial part 4.Tim Graham
2013-09-30Fixed #21154 -- Updated TemplateResponse docs to better explain context.Curtis Maloney
Thanks mrmachine for the report.
2013-09-30Fixed #21134 -- Prevented queries in broken transactions.Aymeric Augustin
Squashed commit of the following: commit 63ddb271a44df389b2c302e421fc17b7f0529755 Author: Aymeric Augustin <aymeric.augustin@m4x.org> Date: Sun Sep 29 22:51:00 2013 +0200 Clarified interactions between atomic and exceptions. commit 2899ec299228217c876ba3aa4024e523a41c8504 Author: Aymeric Augustin <aymeric.augustin@m4x.org> Date: Sun Sep 22 22:45:32 2013 +0200 Fixed TransactionManagementError in tests. Previous commit introduced an additional check to prevent running queries in transactions that will be rolled back, which triggered a few failures in the tests. In practice using transaction.atomic instead of the low-level savepoint APIs was enough to fix the problems. commit 4a639b059ea80aeb78f7f160a7d4b9f609b9c238 Author: Aymeric Augustin <aymeric.augustin@m4x.org> Date: Tue Sep 24 22:24:17 2013 +0200 Allowed nesting constraint_checks_disabled inside atomic. Since MySQL handles transactions loosely, this isn't a problem. commit 2a4ab1cb6e83391ff7e25d08479e230ca564bfef Author: Aymeric Augustin <aymeric.augustin@m4x.org> Date: Sat Sep 21 18:43:12 2013 +0200 Prevented running queries in transactions that will be rolled back. This avoids a counter-intuitive behavior in an edge case on databases with non-atomic transaction semantics. It prevents using savepoint_rollback() inside an atomic block without calling set_rollback(False) first, which is backwards-incompatible in tests. Refs #21134. commit 8e3db393853c7ac64a445b66e57f3620a3fde7b0 Author: Aymeric Augustin <aymeric.augustin@m4x.org> Date: Sun Sep 22 22:14:17 2013 +0200 Replaced manual savepoints by atomic blocks. This ensures the rollback flag is handled consistently in internal APIs.
2013-09-30Fixed #13724: Corrected routing of write queries involving managers.Russell Keith-Magee
Previously, if a database request spanned a related object manager, the first manager encountered would cause a request to the router, and this would bind all subsequent queries to the same database returned by the router. Unfortunately, the first router query would be performed using a read request to the router, resulting in bad routing information being used if the subsequent query was actually a write. This change defers the call to the router until the final query is acutally made. It includes a small *BACKWARDS INCOMPATIBILITY* on an edge case - see the release notes for details. Thanks to Paul Collins (@paulcollinsiii) for the excellent debugging work and patch.
2013-09-28Note about static files dirs paths on Windows.Ramiro Morales
Added it to the settings reference. We used to have it in comment form in our old, bigger default project template settings.py file.
2013-09-28Fixed #20439 -- Started deprecation of IPAddressFieldErik Romijn
2013-09-27Fixed malformed directive in CBV date-based-mixins docs.Carl Meyer
2013-09-26Added missing word in bio update.Preston Holmes
I a word :-/
2013-09-26Updated my bio.Preston Holmes
2013-09-25Fixed #17671 - Cursors are now context managers.Michael Manfre
2013-09-25Fixed #3871 -- Custom managers when traversing reverse relations.Loic Bistuer
2013-09-25Fixed wording in unit tests documentation.Baptiste Mispelon
2013-09-25Updated a code block to use the emphasize-lines Sphinx optionTim Graham
2013-09-24Fixed #21137 -- Corrected ULRconf include example.Tim Graham
Thanks marfire for the report.
2013-09-23Removed extra p (topppings->toppings)Brett Koonce
2013-09-23Removed implication that six is part of Python stdlib.Tim Graham
2013-09-23Fixed #21070 -- Added a more complex database configuration example.Louis Fill
Thanks joejasinski for the suggestion.
2013-09-23Fixed #20830 -- Clarified that Django uses a customized version of six.Daley Chetwynd
Thanks glarrain for the suggestion.
2013-09-23Fixed #21140 -- Added 'Using cached sessions' to the performance guide.Åke Forslund
Thanks EvilDMP for the suggestion.
2013-09-23Fixed #21120 -- Added more explicit text on using validators and link to ↵Ben Huckvale
writing validators. Thanks nicolas at niconomicon.net for the suggestion.
2013-09-23Fixed #21702 -- Added different bullet styles for nested lists.Tim Garner
Thanks moc at mocpa.com for the suggestion.
2013-09-22Added docs for changes in commit dd3a883894.Ramiro Morales
Refs #20693.
2013-09-22Fixed #21141 -- Update Sphinx URLRogério Yokomizo
Updated Sphinx URL from http://sphinx.pocoo.org/ to http://sphinx-doc.org/.
2013-09-22A few doc additions for changes from d228c1192e.Ramiro Morales
2013-09-22Reference Meta.index_together in DB performance guide.Ramiro Morales