Standardised some naming of the icons to allow for other themes

This commit is contained in:
Deon George 2009-07-08 20:10:57 +10:00
parent 7273ad292b
commit 1aa88e4dc3
49 changed files with 66 additions and 66 deletions

View File

@ -565,7 +565,7 @@ span.hint {
/* Login Box */ /* Login Box */
#login { #login {
background: url('../../images/default/uid.png') no-repeat 0 1px; background: url('../../images/default/ldap-uid.png') no-repeat 0 1px;
background-color: #FAFAFF; background-color: #FAFAFF;
color: #000000; color: #000000;
padding-left: 17px; padding-left: 17px;

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

Before

Width:  |  Height:  |  Size: 700 B

After

Width:  |  Height:  |  Size: 700 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 738 B

View File

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

Before

Width:  |  Height:  |  Size: 440 B

After

Width:  |  Height:  |  Size: 440 B

View File

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

Before

Width:  |  Height:  |  Size: 654 B

After

Width:  |  Height:  |  Size: 654 B

View File

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

Before

Width:  |  Height:  |  Size: 773 B

After

Width:  |  Height:  |  Size: 773 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 654 B

View File

Before

Width:  |  Height:  |  Size: 829 B

After

Width:  |  Height:  |  Size: 829 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

Before

Width:  |  Height:  |  Size: 514 B

After

Width:  |  Height:  |  Size: 514 B

View File

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -89,8 +89,8 @@ else
echo '<table class="modify_members">'; echo '<table class="modify_members">';
echo '<tr>'; echo '<tr>';
printf('<td><img src="%s/user.png" alt="Users" /> %s</td>',IMGDIR,_('Available members')); printf('<td><img src="%s/ldap-user.png" alt="Users" /> %s</td>',IMGDIR,_('Available members'));
printf('<td><img src="%s/uniquegroup.png" alt="Members" /> %s</td>',IMGDIR,_('Group members')); printf('<td><img src="%s/ldap-uniquegroup.png" alt="Members" /> %s</td>',IMGDIR,_('Group members'));
echo '</tr>'; echo '</tr>';
# Generate select box from all possible members # Generate select box from all possible members

View File

@ -261,7 +261,7 @@ class AJAXTree extends HTMLTree {
$output .= $this->get_indentation($level); $output .= $this->get_indentation($level);
$output .= sprintf('<img align="top" border="0" class="imgs" src="%s" alt="--" />',$img); $output .= sprintf('<img align="top" border="0" class="imgs" src="%s" alt="--" />',$img);
$output .= sprintf('<a href="%s" title="%s">',htmlspecialchars($href),$entry->getDN()); $output .= sprintf('<a href="%s" title="%s">',htmlspecialchars($href),$entry->getDN());
$output .= sprintf('<img align="top" border="0" class="imgs" src="%s/star.png" alt="->" />',IMGDIR); $output .= sprintf('<img align="top" border="0" class="imgs" src="%s/create.png" alt="->" />',IMGDIR);
$output .= '</a>'; $output .= '</a>';
$output .= '&nbsp;'; $output .= '&nbsp;';

View File

@ -151,7 +151,7 @@ class HTMLTree extends Tree {
if (! is_null($server->inactivityTime())) { if (! is_null($server->inactivityTime())) {
$m = sprintf(_('Inactivity will log you off at %s'), $m = sprintf(_('Inactivity will log you off at %s'),
strftime('%H:%M',$server->inactivityTime())); strftime('%H:%M',$server->inactivityTime()));
printf(' <img width=14 height=14 src="%s/timeout.png" title="%s" alt="%s"/>',IMGDIR,$m,$m); printf(' <img width=14 height=14 src="%s/timeout.png" title="%s" alt="%s"/>',IMGDIR,$m,'Timeout');
} }
echo '</td></tr>'; echo '</td></tr>';
} }
@ -193,7 +193,7 @@ class HTMLTree extends Tree {
$menu['ajax'] = _('Loading Schema'); $menu['ajax'] = _('Loading Schema');
$menu['div'] = 'BODY'; $menu['div'] = 'BODY';
$menu['title'] = _('View schema for'); $menu['title'] = _('View schema for');
$menu['img'] = 'schema.png'; $menu['img'] = 'schema-big.png';
$menu['name'] = _('schema'); $menu['name'] = _('schema');
break; break;
@ -205,7 +205,7 @@ class HTMLTree extends Tree {
$menu['ajax'] = _('Loading Search'); $menu['ajax'] = _('Loading Search');
$menu['div'] = 'BODY'; $menu['div'] = 'BODY';
$menu['title'] = _('Search'); $menu['title'] = _('Search');
$menu['img'] = 'search.png'; $menu['img'] = 'search-big.png';
$menu['name'] = _('search'); $menu['name'] = _('search');
break; break;
@ -230,7 +230,7 @@ class HTMLTree extends Tree {
$menu['ajax'] = _('Loading Info'); $menu['ajax'] = _('Loading Info');
$menu['div'] = 'BODY'; $menu['div'] = 'BODY';
$menu['title'] = _('Info'); $menu['title'] = _('Info');
$menu['img'] = 'info.png'; $menu['img'] = 'info-big.png';
$menu['name'] = _('info'); $menu['name'] = _('info');
break; break;
@ -257,7 +257,7 @@ class HTMLTree extends Tree {
$menu['ajax'] = _('Loading Monitor Info'); $menu['ajax'] = _('Loading Monitor Info');
$menu['div'] = 'BODY'; $menu['div'] = 'BODY';
$menu['title'] = _('Monitor'); $menu['title'] = _('Monitor');
$menu['img'] = 'ldap-server.png'; $menu['img'] = 'monitorserver-big.png';
$menu['name'] = _('monitor'); $menu['name'] = _('monitor');
break; break;
@ -269,7 +269,7 @@ class HTMLTree extends Tree {
$menu['ajax'] = _('Loading Import'); $menu['ajax'] = _('Loading Import');
$menu['div'] = 'BODY'; $menu['div'] = 'BODY';
$menu['title'] = _('Import'); $menu['title'] = _('Import');
$menu['img'] = 'import.png'; $menu['img'] = 'import-big.png';
$menu['name'] = _('import'); $menu['name'] = _('import');
break; break;
@ -281,7 +281,7 @@ class HTMLTree extends Tree {
$menu['ajax'] = _('Loading Export'); $menu['ajax'] = _('Loading Export');
$menu['div'] = 'BODY'; $menu['div'] = 'BODY';
$menu['title'] = _('Export'); $menu['title'] = _('Export');
$menu['img'] = 'export.png'; $menu['img'] = 'export-big.png';
$menu['name'] = _('export'); $menu['name'] = _('export');
break; break;
@ -292,7 +292,7 @@ class HTMLTree extends Tree {
$href = sprintf('cmd.php?cmd=logout&server_id=%s',$server->getIndex()); $href = sprintf('cmd.php?cmd=logout&server_id=%s',$server->getIndex());
return sprintf('<a href="%s" title="%s"><img src="%s/%s" alt="%s" /><br />%s</a>', return sprintf('<a href="%s" title="%s"><img src="%s/%s" alt="%s" /><br />%s</a>',
htmlspecialchars($href),_('Logout of this server'),IMGDIR,'logout.png',_('logout'),_('logout')); htmlspecialchars($href),_('Logout of this server'),IMGDIR,'logout-big.png',_('logout'),_('logout'));
default: default:
return false; return false;
@ -465,7 +465,7 @@ class HTMLTree extends Tree {
echo '<tr>'; echo '<tr>';
printf('<td class="spacer" colspan=%s></td>',$level+3); printf('<td class="spacer" colspan=%s></td>',$level+3);
printf('<td class="icon"><a href="%s"><img src="%s/star.png" alt="%s" /></a></td>',$href,IMGDIR,_('new')); printf('<td class="icon"><a href="%s"><img src="%s/create.png" alt="%s" /></a></td>',$href,IMGDIR,_('new'));
printf('<td class="link" colspan="%s"><a href="%s" title="%s %s">%s</a></td>', printf('<td class="link" colspan="%s"><a href="%s" title="%s %s">%s</a></td>',
$this->getDepth()+3-$level,$href,_('Create a new entry in'),$rdn,_('Create new entry here')); $this->getDepth()+3-$level,$href,_('Create a new entry in'),$rdn,_('Create new entry here'));
echo '</tr>'; echo '</tr>';
@ -486,12 +486,12 @@ class HTMLTree extends Tree {
if (isAjaxEnabled()) { if (isAjaxEnabled()) {
printf('<td class="icon"><a href="cmd.php?%s" onclick="return displayAJ(\'BODY\',\'%s\',\'%s\');" title="%s %s"><img src="%s/%s" alt="%s" /></a></td>', printf('<td class="icon"><a href="cmd.php?%s" onclick="return displayAJ(\'BODY\',\'%s\',\'%s\');" title="%s %s"><img src="%s/%s" alt="%s" /></a></td>',
$href_parm,$href_parm,_('Loading Login'),_('Login to'),$server->getName(),IMGDIR,'uid.png',_('login')); $href_parm,$href_parm,_('Loading Login'),_('Login to'),$server->getName(),IMGDIR,'login.png',_('login'));
printf('<td class="logged_in" colspan="%s"><a href="cmd.php?%s" onclick="return displayAJ(\'BODY\',\'%s\',\'%s\');" title="%s %s">%s</a></td>', printf('<td class="logged_in" colspan="%s"><a href="cmd.php?%s" onclick="return displayAJ(\'BODY\',\'%s\',\'%s\');" title="%s %s">%s</a></td>',
$this->getDepth()+3-2,$href_parm,$href_parm,_('Loading Login'),_('Login to'),$server->getName(),_('login')); $this->getDepth()+3-2,$href_parm,$href_parm,_('Loading Login'),_('Login to'),$server->getName(),_('login'));
} else { } else {
printf('<td class="icon"><a href="cmd.php?%s"><img src="%s/%s" alt="%s" /></a></td>',$href_parm,IMGDIR,'uid.png',_('login')); printf('<td class="icon"><a href="cmd.php?%s"><img src="%s/%s" alt="%s" /></a></td>',$href_parm,IMGDIR,'login.png',_('login'));
printf('<td class="logged_in" colspan="%s"><a href="cmd.php?%s">%s...</a></td>',$this->getDepth()+3-2,$href_parm,_('Login')); printf('<td class="logged_in" colspan="%s"><a href="cmd.php?%s">%s...</a></td>',$this->getDepth()+3-2,$href_parm,_('Login'));
} }

View File

@ -623,7 +623,7 @@ class TemplateRender extends PageRender {
echo '<tr>'; echo '<tr>';
if ($isInValid) if ($isInValid)
printf('<td class="icon"><img src="%s/disabled.png" alt="Error" /></td>',IMGDIR); printf('<td class="icon"><img src="%s/disabled.png" alt="Disabled" /></td>',IMGDIR);
else { else {
if (isAjaxEnabled()) if (isAjaxEnabled())
@ -669,7 +669,7 @@ class TemplateRender extends PageRender {
else else
echo '<td><input type="radio" name="template" value="none" id="none" onclick="document.forms.template_choice_form.submit()" /></td>'; echo '<td><input type="radio" name="template" value="none" id="none" onclick="document.forms.template_choice_form.submit()" /></td>';
printf('<td class="icon"><label for="none"><img src="%s/object.png" alt="" /></label></td>',IMGDIR); printf('<td class="icon"><label for="none"><img src="%s/ldap-default.png" alt="" /></label></td>',IMGDIR);
printf('<td class="label"><label for="none">%s</label></td>',_('Default')); printf('<td class="label"><label for="none">%s</label></td>',_('Default'));
echo '</tr>'; echo '</tr>';
} }
@ -1114,10 +1114,10 @@ class TemplateRender extends PageRender {
$href = sprintf('cmd=template_engine&%s&template=',$this->url_base); $href = sprintf('cmd=template_engine&%s&template=',$this->url_base);
if (isAjaxEnabled()) if (isAjaxEnabled())
return sprintf($this->layout['actionajax'],IMGDIR,'catalog.png',_('Switch Template'), return sprintf($this->layout['actionajax'],IMGDIR,'switch.png',_('Switch Template'),
htmlspecialchars($href),_('Change to another template'),htmlspecialchars($href),_('Loading'),_('Switch Template')); htmlspecialchars($href),_('Change to another template'),htmlspecialchars($href),_('Loading'),_('Switch Template'));
else else
return sprintf($this->layout['action'],IMGDIR,'catalog.png',_('Switch Template'), return sprintf($this->layout['action'],IMGDIR,'switch.png',_('Switch Template'),
htmlspecialchars($href),_('Change to another template'),_('Switch Template')); htmlspecialchars($href),_('Change to another template'),_('Switch Template'));
} }
@ -1127,10 +1127,10 @@ class TemplateRender extends PageRender {
$href = sprintf('cmd=export_form&%s&scope=base',$this->url_base); $href = sprintf('cmd=export_form&%s&scope=base',$this->url_base);
if (isAjaxEnabled()) if (isAjaxEnabled())
return sprintf($this->layout['actionajax'],IMGDIR,'save.png',_('Export'), return sprintf($this->layout['actionajax'],IMGDIR,'export.png',_('Export'),
htmlspecialchars($href),_('Save a dump of this object'),htmlspecialchars($href),_('Loading'),_('Export')); htmlspecialchars($href),_('Save a dump of this object'),htmlspecialchars($href),_('Loading'),_('Export'));
else else
return sprintf($this->layout['action'],IMGDIR,'save.png',_('Export'), return sprintf($this->layout['action'],IMGDIR,'export.png',_('Export'),
htmlspecialchars($href),_('Save a dump of this object'),_('Export')); htmlspecialchars($href),_('Save a dump of this object'),_('Export'));
} }
@ -1213,11 +1213,11 @@ class TemplateRender extends PageRender {
$href = sprintf('cmd=template_engine&server_id=%s&container=%s',$this->getServerID(),rawurlencode($this->template->getDN())); $href = sprintf('cmd=template_engine&server_id=%s&container=%s',$this->getServerID(),rawurlencode($this->template->getDN()));
if (isAjaxEnabled()) if (isAjaxEnabled())
return sprintf($this->layout['actionajax'],IMGDIR,'star.png',_('Create'), return sprintf($this->layout['actionajax'],IMGDIR,'create.png',_('Create'),
htmlspecialchars($href),_('Create a child entry'), htmlspecialchars($href),_('Create a child entry'),
htmlspecialchars($href),_('Loading'),_('Create a child entry')); htmlspecialchars($href),_('Loading'),_('Create a child entry'));
else else
return sprintf($this->layout['action'],IMGDIR,'star.png',_('Create'), return sprintf($this->layout['action'],IMGDIR,'create.png',_('Create'),
htmlspecialchars($href),_('Create a child entry'),_('Create a child entry')); htmlspecialchars($href),_('Create a child entry'),_('Create a child entry'));
} }
@ -1262,11 +1262,11 @@ class TemplateRender extends PageRender {
$href = sprintf('cmd=export_form&%s&scope=%s',$this->url_base,'sub'); $href = sprintf('cmd=export_form&%s&scope=%s',$this->url_base,'sub');
if (isAjaxEnabled()) if (isAjaxEnabled())
return sprintf($this->layout['actionajax'],IMGDIR,'save.png',_('Save'), return sprintf($this->layout['actionajax'],IMGDIR,'export.png',_('Save'),
htmlspecialchars($href),_('Save a dump of this object and all of its children'), htmlspecialchars($href),_('Save a dump of this object and all of its children'),
htmlspecialchars($href),_('Loading'),_('Export subtree')); htmlspecialchars($href),_('Loading'),_('Export subtree'));
else else
return sprintf($this->layout['action'],IMGDIR,'save.png',_('Save'), return sprintf($this->layout['action'],IMGDIR,'export.png',_('Save'),
htmlspecialchars($href),_('Save a dump of this object and all of its children'),_('Export subtree')); htmlspecialchars($href),_('Save a dump of this object and all of its children'),_('Export subtree'));
} }
@ -1830,9 +1830,9 @@ function fillRec(id,value) {
if (DEBUGTMP) printf('<font size=-2>%s</font><br />',__METHOD__); if (DEBUGTMP) printf('<font size=-2>%s</font><br />',__METHOD__);
if (strlen($val) <= 0) if (strlen($val) <= 0)
printf('<img src="%s/go.png" alt="Go" align="top" />&nbsp;',IMGDIR); printf('<img src="%s/ldap-alias.png" alt="Go" align="top" />&nbsp;',IMGDIR);
elseif ($this->getServer()->dnExists($val)) elseif ($this->getServer()->dnExists($val))
printf('<a href="cmd.php?cmd=template_engine&amp;server_id=%s&amp;dn=%s" title="%s %s"><img src="%s/go.png" alt="Go" /></a>&nbsp;', printf('<a href="cmd.php?cmd=template_engine&amp;server_id=%s&amp;dn=%s" title="%s %s"><img src="%s/ldap-alias.png" alt="Go" /></a>&nbsp;',
$this->getServerID(),rawurlencode($val),_('Go to'),$val,IMGDIR); $this->getServerID(),rawurlencode($val),_('Go to'),$val,IMGDIR);
else else
printf('<a title="%s %s"><img src="%s/nogo.png" alt="Go" /></a>&nbsp;',_('DN not available'),$val,IMGDIR); printf('<a title="%s %s"><img src="%s/nogo.png" alt="Go" /></a>&nbsp;',_('DN not available'),$val,IMGDIR);
@ -1852,7 +1852,7 @@ function fillRec(id,value) {
protected function drawUrlValueIconAttribute($attribute,$val) { protected function drawUrlValueIconAttribute($attribute,$val) {
if (DEBUGTMP) printf('<font size=-2>%s</font><br />',__METHOD__); if (DEBUGTMP) printf('<font size=-2>%s</font><br />',__METHOD__);
$img = sprintf('<img src="%s/dc.png" alt="%s" align="top" />',IMGDIR,_('URL')); $img = sprintf('<img src="%s/ldap-dc.png" alt="%s" align="top" />',IMGDIR,_('URL'));
$url = explode(' +',$val,2); $url = explode(' +',$val,2);
if (strlen($val) <= 0) if (strlen($val) <= 0)

View File

@ -384,12 +384,12 @@ function cmd_control_pane($type) {
'external_links:forum'=>array( 'external_links:forum'=>array(
'title'=>_('Forum'), 'title'=>_('Forum'),
'link'=>sprintf('href="%s" title="%s" target="_blank"',get_href('forum'),_('Forum')), 'link'=>sprintf('href="%s" title="%s" target="_blank"',get_href('forum'),_('Forum')),
'image'=>sprintf('<img src="%s/help.png" alt="%s" />',IMGDIR,_('Forum'))), 'image'=>sprintf('<img src="%s/forum-big.png" alt="%s" />',IMGDIR,_('Forum'))),
'external_links:feature'=>array( 'external_links:feature'=>array(
'title'=>_('Request feature'), 'title'=>_('Request feature'),
'link'=>sprintf('href="%s" title="%s" target="_blank"',get_href('add_rfe'),_('Request feature')), 'link'=>sprintf('href="%s" title="%s" target="_blank"',get_href('add_rfe'),_('Request feature')),
'image'=>sprintf('<img src="%s/request-feature.png" alt="%s" />',IMGDIR,_('Request feature'))), 'image'=>sprintf('<img src="%s/request-feature-big.png" alt="%s" />',IMGDIR,_('Request feature'))),
'external_links:bug'=>array( 'external_links:bug'=>array(
'title'=>_('Report a bug'), 'title'=>_('Report a bug'),
@ -1579,26 +1579,26 @@ function get_icon($server_id,$dn,$object_classes=array()) {
in_array('account',$object_classes) || in_array('account',$object_classes) ||
in_array('posixaccount',$object_classes)) in_array('posixaccount',$object_classes))
return 'user.png'; return 'ldap-user.png';
elseif (in_array('organization',$object_classes)) elseif (in_array('organization',$object_classes))
return 'o.png'; return 'ldap-o.png';
elseif (in_array('organizationalunit',$object_classes)) elseif (in_array('organizationalunit',$object_classes))
return 'ou.png'; return 'ldap-ou.png';
elseif (in_array('organizationalrole',$object_classes)) elseif (in_array('organizationalrole',$object_classes))
return 'uid.png'; return 'ldap-uid.png';
elseif (in_array('dcobject',$object_classes) || elseif (in_array('dcobject',$object_classes) ||
in_array('domainrelatedobject',$object_classes) || in_array('domainrelatedobject',$object_classes) ||
in_array('domain',$object_classes) || in_array('domain',$object_classes) ||
in_array('builtindomain',$object_classes)) in_array('builtindomain',$object_classes))
return 'dc.png'; return 'ldap-dc.png';
elseif (in_array('alias',$object_classes)) elseif (in_array('alias',$object_classes))
return 'go.png'; return 'ldap-alias.png';
elseif (in_array('room',$object_classes)) elseif (in_array('room',$object_classes))
return 'door.png'; return 'door.png';
@ -1632,13 +1632,13 @@ function get_icon($server_id,$dn,$object_classes=array()) {
in_array('groupofnames',$object_classes) || in_array('groupofnames',$object_classes) ||
in_array('group',$object_classes)) in_array('group',$object_classes))
return 'ou.png'; return 'ldap-ou.png';
elseif (in_array('applicationprocess',$object_classes)) elseif (in_array('applicationprocess',$object_classes))
return 'process.png'; return 'process.png';
elseif (in_array('groupofuniquenames',$object_classes)) elseif (in_array('groupofuniquenames',$object_classes))
return 'uniquegroup.png'; return 'ldap-uniquegroup.png';
elseif (in_array('iphost',$object_classes)) elseif (in_array('iphost',$object_classes))
return 'host.png'; return 'host.png';
@ -1671,7 +1671,7 @@ function get_icon($server_id,$dn,$object_classes=array()) {
return 'ldap-server.png'; return 'ldap-server.png';
elseif (in_array('rbscollection',$object_classes)) elseif (in_array('rbscollection',$object_classes))
return 'ou.png'; return 'ldap-ou.png';
elseif (in_array('dfsconfiguration',$object_classes)) elseif (in_array('dfsconfiguration',$object_classes))
return 'nt_machine.png'; return 'nt_machine.png';
@ -1713,11 +1713,11 @@ function get_icon($server_id,$dn,$object_classes=array()) {
return 'lock.png'; return 'lock.png';
elseif (strcasecmp($rdn_value,'MicrosoftDNS') == 0) elseif (strcasecmp($rdn_value,'MicrosoftDNS') == 0)
return 'dc.png'; return 'ldap-dc.png';
# Oh well, I don't know what it is. Use a generic icon. # Oh well, I don't know what it is. Use a generic icon.
else else
return 'object.png'; return 'ldap-default.png';
} }
/** /**

View File

@ -7,7 +7,7 @@
</bases> </bases>
<filter><![CDATA[(&(|(objectClass=sambaAccount)(objectClass=sambaSamAccount))(objectClass=posixAccount)(!(uid=*$)))]]></filter> <filter><![CDATA[(&(|(objectClass=sambaAccount)(objectClass=sambaSamAccount))(objectClass=posixAccount)(!(uid=*$)))]]></filter>
<description>Samba Users</description> <description>Samba Users</description>
<icon>user.png</icon> <icon>ldap-user.png</icon>
<scope>sub</scope> <scope>sub</scope>
<visible>1</visible> <visible>1</visible>

View File

@ -7,7 +7,7 @@
</bases> </bases>
<filter><![CDATA[(&(objectClass=posixAccount)(uid=*))]]></filter> <filter><![CDATA[(&(objectClass=posixAccount)(uid=*))]]></filter>
<description>User List</description> <description>User List</description>
<icon>user.png</icon> <icon>ldap-user.png</icon>
<scope>sub</scope> <scope>sub</scope>
<visible>1</visible> <visible>1</visible>

View File

@ -5,7 +5,7 @@
<template> <template>
<askcontainer>1</askcontainer> <askcontainer>1</askcontainer>
<description>New LDAP Alias</description> <description>New LDAP Alias</description>
<icon>go.png</icon> <icon>ldap-alias.png</icon>
<invalid>0</invalid> <invalid>0</invalid>
<rdn>uid</rdn> <rdn>uid</rdn>
<!--<regexp>^ou=People,o=.*,</regexp>--> <!--<regexp>^ou=People,o=.*,</regexp>-->

View File

@ -4,7 +4,7 @@
<template> <template>
<askcontainer>1</askcontainer> <askcontainer>1</askcontainer>
<description>New DNS Entry</description> <description>New DNS Entry</description>
<icon>dc.png</icon> <icon>ldap-dc.png</icon>
<invalid>0</invalid> <invalid>0</invalid>
<rdn>dc</rdn> <rdn>dc</rdn>
<!--<regexp>^ou=People,o=.*,</regexp>--> <!--<regexp>^ou=People,o=.*,</regexp>-->

View File

@ -19,7 +19,7 @@
<attribute id="attribute1"> <attribute id="attribute1">
<display>Attribute 1</display> <display>Attribute 1</display>
<hint>This is an example</hint> <hint>This is an example</hint>
<icon>user.png</icon> <icon>ldap-uid.png</icon>
<order>1</order> <order>1</order>
<page>1</page> <page>1</page>
</attribute> </attribute>

View File

@ -4,7 +4,7 @@
<template> <template>
<askcontainer>1</askcontainer> <askcontainer>1</askcontainer>
<description>New Address Book Entry</description> <description>New Address Book Entry</description>
<icon>user.png</icon> <icon>address-book.png</icon>
<invalid>0</invalid> <invalid>0</invalid>
<rdn>cn</rdn> <rdn>cn</rdn>
<!--<regexp>^ou=People,o=.*,</regexp>--> <!--<regexp>^ou=People,o=.*,</regexp>-->

View File

@ -4,7 +4,7 @@
<template> <template>
<askcontainer>1</askcontainer> <askcontainer>1</askcontainer>
<description>New Address Book Entry</description> <description>New Address Book Entry</description>
<icon>user.png</icon> <icon>address-book.png</icon>
<invalid>0</invalid> <invalid>0</invalid>
<rdn>cn</rdn> <rdn>cn</rdn>
<!--<regexp>^ou=People,o=.*,</regexp>--> <!--<regexp>^ou=People,o=.*,</regexp>-->
@ -45,7 +45,7 @@
</attribute> </attribute>
<attribute id="title"> <attribute id="title">
<display>Title</display> <display>Title</display>
<icon>ou.png</icon> <icon>ldap-ou.png</icon>
<order>6</order> <order>6</order>
</attribute> </attribute>
<attribute id="alias"> <attribute id="alias">

View File

@ -4,7 +4,7 @@
<template> <template>
<askcontainer>1</askcontainer> <askcontainer>1</askcontainer>
<description>New Thunderbird Address Book Entry</description> <description>New Thunderbird Address Book Entry</description>
<icon>user.png</icon> <icon>address-book.png</icon>
<invalid>0</invalid> <invalid>0</invalid>
<rdn>cn</rdn> <rdn>cn</rdn>
<!--<regexp>^ou=People,o=.*,</regexp>--> <!--<regexp>^ou=People,o=.*,</regexp>-->

View File

@ -4,7 +4,7 @@
<template> <template>
<askcontainer>1</askcontainer> <askcontainer>1</askcontainer>
<description>New Organisational Role</description> <description>New Organisational Role</description>
<icon>o.png</icon> <icon>ldap-o.png</icon>
<invalid>0</invalid> <invalid>0</invalid>
<rdn>cn</rdn> <rdn>cn</rdn>
<!--<regexp>^ou=People,o=.*,</regexp>--> <!--<regexp>^ou=People,o=.*,</regexp>-->
@ -39,7 +39,7 @@
</attribute> </attribute>
<attribute id="roleOccupant"> <attribute id="roleOccupant">
<display>Occupant</display> <display>Occupant</display>
<icon>object.png</icon> <icon>ldap-default.png</icon>
<order>5</order> <order>5</order>
<spacer>1</spacer> <spacer>1</spacer>
</attribute> </attribute>

View File

@ -4,7 +4,7 @@
<template> <template>
<askcontainer>1</askcontainer> <askcontainer>1</askcontainer>
<description>New Organisational Unit</description> <description>New Organisational Unit</description>
<icon>ou.png</icon> <icon>ldap-ou.png</icon>
<invalid>0</invalid> <invalid>0</invalid>
<rdn>ou</rdn> <rdn>ou</rdn>
<!-- <regexp>^o=.*,</regexp> --> <!-- <regexp>^o=.*,</regexp> -->

View File

@ -4,7 +4,7 @@
<template> <template>
<askcontainer>1</askcontainer> <askcontainer>1</askcontainer>
<description>New User Account</description> <description>New User Account</description>
<icon>user.png</icon> <icon>ldap-user.png</icon>
<invalid>0</invalid> <invalid>0</invalid>
<rdn>cn</rdn> <rdn>cn</rdn>
<!--<regexp>^ou=People,o=.*,</regexp>--> <!--<regexp>^ou=People,o=.*,</regexp>-->

View File

@ -4,7 +4,7 @@
<template> <template>
<askcontainer>1</askcontainer> <askcontainer>1</askcontainer>
<description>New Posix Group</description> <description>New Posix Group</description>
<icon>ou.png</icon> <icon>ldap-ou.png</icon>
<invalid>0</invalid> <invalid>0</invalid>
<rdn>cn</rdn> <rdn>cn</rdn>
<!-- <regexp>^ou=.*,</regexp> --> <!-- <regexp>^ou=.*,</regexp> -->

View File

@ -4,7 +4,7 @@
<template> <template>
<askcontainer>1</askcontainer> <askcontainer>1</askcontainer>
<description>New Samba Domain</description> <description>New Samba Domain</description>
<icon>dc.png</icon> <icon>ldap-dc.png</icon>
<invalid>0</invalid> <invalid>0</invalid>
<rdn>sambaDomainName</rdn> <rdn>sambaDomainName</rdn>
<!--<regexp>^ou=People,o=.*,</regexp>--> <!--<regexp>^ou=People,o=.*,</regexp>-->

View File

@ -4,7 +4,7 @@
<template> <template>
<askcontainer>1</askcontainer> <askcontainer>1</askcontainer>
<description>New Samba3 Group Mapping</description> <description>New Samba3 Group Mapping</description>
<icon>ou.png</icon> <icon>ldap-ou.png</icon>
<invalid>0</invalid> <invalid>0</invalid>
<rdn>cn</rdn> <rdn>cn</rdn>
<!-- <regexp>^ou=.*,</regexp> --> <!-- <regexp>^ou=.*,</regexp> -->

View File

@ -4,7 +4,7 @@
<template> <template>
<askcontainer>1</askcontainer> <askcontainer>1</askcontainer>
<description>New Samba3 Account</description> <description>New Samba3 Account</description>
<icon>user.png</icon> <icon>ldap-user.png</icon>
<invalid>0</invalid> <invalid>0</invalid>
<rdn>cn</rdn> <rdn>cn</rdn>
<!--<regexp>^ou=People,o=.*,</regexp>--> <!--<regexp>^ou=People,o=.*,</regexp>-->

View File

@ -18,7 +18,7 @@
<attributes> <attributes>
<attribute id="sendmailMTACluster"> <attribute id="sendmailMTACluster">
<display>Sendmail Cluster Name</display> <display>Sendmail Cluster Name</display>
<icon>object.png</icon> <icon>ldap-default.png</icon>
<order>1</order> <order>1</order>
<page>1</page> <page>1</page>
</attribute> </attribute>

View File

@ -18,7 +18,7 @@
<attributes> <attributes>
<attribute id="sendmailMTACluster"> <attribute id="sendmailMTACluster">
<display>Sendmail Cluster Name</display> <display>Sendmail Cluster Name</display>
<icon>object.png</icon> <icon>ldap-default.png</icon>
<order>1</order> <order>1</order>
<page>1</page> <page>1</page>
</attribute> </attribute>

View File

@ -22,7 +22,7 @@
<attributes> <attributes>
<attribute id="sendmailMTACluster"> <attribute id="sendmailMTACluster">
<display>Sendmail Cluster Name</display> <display>Sendmail Cluster Name</display>
<icon>object.png</icon> <icon>ldap-default.png</icon>
<order>1</order> <order>1</order>
<page>1</page> <page>1</page>
</attribute> </attribute>

View File

@ -18,7 +18,7 @@
<attributes> <attributes>
<attribute id="sendmailMTACluster"> <attribute id="sendmailMTACluster">
<display>Sendmail Cluster Name</display> <display>Sendmail Cluster Name</display>
<icon>object.png</icon> <icon>ldap-default.png</icon>
<order>1</order> <order>1</order>
<page>1</page> <page>1</page>
</attribute> </attribute>

View File

@ -22,7 +22,7 @@
<attributes> <attributes>
<attribute id="sendmailMTACluster"> <attribute id="sendmailMTACluster">
<display>Sendmail Cluster Name</display> <display>Sendmail Cluster Name</display>
<icon>object.png</icon> <icon>ldap-default.png</icon>
<order>1</order> <order>1</order>
<page>1</page> <page>1</page>
</attribute> </attribute>

View File

@ -4,7 +4,7 @@
<template> <template>
<askcontainer>1</askcontainer> <askcontainer>1</askcontainer>
<description>New Simple Security Object</description> <description>New Simple Security Object</description>
<icon>user.png</icon> <icon>ldap-user.png</icon>
<invalid>0</invalid> <invalid>0</invalid>
<rdn>userid</rdn> <rdn>userid</rdn>
<!--<regexp>^ou=People,o=.*,</regexp>--> <!--<regexp>^ou=People,o=.*,</regexp>-->

View File

@ -3,7 +3,7 @@
<template> <template>
<description>Address Book Entry</description> <description>Address Book Entry</description>
<icon>user.png</icon> <icon>address-book.png</icon>
<invalid>0</invalid> <invalid>0</invalid>
<rdn>cn</rdn> <rdn>cn</rdn>
<!-- <regexp>^uid=.*,</regexp> --> <!-- <regexp>^uid=.*,</regexp> -->

View File

@ -4,7 +4,7 @@
<template> <template>
<askcontainer>1</askcontainer> <askcontainer>1</askcontainer>
<description>New Posix Group</description> <description>New Posix Group</description>
<icon>ou.png</icon> <icon>ldap-ou.png</icon>
<invalid>0</invalid> <invalid>0</invalid>
<rdn>cn</rdn> <rdn>cn</rdn>
<!-- <regexp>^ou=.*,</regexp> --> <!-- <regexp>^ou=.*,</regexp> -->