Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/django/contrib/gis/admin
Commit message (Collapse)AuthorAgeFilesLines
* Upgraded OpenLayers version from 2.13 to 2.13.1Claude Paroz2015-10-031-1/+1
| | | | Thanks Daniel Hahler for the initial patch.
* Made the @register decorator importable from ↵aroche2015-08-031-4/+4
| | | | contrib.gis.admin.
* Sorted imports in __init__.py files.Tim Graham2015-06-271-4/+2
|
* Added contrib.gis.admin.__all__Tim Graham2015-05-151-3/+9
|
* Delayed GDAL check for OSMGeoAdminClaude Paroz2015-04-242-24/+17
|
* Sorted imports with isort; refs #23860.Tim Graham2015-02-062-6/+4
|
* Deprecated some arguments of ↵Aymeric Augustin2014-12-281-4/+4
| | | | | | | | django.shortcuts.render(_to_response). dictionary and context_instance and superseded by context. Refactored tests that relied context_instance with more modern idioms.
* Fixed #24014 -- Unified OGRException and GDALExceptionClaude Paroz2014-12-181-2/+2
| | | | Thanks Tim Graham for the review.
* Fixed #19139 -- Made OpenLayersWidget follow ↵Flavio Curella2014-09-121-0/+3
| | | | | | GeoModelAdmin's modifiable attribute Thanks Tim Graham for the review.
* Dropped support for GDAL 1.6Claude Paroz2014-03-291-9/+3
|
* Fixed #21302 -- Fixed unused imports and import *.Tim Graham2013-11-021-4/+13
|
* Continue to attack E302 violationsAlex Gaynor2013-11-021-0/+1
|
* Fixed all the E203 violationsAlex Gaynor2013-10-272-34/+34
|
* Start attacking E231 violationsAlex Gaynor2013-10-241-1/+1
|
* Fixed #21298 -- Fixed E301 pep8 warningsAlasdair Nicol2013-10-231-0/+1
|
* Fixed #21285 -- Fixed E121,E122 pep8 warningsAlasdair Nicol2013-10-181-2/+2
|
* Fixed #21270 -- Fixed E701 pep8 warningsAlasdair Nicol2013-10-172-3/+6
|
* Updated OpenLayers version from 2.11 to 2.13Claude Paroz2013-10-121-1/+1
|
* Fixed assorted flake8 errors.Tim Graham2013-10-111-1/+1
|
* Fixed a number of lint warnings, particularly around ↵Alex Gaynor2013-08-041-1/+1
| | | | unused variables.
* Removed several unused imports.Aymeric Augustin2013-06-191-1/+0
|
* Fixed #9806 -- Allowed editing GeometryField with ↵Claude Paroz2013-03-092-1/+3
| | | | | | OpenLayersWidget Thanks Paul Winkler for the initial patch.
* Fixed #16594 -- Added wkt 3D support for GEOS geometriesClaude Paroz2013-03-091-2/+3
| | | | | | This requires GEOS >= 3.3.0 to function properly. On previous versions, the Z dimension will simply not appear in the wkt. Disabled OpenLayers editing for 3D geometries (unsupported).
* Moved has_changed logic from widget to form fieldClaude Paroz2013-01-251-23/+1
| | | | Refs #16612. Thanks Aymeric Augustin for the suggestion.
* Reported OpenLayersWidget exceptions through loggingClaude Paroz2012-10-171-2/+14
|
* [py3] Replaced basestring by six.string_types.Aymeric Augustin2012-07-221-2/+3
|
* Fixed #17328 -- Added OpenLayersWidget _has_changed methodClaude Paroz2012-06-061-1/+23
| | | | Thanks Will Hardy for the report and the patch.
* Fixed #14886 -- Added wms_options dict to GeoModelAdmin.Claude Paroz2012-05-251-0/+8
| | | | | | It is now possible to set WMS options by overriding wms_options in a subclass of GeoModelAdmin. Thanks slinkp for the report and the initial patch.
* Fixed #18035 -- Removed deprecated AdminMediaHandler, as ↵Claude Paroz2012-04-081-2/+1
| | | | | | per official deprecation timeline. Thanks Jannis Leidel and Ramiro Morales for the review. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17879 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #17915 -- Switched GeoModelAdmin default WMS layer ↵Claude Paroz2012-03-171-1/+1
| | | | | | URL from Metacarta to OSGeo. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17762 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* OpenLayers has had built-in OSM support since 2.10, no ↵Justin Bronn2011-09-181-1/+0
| | | | | | need for extra JS. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16847 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Updated the geographic admin to use OpenLayers 2.11.Justin Bronn2011-09-171-1/+1
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@16846 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #16790 -- Modified the geographic admin to work ↵Justin Bronn2011-09-101-3/+3
| | | | | | after r16594. Thanks, jdiego, for the bug report and patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16775 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #16225 -- Removed unused imports. Many thanks to ↵Jannis Leidel2011-07-132-2/+0
| | | | | | Aymeric Augustin for the work on the patch and Alex for reviewing. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16539 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #16050 -- BACKWARDS-INCOMPATIBLE CHANGE: Moved ↵Jannis Leidel2011-06-301-5/+6
| | | | | | | | | | static files of the admin to conventional file system location. This also removes the need for ADMIN_MEDIA_PREFIX and replaces it with the convention to find admin's static files at STATIC_URL + 'admin/'. Thanks to Jacob for the review and general help. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16487 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #15533 -- Now use 3857 as spherical mercator ↵Justin Bronn2011-03-161-1/+8
| | | | | | projection instead of deprecated 900913 on platforms that support it. Thanks to cnorthwood for bug report and Christopher Schmidt for OpenLayers JavaScript workaround. git-svn-id: http://code.djangoproject.com/svn/django/trunk@15845 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Updated OpenLayers (now points to 2.10) and ↵Justin Bronn2010-11-021-2/+2
| | | | | | OpenStreetMap JavaScript URLs. git-svn-id: http://code.djangoproject.com/svn/django/trunk@14445 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #13617 -- `OSMGeoAdmin` now works again when ↵Justin Bronn2010-10-241-1/+1
| | | | | | `USE_L10N` (or `LANGUAGE_CODE`) is set. Thanks, Federico Hlawaczek, for workaround and piquadrat for patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@14341 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #11810 -- Fixed typo and errors that prevented ↵Justin Bronn2010-04-161-7/+1
| | | | | | `modifiable` from working in the geographic admin. Thanks to Rob Coup for the bug report. Refs #12504. git-svn-id: http://code.djangoproject.com/svn/django/trunk@12995 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #11401 -- Update geographic admin to use ↵Justin Bronn2009-06-291-1/+1
| | | | | | OpenLayers 2.8 as OpenStreetMap does not support previous versions. Thanks, yourcelf for ticket and patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@11125 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #10872 -- Geographic admin now supports new ↵Justin Bronn2009-04-261-2/+7
| | | | | | `list_editable` option. Thanks to Dane Springmeyer and Alex Gaynor for the solution. git-svn-id: http://code.djangoproject.com/svn/django/trunk@10636 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #9299 -- Made default zoom level for points in the ↵Justin Bronn2009-04-261-0/+3
| | | | | | admin more sensible. Thanks to oyvind for ticket and initial patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@10635 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Removed references to deprecated `GeometryField` ↵Justin Bronn2009-04-241-8/+8
| | | | | | atribute in `GeoModelAdmin`. git-svn-id: http://code.djangoproject.com/svn/django/trunk@10633 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #9130 -- Fixed typo in comment, thanks scel.Gary Wilson Jr2009-03-311-6/+6
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@10220 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed geographic admin to be compatible with ↵Justin Bronn2009-01-161-0/+1
| | | | | | `ModelAdmin.formfield_for_dbfield` changes in r9760. git-svn-id: http://code.djangoproject.com/svn/django/trunk@9763 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #9278, #9694 -- Geographic overlays now display in ↵Justin Bronn2009-01-132-8/+16
| | | | | | admin with right to left langauges; simplified transformation process in `OpenLayersWidget` to fix Ubuntu 8.10/Apache 2.2.9 crash; updated OpenLayers version to 2.7. git-svn-id: http://code.djangoproject.com/svn/django/trunk@9733 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #9391 -- `AdminSite` and `ModelAdmin` now exposed ↵Justin Bronn2008-10-261-1/+1
| | | | | | in `django.contrib.gis.admin` for API consistency and convenience. git-svn-id: http://code.djangoproject.com/svn/django/trunk@9282 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Merged the gis branch into trunk.Justin Bronn2008-08-053-0/+232
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8219 bcc190cf-cafb-0310-a4f2-bffc1f526a37