? feeds2.patch
? geometry_type.patch
? includes/extended_converters.patch
? includes/feeds
? includes/geo_types.patch
? includes/views/views.patch
? modules/geo_field/feeds1.patch
? modules/geo_field/geo_field.patch
Index: geo.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/geo/geo.module,v
retrieving revision 1.37
diff -u -p -r1.37 geo.module
--- geo.module	9 Dec 2009 17:34:02 -0000	1.37
+++ geo.module	24 Dec 2009 04:11:04 -0000
@@ -223,3 +223,27 @@ function geo_views_api() {
     'path' => drupal_get_path('module', 'geo') .'/includes/views',
   );
 }
+
+/**
+ * Implementation of hook_feeds_plugins().
+ *
+ * Declare to Feeds that we have a parser plugin that it can use.
+ */
+function geo_feeds_plugins() {
+  $path = drupal_get_path('module', 'geo') .'/includes/feeds';
+  
+  $info = array();
+  
+  $info['GeoShapefileParser'] = array(
+    'name' => 'Shapefile parser',
+    'description' => 'Parse data in zipped shapefile format.',
+    'handler' => array(
+      'parent' => 'FeedsParser',
+      'class' => 'GeoShapefileParser',
+      'file' => 'GeoShapefileParser.inc',
+      'path' => $path,
+    ),
+  );
+  
+  return $info;
+}
\ No newline at end of file
