Vytis Banaitis
|
3dcc351691
|
Refs #23919 -- Used yield from.
|
2017-02-23 20:06:01 -05:00 |
Tim Graham
|
0166dd2f8c
|
Fixed #25524 -- Removed GISOperations.get_distance()'s handle_spheroid param.
|
2017-02-11 05:47:20 -05:00 |
Claude Paroz
|
c651331b34
|
Converted usage of ugettext* functions to their gettext* aliases
Thanks Tim Graham for the review.
|
2017-02-07 09:04:04 +01:00 |
Anton Samarchyan
|
5411821e3b
|
Refs #27656 -- Updated django.contrib docstring verb style according to PEP 257.
|
2017-02-04 16:39:28 -05:00 |
Vytis Banaitis
|
8838d4dd49
|
Refs #23919 -- Replaced kwargs.pop() with keyword-only arguments.
|
2017-02-01 11:41:56 -05:00 |
Tim Graham
|
0de0699d94
|
Fixed #27788 -- Dropped support for Oracle < 12.1.
|
2017-01-28 08:19:47 -05:00 |
Vytis Banaitis
|
d1bab24e01
|
Refs #23919, #27778 -- Removed obsolete mentions of unicode.
|
2017-01-26 08:19:27 -05:00 |
chillaranand
|
d6eaf7c018
|
Refs #23919 -- Replaced super(ClassName, self) with super().
|
2017-01-25 12:23:46 -05:00 |
Claude Paroz
|
6e55e1d88a
|
Refs #23919 -- Replaced six.reraise by raise
|
2017-01-22 20:08:04 +01:00 |
Tim Graham
|
d170c63351
|
Refs #23919 -- Removed misc references to Python 2.
|
2017-01-21 20:02:00 -05:00 |
Tim Graham
|
1b06d5e6f6
|
Refs #23919 -- Removed pysqlite support (it's Python 2 only).
|
2017-01-20 18:21:15 -05:00 |
Claude Paroz
|
042b7350a0
|
Refs #23919 -- Removed unneeded str() calls
|
2017-01-20 14:13:55 +01:00 |
Simon Charette
|
4c5ed3e683
|
Refs #23919 -- Removed __nonzero__() methods (for Python 2).
Thanks Tim for the review.
|
2017-01-19 11:26:26 -05:00 |
Claude Paroz
|
53f3d53ed4
|
Updated translation catalogs
Forward port of 518693bef5 from stable/1.11.x
|
2017-01-19 17:09:37 +01:00 |
Simon Charette
|
cecc079168
|
Refs #23919 -- Stopped inheriting from object to define new style classes.
|
2017-01-19 08:39:46 +01:00 |
Aymeric Augustin
|
eb422e476f
|
Refs #23919 -- Removed obsolete __ne__() methods.
__ne__() defaults to the opposite of __eq__() on Python 3
when it doesn't return NotImplemented.
|
2017-01-18 21:44:00 -05:00 |
Claude Paroz
|
2b281cc35e
|
Refs #23919 -- Removed most of remaining six usage
Thanks Tim Graham for the review.
|
2017-01-18 21:33:28 +01:00 |
Claude Paroz
|
7b2f2e74ad
|
Refs #23919 -- Removed six.<various>_types usage
Thanks Tim Graham and Simon Charette for the reviews.
|
2017-01-18 20:18:46 +01:00 |
Claude Paroz
|
c716fe8782
|
Refs #23919 -- Removed six.PY2/PY3 usage
Thanks Tim Graham for the review.
|
2017-01-18 16:21:28 +01:00 |
Claude Paroz
|
f3c43ad1fd
|
Refs #23919 -- Removed python_2_unicode_compatible decorator usage
|
2017-01-18 13:44:34 +01:00 |
Claude Paroz
|
d7b9aaa366
|
Refs #23919 -- Removed encoding preambles and future imports
|
2017-01-18 09:55:19 +01:00 |
Tim Graham
|
1691782652
|
Refs #26509 -- Removed contrib.gis.utils.precision_wkt() per deprecation timeline.
|
2017-01-17 20:52:04 -05:00 |
Tim Graham
|
7e63e84572
|
Refs #25773 -- Removed deprecated geos.MultiPolygon.cascaded_union property.
|
2017-01-17 20:52:02 -05:00 |
Tim Graham
|
997c9f7099
|
Refs #25665 -- Removed deprecated getter/setter of Point.tuple.
|
2017-01-17 20:52:02 -05:00 |
Tim Graham
|
19d8e64ac3
|
Refs #25665 -- Removed deprecated getters/setters of Point coordinate properties.
|
2017-01-17 20:52:02 -05:00 |
Tim Graham
|
a0149848f7
|
Refs #25665 -- Removed GEOSGeometry.get/set_srid() per deprecation timeline.
|
2017-01-17 20:52:01 -05:00 |
Tim Graham
|
56a5760543
|
Refs #25184 -- Removed contrib.gis.geoip per deprecation timeline.
|
2017-01-17 20:52:00 -05:00 |
Tim Graham
|
a0d166306f
|
Removed GeoManager and GeoQuerySet per deprecation timeline.
|
2017-01-17 20:51:56 -05:00 |
Tim Graham
|
b5511dddd6
|
Moved unneeded ImproperlyConfigured inner imports.
|
2017-01-16 12:48:41 -05:00 |
Tim Graham
|
c04207cd38
|
Replaced some GIS has_X_method skips with supports_X_aggr/has_X_function.
|
2017-01-03 09:49:00 -05:00 |
elky
|
fdb2309604
|
Refs #25004 -- Replaced PNGs with SVGs
|
2017-01-02 19:45:58 +01:00 |
Claude Paroz
|
2ebfda38e6
|
Fixed #25004 -- Updated OpenLayers-based widget to OpenLayers 3
Thanks Tim Graham for the review.
|
2017-01-02 19:45:52 +01:00 |
Andrew Nester
|
69b7d4b116
|
Fixed #27458 -- Fixed invalid sequence/index names when using "USER"."TABLE" db_table on Oracle.
|
2016-12-30 17:11:12 -05:00 |
Preston Timmons
|
b52c73008a
|
Fixed #15667 -- Added template-based widget rendering.
Thanks Carl Meyer and Tim Graham for contributing to the patch.
|
2016-12-27 17:50:10 -05:00 |
Sergey Fedoseev
|
5d28fef8f9
|
Made NumPoints raise TypeError on MySQL when it's used on fields besides LineStringField.
|
2016-12-16 10:34:02 -05:00 |
Tim Graham
|
3215bc98fe
|
Refs #27576 -- Fixed running Django's tests if GDAL isn't installed.
|
2016-12-15 17:38:34 -05:00 |
Sergey Fedoseev
|
b01ceae843
|
Fixed #25938 -- Factored out CPointerBase base class for GEOSBase/GDALBase.
|
2016-12-15 16:59:08 -05:00 |
Sergey Fedoseev
|
4884472447
|
Fixed #27576 -- Made get_srid_info() fallback to GDAL if SpatialRefSys is unavailable.
|
2016-12-15 16:36:18 -05:00 |
Sergey Fedoseev
|
986c7d522a
|
Fixed #27497 -- Improved support of geodetic coordinates on SpatiaLite.
Area function, Distance function, and distance lookups now work with
geodetic coordinates on SpatiaLite.
|
2016-12-15 15:31:07 -05:00 |
Sergey Fedoseev
|
38a6df555f
|
Fixed #27602 -- Added Oracle support for BoundingCircle GIS function.
|
2016-12-15 14:16:09 -05:00 |
Sergey Fedoseev
|
5a23cc00f5
|
Fixed #27607 -- Added Oracle support for AsGML GIS function.
|
2016-12-15 14:00:08 -05:00 |
Sergey Fedoseev
|
9b79281e31
|
Fixed #27472 -- Fixed GEOSGeometry('POINT EMPTY').transform crash.
|
2016-12-08 10:24:05 -05:00 |
Sergey Fedoseev
|
a413ef2155
|
Refs #27472 -- Fixed OGRGeometry('POINT EMPTY').geos crash.
|
2016-12-08 10:24:05 -05:00 |
Sergey Fedoseev
|
65a1f32319
|
Refs #27472 -- Fixed GEOSGeometry('POINT EMPTY').ogr crash.
|
2016-12-08 10:24:05 -05:00 |
Sergey Fedoseev
|
82fd779af5
|
Simplified Transform GIS function by setting output_field.
|
2016-12-08 09:48:26 -05:00 |
Sergey Fedoseev
|
f909fa84be
|
Fixed #25708 -- Fixed annotations with geometry values.
|
2016-12-07 14:16:29 -05:00 |
Sergey Fedoseev
|
183f501540
|
Fixed #26789 -- Fixed handling of empty geometries in BaseSpatialField.get_db_prep_save().
|
2016-12-06 13:58:22 -05:00 |
Sergey Fedoseev
|
b90d72facf
|
Refs #26789 -- Fixed output of WKBWriter for empty points and polygons.
|
2016-12-06 13:58:22 -05:00 |
Claude Paroz
|
cc9e429701
|
Fixed #27557 -- Casted GEOSGeometry only when necessary
Thanks Pete Flugstad for the report, and Tim Graham for the review.
|
2016-11-30 17:49:41 +01:00 |
Sergey Fedoseev
|
4464b9b9ad
|
Fixed #27556 -- Added Oracle support for IsValid function and isvalid lookup.
|
2016-11-30 11:22:56 -05:00 |