changed package name to ldap-account-manager
This commit is contained in:
parent
01219adb3e
commit
29a3895848
|
@ -75,7 +75,18 @@ $helpArray = array (
|
||||||
" will be split to several pages.")),
|
" will be split to several pages.")),
|
||||||
"209" => array ("ext" => "FALSE", "Headline" => _("Configuration Wizard - Default Language"),
|
"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.".
|
"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.
|
/* This is a sample help entry. Just copy this line an modify the vakues between the [] brackets.
|
||||||
Help text is located in the array:
|
Help text is located in the array:
|
||||||
"[Helpnumber]" => array ("ext" => "FALSE", "Headline" => _("[Headline]"), "Text" => _("[Text]"), "SeeAlso" => "[SeeAlso link]"),
|
"[Helpnumber]" => array ("ext" => "FALSE", "Headline" => _("[Headline]"), "Text" => _("[Text]"), "SeeAlso" => "[SeeAlso link]"),
|
||||||
|
|
|
@ -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 ("<form action=\"confmain.php\" method=\"post\">\n");
|
||||||
|
|
||||||
echo ("<fieldset><legend><b>" . _("Server settings") . "</b></legend>");
|
echo ("<fieldset><legend><b>" . _("Server settings") . "</b></legend>");
|
||||||
echo ("<table align=\"center\" border=\"0\">");
|
echo ("<table align=\"left\" border=\"0\">");
|
||||||
// serverURL
|
// serverURL
|
||||||
echo ("<tr><td><p align=\"right\"><b>" . _("Server Address") . ": </b></p></td>".
|
echo ("<tr><td><p align=\"right\"><b>" . _("Server Address") . ": </b></p></td>".
|
||||||
"<td><p align=\"left\">".
|
"<td><p align=\"left\">".
|
||||||
|
@ -136,7 +136,7 @@ echo ("</fieldset>");
|
||||||
echo ("<br>");
|
echo ("<br>");
|
||||||
|
|
||||||
echo ("<fieldset><legend><b>" . _("Ranges") . "</b></legend>");
|
echo ("<fieldset><legend><b>" . _("Ranges") . "</b></legend>");
|
||||||
echo ("<table align=\"center\" border=\"0\">");
|
echo ("<table align=\"left\" border=\"0\">");
|
||||||
|
|
||||||
// minUID
|
// minUID
|
||||||
echo ("<tr><td align=\"right\"><b>".
|
echo ("<tr><td align=\"right\"><b>".
|
||||||
|
@ -171,7 +171,7 @@ echo ("</fieldset>");
|
||||||
echo ("<br>");
|
echo ("<br>");
|
||||||
|
|
||||||
echo ("<fieldset><legend><b>" . _("LDAP List settings") . "</b></legend>");
|
echo ("<fieldset><legend><b>" . _("LDAP List settings") . "</b></legend>");
|
||||||
echo ("<table align=\"center\" border=\"0\">");
|
echo ("<table align=\"left\" border=\"0\">");
|
||||||
|
|
||||||
// user list attributes
|
// user list attributes
|
||||||
echo ("<tr><td><p align=\"right\"><b>".
|
echo ("<tr><td><p align=\"right\"><b>".
|
||||||
|
@ -259,10 +259,12 @@ echo ("<table align=\"left\" border=\"0\">\n");
|
||||||
// script settings
|
// script settings
|
||||||
echo ("<tr><td><p align=\"right\"><b>".
|
echo ("<tr><td><p align=\"right\"><b>".
|
||||||
_("Path to external script") . ": </b></p></td>".
|
_("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>".
|
echo ("<tr><td><p align=\"right\"><b>".
|
||||||
_("Server of external script") . ": </b></p></td>".
|
_("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 ("</table>\n");
|
||||||
echo ("</fieldset>\n");
|
echo ("</fieldset>\n");
|
||||||
|
@ -274,7 +276,8 @@ echo ("<table align=\"left\" border=\"0\">\n");
|
||||||
// new password
|
// new password
|
||||||
echo ("<tr><td bgcolor=\"red\" align=\"right\"><b>".
|
echo ("<tr><td bgcolor=\"red\" align=\"right\"><b>".
|
||||||
_("New Password") . ": </b></td>".
|
_("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
|
// reenter password
|
||||||
echo ("<tr><td bgcolor=\"red\" align=\"right\"><b>".
|
echo ("<tr><td bgcolor=\"red\" align=\"right\"><b>".
|
||||||
_("Reenter Password") . ": </b></td>".
|
_("Reenter Password") . ": </b></td>".
|
||||||
|
|
Loading…
Reference in New Issue