Django

Code

Changeset 8295

Show
Ignore:
Timestamp:
08/10/08 23:33:27 (5 months ago)
Author:
gwilson
Message:

Refs #7742 -- Removed oldforms bits from contrib.gis app.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/django/contrib/gis/db/models/fields/__init__.py

    r8224 r8295  
    22# Getting the SpatialBackend container and the geographic quoting method. 
    33from django.contrib.gis.db.backend import SpatialBackend, gqn 
    4 # GeometryProxy, GEOS, Distance, and oldforms imports. 
     4# GeometryProxy, GEOS, and Distance imports. 
    55from django.contrib.gis.db.models.proxy import GeometryProxy 
    66from django.contrib.gis.measure import Distance 
    7 from django.contrib.gis.oldforms import WKTField 
    8  
    97# The `get_srid_info` function gets SRID information from the spatial 
    108# reference system table w/o using the ORM. 
     
    191189            return SpatialBackend.Adaptor(self.get_geometry(value)) 
    192190 
    193     def get_manipulator_field_objs(self): 
    194         "Using the WKTField (oldforms) to be our manipulator." 
    195         return [WKTField] 
    196  
    197191# The OpenGIS Geometry Type Fields 
    198192class PointField(GeometryField):