summaryrefslogtreecommitdiff
path: root/docs/topics
AgeCommit message (Collapse)Author
2013-03-14Deprecated django.views.defaults.shortcut.Aymeric Augustin
2013-03-13Fixed #20032 -- Documented how to simulate the absence of a settingClaude Paroz
Thanks Ram Rachum for the report.
2013-03-13Fixed an erroneous import in example code.Pablo Sanfilippo
2013-03-13Proof-read and adjusted the transactions docs.Aymeric Augustin
2013-03-13Made atomic usable when autocommit is off.Aymeric Augustin
Thanks Anssi for haggling until I implemented this. This change alleviates the need for atomic_if_autocommit. When autocommit is disabled for a database, atomic will simply create and release savepoints, and not commit anything. This honors the contract of not doing any transaction management. This change also makes the hack to allow using atomic within the legacy transaction management redundant. None of the above will work with SQLite, because of a flaw in the design of the sqlite3 library. This is a known limitation that cannot be lifted without unacceptable side effects eg. triggering arbitrary commits.
2013-03-11Improved the API of set_autocommit.Aymeric Augustin
2013-03-11Used commit_on_success_unless_managed to make ORM operations atomic.Aymeric Augustin
2013-03-11Added an option to disable the creation of savepoints in atomic.Aymeric Augustin
2013-03-11Added a note about long-running processes.Aymeric Augustin
There isn't much else to say, really.
2013-03-11Added an explanation of transactions and grouped low-level APIs.Aymeric Augustin
2013-03-11Updated the documentation for savepoints.Aymeric Augustin
Apparently django.db.transaction used to be an object.
2013-03-11Deprecated TransactionMiddleware and TRANSACTIONS_MANAGED.Aymeric Augustin
Replaced them with per-database options, for proper multi-db support. Also toned down the recommendation to tie transactions to HTTP requests. Thanks Jeremy for sharing his experience.
2013-03-11Added some assertions to enforce the atomicity of atomic.Aymeric Augustin
2013-03-11Implemented an 'atomic' decorator and context manager.Aymeric Augustin
Currently it only works in autocommit mode. Based on @xact by Christophe Pettus.
2013-03-11Added support for savepoints in SQLite.Aymeric Augustin
Technically speaking they aren't usable yet.
2013-03-11Enabled database-level autocommit for all backends.Aymeric Augustin
This is mostly a documentation change. It has the same backwards-incompatibility consequences as those described for PostgreSQL in a previous commit.
2013-03-11Added an API to control database-level autocommit.Aymeric Augustin
2013-03-08Fixed #15363 -- Renamed and normalized to `get_queryset` the methods that ↵Loic Bistuer
return a QuerySet.
2013-03-07Fixed #19997 -- Added custom EMPTY_VALUES to form fieldsClaude Paroz
Thanks Loic Bistuer for the report and the patch.
2013-03-06Update link to django-mssql projectMichael Manfre
2013-03-03Fix Typo explicitly. Fixes #19971Tobias Carlander
2013-03-03Removed unnecessary imports.Aymeric Augustin
2013-03-02Fixed #19962 - Added a note about SESSION_EXPIRE_AT_BROWSER_CLOSE and ↵Tim Graham
browsers that persist sessions. Thanks David Sanders.
2013-02-28Fixed #19937 - Typo in class-based views intro.Tim Graham
2013-02-27Merge pull request #858 from intgr/py3kdoc-fixTim Graham
Fixed a typo in Python 3 porting guide.
2013-02-27Fixed #19926 -- Fixed a link to code example in queries docsClaude Paroz
Thanks Randy Salvo for the report.
2013-02-27Fixed #16807 - Added a class-based views intro.Tim Graham
Thanks Preston Holmes for the text.
2013-02-26[py3] str.decode does not exist; str.encode was intendedMarti Raudsepp
2013-02-26Fixed #19922 - Typo in translation docs.Tim Graham
Thanks amoebob for the report.
2013-02-25Fixed #6195 -- Documented caching options for javascript_catalog.Aymeric Augustin
2013-02-24Fixed #19394 --Added note about auth forms and custom user models.Ben Konrath
2013-02-24Test case and docs for custom context data in feedsZbigniew Siciarz
Thanks Paul Winkler for the initial patch. (Ref #18112).
2013-02-24Merge pull request #717 from slurms/ticket_19746Florian Apolloner
Fixed #19746 -- Allow deserialization of pk-less data
2013-02-24Fixed #19253 -- Extracted template cache key building logicTomek Paczkowski
Introduced a public function django.core.cache.utils.make_template_fragment_key Thanks @chrismedrela for fruitful cooperation.
2013-02-24Merge pull request #815 from zerok/tickets/11971Aymeric Augustin
Fixed #11971 -- Documented the serialization formats
2013-02-24Added more details about the various serialization formats.Horst Gutmann
2013-02-23Added an example of "default" database dictionary left blank; refs #19775.Tim Graham
Thanks wsmith323 for the patch.
2013-02-23Fixed #19402 - Clarified purpose of CustomUser.REQUIRED_FIELDSTim Graham
Thanks pydanny for the report and ptone for the patch.
2013-02-23Fixed #19579 - Documented that "providing_args" is purely documentational.Tim Graham
2013-02-23Fixed #19775 - Clarified requirements of the "default" database.Tim Graham
Thanks monkut for the report and wsmith323 for the patch.
2013-02-23Fixed #19758 -- Avoided leaking email existence through the password reset form.Horst Gutmann
2013-02-23Fixed #19686 -- Added HTML5 number input typeClaude Paroz
Thanks Simon Charette for his help on the patch. Refs #16630.
2013-02-20Fixed #19868 -- Clarified purpose of custom user examplePreston Holmes
2013-02-19Merge pull request #737 from hrbonz/docs_CBV_generic_views_typoTim Graham
Fixed typo in docs/topics/class-based-views/generic-display.txt
2013-02-19Added a default limit to the maximum number of forms in a formset.Aymeric Augustin
This is a security fix. Disclosure and advisory coming shortly.
2013-02-19Added a new required ALLOWED_HOSTS setting for HTTP host header validation.Carl Meyer
This is a security fix; disclosure and advisory coming shortly.
2013-02-19Updated a couple admonitions to use the warning directive.Tim Graham
2013-02-19Update docs/topics/class-based-views/generic-display.txtStefan "hr" Berder
simple typo in "Making friendly template contexts"
2013-02-18Fixed #19717 - Removed mentions of "root QuerySet" in docs.Tim Graham
Thanks julien.aubert.mail@ for the report and James Pic for the patch.
2013-02-16Removed a misleading examples from documentations ala ticket #19719Alex Hunley