Only in soap_server/nusoap: nusoap-0.7.3.zip Only in /var/www/a/sites/all/modules/soap_server: nusoap-0.7.3.zip diff -urp /var/www/a/sites/all/modules/soap_server/soap_server.info soap_server/soap_server.info --- /var/www/a/sites/all/modules/soap_server/soap_server.info 2008-06-09 05:12:36.000000000 -0700 +++ soap_server/soap_server.info 2008-10-19 20:37:05.000000000 -0700 @@ -1,11 +1,6 @@ -; $Id: soap_server.info,v 1.1 2008/01/25 22:26:43 ilo Exp $ +; $Id$ name = SOAP Server description = Provides a SOAP server. package = Services - servers -dependencies = services - -; Information added by drupal.org packaging script on 2008-06-09 -version = "5.x-1.x-dev" -project = "soap_server" -datestamp = "1213013556" - +dependencies[] = services +core = 6.x diff -urp /var/www/a/sites/all/modules/soap_server/soap_server.module soap_server/soap_server.module --- /var/www/a/sites/all/modules/soap_server/soap_server.module 2008-06-09 03:31:20.000000000 -0700 +++ soap_server/soap_server.module 2008-10-19 20:40:05.000000000 -0700 @@ -15,8 +15,8 @@ /** * Implementation of hook_menu() */ -function soap_server_help($section) { - switch ($section) { +function soap_server_help($page, $arg) { + switch ($page) { case 'admin/build/services/settings/soap': return '
'. t('The following are the configuration options for the SOAP Server.') .'
'; } @@ -25,14 +25,13 @@ function soap_server_help($section) { /** * Implementation of hook_menu() */ -function soap_server_menu($may_cache) { - $items[] = array( - 'path' => 'admin/build/services/settings/soap', - 'title' => t('SOAP Server'), - 'access' => user_access('administer services'), - 'callback' => 'drupal_get_form', - 'callback arguments' => 'soap_server_admin_settings', - 'description' => t('Configure the SOAP server.'), +function soap_server_menu() { + $items['admin/build/services/settings/soap'] = array( + 'title' => 'SOAP Server', + 'access arguments' => array('administer services'), + 'page callback' => 'drupal_get_form', + 'page arguments' => array('soap_server_admin_settings'), + 'description' => 'Configure the SOAP server.', 'type' => MENU_LOCAL_TASK, ); return $items;