fixed help for DN settings at file upload

This commit is contained in:
Roland Gruber 2004-10-03 18:21:11 +00:00
parent 81f7e5e847
commit 5052665661
2 changed files with 6 additions and 3 deletions

View File

@ -113,7 +113,9 @@ $helpArray = array (
"Text" => _("Please enter the master configuration password. This is NOT your LDAP password. It is stored in your config.cfg file. If this is the first time you log in, enter \"lam\".")), "Text" => _("Please enter the master configuration password. This is NOT your LDAP password. It is stored in your config.cfg file. If this is the first time you log in, enter \"lam\".")),
// 300 - 399 // 300 - 399
// Roland Gruber // Roland Gruber
// profile editor // profile editor, file upload
"301" => array ("ext" => "FALSE", "Headline" => _("RDN identifier"),
"Text" => _("This is the identifier for the relative DN value. It must be one of the given allowed LDAP attributes (e.g. user accounts usually use \"uid\" while groups use \"cn\").")),
"360" => array ("ext" => "FALSE", "Headline" => _("Profile name"), "360" => array ("ext" => "FALSE", "Headline" => _("Profile name"),
"Text" => _("Name under which the profile will be saved. If a profile with the same name exists, it will be overwritten.")), "Text" => _("Name under which the profile will be saved. If a profile with the same name exists, it will be overwritten.")),
"361" => array ("ext" => "FALSE", "Headline" => _("DN Suffix"), "361" => array ("ext" => "FALSE", "Headline" => _("DN Suffix"),

View File

@ -131,7 +131,7 @@ function showMainPage($scope) {
echo "<li><b>" . _("Identifier") . ":</b> " . "dn_suffix</li>\n"; echo "<li><b>" . _("Identifier") . ":</b> " . "dn_suffix</li>\n";
echo "<li><b>" . _("Example value") . ":</b> " . "ou=accounts,dc=yourdomain,dc=org</li>\n"; echo "<li><b>" . _("Example value") . ":</b> " . "ou=accounts,dc=yourdomain,dc=org</li>\n";
echo "<li>\n"; echo "<li>\n";
echo "<a href=\"help.php?HelpNumber=TODO\" target=\"lamhelp\">" . _("Help") . "</a>\n"; echo "<a href=\"help.php?HelpNumber=361\" target=\"lamhelp\">" . _("Help") . "</a>\n";
echo "</li>\n"; echo "</li>\n";
echo "</ul>\n"; echo "</ul>\n";
echo "</td>\n"; echo "</td>\n";
@ -140,9 +140,10 @@ function showMainPage($scope) {
echo "<br>\n"; echo "<br>\n";
echo "<ul>\n"; echo "<ul>\n";
echo "<li><b>" . _("Identifier") . ":</b> " . "dn_rdn</li>\n"; echo "<li><b>" . _("Identifier") . ":</b> " . "dn_rdn</li>\n";
echo "<li><b>" . _("Possible values") . ":</b> " . "uid, cn, sambaSID</li>\n"; // TODO fill with correct values
echo "<li><b>" . _("Example value") . ":</b> " . "uid</li>\n"; echo "<li><b>" . _("Example value") . ":</b> " . "uid</li>\n";
echo "<li>\n"; echo "<li>\n";
echo "<a href=\"help.php?HelpNumber=TODO\" target=\"lamhelp\">" . _("Help") . "</a>\n"; echo "<a href=\"help.php?HelpNumber=301\" target=\"lamhelp\">" . _("Help") . "</a>\n";
echo "</li>\n"; echo "</li>\n";
echo "</ul>\n"; echo "</ul>\n";
echo "</td>\n"; echo "</td>\n";