summaryrefslogtreecommitdiff
path: root/django
AgeCommit message (Collapse)Author
2014-04-10Fixed #22321 -- Wrapped exceptions in _set_autocommit.Aymeric Augustin
Refs #21202.
2014-04-10Fixed #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-10Refactored some code in SelectDateWidget.Tomasz Wysocki
2014-04-10Fixed #22194 -- Added --list-tags option to check command.Tim Graham
Thanks Elvard for the patch.
2014-04-10Fixed #22195 -- Used constants to define built-in tags for check framework.Tim Graham
Thanks Elvard for the patch.
2014-04-10Fixed #22343 -- Disallowed select_for_update in autocommit modeShai 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-09Fixed #22401 -- Deprecated regular expression parsing of initial SQL in ↵julien 'pouete' Godin
favor of installing sqlparse.
2014-04-09Fixed #21553 -- Ensured unusable database connections get closed.Aymeric Augustin
2014-04-09Used more specific test assertions.Aymeric Augustin
2014-04-08Fixed #13408 -- Deprecated silent unpacking exception passing in for ↵e0ne
template tag. Thanks peterbe for the suggestion.
2014-04-07Fixed #21084 -- Used proxy model's content type for admin log entries.Tim Graham
(the previous commit included only the test)
2014-04-07Removed casting to bool just before negation.Tomasz Wysocki
2014-04-06Fixed #21977 -- Deprecated SimpleTestCase.urlsAnubhav Joshi
2014-04-05Fixed #22236 -- Removed inappropriate usage of signalsClaude Paroz
Thanks Aymeric Augustin for the report and Tim Graham for the review.
2014-04-05Fixed #21649 -- Added optional invalidation of sessions when user password ↵Tim Graham
changes. Thanks Paul McMillan, Aymeric Augustin, and Erik Romijn for reviews.
2014-04-03Refactored and commented strip_tags utilityTomasz Wysocki
2014-04-03Fixed #22363 -- Correctly serialize `django.utils.datetime_safe` objects.Simon Charette
Thanks to linovia for the report.
2014-04-03Cleaned up string detection for a deprecation warning by using six.string_types.Tim Graham
2014-04-03Fixed #22372 -- Improved description of WizardView.get_context_data().Vishal Lal
Thanks simon29 for the report.
2014-04-03Fixed #22218 -- Deprecated django.conf.urls.patterns.Tim Graham
Thanks Carl Meyer for the suggestion and Alex Gaynor and Carl for reviews.
2014-04-02Added an explanatory comment. Refs #22017Alex Gaynor
2014-04-02Revert "Merge pull request #2508 from tomwys/patch-1"Alex Gaynor
This reverts commit c45607e9395ffd05c2cff454fdb55b3ab05dc0e3, reversing changes made to 9769337ca855f4831c855d6663ff3f688ee1652d.
2014-04-02Merge pull request #2509 from tomwys/patch-2Alex Gaynor
Refactor. Stop using memory for list copies.
2014-04-02Refactor. Stop using memory for list copies.Tomasz Wysocki
2014-04-02Don't copy list for iteration.Tomasz Wysocki
2014-03-31Fixed #22327 -- Turned BaseEmailBackend into a context managerDaniel Neuhäuser
Changed the BaseEmailBackend to allow usage as context manager to open and close connections.
2014-03-31Fixed #22362 -- Improved AuthenticationMiddleware assertion message.Tim Graham
Thanks Keryn Knight.
2014-03-31Replaced urllib/urlparse imports with from django.utils.six.moves.Tim Graham
2014-03-31Fixed #21795 -- Made add_preserved_filters account for url prefixes.Loic Bistuer
Thanks to trac username honyczek for the report. Refs #6903.
2014-03-31Fixed typo in docstring.Tim Graham
2014-03-31Fixed #22319 -- Fixed migration external dependencies when there are ↵Loic Bistuer
internal dependencies.
2014-03-31Fixed #22359 -- Changing M2M field to blank=True failed on sqlite.Loic Bistuer
2014-03-30Moved ServerHandler helper class to tests.Ramiro Morales
It has been only used in the builtin_servers tests since Django 1.4.
2014-03-30Corrected many style guide violations that the newest version of flake8 catchesAlex Gaynor
2014-03-30Fixed #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-30Fixed transaction handling for a number of operations on related objects.Loic Bistuer
Thanks Anssi and Aymeric for the reviews. Refs #21174.
2014-03-29Increased 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-29Skipped PostGIS version tests when psycopg2 not installedClaude Paroz
Refs #22334. Thanks Tim Graham for spotting the issue.
2014-03-29Unit testing Postgis version checkRémy Sanchez
Refs #22334.
2014-03-29Fixed #22329 -- Used label_tag() in some admin auth templates.Tim Graham
refs #17922.
2014-03-29Removed unused imports.Tim Graham
2014-03-29Dropped support for GDAL 1.6Claude Paroz
2014-03-29Dropped support for GEOS 3.1Claude Paroz
2014-03-29Confirmed Spatialite 4 supportClaude Paroz
2014-03-29Confirmed GEOS 3.4 supportClaude Paroz
2014-03-29Fixed #22250 -- regression in gis compiler for non-concrete fieldsAnssi Kääriäinen
Thanks to gwahl@fusionbox.com for the report.
2014-03-28Fixed #22306 -- Deprecated future versions of cycle and firstof template tags.Maxime Turcotte
2014-03-27Corrected deprecation warnings.Tim Graham
2014-03-27Fixed a deprecation warning with the HTMLParser safe argument.Tim Graham
refs 6ca6c36f82b97eafeada61384b2e2f1d0587da86
2014-03-27Add a useful stacklevel to some RemovedInDjango19WarningsChris Beaven