Index: google_appliance.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/google_appliance/google_appliance.module,v
retrieving revision 1.1
diff -u -p -r1.1 google_appliance.module
--- google_appliance.module	8 Apr 2008 17:50:32 -0000	1.1
+++ google_appliance.module	25 Apr 2008 21:55:58 -0000
@@ -17,13 +17,6 @@ function google_appliance_menu($may_cach
     'access' => true,
     );
 
-    $items[] = array (
-      'path' => 'google_appliance_feeder',
-      'callback' => 'google_apppliance_feeder',
-      'type' => MENU_CALLBACK,
-      'access' => true,
-    );
-
     $items[] = array(
       'path' => 'admin/settings/google_appliance',
       'title' => t('Google Appliance Settings'),
@@ -268,21 +261,6 @@ function _google_appliance_add_meta_tags
   }
 }
 
-function google_appliance_feeder() {
-  //not sure if this is appropriate as everything should be findable via the main site, but this basically just creates a listing of all nodes.
-  $result = db_query('SELECT * from {node} WHERE status = 1');
-  print '<html>';
-  print '<body>';
-
-  while ($row = db_fetch_object($result)) {
-    print l($row->title,'node/' . $row->nid);
-  }
-
-  print '</body>';
-  print '</html>';
-  die();
-}
-
 /**
  * Implementation of hook_search()
  *
