-
Removing files from the master branch
-
Merge branch 'master' into 6.x-1.x
-
Stripping CVS keywords
-
Stripping CVS keywords
-
Stripping CVS keywords
-
This commit was manufactured as part of Drupal's Great Git Migration to create branch 'DRUPAL-6--1'. Sprout from master 2010-06-10 16:09:06 UTC Allie Micka <allie_micka@15091.no-reply.drupal.org> 'Update function definition for point() to match the interface.' Cherrypick from master 2009-02-23 05:58:41 UTC Allie Micka <allie_micka@15091.no-reply.drupal.org> '#358255 by chiru - Error creating index using table prefix': db/mysql_spatial.inc db/postgis.inc geo.inc geo.module includes/shp2sql.inc includes/views/geo.views.inc includes/views/views_handler_field_geo.inc includes/views/views_handler_filter_geo.inc modules/geo_data/geo_data.admin.inc modules/geo_data/geo_data.module modules/geo_data/includes/views/geo_data.views.inc modules/geo_data/includes/views/views_handler_field_geo_data.inc modules/geo_field/geo_field.formatters.inc modules/geo_field/geo_field.install modules/geo_field/geo_field.module
-
Update function definition for point() to match the interface.
-
If the geo handler is malformed or unavailable, don't attempt to load geo_data's field value.
-
Ensuring that table-creating code works properly in the geo data import functionality.
-
- Build out GeomFromWKB(), GeomFromText() and other functions in the GeoSimple class. This mean that you can instantiate a geo object using WKB or WKT, run functions on it, and return it in any desired format. It also means that you can do basic data manipulations without any database interaction at all! You can now do stuff like: $geo = geo_load(); $g = $geo->geomFromWKB($wkb); $wkt = $g->asText(); - Completely deprecate the geo() function and the remaining sub-fuctions that were still in use: geo('rss_item') geo('wkt_validate') geo('wkt_from_point')