| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2026-02-06 | Fixed #36246 -- Caught GDALException in BaseGeometryWidget.deserialize. | JaeHyuck Sa | |
| Signed-off-by: JaeHyuck Sa <wogur981208@gmail.com> | |||
| 2025-07-23 | Removed double spaces after periods and within phrases. | Sarah Boyce | |
| 2022-02-07 | Refs #33476 -- Reformatted code with Black. | django-bot | |
| 2020-10-28 | Made small readability improvements. | Martin Thoma | |
| 2020-04-28 | Changed django.forms.ValidationError imports to ↵ | François Freitag | |
| django.core.exceptions.ValidationError. Co-Authored-By: Mariusz Felisiak <felisiak.mariusz@gmail.com> | |||
| 2018-11-23 | Fixed #29978 -- Catched GDALException in GeometryField.to_python | Claude Paroz | |
| 2018-04-02 | Fixed #29116 -- Fixed OpenLayersWidget deserialization ignoring the widget ↵ | Claude Paroz | |
| map's SRID. Regression in 6ecccad711b52f9273b1acb07a57d3f806e93928. | |||
| 2017-02-07 | Converted usage of ugettext* functions to their gettext* aliases | Claude Paroz | |
| Thanks Tim Graham for the review. | |||
| 2017-02-04 | Refs #27656 -- Updated django.contrib docstring verb style according to PEP 257. | Anton Samarchyan | |
| 2017-02-01 | Refs #23919 -- Replaced kwargs.pop() with keyword-only arguments. | Vytis Banaitis | |
| 2017-01-25 | Refs #23919 -- Replaced super(ClassName, self) with super(). | chillaranand | |
| 2017-01-18 | Refs #23919 -- Removed encoding preambles and future imports | Claude Paroz | |
| 2015-02-06 | Sorted imports with isort; refs #23860. | Tim Graham | |
| 2014-08-15 | Fixed #23162 -- Renamed forms.Field._has_changed() to has_changed(). | Gabriel Muñumel | |
| 2013-12-14 | Fixed E127 pep8 warnings. | Loic Bistuer | |
| 2013-11-28 | Fixed #21496 -- Fixed crash when GeometryField uses TextInput | Claude Paroz | |
| Thanks Rhett Garber for the report and initial patch. | |||
| 2013-11-02 | Fixed #21302 -- Fixed unused imports and import *. | Tim Graham | |
| 2013-10-26 | Fixed all the E203 violations | Alex Gaynor | |
| 2013-10-18 | Fixed #21287 -- Fixed E123 pep8 warnings | Alasdair Nicol | |
| 2013-10-05 | Fixed #21189: Cleaned up usage of bare except clauses. | Baptiste Mispelon | |
| Thanks to berkerpeksag for the report and to claudep for the review. | |||
| 2013-09-06 | Fixed a number of flake8 errors -- particularly around unused imports and ↵ | Alex Gaynor | |
| local variables | |||
| 2013-09-03 | Fixed #21003 -- Ensured geometry widget return value has SRID | Claude Paroz | |
| Thanks Mathieu Leplatre for the report and initial patch. | |||
| 2013-06-28 | Made GeoDjango GeometryField stop accepting a 'null' keyword argument as per ↵ | Ramiro Morales | |
| its deprecation in 1.5. | |||
| 2013-06-18 | Fixed #20199 -- Allow ModelForm fields to override error_messages from model ↵ | Loic Bistuer | |
| fields | |||
| 2013-05-17 | Fixed #5472 --Added OpenLayers-based widgets in contrib.gis | Claude Paroz | |
| Largely inspired from django-floppyforms. Designed to not depend on OpenLayers at code level. | |||
| 2013-03-15 | Fixed #16110 -- Fixed GeometryField odd behaviour regarding null values | Claude Paroz | |
| Thanks slinkp for the report and the initial patch. | |||
| 2013-01-25 | Moved has_changed logic from widget to form field | Claude Paroz | |
| Refs #16612. Thanks Aymeric Augustin for the suggestion. | |||
| 2012-06-19 | Fixed #15271 -- Defined a to_python method for GeometryField | Claude Paroz | |
| Thanks volrath and copelco for their work on the patch. | |||
| 2012-06-07 | Fixed #18269 -- Applied unicode_literals for Python 3 compatibility. | Claude Paroz | |
| Thanks Vinay Sajip for the support of his django3 branch and Jannis Leidel for the review. | |||
| 2009-04-30 | Added a missing ASCII 32 in a GIS form field error message. Thanks Alex ↵ | Brian Rosner | |
| Gaynor for catching it. git-svn-id: http://code.djangoproject.com/svn/django/trunk@10650 bcc190cf-cafb-0310-a4f2-bffc1f526a37 | |||
| 2009-04-25 | Fixed #10660 -- `GeometryField` no longer requires `srid`/`null` keywords, ↵ | Justin Bronn | |
| and now respects `required`; coordinate transformations now done inside `gis.forms.GeometryField` -- benefit being that `OSMGeoAdmin` no longer requires 900913 entry in `spatial_ref_sys` thus enabling it to work with MySQL/Oracle spatial backends; added tests for geographic forms. git-svn-id: http://code.djangoproject.com/svn/django/trunk@10634 bcc190cf-cafb-0310-a4f2-bffc1f526a37 | |||
| 2009-03-30 | Refactored and cleaned up parts of the spatial database backend. Changes ↵ | Justin Bronn | |
| include: * Laid foundations for SpatiaLite support in `GeoQuerySet`, `GeoWhereNode` and the tests. * Added the `Collect` aggregate for PostGIS (still needs tests). * Oracle now goes to 11. * The backend-specific `SpatialRefSys` and `GeometryColumns` models are now attributes of `SpatialBackend`. * Renamed `GeometryField` attributes to be public that were private (e.g., `_srid` -> `srid` and `_geom` -> `geom_type`). * Renamed `create_test_db` to `create_test_spatial_db`. * Removed the legacy classes `GeoMixin` and `GeoQ`. * Removed evil `\` from spatial backend fields. * Moved shapefile data from `tests/layermap` to `tests/data`. Fixed #9794. Refs #9686. git-svn-id: http://code.djangoproject.com/svn/django/trunk@10197 bcc190cf-cafb-0310-a4f2-bffc1f526a37 | |||
| 2008-08-26 | Fixed the `GeometryField` form to catch more than just GEOS exceptions. | Justin Bronn | |
| git-svn-id: http://code.djangoproject.com/svn/django/trunk@8565 bcc190cf-cafb-0310-a4f2-bffc1f526a37 | |||
| 2008-08-05 | Merged the gis branch into trunk. | Justin Bronn | |
| git-svn-id: http://code.djangoproject.com/svn/django/trunk@8219 bcc190cf-cafb-0310-a4f2-bffc1f526a37 | |||
