autocompletion for authorized services
This commit is contained in:
parent
78e54bb324
commit
6b4f70dccf
|
@ -12,6 +12,7 @@
|
|||
|
||||
|
||||
|
||||
|
||||
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-15"><title>Upgrade notes</title>
|
||||
|
||||
|
||||
|
@ -34,6 +35,11 @@ This is a list of API changes for all LAM releases.
|
|||
<li><span style="font-weight: bold;">supportsAdminInterface()</span>: Can be used mark modules that only support the self service.<br>
|
||||
</li>
|
||||
</ul>
|
||||
Meta HTML:<br>
|
||||
<ul>
|
||||
<li>Input fields support autocompletion<br>
|
||||
</li>
|
||||
</ul>
|
||||
<br>
|
||||
<h2>3.7 -> 3.8<br>
|
||||
</h2>
|
||||
|
|
|
@ -2186,6 +2186,30 @@ Have fun!
|
|||
</imageobject>
|
||||
</mediaobject>
|
||||
</screenshot>
|
||||
|
||||
<para>You can define a list of services in your LAM server profile
|
||||
that is used for autocompletion.</para>
|
||||
|
||||
<screenshot>
|
||||
<mediaobject>
|
||||
<imageobject>
|
||||
<imagedata fileref="images/mod_authorizedServices3.png" />
|
||||
</imageobject>
|
||||
</mediaobject>
|
||||
</screenshot>
|
||||
|
||||
<para>The autocompletion will show all values that contains the
|
||||
entered text. To display the whole list you can press backspace in the
|
||||
empty input field. Of course, you can also insert a service name that
|
||||
is not in the list.</para>
|
||||
|
||||
<screenshot>
|
||||
<mediaobject>
|
||||
<imageobject>
|
||||
<imagedata fileref="images/mod_authorizedServices2.png" />
|
||||
</imageobject>
|
||||
</mediaobject>
|
||||
</screenshot>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
|
@ -3059,7 +3083,7 @@ Run slapindex to rebuild the index.
|
|||
|
||||
<para>LAM Pro allows you to manage automount entries. Please activate
|
||||
the account type "Automount objects" in your LAM Pro server
|
||||
profile:</para>
|
||||
profile.</para>
|
||||
|
||||
<screenshot>
|
||||
<mediaobject>
|
||||
|
@ -3069,6 +3093,18 @@ Run slapindex to rebuild the index.
|
|||
</mediaobject>
|
||||
</screenshot>
|
||||
|
||||
<para>Then add the correct automount module. Usually, this is "Automount
|
||||
entry (automount)". If you use Suse Linux with RFC2307bis schema please
|
||||
select "Automount entry (rfc2307bisAutomount)".</para>
|
||||
|
||||
<screenshot>
|
||||
<mediaobject>
|
||||
<imageobject>
|
||||
<imagedata fileref="images/automount3.png" />
|
||||
</imageobject>
|
||||
</mediaobject>
|
||||
</screenshot>
|
||||
|
||||
<para>This will add a new tab to LAM Pro's main screen which includes a
|
||||
list of all automount entries. Here you can easily create new
|
||||
entries.</para>
|
||||
|
@ -4988,7 +5024,7 @@ Run slapindex to rebuild the index.
|
|||
|
||||
<entry>automount</entry>
|
||||
|
||||
<entry>autofs.schema</entry>
|
||||
<entry>autofs.schema, rfc2307bis.schema</entry>
|
||||
|
||||
<entry>Autofs LDAP</entry>
|
||||
|
||||
|
|
Binary file not shown.
After Width: | Height: | Size: 10 KiB |
Binary file not shown.
After Width: | Height: | Size: 22 KiB |
Binary file not shown.
After Width: | Height: | Size: 7.5 KiB |
|
@ -364,6 +364,12 @@ class htmlInputField extends htmlElement {
|
|||
protected $required = false;
|
||||
/** validation rule */
|
||||
private $validationRule = null;
|
||||
/** enable autocomplete */
|
||||
private $autocomplete = false;
|
||||
/** autocompletion suggestions */
|
||||
private $autocompleteValues = array();
|
||||
/** autocomplete start at this input length */
|
||||
private $autocompleteMinLength = 1;
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
|
@ -437,6 +443,15 @@ class htmlInputField extends htmlElement {
|
|||
$disabled = ' disabled';
|
||||
}
|
||||
echo '<input type="' . $inputType . '"' . $class . $name . $id . $value . $maxLength . $size . $fieldTabIndex . $disabled . '>';
|
||||
// autocompletion
|
||||
if ($this->autocomplete) {
|
||||
echo "<script type=\"text/javascript\">\n";
|
||||
echo 'jQuery(function() {';
|
||||
echo 'var availableTags = [' . implode(',', $this->autocompleteValues) . '];';
|
||||
echo 'jQuery( "#' . $this->fieldName . '" ).autocomplete({ source: availableTags, minLength: ' . $this->autocompleteMinLength . '});';
|
||||
echo '});';
|
||||
echo "</script\n>";
|
||||
}
|
||||
if ($this->transient) {
|
||||
return array();
|
||||
}
|
||||
|
@ -521,6 +536,21 @@ class htmlInputField extends htmlElement {
|
|||
$this->validationRule = $rule;
|
||||
}
|
||||
|
||||
/**
|
||||
* Enables autocompletion for this input field.
|
||||
*
|
||||
* @param array $values list of values to suggest
|
||||
* @param int $minLength autocompletion starts after this number of caracters entered (default 1; 0 means immediate start)
|
||||
*/
|
||||
public function enableAutocompletion($values, $minLength = 1) {
|
||||
for ($i = 0; $i < sizeof($values); $i++) {
|
||||
$values[$i] = '"' . htmlspecialchars($values[$i]) . '"';
|
||||
}
|
||||
$this->autocomplete = true;
|
||||
$this->autocompleteValues = $values;
|
||||
$this->autocompleteMinLength = $minLength;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -81,8 +81,16 @@ class authorizedServiceObject extends baseModule {
|
|||
'autoAdd' => array(
|
||||
"Headline" => _("Automatically add this extension"),
|
||||
"Text" => _("This will enable the extension automatically if this profile is loaded.")
|
||||
),
|
||||
'predefinedServices' => array(
|
||||
"Headline" => _("Predefined services"),
|
||||
"Text" => _("These services will show up as hint if you enter a new service.")
|
||||
)
|
||||
);
|
||||
// config options
|
||||
$configContainer = new htmlTable();
|
||||
$configContainer->addElement(new htmlTableExtendedInputTextarea('authorizedServiceObject_services', "sshd\r\nimap", 30, 5, _('Predefined services'), 'predefinedServices'));
|
||||
$return['config_options']['all'] = $configContainer;
|
||||
// upload fields
|
||||
$return['upload_columns'] = array(
|
||||
array(
|
||||
|
@ -146,6 +154,10 @@ class authorizedServiceObject extends baseModule {
|
|||
}
|
||||
$return = new htmlTable();
|
||||
if (in_array('authorizedServiceObject', $this->attributes['objectClass'])) {
|
||||
$autocompleteValues = array();
|
||||
if (isset($this->moduleSettings['authorizedServiceObject_services'])) {
|
||||
$autocompleteValues = $this->moduleSettings['authorizedServiceObject_services'];
|
||||
}
|
||||
$ASCount = 0;
|
||||
// list current authorizedService's
|
||||
if (isset($this->attributes['authorizedService'])) {
|
||||
|
@ -158,6 +170,7 @@ class authorizedServiceObject extends baseModule {
|
|||
$return->addElement(new htmlOutputText(''));
|
||||
}
|
||||
$ASInput = new htmlInputField('authorizedService' . $i, $this->attributes['authorizedService'][$i]);
|
||||
$ASInput->enableAutocompletion($autocompleteValues, 0);
|
||||
$return->addElement($ASInput);
|
||||
$return->addElement(new htmlButton('delAS' . $i, 'del.png', true));
|
||||
$return->addElement(new htmlHelpLink('authorizedService'), true);
|
||||
|
@ -166,6 +179,7 @@ class authorizedServiceObject extends baseModule {
|
|||
// input box for new Service
|
||||
$return->addElement(new htmlOutputText(_('New Authorized Service')));
|
||||
$newASInput = new htmlInputField('authorizedService', '');
|
||||
$newASInput->enableAutocompletion($autocompleteValues, 0);
|
||||
$return->addElement($newASInput);
|
||||
$return->addElement(new htmlButton('addAS', 'add.png', true));
|
||||
$return->addElement(new htmlHelpLink('authorizedService'));
|
||||
|
|
|
@ -334,6 +334,7 @@
|
|||
float: left;
|
||||
clear: left;
|
||||
width: 100%;
|
||||
background: #ffffff url(images/ui-bg_glass_65_ffffff_1x400.png) 50% 50% repeat-x;
|
||||
}
|
||||
.ui-menu .ui-menu-item a {
|
||||
text-decoration:none;
|
||||
|
|
Loading…
Reference in New Issue