changed package name to ldap-account-manager

This commit is contained in:
Roland Gruber 2003-05-15 17:33:29 +00:00
parent 01219adb3e
commit 29a3895848
2 changed files with 21 additions and 7 deletions

View File

@ -75,7 +75,18 @@ $helpArray = array (
" will be split to several pages.")),
"209" => array ("ext" => "FALSE", "Headline" => _("Configuration Wizard - Default Language"),
"Text" => _("Defines the language of the login window and is sets this language the default language.".
" Users can change the language at login."))
" Users can change the language at login.")),
"210" => array ("ext" => "FALSE", "Headline" => _("Configuration Wizard - Script Path"),
"Text" => _("This is the absolute path to an external script for setting quotas and creating home directories.".
"<br><br><b>Use it at your own risk and read the documentation for lamdaemon before you use it!</b>"),
"SeeAlso" => "<a href=\"./help.php?HelpNumber=210\" target=\"_self\">TODO link to lamdaemon doku</a>"),
"211" => array ("ext" => "FALSE", "Headline" => _("Configuration Wizard - Script Server"),
"Text" => _("This is the server where the lamdaemon script is stored. LDAP Account Manager will make a SSH connection".
" to this server with username and password provided at login.".
"<br><br><b>Use it at your own risk and read the documentation for lamdaemon before you use it!</b>"),
"SeeAlso" => "<a href=\"./help.php?HelpNumber=210\" target=\"_self\">TODO link to lamdaemon doku</a>"),
"212" => array ("ext" => "FALSE", "Headline" => _("Configuration Wizard - Change Password"),
"Text" => _("If you want to change the current preferences password, please enter it here."))
/* This is a sample help entry. Just copy this line an modify the vakues between the [] brackets.
Help text is located in the array:
"[Helpnumber]" => array ("ext" => "FALSE", "Headline" => _("[Headline]"), "Text" => _("[Text]"), "SeeAlso" => "[SeeAlso link]"),

View File

@ -104,7 +104,7 @@ echo ("<p align=\"center\"><a href=\"http://lam.sf.net\" target=\"new_window\">"
echo ("<form action=\"confmain.php\" method=\"post\">\n");
echo ("<fieldset><legend><b>" . _("Server settings") . "</b></legend>");
echo ("<table align=\"center\" border=\"0\">");
echo ("<table align=\"left\" border=\"0\">");
// serverURL
echo ("<tr><td><p align=\"right\"><b>" . _("Server Address") . ": </b></p></td>".
"<td><p align=\"left\">".
@ -136,7 +136,7 @@ echo ("</fieldset>");
echo ("<br>");
echo ("<fieldset><legend><b>" . _("Ranges") . "</b></legend>");
echo ("<table align=\"center\" border=\"0\">");
echo ("<table align=\"left\" border=\"0\">");
// minUID
echo ("<tr><td align=\"right\"><b>".
@ -171,7 +171,7 @@ echo ("</fieldset>");
echo ("<br>");
echo ("<fieldset><legend><b>" . _("LDAP List settings") . "</b></legend>");
echo ("<table align=\"center\" border=\"0\">");
echo ("<table align=\"left\" border=\"0\">");
// user list attributes
echo ("<tr><td><p align=\"right\"><b>".
@ -259,10 +259,12 @@ echo ("<table align=\"left\" border=\"0\">\n");
// script settings
echo ("<tr><td><p align=\"right\"><b>".
_("Path to external script") . ": </b></p></td>".
"<td><input size=50 type=\"text\" name=\"scriptpath\" value=\"" . $conf->get_scriptPath() . "\"></td></tr>\n");
"<td><input size=50 type=\"text\" name=\"scriptpath\" value=\"" . $conf->get_scriptPath() . "\"></td>\n");
echo ("<td><a href=\"../help.php?HelpNumber=210\" target=\"lamhelp\">" . _("Help") . "</a></td></tr>\n");
echo ("<tr><td><p align=\"right\"><b>".
_("Server of external script") . ": </b></p></td>".
"<td><input size=50 type=\"text\" name=\"scriptserver\" value=\"" . $conf->get_scriptServer() . "\"></td></tr>\n");
"<td><input size=50 type=\"text\" name=\"scriptserver\" value=\"" . $conf->get_scriptServer() . "\"></td>\n");
echo ("<td><a href=\"../help.php?HelpNumber=211\" target=\"lamhelp\">" . _("Help") . "</a></td></tr>\n");
echo ("</table>\n");
echo ("</fieldset>\n");
@ -274,7 +276,8 @@ echo ("<table align=\"left\" border=\"0\">\n");
// new password
echo ("<tr><td bgcolor=\"red\" align=\"right\"><b>".
_("New Password") . ": </b></td>".
"<td bgcolor=\"red\" align=\"left\"><input type=\"password\" name=\"pass1\"></td></tr>\n");
"<td bgcolor=\"red\" align=\"left\"><input type=\"password\" name=\"pass1\"></td>\n");
echo ("<td rowspan=2><a href=\"../help.php?HelpNumber=212\" target=\"lamhelp\">" . _("Help") . "</a></td></tr>\n");
// reenter password
echo ("<tr><td bgcolor=\"red\" align=\"right\"><b>".
_("Reenter Password") . ": </b></td>".