| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-04-10 | Fixed #22321 -- Wrapped exceptions in _set_autocommit. | Aymeric Augustin | |
| Refs #21202. | |||
| 2014-04-10 | Fixed #22364 -- Sanitized getpass input in changepassword. | John Paulett | |
| Python 2 getpass on Windows does not accept unicode, even when containing on ASCII characters. Related #190807. | |||
| 2014-04-10 | Refactored some code in SelectDateWidget. | Tomasz Wysocki | |
| 2014-04-10 | Fixed #22194 -- Added --list-tags option to check command. | Tim Graham | |
| Thanks Elvard for the patch. | |||
| 2014-04-10 | Fixed #22195 -- Used constants to define built-in tags for check framework. | Tim Graham | |
| Thanks Elvard for the patch. | |||
| 2014-04-10 | Fixed #22343 -- Disallowed select_for_update in autocommit mode | Shai 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. | |||
| 2014-04-09 | Fixed #22401 -- Deprecated regular expression parsing of initial SQL in ↵ | julien 'pouete' Godin | |
| favor of installing sqlparse. | |||
| 2014-04-09 | Fixed #21553 -- Ensured unusable database connections get closed. | Aymeric Augustin | |
| 2014-04-09 | Used more specific test assertions. | Aymeric Augustin | |
| 2014-04-08 | Fixed #13408 -- Deprecated silent unpacking exception passing in for ↵ | e0ne | |
| template tag. Thanks peterbe for the suggestion. | |||
| 2014-04-07 | Fixed #21084 -- Used proxy model's content type for admin log entries. | Tim Graham | |
| (the previous commit included only the test) | |||
| 2014-04-07 | Removed casting to bool just before negation. | Tomasz Wysocki | |
| 2014-04-06 | Fixed #21977 -- Deprecated SimpleTestCase.urls | Anubhav Joshi | |
| 2014-04-05 | Fixed #22236 -- Removed inappropriate usage of signals | Claude Paroz | |
| Thanks Aymeric Augustin for the report and Tim Graham for the review. | |||
| 2014-04-05 | Fixed #21649 -- Added optional invalidation of sessions when user password ↵ | Tim Graham | |
| changes. Thanks Paul McMillan, Aymeric Augustin, and Erik Romijn for reviews. | |||
| 2014-04-03 | Refactored and commented strip_tags utility | Tomasz Wysocki | |
| 2014-04-03 | Fixed #22363 -- Correctly serialize `django.utils.datetime_safe` objects. | Simon Charette | |
| Thanks to linovia for the report. | |||
| 2014-04-03 | Cleaned up string detection for a deprecation warning by using six.string_types. | Tim Graham | |
| 2014-04-03 | Fixed #22372 -- Improved description of WizardView.get_context_data(). | Vishal Lal | |
| Thanks simon29 for the report. | |||
| 2014-04-03 | Fixed #22218 -- Deprecated django.conf.urls.patterns. | Tim Graham | |
| Thanks Carl Meyer for the suggestion and Alex Gaynor and Carl for reviews. | |||
| 2014-04-02 | Added an explanatory comment. Refs #22017 | Alex Gaynor | |
| 2014-04-02 | Revert "Merge pull request #2508 from tomwys/patch-1" | Alex Gaynor | |
| This reverts commit c45607e9395ffd05c2cff454fdb55b3ab05dc0e3, reversing changes made to 9769337ca855f4831c855d6663ff3f688ee1652d. | |||
| 2014-04-02 | Merge pull request #2509 from tomwys/patch-2 | Alex Gaynor | |
| Refactor. Stop using memory for list copies. | |||
| 2014-04-02 | Refactor. Stop using memory for list copies. | Tomasz Wysocki | |
| 2014-04-02 | Don't copy list for iteration. | Tomasz Wysocki | |
| 2014-03-31 | Fixed #22327 -- Turned BaseEmailBackend into a context manager | Daniel Neuhäuser | |
| Changed the BaseEmailBackend to allow usage as context manager to open and close connections. | |||
| 2014-03-31 | Fixed #22362 -- Improved AuthenticationMiddleware assertion message. | Tim Graham | |
| Thanks Keryn Knight. | |||
| 2014-03-31 | Replaced urllib/urlparse imports with from django.utils.six.moves. | Tim Graham | |
| 2014-03-31 | Fixed #21795 -- Made add_preserved_filters account for url prefixes. | Loic Bistuer | |
| Thanks to trac username honyczek for the report. Refs #6903. | |||
| 2014-03-31 | Fixed typo in docstring. | Tim Graham | |
| 2014-03-31 | Fixed #22319 -- Fixed migration external dependencies when there are ↵ | Loic Bistuer | |
| internal dependencies. | |||
| 2014-03-31 | Fixed #22359 -- Changing M2M field to blank=True failed on sqlite. | Loic Bistuer | |
| 2014-03-30 | Moved ServerHandler helper class to tests. | Ramiro Morales | |
| It has been only used in the builtin_servers tests since Django 1.4. | |||
| 2014-03-30 | Corrected many style guide violations that the newest version of flake8 catches | Alex Gaynor | |
| 2014-03-30 | Fixed #19816 -- Pre-evaluate querysets used in direct relation assignments. | Loic Bistuer | |
| Since assignments on M2M or reverse FK descriptors is composed of a `clear()`, followed by an `add()`, `clear()` could potentially affect the value of the assigned queryset before the `add()` step; pre-evaluating it solves the problem. This patch fixes the issue for ForeignRelatedObjectsDescriptor, ManyRelatedObjectsDescriptor, and ReverseGenericRelatedObjectsDescriptor. It completes 6cb6e1 which addressed ReverseManyRelatedObjectsDescriptor. | |||
| 2014-03-30 | Fixed transaction handling for a number of operations on related objects. | Loic Bistuer | |
| Thanks Anssi and Aymeric for the reviews. Refs #21174. | |||
| 2014-03-29 | Increased memoization cache size for language codes. | Aymeric Augustin | |
| There may be more than 100 (default maxsize) commonly seen xx-yy values on some sites. The additional memory consumption isn't significant. Also added a comment explaining why this cache must have a maxsize. | |||
| 2014-03-29 | Skipped PostGIS version tests when psycopg2 not installed | Claude Paroz | |
| Refs #22334. Thanks Tim Graham for spotting the issue. | |||
| 2014-03-29 | Unit testing Postgis version check | Rémy Sanchez | |
| Refs #22334. | |||
| 2014-03-29 | Fixed #22329 -- Used label_tag() in some admin auth templates. | Tim Graham | |
| refs #17922. | |||
| 2014-03-29 | Removed unused imports. | Tim Graham | |
| 2014-03-29 | Dropped support for GDAL 1.6 | Claude Paroz | |
| 2014-03-29 | Dropped support for GEOS 3.1 | Claude Paroz | |
| 2014-03-29 | Confirmed Spatialite 4 support | Claude Paroz | |
| 2014-03-29 | Confirmed GEOS 3.4 support | Claude Paroz | |
| 2014-03-29 | Fixed #22250 -- regression in gis compiler for non-concrete fields | Anssi Kääriäinen | |
| Thanks to gwahl@fusionbox.com for the report. | |||
| 2014-03-28 | Fixed #22306 -- Deprecated future versions of cycle and firstof template tags. | Maxime Turcotte | |
| 2014-03-27 | Corrected deprecation warnings. | Tim Graham | |
| 2014-03-27 | Fixed a deprecation warning with the HTMLParser safe argument. | Tim Graham | |
| refs 6ca6c36f82b97eafeada61384b2e2f1d0587da86 | |||
| 2014-03-27 | Add a useful stacklevel to some RemovedInDjango19Warnings | Chris Beaven | |
