| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-03-14 | Deprecated django.views.defaults.shortcut. | Aymeric Augustin | |
| 2013-03-13 | Fixed #20032 -- Documented how to simulate the absence of a setting | Claude Paroz | |
| Thanks Ram Rachum for the report. | |||
| 2013-03-13 | Fixed an erroneous import in example code. | Pablo Sanfilippo | |
| 2013-03-13 | Proof-read and adjusted the transactions docs. | Aymeric Augustin | |
| 2013-03-13 | Made 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-11 | Improved the API of set_autocommit. | Aymeric Augustin | |
| 2013-03-11 | Used commit_on_success_unless_managed to make ORM operations atomic. | Aymeric Augustin | |
| 2013-03-11 | Added an option to disable the creation of savepoints in atomic. | Aymeric Augustin | |
| 2013-03-11 | Added a note about long-running processes. | Aymeric Augustin | |
| There isn't much else to say, really. | |||
| 2013-03-11 | Added an explanation of transactions and grouped low-level APIs. | Aymeric Augustin | |
| 2013-03-11 | Updated the documentation for savepoints. | Aymeric Augustin | |
| Apparently django.db.transaction used to be an object. | |||
| 2013-03-11 | Deprecated 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-11 | Added some assertions to enforce the atomicity of atomic. | Aymeric Augustin | |
| 2013-03-11 | Implemented an 'atomic' decorator and context manager. | Aymeric Augustin | |
| Currently it only works in autocommit mode. Based on @xact by Christophe Pettus. | |||
| 2013-03-11 | Added support for savepoints in SQLite. | Aymeric Augustin | |
| Technically speaking they aren't usable yet. | |||
| 2013-03-11 | Enabled 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-11 | Added an API to control database-level autocommit. | Aymeric Augustin | |
| 2013-03-08 | Fixed #15363 -- Renamed and normalized to `get_queryset` the methods that ↵ | Loic Bistuer | |
| return a QuerySet. | |||
| 2013-03-07 | Fixed #19997 -- Added custom EMPTY_VALUES to form fields | Claude Paroz | |
| Thanks Loic Bistuer for the report and the patch. | |||
| 2013-03-06 | Update link to django-mssql project | Michael Manfre | |
| 2013-03-03 | Fix Typo explicitly. Fixes #19971 | Tobias Carlander | |
| 2013-03-03 | Removed unnecessary imports. | Aymeric Augustin | |
| 2013-03-02 | Fixed #19962 - Added a note about SESSION_EXPIRE_AT_BROWSER_CLOSE and ↵ | Tim Graham | |
| browsers that persist sessions. Thanks David Sanders. | |||
| 2013-02-28 | Fixed #19937 - Typo in class-based views intro. | Tim Graham | |
| 2013-02-27 | Merge pull request #858 from intgr/py3kdoc-fix | Tim Graham | |
| Fixed a typo in Python 3 porting guide. | |||
| 2013-02-27 | Fixed #19926 -- Fixed a link to code example in queries docs | Claude Paroz | |
| Thanks Randy Salvo for the report. | |||
| 2013-02-27 | Fixed #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 intended | Marti Raudsepp | |
| 2013-02-26 | Fixed #19922 - Typo in translation docs. | Tim Graham | |
| Thanks amoebob for the report. | |||
| 2013-02-25 | Fixed #6195 -- Documented caching options for javascript_catalog. | Aymeric Augustin | |
| 2013-02-24 | Fixed #19394 --Added note about auth forms and custom user models. | Ben Konrath | |
| 2013-02-24 | Test case and docs for custom context data in feeds | Zbigniew Siciarz | |
| Thanks Paul Winkler for the initial patch. (Ref #18112). | |||
| 2013-02-24 | Merge pull request #717 from slurms/ticket_19746 | Florian Apolloner | |
| Fixed #19746 -- Allow deserialization of pk-less data | |||
| 2013-02-24 | Fixed #19253 -- Extracted template cache key building logic | Tomek Paczkowski | |
| Introduced a public function django.core.cache.utils.make_template_fragment_key Thanks @chrismedrela for fruitful cooperation. | |||
| 2013-02-24 | Merge pull request #815 from zerok/tickets/11971 | Aymeric Augustin | |
| Fixed #11971 -- Documented the serialization formats | |||
| 2013-02-24 | Added more details about the various serialization formats. | Horst Gutmann | |
| 2013-02-23 | Added an example of "default" database dictionary left blank; refs #19775. | Tim Graham | |
| Thanks wsmith323 for the patch. | |||
| 2013-02-23 | Fixed #19402 - Clarified purpose of CustomUser.REQUIRED_FIELDS | Tim Graham | |
| Thanks pydanny for the report and ptone for the patch. | |||
| 2013-02-23 | Fixed #19579 - Documented that "providing_args" is purely documentational. | Tim Graham | |
| 2013-02-23 | Fixed #19775 - Clarified requirements of the "default" database. | Tim Graham | |
| Thanks monkut for the report and wsmith323 for the patch. | |||
| 2013-02-23 | Fixed #19758 -- Avoided leaking email existence through the password reset form. | Horst Gutmann | |
| 2013-02-23 | Fixed #19686 -- Added HTML5 number input type | Claude Paroz | |
| Thanks Simon Charette for his help on the patch. Refs #16630. | |||
| 2013-02-20 | Fixed #19868 -- Clarified purpose of custom user example | Preston Holmes | |
| 2013-02-19 | Merge pull request #737 from hrbonz/docs_CBV_generic_views_typo | Tim Graham | |
| Fixed typo in docs/topics/class-based-views/generic-display.txt | |||
| 2013-02-19 | Added 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-19 | Added 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-19 | Updated a couple admonitions to use the warning directive. | Tim Graham | |
| 2013-02-19 | Update docs/topics/class-based-views/generic-display.txt | Stefan "hr" Berder | |
| simple typo in "Making friendly template contexts" | |||
| 2013-02-18 | Fixed #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-16 | Removed a misleading examples from documentations ala ticket #19719 | Alex Hunley | |
