Final manual layout

This commit is contained in:
skeeter 2001-05-10 03:16:39 +00:00
parent 0d7946c764
commit 9fa092328a
6 changed files with 102 additions and 54 deletions

26
addressbook/help/index.php Executable file
View File

@ -0,0 +1,26 @@
<?php
/**************************************************************************\
* phpGroupWare - User manual *
* http://www.phpgroupware.org *
* -------------------------------------------- *
* This program is free software; you can redistribute it and/or modify it *
* under the terms of the GNU General Public License as published by the *
* Free Software Foundation; either version 2 of the License, or (at your *
* option) any later version. *
\**************************************************************************/
/* $Id$ */
$phpgw_flags = Array(
'currentapp' => 'manual'
);
$phpgw_info['flags'] = $phpgw_flags;
include('../../header.inc.php');
$appname = 'addressbook';
include(PHPGW_SERVER_ROOT.'/'.$appname.'/version.inc.php');
?>
<img src="<?php echo $phpgw->common->image($appname,'navbar.gif'); ?>" border="0"><p/>
<font face="<?php echo $phpgw_info['theme']['font']; ?>" size="2">
Version: <b><?php echo $phpgw_info['server']['versions'][$appname]; ?></b>
</font>
<?php $phpgw->common->phpgw_footer(); ?>

View File

@ -13,23 +13,22 @@
$phpgw_flags = Array( $phpgw_flags = Array(
'currentapp' => 'manual', 'currentapp' => 'manual',
'admin_header' => True,
'enable_utilities_class' => True 'enable_utilities_class' => True
); );
$phpgw_info['flags'] = $phpgw_flags; $phpgw_info['flags'] = $phpgw_flags;
include('../../header.inc.php'); include('../../header.inc.php');
$appname = 'admin;
?> ?>
<img src="<?php echo $phpgw->common->image('admin','navbar.gif'); ?>" border=0> <img src="<?php echo $phpgw->common->image($appname,'navbar.gif'); ?>" border=0>
<font face="<?php echo $phpgw_info['theme']['font']; ?>" size="2"> <font face="<?php echo $phpgw_info['theme']['font']; ?>" size="2"><p/>
<p>
This function is usually only available to the systems administrator of the system. This function is usually only available to the systems administrator of the system.
Administration of all applications, user and group accounts, session logging and control. Administration of all applications, user and group accounts, session logging and control.
<ul> <ul>
<li><b>Account management:</b> <li><b>Account management:</b><p/>
<p><i>User accounts:</i> <i>User accounts:</i><br/>
<br>Create, edit and delete users accounts. Set membership of groups, and access to applications. Create, edit and delete users accounts. Set membership of groups, and access to applications.<p/>
<p><i>User groups:</i> <i>User groups:</i><br/>
<br>Create, edit and delete groups. Create, edit and delete groups.<p/>
<p> </ul></font>
</ul>
</font>
<?php $phpgw->common->phpgw_footer(); ?> <?php $phpgw->common->phpgw_footer(); ?>

View File

@ -12,43 +12,39 @@
/* $Id$ */ /* $Id$ */
$phpgw_flags = Array( $phpgw_flags = Array(
'currentapp' => 'manual', 'currentapp' => 'manual',
'admin_header' => True,
'enable_utilities_class' => True 'enable_utilities_class' => True
); );
$phpgw_info['flags'] = $phpgw_flags; $phpgw_info['flags'] = $phpgw_flags;
include('../../header.inc.php'); include('../../header.inc.php');
$appname = 'admin';
?> ?>
<img src="<?php echo $phpgw->common->image('admin','navbar.gif'); ?>" border=0> <img src="<?php echo $phpgw->common->image($appname,'navbar.gif'); ?>" border=0>
<font face="<?php echo $phpgw_info['theme']['font']; ?>" size="2"> <font face="<?php echo $phpgw_info['theme']['font']; ?>" size="2"><p/>
<p>
This function is usually only available to the systems administrator of the system. This function is usually only available to the systems administrator of the system.
Administration of all applications, user and group accounts, session logging and control. Administration of all applications, user and group accounts, session logging and control.
<ul> <ul>
<li><b>Account management:</b> <li><b>Account management:</b><br/>
<br><i>User accounts:</i> <i>User accounts:</i><br/>
<br>Create, edit and delete users accounts. Set membership of groups, and access to applications. Create, edit and delete users accounts. Set membership of groups, and access to applications.<br/
<br><i>User groups:</i> ><i>User groups:</i><br/>
<br>Create, edit and delete groups. Create, edit and delete groups.<p/>
<p> <li><b>Session management:</b><br/>
<li><b>Session management:</b> <i>View sessions:</i><br/>
<br><i>View sessions:</i> Current sessions, IP, Login Time, Idle Time, and gives option to kill session.<br/>
<br>Current sessions, IP, Login Time, Idle Time, and gives option to kill session. <i>View Access Log:</i><br/>
<br><i>View Access Log:</i> LoginId, IP, Login Time, Logout Time, Total time spent.</li><p/>
<br>LoginId, IP, Login Time, Logout Time, Total time spent. <li><b>Headline sites:</b><br/>
<p> Administer headline sites as seen by users in the headlines application.<br/>
<li><b>Headline sites:</b> <i>Edit:</i> Options for the headline sites:<br/>
<br>Administer headline sites as seen by users in the headlines application. Display,BaseURL, NewsFile,Minutes between reloads,Listing Displayed,News Type.<br/>
<br><i>Edit:</i> Options for the headline sites: <i>Delete:</i>Remove an existing headling site, clicking on delete will give
<br> Display,BaseURL, NewsFile,Minutes between reloads,Listing Displayed,News Type. you a checking page to be sure you do want to delete.<br/>
<br> <i>Delete:</i>Remove an existing headling site, clicking on delete will give <i>View:</i>Displays set options as in edit.<br/>
you a checking page to be sure you do want to delete. <i>Add:</i>Form for adding new headline site, options as in edit.</li><p/>
<br><i>View:</i>Displays set options as in edit. <li><b>Network news:</b><br/>
<br><i>Add:</i>Form for adding new headline site, options as in edit. Manual update for news groups.</li><p/>
<p> <li><b>Server information:</b><br/>
<li><b>Network news:</b> At present phpinfo of the server that is running.</li><p/>
<br>Manual update for news groups. </ul></font>
<p>
<li><b>Server information:</b>
<br>At present phpinfo of the server that is running.
<p>
</ul>
<?php $phpgw->common->phpgw_footer(); ?> <?php $phpgw->common->phpgw_footer(); ?>

27
admin/help/index.php Executable file
View File

@ -0,0 +1,27 @@
<?php
/**************************************************************************\
* phpGroupWare - User manual *
* http://www.phpgroupware.org *
* -------------------------------------------- *
* This program is free software; you can redistribute it and/or modify it *
* under the terms of the GNU General Public License as published by the *
* Free Software Foundation; either version 2 of the License, or (at your *
* option) any later version. *
\**************************************************************************/
/* $Id$ */
$phpgw_flags = Array(
'currentapp' => 'manual'
'admin_header' => True,
);
$phpgw_info['flags'] = $phpgw_flags;
include('../../header.inc.php');
$appname = 'admin';
include(PHPGW_SERVER_ROOT.'/'.$appname.'/version.inc.php');
?>
<img src="<?php echo $phpgw->common->image($appname,'navbar.gif'); ?>" border="0"><p/>
<font face="<?php echo $phpgw_info['theme']['font']; ?>" size="2">
Version: <b><?php echo $phpgw_info['server']['versions'][$appname]; ?></b>
</font>
<?php $phpgw->common->phpgw_footer(); ?>

View File

@ -13,22 +13,20 @@
$phpgw_flags = Array( $phpgw_flags = Array(
'currentapp' => 'manual', 'currentapp' => 'manual',
'admin_header' => True,
'enable_utilities_class' => True 'enable_utilities_class' => True
); );
$phpgw_info['flags'] = $phpgw_flags; $phpgw_info['flags'] = $phpgw_flags;
include('../../header.inc.php'); include('../../header.inc.php');
$appname = 'admin';
?> ?>
<img src="<?php echo $phpgw->common->image('admin','navbar.gif'); ?>" border=0> <img src="<?php echo $phpgw->common->image($appname,'navbar.gif'); ?>" border=0>
<font face="<?php echo $phpgw_info['theme']['font']; ?>" size="2"> <font face="<?php echo $phpgw_info['theme']['font']; ?>" size="2"><p/>
<p>
This function is usually only available to the systems administrator of the system. This function is usually only available to the systems administrator of the system.
Administration of all applications, user and group accounts, session logging and control. Administration of all applications, user and group accounts, session logging and control.
<ul> <ul><li><b>Network news:</b><br/>
<li><b>Network news:</b> Manual update for news groups.</li><p/>
<br>Manual update for news groups. <li><b>Server information:</b><br/>
<p> At present phpinfo of the server that is running.</li><p/>
<li><b>Server information:</b> </ul></font>
<br>At present phpinfo of the server that is running.
<p>
</ul>
<?php $phpgw->common->phpgw_footer(); ?> <?php $phpgw->common->phpgw_footer(); ?>

View File

@ -13,12 +13,14 @@
$phpgw_flags = Array( $phpgw_flags = Array(
'currentapp' => 'manual', 'currentapp' => 'manual',
'admin_header' => True,
'enable_utilities_class' => True 'enable_utilities_class' => True
); );
$phpgw_info['flags'] = $phpgw_flags; $phpgw_info['flags'] = $phpgw_flags;
include('../../header.inc.php'); include('../../header.inc.php');
$appname = 'admin';
?> ?>
<img src="<?php echo $phpgw->common->image('admin','navbar.gif'); ?>" border=0> <img src="<?php echo $phpgw->common->image($appname,'navbar.gif'); ?>" border=0>
<font face="<?php echo $phpgw_info['theme']['font']; ?>" size="2"> <font face="<?php echo $phpgw_info['theme']['font']; ?>" size="2">
<p> <p>
This function is usually only available to the systems administrator of the system. This function is usually only available to the systems administrator of the system.