django1/docs/ref
Anssi Kääriäinen 50328f0a61 Fixed #19861 -- Transaction ._dirty flag improvement
There were a couple of errors in ._dirty flag handling:
  * It started as None, but was never reset to None.
  * The _dirty flag was sometimes used to indicate if the connection
    was inside transaction management, but this was not done
    consistently. This also meant the flag had three separate values.
  * The None value had a special meaning, causing for example inability
    to commit() on new connection unless enter/leave tx management was
    done.
  * The _dirty was tracking "connection in transaction" state, but only
    in managed transactions.
  * Some tests never reset the transaction state of the used connection.
  * And some additional less important changes.

This commit has some potential for regressions, but as the above list
shows, the current situation isn't perfect either.
2013-02-27 17:54:27 +02:00
..
class-based-views Fixed #17094 - Typo in class-based views doc. 2013-02-23 08:52:33 -05:00
contrib Minor edits to some recently-added admin docs. 2013-02-25 00:15:11 -07:00
files Fixed typo in file storage docs. 2013-01-13 19:36:49 +01:00
forms Fixed #19801 - Added brackets to input_formats. 2013-02-25 12:22:02 -05:00
models Fixed #19861 -- Transaction ._dirty flag improvement 2013-02-27 17:54:27 +02:00
templates Fixed #17906 - Autoescaping {% cycle %} and {% firstof %} templatetags. 2013-02-23 16:16:39 +01:00
clickjacking.txt Simplified default project template. 2013-02-04 13:21:36 +01:00
databases.txt Fixed #19516 - Fixed remaining broken links. 2013-01-02 18:32:57 -05:00
django-admin.txt Added missing versionadded for sqldropindexes command docs 2013-02-24 21:12:00 +01:00
exceptions.txt Fixed #19516 - Fixed remaining broken links. 2013-01-02 18:32:57 -05:00
index.txt Fixed #19498 -- refactored auth documentation 2012-12-28 11:06:12 -08:00
middleware.txt Fixed #19099 -- Split broken link emails out of common middleware. 2013-01-15 17:41:45 +01:00
request-response.txt Fixed #18558 -- Added url property to HttpResponseRedirect* 2013-02-13 10:29:32 +01:00
settings.txt Added a new required ALLOWED_HOSTS setting for HTTP host header validation. 2013-02-19 11:23:29 -07:00
signals.txt Added documentation for the 'db' argument of the post-syncdb signal. 2013-01-03 22:04:55 +01:00
template-response.txt Fixed #19692 -- Completed deprecation of mimetype in favor of content_type. 2013-01-31 13:54:40 +01:00
unicode.txt Updated a couple admonitions to use the warning directive. 2013-02-19 11:31:41 -05:00
urlresolvers.txt Removed versionadded/changed annotations dating back to 1.4. 2012-12-29 21:59:08 +01:00
urls.txt Fixed #19516 - Fixed remaining broken links. 2013-01-02 18:32:57 -05:00
utils.txt Fixed #19577 - Added HTML escaping to admin examples. 2013-01-25 06:53:40 -05:00
validators.txt Fixed #4833 -- Validate email addresses with localhost as domain 2013-01-11 20:45:46 +01:00