summaryrefslogtreecommitdiff
path: root/django
AgeCommit message (Collapse)Author
2015-12-04Fixed #13774 -- Added models.Field.rel_db_type().Alexander Sosnovskiy
2015-12-03Fixed #25820 -- Allowed whitespace in admin's calendar.js month/weekday names.bphillips
This is useful for certain language translations.
2015-12-03Fixed #25797 -- Fixed regex for getting units from SRS WKT.Sergey Fedoseev
2015-12-03Refs #25655 -- Made HAS_GEOS depend on a minimum version.Claude Paroz
This skips some tests on systems with GEOS < 3.3 (the minimum supported version).
2015-12-03Fixed #25761 -- Added __cause__.__traceback__ to reraised exceptions.Raphaël Hertzog
When Django reraises an exception, it sets the __cause__ attribute even in Python 2, mimicking Python's 3 behavior for "raise Foo from Bar". However, Python 3 also ensures that all exceptions have a __traceback__ attribute and thus the "traceback2" Python 2 module (backport of Python 3's "traceback" module) relies on the fact that whenever you have a __cause__ attribute, the recorded exception also has a __traceback__ attribute. This is breaking testtools which is using traceback2 (see https://github.com/testing-cabal/testtools/issues/162). This commit fixes this inconsistency by ensuring that Django sets the __traceback__ attribute on any exception stored in a __cause__ attribute of a reraised exception.
2015-12-03Fixed #25825 -- Implemented __ne__() for template OriginJaap Roes
2015-12-03Fixed many spelling mistakes in code, comments, and docs.Josh Soref
2015-12-02Fixed #25667 -- Fixed admindocs initial_header_level.Ville Skyttä
2015-12-02Fixed #25836 -- Added support for MakeLine aggregate on SpatiaLite.Sergey Fedoseev
2015-12-01Pulled contrib translations from TransifexClaude Paroz
Forward port of 6a4649c27e6 from stable/1.9.x
2015-12-01Pulled core Django translations from TransifexClaude Paroz
Forward port of 3039d76bd6f from stable/1.9.x
2015-11-30Fixed #25823 -- Made some titles consistent in admindocs.gunchleoc
2015-11-30Fixed #25835 -- Removed Adaptor alias from spatial operations classes.Sergey Fedoseev
2015-11-30Fixed #25827 -- Removed extra spacing in admin's DateTimeField.elky
2015-11-28Fixed #25812 -- Restored the ability to use custom formats with the date ↵Gagaro
template filter.
2015-11-27Fixed #25826 -- Improved help text for the --parallel optionBaptiste Mispelon
This was overlooked in 81f5d63218851f90bd83c1263d9a427db84d6082.
2015-11-27Added Scottish Gaelic as new available languageClaude Paroz
Refs #25815. Thanks gunchleoc <fios@foramnagaidhlog.net> for the Scottish Gaelic formats.py.
2015-11-27Added Colombian Spanish as new available languageClaude Paroz
Refs #25815.
2015-11-27Added two translator comments in contrib appsClaude Paroz
Thanks GunChleoc for the suggestions.
2015-11-26Fixed #25302 (again) -- Ignored scheme when checking for bad referers.Aymeric Augustin
The check introduced in 4ce433e was too strict in real life. The poorly implemented bots this patch attempted to ignore are sloppy when it comes to http vs. https.
2015-11-26Fixed #25807 -- Instructed the migration writer about lazy objects.Simon Charette
Thanks to Trac alias mrgaolei for the report, Baptiste for the confirmation and Tim for the review.
2015-11-26Fixed a typo in the template Parser.parse docstring.Jaap Roes
2015-11-25Fixed #25806 -- Removed name mangling from syndication.Feed's ↵Tim Graham
_get_dynamic_attr(). It doesn't seem to serve any purpose.
2015-11-25Fixed #25773 -- Deprecated the geos.MultiPolygon.cascaded_union property.Sergey Fedoseev
2015-11-25Fixed #25772 -- Corrected __len lookup on ArrayField for empty arrays.Attila Tovt
2015-11-25Fixed #25734 -- Made GDALBand min and max properties use ↵Daniel Wiesmann
GDALComputeRasterStatistics. Thanks Sergey Fedoseev and Tim Graham for the review.
2015-11-25Fixed #25274 --- Made inspectdb handle renamed fields in unique_together.Jacek Bzdak
2015-11-24Fixed a settings leak possibility in the date template filter.Florian Apolloner
This is a security fix.
2015-11-24Fixed #25767 -- Fixed data truncation possibility with ↵George Marshall
Positive(Small)IntegerField on MySQL.
2015-11-23Refs #25663 -- Fixed checking of the number of points for LineString if ↵Sergey Fedoseev
initialized from numpy.array.
2015-11-23Made ListFilter.choices() argument name more explicit.Johannes Ammon
2015-11-22Fixed #25784 -- Prevented an exception on collectstatic helpAlex Morozov
Made the `manage.py help collectstatic` don't fail if the `STATIC_ROOT` setting is empty.
2015-11-21Fixed #13427 -- Made auto-m2m verbose names translatableClaude Paroz
2015-11-21Fixed #25715 -- Fixed Model.refresh_from_db() with ForeignKey ↵Tim Graham
w/on_delete=SET_NULL.
2015-11-20Fixed #25722 -- Added the GEOSGeometry.covers() method.Sergey Fedoseev
2015-11-20Fixed #25551 -- Fixed migration operations ordering when adding fields and a ↵Ana Vojnovic
unique_together constraint.
2015-11-20Fixed #25779 -- Removed redundant try block in WSGIHandlerAttila Tovt
2015-11-19Fixed #25764 -- Added support for serialization of enum.Enum in migrations.Andrei Fokau
Thanks Tim Graham for the review.
2015-11-19Fixed #19361 -- Added link to object's change form in admin's post-save message.Anton Baklanov
Thanks Roel Kramer for tests.
2015-11-19Updated sitemaps.ping_google() to use https.Matt Robenolt
2015-11-19Fixed #25769 -- Updated get_version() release candidate naming for PEP 0440.Tim Graham
2015-11-19Fixed #25677 -- Prevented decoding errors in/after Popen callsClaude Paroz
Thanks Gavin Wahl for the report and Tim Graham for the review.
2015-11-18Fixed #22810 -- Corrected admin changelist count for list filters that ↵Nick Sandford
filter by default.
2015-11-18Fixed #25654 -- Added the GEOSGeometry.unary_union property.Sergey Fedoseev
2015-11-18Fixed #25663 -- Added checking of the number of points for LinearRing and ↵Sergey Fedoseev
LineString.
2015-11-18Fixed #25665 -- Deprecated getter/setter of Point.tuple.Sergey Fedoseev
2015-11-18Refs #25665 -- Deprecated getters/setters of Point coordinate properties.Sergey Fedoseev
2015-11-18Refs #25665 -- Deprecated getter/setter of GEOSGeometry.srid.Sergey Fedoseev
2015-11-18Removed redundant termcolors.Tim Graham
Replaced MIGRATE_SUCCESS and MIGRATE_FAILURE with SUCCESS and ERROR.
2015-11-18Fixed #25644 -- Fixed reset cookie expiry date bug.Raphael Merx
Setting a cookie with the same name as a previously deleted cookie would set its expiry date to 'Thu, 01-Jan-1970 00:00:00 GMT'.