Renamed the system call package_app_byid() to package_app().

This commit is contained in:
skeeter 2002-02-23 14:23:13 +00:00
parent ce5d0d62e9
commit 924617a0e4
2 changed files with 9 additions and 9 deletions

View File

@ -219,7 +219,7 @@
{ {
if(is_object($this->is)) if(is_object($this->is))
{ {
$application = $this->is->send('system.package_app_byid',$app_id,$this->is->server['server_url']); $application = $this->is->send('system.package_app',$app_id,$this->is->server['server_url']);
// comment from here down to stop the actual install // comment from here down to stop the actual install
// This is where I need to install the application // This is where I need to install the application
$sep = filesystem_separator(); $sep = filesystem_separator();

View File

@ -709,12 +709,12 @@
return ExecMethod('phpgwapi.app_registry.find_new_app',$app->scalarval()); return ExecMethod('phpgwapi.app_registry.find_new_app',$app->scalarval());
} }
$GLOBALS['_xmlrpcs_package_app_byid_sig'] = array(array(xmlrpcStruct,xmlrpcString)); $GLOBALS['_xmlrpcs_package_app_sig'] = array(array(xmlrpcStruct,xmlrpcString));
$GLOBALS['_xmlrpcs_package_app_byid_doc'] = 'Package an application for transport back to the calling client'; $GLOBALS['_xmlrpcs_package_app_doc'] = 'Package an application for transport back to the calling client';
function _xmlrpcs_package_app_byid($server,$m) function _xmlrpcs_package_app($server,$m)
{ {
$app = $m->getParam(0); $app = $m->getParam(0);
return ExecMethod('phpgwapi.app_registry.package_app_byid',$app->scalarval()); return ExecMethod('phpgwapi.app_registry.package_app',$app->scalarval());
} }
$GLOBALS['_xmlrpcs_login_sig'] = array(array(xmlrpcStruct,xmlrpcStruct)); $GLOBALS['_xmlrpcs_login_sig'] = array(array(xmlrpcStruct,xmlrpcStruct));
@ -829,10 +829,10 @@
'signature' => $GLOBALS['_xmlrpcs_find_new_app_sig'], 'signature' => $GLOBALS['_xmlrpcs_find_new_app_sig'],
'docstring' => $GLOBALS['_xmlrpcs_find_new_app_doc'] 'docstring' => $GLOBALS['_xmlrpcs_find_new_app_doc']
), ),
'system.package_app_byid' => array( 'system.package_app' => array(
'function' => '_xmlrpcs_package_app_byid', 'function' => '_xmlrpcs_package_app',
'signature' => $GLOBALS['_xmlrpcs_package_app_byid_sig'], 'signature' => $GLOBALS['_xmlrpcs_package_app_sig'],
'docstring' => $GLOBALS['_xmlrpcs_package_app_byid_doc'] 'docstring' => $GLOBALS['_xmlrpcs_package_app_doc']
), ),
'system.login' => array( 'system.login' => array(
'function' => '_xmlrpcs_login', 'function' => '_xmlrpcs_login',