summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
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 #21858 -- Clarified 1.6 release note regarding M2M help text changes.Tim Graham
Thanks lee at semel.net for the report.
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-29Added note in geo library docsClaude 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-27Skipped JavascriptI18nTests if Firefox isn't properly configured.Tim Graham
Code borrowed from django.contrib.admin.tests. Without this, the class can throw an exception with something like "The browser appears to have exited before we could connect. The output was: Error: no display specified"
2014-03-27Fixed a deprecation warning with the HTMLParser safe argument.Tim Graham
refs 6ca6c36f82b97eafeada61384b2e2f1d0587da86
2014-03-27Added Python 3.4 support notes.Tim Graham
2014-03-27Fixed #21941 -- Documented the kwargs param of django.conf.urls.url().Tim Martin
Thanks cjerdonek for the report.
2014-03-27Fixed a deprecation warning on Python 3.Tim Graham
2014-03-27Skipped a test that errors rather than marked it as an expectedFailure.Tim Graham
The test throws an error which Python 3.4 doesn't seem to catch as an expectedFailure. refs 7476d96f83a004d674244aeb7a66289035427396
2014-03-27Add a useful stacklevel to some RemovedInDjango19WarningsChris Beaven
2014-03-26Forgotten slash removal in d320863878Claude Paroz
2014-03-26Fixed #22114 -- Stopped adding trailing slashes in URLField.to_pythonClaude Paroz
Thanks coredumperror at gmail.com for the report and Tim Graham for the review.
2014-03-26Fixed the PostGIS circular imports caused by 1506c71a95.Simon Charette
Thanks to @loic for the help and @timgraham for the review. refs #12030.
2014-03-26Fixed #22029 -- Removed obsolete advice on registering migrate/syncdb signal ↵Tim Graham
handlers. All signals should now be registered in AppConfig.ready(). Thanks un33k for the report.
2014-03-26Fixed Python 3.4 test failure.Tim Graham
2014-03-26Merge pull request #2481 from zsiciarz/ticket-22335Claude Paroz
Fixed #22335 -- Fixed popen_wrapper error on non-English Windows systems.
2014-03-26Fixed #22335 -- Fixed popen_wrapper error on non-English Windows systems.Zbigniew Siciarz
2014-03-25Fixed field deconstruction tests failures introduced by 1506c71a95.Simon Charette
refs #12030.
2014-03-25Fixed #22331 -- Made MigrationAutodetector ignore unmanaged models.Tim Graham
This commit reverts 69d4b1c and tackle the issue from a different angle. Models remain present in the project state, but are now ignored by the autodetector.
2014-03-25Add some syncdb deprecation stuff into the deprecation docAndrew Godwin
2014-03-25Fixed #12030 -- Validate integer field range at the model level.Simon Charette
Thanks to @timgraham for the review.
2014-03-25Fixed #22322 -- Fixed incorrect explanation of what managed=False does.Tim Graham
refs #14305. Thanks Adrian Klaver for the report.
2014-03-25Fixed #22331 -- Fixed migrations ProjectState to ignore unmanaged models.Loic Bistuer
2014-03-25Fixed #22315 -- str/bytes mismatch in staticfilesDavid Evans
Previously, `ManifestFilesMixin.read_manifest` failed in Python 3 because `json.loads` accepts `str` not `bytes`.
2014-03-25flake8 and doc fixes for refs #22257.Tim Graham
2014-03-25Fixed #22087 -- Made AdminReadonlyField respect ModelForm Meta overrides.Ben Davis
2014-03-25Fixed #22300 -- Fixed crash in migrations when changing non-relational field ↵Stephen Burrows
to relational.
2014-03-25Merge pull request #2465 from coder9042/ticket_22258Marc Tamlyn
Fixed #22257 -- Added file output option to dumpdata command.
2014-03-25Fixed #22257 -- Added file output option to dumpdata command.Anubhav Joshi
2014-03-24Fixed #22293 -- Avoided renaming many-to-many tables to themselves.Daniel Hahler
Fixed this for both implementations of _alter_many_to_many, instead of in `alter_db_table` itself (more implementations).
2014-03-24Fixed typo in error message in django.contrib.sitemaps.Jannis
2014-03-24Removed versionadded/changed annotations for 1.6.Tim Graham
2014-03-24Fixed #22048 - Enhanced docs to cover nonexistent one-to-one relationships.Adam Kaliński
Thanks EvilDMP for the suggestion.
2014-03-24Fixed #22247 -- Replaced "upstream" with "downstream" in cache docs.Tim Graham
Thanks valgarv at gmx.net for the report.
2014-03-24Fixed #21665 -- Documented that changes in assertRedirects may be required ↵Tim Graham
given new URL escaping behavior. Thank pdc for the report.
2014-03-24Fixed #17922 -- Added required_css_class to form label.Anubhav Joshi
Thanks hanson2010 for the suggestion.
2014-03-24Updated six to 1.6.1.Tim Graham
2014-03-24Fixed #22265 -- Clarfied consistent behavior of migrations.Moayad Mardini
Thanks aruseni for the report.
2014-03-24Fixed #22318 -- Added Form.has_error() to easily check if a given error has ↵Loic Bistuer
happened.