summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 9169b28)
raw | patch | inline | side by side (parent: 9169b28)
author | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 17 Jan 2008 13:53:48 +0000 (13:53 +0000) | ||
committer | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 17 Jan 2008 13:53:48 +0000 (13:53 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@8456 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-core/plugins/admin/systems/samba/class_winGeneric.inc | [deleted file] | patch | blob | history |
gosa-core/plugins/admin/systems/samba/tabs_winstation.inc | [deleted file] | patch | blob | history |
gosa-core/plugins/admin/systems/samba/wingeneric.tpl | [deleted file] | patch | blob | history |
gosa-plugins/samba/admin/systems/samba/class_winGeneric.inc | [new file with mode: 0644] | patch | blob |
gosa-plugins/samba/admin/systems/samba/tabs_winstation.inc | [new file with mode: 0644] | patch | blob |
gosa-plugins/samba/admin/systems/samba/wingeneric.tpl | [new file with mode: 0644] | patch | blob |
diff --git a/gosa-core/plugins/admin/systems/samba/class_winGeneric.inc b/gosa-core/plugins/admin/systems/samba/class_winGeneric.inc
+++ /dev/null
@@ -1,304 +0,0 @@
-<?php
-
-class wingeneric extends plugin
-{
- /* CLI vars */
- var $cli_summary = "Manage component base objects";
- var $cli_description = "Some longer text\nfor help";
- var $cli_parameters = array("eins" => "Eins ist toll", "zwei" => "Zwei ist noch besser");
-
- /* Generic terminal attributes */
- var $interfaces= array();
-
- /* Needed values and lists */
- var $base= "";
- var $cn= "";
- var $description= "";
- var $orig_dn= "";
- var $shadowLastChange="";
- var $uidNumber="";
- var $gidNumber="";
- var $loginShell="";
- var $gecos="";
- var $shadowMin="";
- var $shadowWarning="";
- var $shadowInactive="";
- var $uid="";
- var $sn="";
- var $givenName="";
- var $homeDirectory="";
- var $sambaSID="";
- var $sambaPrimaryGroupSID="";
- var $displayName="";
- var $sambaPwdMustChange="";
- var $sambaNTPassword="";
- var $sambaPwdLastSet="";
- var $sambaAcctFlags="";
- var $netConfigDNS;
- /* attribute list for save action */
- var $ignore_account= TRUE;
- var $attributes = array("cn", "description","shadowLastChange",
- "uidNumber","gidNumber","loginShell","gecos","shadowMin","shadowWarning",
- "shadowInactive","uid","cn","sn","givenName","homeDirectory","sambaSID",
- "sambaPrimaryGroupSID","displayName", "sambaPwdMustChange",
- "sambaNTPassword","sambaPwdLastSet","sambaAcctFlags");
- var $objectclasses= array("posixAccount","person","organizationalPerson","inetOrgPerson","gosaAccount","shadowAccount","sambaSamAccount","top");
-
- var $view_logged = FALSE;
-
- function wingeneric (&$config, $dn= NULL, $parent= NULL)
- {
- plugin::plugin ($config, $dn, $parent);
- $this->netConfigDNS = new termDNS($this->config,$this,$this->objectclasses);
- /* Set base */
- if ($this->dn == "new"){
- $ui= get_userinfo();
- $this->base= dn2base($ui->dn);
- $this->cn= "";
- } else {
- $this->base= preg_replace ("/^[^,]+,".normalizePreg(get_winstations_ou())."/", "", $this->dn);
- }
-
- /* Save dn for later references */
- $this->orig_dn= $this->dn;
-
- $this->cn= preg_replace("/\\\$\$/","",$this->cn);
- }
-
-
- function set_acl_base($base)
- {
- plugin::set_acl_base($base);
- $this->netConfigDNS->set_acl_base($base);
- }
-
- function set_acl_category($cat)
- {
- plugin::set_acl_category($cat);
- $this->netConfigDNS->set_acl_category($cat);
- }
-
-
- function execute()
- {
- /* Call parent execute */
- plugin::execute();
-
- if($this->is_account && !$this->view_logged){
- $this->view_logged = TRUE;
- new log("view","winworkstation/".get_class($this),$this->dn);
- }
-
-
- /* Do we represent a valid phone? */
- if (!$this->is_account && $this->parent === NULL){
- $display= "<img alt=\"\" src=\"images/stop.png\" align=middle> <b>".
- _("This 'dn' has no network features.")."</b>";
- return($display);
- }
-
- /* Base select dialog */
- $once = true;
- foreach($_POST as $name => $value){
- if(preg_match("/^chooseBase/",$name) && $once){
- $once = false;
- $this->dialog = new baseSelectDialog($this->config,$this);
- $this->dialog->setCurrentBase($this->base);
- }
- }
-
- /* Dialog handling */
- if(is_object($this->dialog)){
- /* Must be called before save_object */
- $this->dialog->save_object();
-
- if($this->dialog->isClosed()){
- $this->dialog = false;
- }elseif($this->dialog->isSelected()){
-
- /* A new base was selected, check if it is a valid one */
- $tmp = $this->get_allowed_bases();
- if(isset($tmp[$this->dialog->isSelected()])){
- $this->base = $this->dialog->isSelected();
- }
-
- $this->dialog= false;
- }else{
- return($this->dialog->execute());
- }
- }
-
- /* Fill templating stuff */
- $smarty= get_smarty();
- $smarty->assign("bases", $this->config->idepartments);
-
- /* Assign attributes */
- foreach ($this->attributes as $attr){
- $smarty->assign("$attr", $this->$attr);
- }
-
- $smarty->assign("base_select", $this->base);
-
- /* Show main page */
- $str = $this->netConfigDNS->execute();
- if(is_object($this->netConfigDNS->dialog)){
- return($str);
- }
- $smarty->assign("netconfig", $str);
- return($smarty->fetch (get_template_path('wingeneric.tpl', TRUE,dirname(__FILE__))));
- }
-
- function remove_from_parent()
- {
- $this->netConfigDNS->remove_from_parent();
- $ldap= $this->config->get_ldap_link();
- $ldap->rmdir($this->dn);
- new log("remove","winworkstation/".get_class($this),$this->dn,array_keys($this->attrs),$ldap->get_error());
- show_ldap_error($ldap->get_error(), sprintf(_("Removing of system wingeneric/generic with dn '%s' failed."),$this->dn));
- $this->handle_post_events("remove");
-
- /* Delete references to object groups */
- $ldap->cd ($this->config->current['BASE']);
- $ldap->search ("(&(objectClass=gosaGroupOfNames)(member=".LDAP::prepare4filter($this->dn)."))", array("cn"));
- while ($ldap->fetch()){
- $og= new ogroup($this->config, $ldap->getDN());
- unset($og->member[$this->dn]);
- $og->save ();
- }
- }
-
-
- /* Save data to object */
- function save_object()
- {
- /* Create a base backup and reset the
- base directly after calling plugin::save_object();
- Base will be set seperatly a few lines below */
- $base_tmp = $this->base;
- plugin::save_object();
- $this->base = $base_tmp;
-
- $this->netConfigDNS->save_object();
-
- /* Set new base if allowed */
- $tmp = $this->get_allowed_bases();
- if(isset($_POST['base'])){
- if(isset($tmp[$_POST['base']])){
- $this->base= $_POST['base'];
- }
- }
- }
-
-
- /* Check supplied data */
- function check()
- {
- /* Call common method to give check the hook */
- $message= plugin::check();
- $message= array_merge($message, $this->netConfigDNS->check());
- $this->dn= "cn=".$this->cn.",".get_ou('componentou').$this->base;
-
- /* Set new acl base */
- if($this->dn == "new") {
- $this->set_acl_base($this->base);
- }
-
- if(!$this->acl_is_createable() && $this->dn == "new"){
- $message[]= _("You have no permissions to create a component on this 'Base'.");
- }
-
- if ($this->orig_dn != $this->dn){
- $ldap= $this->config->get_ldap_link();
- $ldap->cd ($this->base);
- $ldap->search ("(cn=".$this->cn.")", array("cn"));
- if ($ldap->count() != 0){
- while ($attrs= $ldap->fetch()){
- if(preg_match("/cn=dhcp,/",$attrs['dn'])){
- continue;
- }
- if ($attrs['dn'] != $this->orig_dn){
- $message[]= sprintf (_("There is already an entry '%s' in the base choosen by you"), $this->cn);
- break;
- }
- }
- }
- }
-
- return ($message);
- }
-
-
- /* Save to LDAP */
- function save()
- {
- plugin::save();
-
- /* Remove all empty values */
- if ($this->orig_dn == 'new'){
- $attrs= array();
- foreach ($this->attrs as $key => $val){
- if (is_array($val) && count($val) == 0){
- continue;
- }
- $attrs[$key]= $val;
- }
- $this->attrs= $attrs;
- }
-
- if(($this->gosaUnitTag) && (!in_array_ics("gosaAdministrativeUnitTag",$this->attrs['objectClass']))){
- $this->attrs['objectClass'][] = "gosaAdministrativeUnitTag";
- }
-
- /* Write back to ldap */
- $ldap= $this->config->get_ldap_link();
- if ($this->orig_dn == 'new'){
- $ldap->cd($this->config->current['BASE']);
- $ldap->create_missing_trees(preg_replace('/^[^,]+,/', '', $this->dn));
- $ldap->cd($this->dn);
- $ldap->add($this->attrs);
- new log("create","winworkstation/".get_class($this),$this->dn,array_keys($this->attrs),$ldap->get_error());
- $this->handle_post_events("add");
- } else {
- if ($this->orig_dn != $this->dn){
- $this->move($this->orig_dn, $this->dn);
- }
-
- $ldap->cd($this->dn);
- $this->cleanup();
- $ldap->modify ($this->attrs);
- new log("modify","winworkstation/".get_class($this),$this->dn,array_keys($this->attrs),$ldap->get_error());
- $this->handle_post_events("modify");
- }
-
- $this->netConfigDNS->cn = preg_replace("/\\\$\$/","",$this->cn);
- $this->netConfigDNS->save();
- show_ldap_error($ldap->get_error(), sprintf(_("Saving of system wingeneric/generic with dn '%s' failed."),$this->dn));
-
- /* Optionally execute a command after we're done */
- $this->postcreate();
- }
-
- /* Return plugin informations for acl handling
- #FIXME FAIscript seams to ununsed within this class... */
- static function plInfo()
- {
- return (array(
- "plShortName" => _("Win generic"),
- "plDescription" => _("Windows workstation generic"),
- "plSelfModify" => FALSE,
- "plDepends" => array(),
- "plPriority" => 0,
- "plSection" => array("administration"),
- "plCategory" => array("winworkstation" => array("description" => _("Win workstation"),
- "objectClass" => "gotoWorkstation")),
- "plProvidedAcls"=> array(
- "cn" => _("Workstation name"),
- "description" => _("Description"))
- ));
- }
-
-
-}
-
-// vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
-?>
diff --git a/gosa-core/plugins/admin/systems/samba/tabs_winstation.inc b/gosa-core/plugins/admin/systems/samba/tabs_winstation.inc
+++ /dev/null
@@ -1,44 +0,0 @@
-<?php
-
-class wintabs extends tabs
-{
-
- function wintabs($config, $data, $dn,$category)
- {
- tabs::tabs($config, $data, $dn,$category);
-
- /* Add references/acls/snapshots */
- $this->addSpecialTabs();
- }
-
- function save_object($save_current= FALSE)
- {
- tabs::save_object($save_current);
- }
-
-
- function save($ignore_account= FALSE)
- {
- /* Check for new 'dn', in order to propagate the
- 'dn' to all plugins */
-
- /* add $ to end of name if mising */
- $baseobject= $this->by_object['wingeneric'];
- if(!preg_match("/\\\$\$/",$baseobject->cn)){
- $baseobject->cn .= "$";
- }
-
- $this->dn= "uid=$baseobject->cn,".get_winstations_ou().$baseobject->base;
- $baseobject->dn= $this->dn;
-
- foreach ($this->by_object as $key => $obj){
- $this->by_object[$key]->dn= $this->dn;
- }
-
- tabs::save(TRUE);
- }
-
-}
-
-// vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
-?>
diff --git a/gosa-core/plugins/admin/systems/samba/wingeneric.tpl b/gosa-core/plugins/admin/systems/samba/wingeneric.tpl
+++ /dev/null
@@ -1,42 +0,0 @@
-<table summary="" width="100%">
- <tr>
- <td style="vertical-align:top; width:50%;">
- <table summary="">
- <tr>
- <td><LABEL for="cn">{t}Machine name{/t}</LABEL>{$must}</td>
- <td><input id="cn" name="cn" size=20 maxlength=60 value="{$cn}"></td>
- </tr>
- <tr>
- <td colspan=2> </td>
- </tr>
- <tr>
- <td><LABEL for="base">{t}Base{/t}</LABEL>{$must}</td>
- <td>
- <select size="1" id="base" name="base" title="{t}Choose subtree to place terminal in{/t}">
- {html_options options=$bases selected=$base_select}
- </select>
- <input type="image" name="chooseBase" src="images/folder.png" class="center" title="{t}Select a base{/t}">
- </tr>
- </table>
- </td>
- <td style="vertical-align:top">
- <table summary="">
- <tr>
- <td><LABEL for="description">{t}Description{/t}</LABEL></td>
- <td><input id="description" name="description" size=25 maxlength=80 value="{$description}"></td>
- </tr>
- </table>
- </td>
- </tr>
-</table>
-
-<p class="plugbottom" style="margin-bottom:0px; padding:0px;"> </p>
-
-{$netconfig}
-
-<!-- Place cursor -->
-<script language="JavaScript" type="text/javascript">
- <!-- // First input field on page
- focus_field('cn');
- -->
-</script>
diff --git a/gosa-plugins/samba/admin/systems/samba/class_winGeneric.inc b/gosa-plugins/samba/admin/systems/samba/class_winGeneric.inc
--- /dev/null
@@ -0,0 +1,304 @@
+<?php
+
+class wingeneric extends plugin
+{
+ /* CLI vars */
+ var $cli_summary = "Manage component base objects";
+ var $cli_description = "Some longer text\nfor help";
+ var $cli_parameters = array("eins" => "Eins ist toll", "zwei" => "Zwei ist noch besser");
+
+ /* Generic terminal attributes */
+ var $interfaces= array();
+
+ /* Needed values and lists */
+ var $base= "";
+ var $cn= "";
+ var $description= "";
+ var $orig_dn= "";
+ var $shadowLastChange="";
+ var $uidNumber="";
+ var $gidNumber="";
+ var $loginShell="";
+ var $gecos="";
+ var $shadowMin="";
+ var $shadowWarning="";
+ var $shadowInactive="";
+ var $uid="";
+ var $sn="";
+ var $givenName="";
+ var $homeDirectory="";
+ var $sambaSID="";
+ var $sambaPrimaryGroupSID="";
+ var $displayName="";
+ var $sambaPwdMustChange="";
+ var $sambaNTPassword="";
+ var $sambaPwdLastSet="";
+ var $sambaAcctFlags="";
+ var $netConfigDNS;
+ /* attribute list for save action */
+ var $ignore_account= TRUE;
+ var $attributes = array("cn", "description","shadowLastChange",
+ "uidNumber","gidNumber","loginShell","gecos","shadowMin","shadowWarning",
+ "shadowInactive","uid","cn","sn","givenName","homeDirectory","sambaSID",
+ "sambaPrimaryGroupSID","displayName", "sambaPwdMustChange",
+ "sambaNTPassword","sambaPwdLastSet","sambaAcctFlags");
+ var $objectclasses= array("posixAccount","person","organizationalPerson","inetOrgPerson","gosaAccount","shadowAccount","sambaSamAccount","top");
+
+ var $view_logged = FALSE;
+
+ function wingeneric (&$config, $dn= NULL, $parent= NULL)
+ {
+ plugin::plugin ($config, $dn, $parent);
+ $this->netConfigDNS = new termDNS($this->config,$this,$this->objectclasses);
+ /* Set base */
+ if ($this->dn == "new"){
+ $ui= get_userinfo();
+ $this->base= dn2base($ui->dn);
+ $this->cn= "";
+ } else {
+ $this->base= preg_replace ("/^[^,]+,".normalizePreg(get_winstations_ou())."/", "", $this->dn);
+ }
+
+ /* Save dn for later references */
+ $this->orig_dn= $this->dn;
+
+ $this->cn= preg_replace("/\\\$\$/","",$this->cn);
+ }
+
+
+ function set_acl_base($base)
+ {
+ plugin::set_acl_base($base);
+ $this->netConfigDNS->set_acl_base($base);
+ }
+
+ function set_acl_category($cat)
+ {
+ plugin::set_acl_category($cat);
+ $this->netConfigDNS->set_acl_category($cat);
+ }
+
+
+ function execute()
+ {
+ /* Call parent execute */
+ plugin::execute();
+
+ if($this->is_account && !$this->view_logged){
+ $this->view_logged = TRUE;
+ new log("view","winworkstation/".get_class($this),$this->dn);
+ }
+
+
+ /* Do we represent a valid phone? */
+ if (!$this->is_account && $this->parent === NULL){
+ $display= "<img alt=\"\" src=\"images/stop.png\" align=middle> <b>".
+ _("This 'dn' has no network features.")."</b>";
+ return($display);
+ }
+
+ /* Base select dialog */
+ $once = true;
+ foreach($_POST as $name => $value){
+ if(preg_match("/^chooseBase/",$name) && $once){
+ $once = false;
+ $this->dialog = new baseSelectDialog($this->config,$this);
+ $this->dialog->setCurrentBase($this->base);
+ }
+ }
+
+ /* Dialog handling */
+ if(is_object($this->dialog)){
+ /* Must be called before save_object */
+ $this->dialog->save_object();
+
+ if($this->dialog->isClosed()){
+ $this->dialog = false;
+ }elseif($this->dialog->isSelected()){
+
+ /* A new base was selected, check if it is a valid one */
+ $tmp = $this->get_allowed_bases();
+ if(isset($tmp[$this->dialog->isSelected()])){
+ $this->base = $this->dialog->isSelected();
+ }
+
+ $this->dialog= false;
+ }else{
+ return($this->dialog->execute());
+ }
+ }
+
+ /* Fill templating stuff */
+ $smarty= get_smarty();
+ $smarty->assign("bases", $this->config->idepartments);
+
+ /* Assign attributes */
+ foreach ($this->attributes as $attr){
+ $smarty->assign("$attr", $this->$attr);
+ }
+
+ $smarty->assign("base_select", $this->base);
+
+ /* Show main page */
+ $str = $this->netConfigDNS->execute();
+ if(is_object($this->netConfigDNS->dialog)){
+ return($str);
+ }
+ $smarty->assign("netconfig", $str);
+ return($smarty->fetch (get_template_path('wingeneric.tpl', TRUE,dirname(__FILE__))));
+ }
+
+ function remove_from_parent()
+ {
+ $this->netConfigDNS->remove_from_parent();
+ $ldap= $this->config->get_ldap_link();
+ $ldap->rmdir($this->dn);
+ new log("remove","winworkstation/".get_class($this),$this->dn,array_keys($this->attrs),$ldap->get_error());
+ show_ldap_error($ldap->get_error(), sprintf(_("Removing of system wingeneric/generic with dn '%s' failed."),$this->dn));
+ $this->handle_post_events("remove");
+
+ /* Delete references to object groups */
+ $ldap->cd ($this->config->current['BASE']);
+ $ldap->search ("(&(objectClass=gosaGroupOfNames)(member=".LDAP::prepare4filter($this->dn)."))", array("cn"));
+ while ($ldap->fetch()){
+ $og= new ogroup($this->config, $ldap->getDN());
+ unset($og->member[$this->dn]);
+ $og->save ();
+ }
+ }
+
+
+ /* Save data to object */
+ function save_object()
+ {
+ /* Create a base backup and reset the
+ base directly after calling plugin::save_object();
+ Base will be set seperatly a few lines below */
+ $base_tmp = $this->base;
+ plugin::save_object();
+ $this->base = $base_tmp;
+
+ $this->netConfigDNS->save_object();
+
+ /* Set new base if allowed */
+ $tmp = $this->get_allowed_bases();
+ if(isset($_POST['base'])){
+ if(isset($tmp[$_POST['base']])){
+ $this->base= $_POST['base'];
+ }
+ }
+ }
+
+
+ /* Check supplied data */
+ function check()
+ {
+ /* Call common method to give check the hook */
+ $message= plugin::check();
+ $message= array_merge($message, $this->netConfigDNS->check());
+ $this->dn= "cn=".$this->cn.",".get_ou('componentou').$this->base;
+
+ /* Set new acl base */
+ if($this->dn == "new") {
+ $this->set_acl_base($this->base);
+ }
+
+ if(!$this->acl_is_createable() && $this->dn == "new"){
+ $message[]= _("You have no permissions to create a component on this 'Base'.");
+ }
+
+ if ($this->orig_dn != $this->dn){
+ $ldap= $this->config->get_ldap_link();
+ $ldap->cd ($this->base);
+ $ldap->search ("(cn=".$this->cn.")", array("cn"));
+ if ($ldap->count() != 0){
+ while ($attrs= $ldap->fetch()){
+ if(preg_match("/cn=dhcp,/",$attrs['dn'])){
+ continue;
+ }
+ if ($attrs['dn'] != $this->orig_dn){
+ $message[]= sprintf (_("There is already an entry '%s' in the base choosen by you"), $this->cn);
+ break;
+ }
+ }
+ }
+ }
+
+ return ($message);
+ }
+
+
+ /* Save to LDAP */
+ function save()
+ {
+ plugin::save();
+
+ /* Remove all empty values */
+ if ($this->orig_dn == 'new'){
+ $attrs= array();
+ foreach ($this->attrs as $key => $val){
+ if (is_array($val) && count($val) == 0){
+ continue;
+ }
+ $attrs[$key]= $val;
+ }
+ $this->attrs= $attrs;
+ }
+
+ if(($this->gosaUnitTag) && (!in_array_ics("gosaAdministrativeUnitTag",$this->attrs['objectClass']))){
+ $this->attrs['objectClass'][] = "gosaAdministrativeUnitTag";
+ }
+
+ /* Write back to ldap */
+ $ldap= $this->config->get_ldap_link();
+ if ($this->orig_dn == 'new'){
+ $ldap->cd($this->config->current['BASE']);
+ $ldap->create_missing_trees(preg_replace('/^[^,]+,/', '', $this->dn));
+ $ldap->cd($this->dn);
+ $ldap->add($this->attrs);
+ new log("create","winworkstation/".get_class($this),$this->dn,array_keys($this->attrs),$ldap->get_error());
+ $this->handle_post_events("add");
+ } else {
+ if ($this->orig_dn != $this->dn){
+ $this->move($this->orig_dn, $this->dn);
+ }
+
+ $ldap->cd($this->dn);
+ $this->cleanup();
+ $ldap->modify ($this->attrs);
+ new log("modify","winworkstation/".get_class($this),$this->dn,array_keys($this->attrs),$ldap->get_error());
+ $this->handle_post_events("modify");
+ }
+
+ $this->netConfigDNS->cn = preg_replace("/\\\$\$/","",$this->cn);
+ $this->netConfigDNS->save();
+ show_ldap_error($ldap->get_error(), sprintf(_("Saving of system wingeneric/generic with dn '%s' failed."),$this->dn));
+
+ /* Optionally execute a command after we're done */
+ $this->postcreate();
+ }
+
+ /* Return plugin informations for acl handling
+ #FIXME FAIscript seams to ununsed within this class... */
+ static function plInfo()
+ {
+ return (array(
+ "plShortName" => _("Win generic"),
+ "plDescription" => _("Windows workstation generic"),
+ "plSelfModify" => FALSE,
+ "plDepends" => array(),
+ "plPriority" => 0,
+ "plSection" => array("administration"),
+ "plCategory" => array("winworkstation" => array("description" => _("Win workstation"),
+ "objectClass" => "gotoWorkstation")),
+ "plProvidedAcls"=> array(
+ "cn" => _("Workstation name"),
+ "description" => _("Description"))
+ ));
+ }
+
+
+}
+
+// vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
+?>
diff --git a/gosa-plugins/samba/admin/systems/samba/tabs_winstation.inc b/gosa-plugins/samba/admin/systems/samba/tabs_winstation.inc
--- /dev/null
@@ -0,0 +1,44 @@
+<?php
+
+class wintabs extends tabs
+{
+
+ function wintabs($config, $data, $dn,$category)
+ {
+ tabs::tabs($config, $data, $dn,$category);
+
+ /* Add references/acls/snapshots */
+ $this->addSpecialTabs();
+ }
+
+ function save_object($save_current= FALSE)
+ {
+ tabs::save_object($save_current);
+ }
+
+
+ function save($ignore_account= FALSE)
+ {
+ /* Check for new 'dn', in order to propagate the
+ 'dn' to all plugins */
+
+ /* add $ to end of name if mising */
+ $baseobject= $this->by_object['wingeneric'];
+ if(!preg_match("/\\\$\$/",$baseobject->cn)){
+ $baseobject->cn .= "$";
+ }
+
+ $this->dn= "uid=$baseobject->cn,".get_winstations_ou().$baseobject->base;
+ $baseobject->dn= $this->dn;
+
+ foreach ($this->by_object as $key => $obj){
+ $this->by_object[$key]->dn= $this->dn;
+ }
+
+ tabs::save(TRUE);
+ }
+
+}
+
+// vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
+?>
diff --git a/gosa-plugins/samba/admin/systems/samba/wingeneric.tpl b/gosa-plugins/samba/admin/systems/samba/wingeneric.tpl
--- /dev/null
@@ -0,0 +1,42 @@
+<table summary="" width="100%">
+ <tr>
+ <td style="vertical-align:top; width:50%;">
+ <table summary="">
+ <tr>
+ <td><LABEL for="cn">{t}Machine name{/t}</LABEL>{$must}</td>
+ <td><input id="cn" name="cn" size=20 maxlength=60 value="{$cn}"></td>
+ </tr>
+ <tr>
+ <td colspan=2> </td>
+ </tr>
+ <tr>
+ <td><LABEL for="base">{t}Base{/t}</LABEL>{$must}</td>
+ <td>
+ <select size="1" id="base" name="base" title="{t}Choose subtree to place terminal in{/t}">
+ {html_options options=$bases selected=$base_select}
+ </select>
+ <input type="image" name="chooseBase" src="images/folder.png" class="center" title="{t}Select a base{/t}">
+ </tr>
+ </table>
+ </td>
+ <td style="vertical-align:top">
+ <table summary="">
+ <tr>
+ <td><LABEL for="description">{t}Description{/t}</LABEL></td>
+ <td><input id="description" name="description" size=25 maxlength=80 value="{$description}"></td>
+ </tr>
+ </table>
+ </td>
+ </tr>
+</table>
+
+<p class="plugbottom" style="margin-bottom:0px; padding:0px;"> </p>
+
+{$netconfig}
+
+<!-- Place cursor -->
+<script language="JavaScript" type="text/javascript">
+ <!-- // First input field on page
+ focus_field('cn');
+ -->
+</script>