update about

This commit is contained in:
ceb 2002-10-28 00:26:57 +00:00
parent b034a977dd
commit 09ad6a9ecd
3 changed files with 85 additions and 13 deletions

View File

@ -17,16 +17,27 @@
$setup_info['addressbook']['app_order'] = 4;
$setup_info['addressbook']['enable'] = 1;
$setup_info['addressbook']['author'] = 'Joseph Engo, Miles Lott';
$setup_info['addressbook']['note'] = 'The phpgwapi manages contact data. Addressbook manages servers for its remote capability.';
$setup_info['addressbook']['author'][] = array
(
'name' => 'Joseph Engo',
'email' => 'jengo@phpgroupware.org'
);
$setup_info['addressbook']['author'][] = array
(
'name' => 'Miles Lott',
'email' => 'milos@speakeasy.net'
);
$setup_info['addressbook']['note'] = 'The phpgwapi manages contact data. Addressbook manages servers for its remote capability';
$setup_info['addressbook']['license'] = 'GPL';
$setup_info['addressbook']['description'] =
'Contact manager with Vcard support.<br>
Addressbook is the phpgroupware default contact application. <br>
It makes use of the phpgroupware contacts class to store and retrieve
contact information via SQL or LDAP.';
$setup_info['addressbook']['maintainer'] = 'Miles Lott';
$setup_info['addressbook']['maintainer_email'] = 'milosch@phpgroupware.org';
$setup_info['addressbook']['maintainer'] = '';
/* Tables */
$setup_info['addressbook']['tables'][] = 'phpgw_addressbook_servers';

View File

@ -17,12 +17,38 @@
$setup_info['admin']['tables'] = '';
$setup_info['admin']['enable'] = 1;
$setup_info['admin']['author'] = 'phpGW Core';
$setup_info['admin']['author'][] = array
(
'name' => 'phpGroupWare coreteam',
'email' => 'phpgroupware-developers@gnu.org'
);
$setup_info['admin']['maintainer'][] = array
(
'name' => 'Joseph Engo',
'email' => 'jengo@phpgroupware.org'
);
$setup_info['admin']['maintainer'][] = array
(
'name' => 'Marc A. Peters',
'email' => 'skeeter@phpgroupware.org'
);
$setup_info['admin']['maintainer'][] = array
(
'name' => 'Bettina Gille',
'email' => 'ceb@phpgroupware.org'
);
$setup_info['admin']['maintainer'][] = array
(
'name' => 'Dan Kuykendall',
'email' => 'seek3r@phpgroupware.org'
);
$setup_info['admin']['license'] = 'GPL';
$setup_info['admin']['description'] =
'phpGroupWare administration application';
$setup_info['admin']['maintainer'] = 'phpGW Core';
$setup_info['admin']['maintainer_email'] = 'ceb@phpgroupware.org<br>jengo@phpgroupware.org<br>milosch@phpgroupware.org<br>seek3r@phpgroupware.org<br>skeeter@phpgroupware.org';
$setup_info['admin']['description'] = 'phpGroupWare administration application';
/* The hooks this app includes, needed for hooks registration */
$setup_info['admin']['hooks'][] = 'acl_manager';
@ -35,8 +61,9 @@
$setup_info['admin']['hooks'][] = 'view_user';
/* Dependencies for this app to work */
$setup_info['admin']['depends'][] = array(
$setup_info['admin']['depends'][] = array
(
'appname' => 'phpgwapi',
'versions' => Array('0.9.13', '0.9.14', '0.9.15')
'versions' => Array('0.9.15')
);
?>

View File

@ -17,6 +17,39 @@
$setup_info['preferences']['tables'] = '';
$setup_info['preferences']['enable'] = 2;
$setup_info['admin']['author'][] = array
(
'name' => 'phpGroupWare coreteam',
'email' => 'phpgroupware-developers@gnu.org'
);
$setup_info['admin']['maintainer'][] = array
(
'name' => 'Joseph Engo',
'email' => 'jengo@phpgroupware.org'
);
$setup_info['admin']['maintainer'][] = array
(
'name' => 'Marc A. Peters',
'email' => 'skeeter@phpgroupware.org'
);
$setup_info['admin']['maintainer'][] = array
(
'name' => 'Bettina Gille',
'email' => 'ceb@phpgroupware.org'
);
$setup_info['admin']['maintainer'][] = array
(
'name' => 'Dan Kuykendall',
'email' => 'seek3r@phpgroupware.org'
);
$setup_info['admin']['license'] = 'GPL';
$setup_info['admin']['description'] = 'phpGroupWare preferences application';
/* The hooks this app includes, needed for hooks registration */
$setup_info['preferences']['hooks'][] = 'deleteaccount';
$setup_info['preferences']['hooks'][] = 'config';
@ -25,8 +58,9 @@
$setup_info['preferences']['hooks'][] = 'settings';
/* Dependencies for this app to work */
$setup_info['preferences']['depends'][] = array(
$setup_info['preferences']['depends'][] = array
(
'appname' => 'phpgwapi',
'versions' => Array('0.9.13', '0.9.14','0.9.15')
'versions' => Array('0.9.15')
);
?>