Changeset 8295
- Timestamp:
- 08/10/08 23:33:27 (5 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/contrib/gis/db/models/fields/__init__.py
r8224 r8295 2 2 # Getting the SpatialBackend container and the geographic quoting method. 3 3 from django.contrib.gis.db.backend import SpatialBackend, gqn 4 # GeometryProxy, GEOS, Distance, and oldformsimports.4 # GeometryProxy, GEOS, and Distance imports. 5 5 from django.contrib.gis.db.models.proxy import GeometryProxy 6 6 from django.contrib.gis.measure import Distance 7 from django.contrib.gis.oldforms import WKTField8 9 7 # The `get_srid_info` function gets SRID information from the spatial 10 8 # reference system table w/o using the ORM. … … 191 189 return SpatialBackend.Adaptor(self.get_geometry(value)) 192 190 193 def get_manipulator_field_objs(self):194 "Using the WKTField (oldforms) to be our manipulator."195 return [WKTField]196 197 191 # The OpenGIS Geometry Type Fields 198 192 class PointField(GeometryField):
