| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2015-12-04 | Fixed #13774 -- Added models.Field.rel_db_type(). | Alexander Sosnovskiy | |
| 2015-12-03 | Fixed #25820 -- Allowed whitespace in admin's calendar.js month/weekday names. | bphillips | |
| This is useful for certain language translations. | |||
| 2015-12-03 | Fixed #25797 -- Fixed regex for getting units from SRS WKT. | Sergey Fedoseev | |
| 2015-12-03 | Refs #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-03 | Fixed #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-03 | Fixed #25825 -- Implemented __ne__() for template Origin | Jaap Roes | |
| 2015-12-03 | Fixed many spelling mistakes in code, comments, and docs. | Josh Soref | |
| 2015-12-02 | Fixed #25667 -- Fixed admindocs initial_header_level. | Ville Skyttä | |
| 2015-12-02 | Fixed #25836 -- Added support for MakeLine aggregate on SpatiaLite. | Sergey Fedoseev | |
| 2015-12-01 | Pulled contrib translations from Transifex | Claude Paroz | |
| Forward port of 6a4649c27e6 from stable/1.9.x | |||
| 2015-12-01 | Pulled core Django translations from Transifex | Claude Paroz | |
| Forward port of 3039d76bd6f from stable/1.9.x | |||
| 2015-11-30 | Fixed #25823 -- Made some titles consistent in admindocs. | gunchleoc | |
| 2015-11-30 | Fixed #25835 -- Removed Adaptor alias from spatial operations classes. | Sergey Fedoseev | |
| 2015-11-30 | Fixed #25827 -- Removed extra spacing in admin's DateTimeField. | elky | |
| 2015-11-28 | Fixed #25812 -- Restored the ability to use custom formats with the date ↵ | Gagaro | |
| template filter. | |||
| 2015-11-27 | Fixed #25826 -- Improved help text for the --parallel option | Baptiste Mispelon | |
| This was overlooked in 81f5d63218851f90bd83c1263d9a427db84d6082. | |||
| 2015-11-27 | Added Scottish Gaelic as new available language | Claude Paroz | |
| Refs #25815. Thanks gunchleoc <fios@foramnagaidhlog.net> for the Scottish Gaelic formats.py. | |||
| 2015-11-27 | Added Colombian Spanish as new available language | Claude Paroz | |
| Refs #25815. | |||
| 2015-11-27 | Added two translator comments in contrib apps | Claude Paroz | |
| Thanks GunChleoc for the suggestions. | |||
| 2015-11-26 | Fixed #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-26 | Fixed #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-26 | Fixed a typo in the template Parser.parse docstring. | Jaap Roes | |
| 2015-11-25 | Fixed #25806 -- Removed name mangling from syndication.Feed's ↵ | Tim Graham | |
| _get_dynamic_attr(). It doesn't seem to serve any purpose. | |||
| 2015-11-25 | Fixed #25773 -- Deprecated the geos.MultiPolygon.cascaded_union property. | Sergey Fedoseev | |
| 2015-11-25 | Fixed #25772 -- Corrected __len lookup on ArrayField for empty arrays. | Attila Tovt | |
| 2015-11-25 | Fixed #25734 -- Made GDALBand min and max properties use ↵ | Daniel Wiesmann | |
| GDALComputeRasterStatistics. Thanks Sergey Fedoseev and Tim Graham for the review. | |||
| 2015-11-25 | Fixed #25274 --- Made inspectdb handle renamed fields in unique_together. | Jacek Bzdak | |
| 2015-11-24 | Fixed a settings leak possibility in the date template filter. | Florian Apolloner | |
| This is a security fix. | |||
| 2015-11-24 | Fixed #25767 -- Fixed data truncation possibility with ↵ | George Marshall | |
| Positive(Small)IntegerField on MySQL. | |||
| 2015-11-23 | Refs #25663 -- Fixed checking of the number of points for LineString if ↵ | Sergey Fedoseev | |
| initialized from numpy.array. | |||
| 2015-11-23 | Made ListFilter.choices() argument name more explicit. | Johannes Ammon | |
| 2015-11-22 | Fixed #25784 -- Prevented an exception on collectstatic help | Alex Morozov | |
| Made the `manage.py help collectstatic` don't fail if the `STATIC_ROOT` setting is empty. | |||
| 2015-11-21 | Fixed #13427 -- Made auto-m2m verbose names translatable | Claude Paroz | |
| 2015-11-21 | Fixed #25715 -- Fixed Model.refresh_from_db() with ForeignKey ↵ | Tim Graham | |
| w/on_delete=SET_NULL. | |||
| 2015-11-20 | Fixed #25722 -- Added the GEOSGeometry.covers() method. | Sergey Fedoseev | |
| 2015-11-20 | Fixed #25551 -- Fixed migration operations ordering when adding fields and a ↵ | Ana Vojnovic | |
| unique_together constraint. | |||
| 2015-11-20 | Fixed #25779 -- Removed redundant try block in WSGIHandler | Attila Tovt | |
| 2015-11-19 | Fixed #25764 -- Added support for serialization of enum.Enum in migrations. | Andrei Fokau | |
| Thanks Tim Graham for the review. | |||
| 2015-11-19 | Fixed #19361 -- Added link to object's change form in admin's post-save message. | Anton Baklanov | |
| Thanks Roel Kramer for tests. | |||
| 2015-11-19 | Updated sitemaps.ping_google() to use https. | Matt Robenolt | |
| 2015-11-19 | Fixed #25769 -- Updated get_version() release candidate naming for PEP 0440. | Tim Graham | |
| 2015-11-19 | Fixed #25677 -- Prevented decoding errors in/after Popen calls | Claude Paroz | |
| Thanks Gavin Wahl for the report and Tim Graham for the review. | |||
| 2015-11-18 | Fixed #22810 -- Corrected admin changelist count for list filters that ↵ | Nick Sandford | |
| filter by default. | |||
| 2015-11-18 | Fixed #25654 -- Added the GEOSGeometry.unary_union property. | Sergey Fedoseev | |
| 2015-11-18 | Fixed #25663 -- Added checking of the number of points for LinearRing and ↵ | Sergey Fedoseev | |
| LineString. | |||
| 2015-11-18 | Fixed #25665 -- Deprecated getter/setter of Point.tuple. | Sergey Fedoseev | |
| 2015-11-18 | Refs #25665 -- Deprecated getters/setters of Point coordinate properties. | Sergey Fedoseev | |
| 2015-11-18 | Refs #25665 -- Deprecated getter/setter of GEOSGeometry.srid. | Sergey Fedoseev | |
| 2015-11-18 | Removed redundant termcolors. | Tim Graham | |
| Replaced MIGRATE_SUCCESS and MIGRATE_FAILURE with SUCCESS and ERROR. | |||
| 2015-11-18 | Fixed #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'. | |||
