web/lib/django/contrib/gis/db/backends/adapter.py
changeset 29 cc9b7e14412b
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/web/lib/django/contrib/gis/db/backends/adapter.py	Tue May 25 02:43:45 2010 +0200
@@ -0,0 +1,17 @@
+class WKTAdapter(object):
+    """
+    This provides an adaptor for Geometries sent to the
+    MySQL and Oracle database backends.
+    """
+    def __init__(self, geom):
+        self.wkt = geom.wkt
+        self.srid = geom.srid
+
+    def __eq__(self, other):
+        return self.wkt == other.wkt and self.srid == other.srid
+
+    def __str__(self):
+        return self.wkt
+
+    def prepare_database_save(self, unused):
+        return self