summaryrefslogtreecommitdiff
path: root/django/contrib
AgeCommit message (Collapse)Author
2017-07-19Removed SRID use in PostGISAdapter.__eq__() and __hash__().Sergey Fedoseev
EWKB already contains the SRID.
2017-07-15Simplified GIS Funcs by using GeoFuncMixin.geo_field.Sergey Fedoseev
2017-07-14Fixed #28394 -- Allowed setting BaseExpression.output_field (renamed from ↵Sergey Fedoseev
_output_field).
2017-07-13Simplified GEOSCoordSeq._checkindex().Sergey Fedoseev
2017-07-13Removed unneeded index check in LineString._set_single() as index is already ↵Sergey Fedoseev
checked in __getitem__(). Unneeded since its introduction in 66e1670efae34d721e374788e4c3f8b5fe5fa481.
2017-07-13Removed unused ListMixin._checkindex() correct kwarg.Sergey Fedoseev
Unused since its introduction in 66e1670efae34d721e374788e4c3f8b5fe5fa481.
2017-07-12Removed GeometryField.get_distance(); a GeoQuerySet leftover.Tim Graham
Follow up to a0d166306fbdc41f49e6fadf4ec84b17eb147daa.
2017-07-12Refs #28020 -- Removed obsolete GeometryCollection.json.Sergey Fedoseev
Unused since 12d0567aa5e82322543f0c0c126ba18c91a1e439.
2017-07-12Made LineString.__iter__() return iter() from internal GEOSCoordSeq both for ↵Sergey Fedoseev
simplicity and performance.
2017-07-11Fixed #28383 -- Made NumPoints GIS function return None for non-LINESTRING ↵Sergey Fedoseev
geometries on MySQL.
2017-07-05Refs #21415 -- Fixed contrib.humanize translations for es_ARClaude Paroz
Thanks Blas Castro for the report and the patch. Forward port of 72026fff3963973d607bf0b525a082d20f024406 from stable/1.11.x
2017-06-29Removed unused prototypes for deprecated GEOS functions.Sergey Fedoseev
2017-06-28Fixed #27818 -- Replaced try/except/pass with contextlib.suppress().Mads Jensen
2017-06-27Fixed #28330 -- Prevented passing positional arguments to an Index.Mariusz Felisiak
Thanks Tim Graham for the review.
2017-06-26Fixed #28313 -- Added model name max length check of 100 characters in ↵michaldabski
contrib.contentttypes.
2017-06-26Fixed #27964 -- Made MySQL backend raise exception if spatial transformation ↵Sergey Fedoseev
is needed for query.
2017-06-21Fixed #28127 -- Allowed UserCreationForm's password validation to check all ↵Andrew Pinkham
user fields.
2017-06-20Fixed #27869 -- Added fastupdate and gin_pending_list_limit params to GinIndex.Mads Jensen
Thanks Tim Graham and Markus Holtermann for review.
2017-06-17Refs #25809 -- Removed BrinIndex.__repr__().Tim Graham
In retrospect, implementing a __repr__() for index subclasses doesn't seem worthwhile.
2017-06-16Fixed #27787 -- Made call_command() validate the options it receives.Chandrakant Kumar
2017-06-16Fixed #28300 -- Allowed GDALRasters to use the vsimem filesystem.Daniel Wiesmann
Thanks Tim Graham for the review and edits.
2017-06-16Fixed #26936 -- Fixed stale ContentType deletion in apps without models.Pavel Rybintsev
2017-06-14Fixed #27998 -- Made ManyToManyField changes logged in admin's object history.Lincoln Smith
2017-06-13Fixed #27161 -- Fixed form validation when an ArrayField's base_field has ↵Romulo Furtado
choices.
2017-06-13Added tel input type to admin CSS.Mariusz Felisiak
2017-06-13Fixed #28295 -- Made admin's URLify.js trim trailing hyphens.monotonee
2017-06-13Fixed #27830 -- Used distutils.version.LooseVersion for version parsing.chillaranand
2017-06-13Fixed #28229 -- Fixed the value of LoginView's "next" template variable.Mikhail Golubev
2017-06-12Fixed #27967 -- Fixed KeyError in admin's inline form with inherited ↵Paulo
non-editable pk. Thanks Robin Anupol for the initial report and workaround.
2017-06-10Refs #23919 -- Replaced stray super(ClassName, self) with super().Tom
2017-06-08Fixed #28288 -- Allowed passing papsz options to GDALRaster initialization.Daniel Wiesmann
2017-06-07Factored shared Inline/ModelAdmin.get_fields() logic into BaseModelAdmin.Tim Graham
BaseModelAdmin.get_fields() was previously unused/untested.
2017-06-07Fixed #28257 -- Confirmed support for GDAL 2.2Claude Paroz
Additionally, a test has been updated to account for small SRS WKT differences. Thanks Tim Graham for writing the doc part.
2017-06-07Fixed #28232 -- Made raster metadata readable and writable on GDALRaster/Band.Daniel Wiesmann
2017-06-06Fixed #28278 -- Fixed invalid HTML for a required AdminFileWidget.kakulukia
2017-06-06Fixed #28202 -- Fixed FieldListFilter.get_queryset() crash on invalid input.Paulo
2017-06-05Replaced Model._get_pk_val() with pk property.Tim Graham
Model.pk was added after _get_pk_val() and many places weren't simplified.
2017-06-05Fixed #28262 -- Fixed incorrect DisallowedModelAdminLookup when a nested ↵Paulo
reverse relation is in list_filter.
2017-06-03Removed unused django.contrib.gis.shortcuts.render_to_text()Tim Graham
Unused since its introduction in 79e68c225b926302ebb29c808dda8afa49856f5c.
2017-06-03Fixed #28192 -- Required passing optional form field args as keyword args.Claude Paroz
2017-06-02Removed useless hasattr() checks in ModelAdmin checks.Tim Graham
These attributes are defined on BaseModelAdmin and thus should always be there.
2017-06-01Refs #23968 -- Removed unnecessary lists, generators, and tuple calls.Jon Dufresne
2017-06-01Sorted imports per isort 4.2.9.Tim Graham
2017-05-31Updated translations from TransifexClaude Paroz
Forward port of 02158a785eff923110cb4c7c7e635d3ce4a928e3 from stable/1.11.x
2017-05-30Refs #28181 -- Corrected detection of GDAL 2.1 on Windows.Tim Graham
Follow up to a404f75f92971634c76330f3742261d33ccecca1.
2017-05-30Refs #23804 -- Improved value validation in GDALRaster.geotransform setter.Adam Johnson
2017-05-29Fixed #26823 -- Prevented update_last_login signal receiver from crashing if ↵Linus Lewandowski
User model doesn't have last_login field.
2017-05-29Fixed #28248 -- Fixed password reset tokens being valid for 1 day longer ↵Nick Zaccardi
than PASSWORD_RESET_TIMEOUT_DAYS.
2017-05-27Added comments to contrib.sitemaps.index() view.Boris Burkov
2017-05-27Fixed #28249 -- Removed unnecessary dict.keys() calls.Jon Dufresne
iter(dict) is equivalent to iter(dict.keys()).