From: lhm-gosa Date: Fri, 20 Feb 2009 18:42:59 +0000 (+0000) Subject: * Reorder MouseType and MousePorts array, so autodetection is the first entry X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=7cdbfabc10974620c6fc779cd9db3a65921a59b8;p=gosa.git * Reorder MouseType and MousePorts array, so autodetection is the first entry - Type: auto - Port: /dev/input/mice (combined mouse driver default since Linux 2.6) * Add "auto" to MouseType for autodetection * Rename previous MouseType "inheritance" AUTO to use "default" -> this will map old AUTO => auto, which should almost always work git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.6-lhm@13437 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/gosa-plugins/goto/admin/systems/goto/class_terminalService.inc b/gosa-plugins/goto/admin/systems/goto/class_terminalService.inc index 87f5ef44e..9b00eae13 100644 --- a/gosa-plugins/goto/admin/systems/goto/class_terminalService.inc +++ b/gosa-plugins/goto/admin/systems/goto/class_terminalService.inc @@ -134,12 +134,19 @@ class termservice extends plugin /* Additional values will be extracted from CONFIG_DIR.keyboardLayouts */ $this->XKbLayouts = array("de"=> "de","intl" =>"intl","us" =>"us"); $this->XKbVariants= array("nodeadkeys"=>"nodeadkeys", "basic"=>"basic"); - $this->MouseTypes = array("ImPS/2"=>"ImPS/2","PS/2"=>"PS/2", "explorerps/2"=>"explorerps/2", - "Microsoft"=>"Microsoft","Logitech"=>"Logitech"); - $this->MousePorts = array("/dev/ttyS0"=>"/dev/ttyS0", - "/dev/ttyS1"=>"/dev/ttyS1","/dev/psaux"=>"/dev/psaux", - "/dev/input/mice"=>"/dev/input/mice"); - + + $this->MouseTypes= array("auto" => "auto", + "explorerps/2" => "explorerps/2", + "ImPS/2" => "ImPS/2", + "PS/2" => "PS/2", + "Microsoft" => "Microsoft", + "Logitech" => "Logitech",); + + $this->MousePorts= array("/dev/input/mice" => "/dev/input/mice", + "/dev/mouse" => "/dev/mouse", + "/dev/psaux" => "/dev/psaux", + "/dev/ttyS0" => "/dev/ttyS0", + "/dev/ttyS1" => "/dev/ttyS1",); /* Try to read additional keyboard layouts */ @@ -269,10 +276,10 @@ class termservice extends plugin $this->XKbVariants= array('default' => _("inherited").' ['.$attrs[$name][0].']' ) + $this->XKbVariants; break; case 'gotoXMouseType': - $this->MouseTypes= array('AUTO' => _("inherited").' ['.$attrs[$name][0].']' ) + $this->MouseTypes; + $this->MouseTypes= array('default' => _("inherited").' ['.$attrs[$name][0].']' ) + $this->MouseTypes; break; case 'gotoXMouseport': - $this->MousePorts= array('AUTO' => _("inherited").' ['.$attrs[$name][0].']' ) + $this->MousePorts; + $this->MousePorts= array('default' => _("inherited").' ['.$attrs[$name][0].']' ) + $this->MousePorts; break; } } diff --git a/gosa-plugins/goto/admin/systems/goto/class_workstationService.inc b/gosa-plugins/goto/admin/systems/goto/class_workstationService.inc index fe3d0e5b3..2164fbdac 100644 --- a/gosa-plugins/goto/admin/systems/goto/class_workstationService.inc +++ b/gosa-plugins/goto/admin/systems/goto/class_workstationService.inc @@ -99,12 +99,18 @@ class workservice extends plugin $this->XKbModels[$type] = $type; } - $this->MouseTypes= array("ImPS/2" => "ImPS/2", "PS/2" => "PS/2", "Microsoft" => "Microsoft", - "Logitech" => "Logitech","explorerps/2"=>"explorerps/2",); - - $this->MousePorts= array("/dev/ttyS0" =>"/dev/ttyS0", - "/dev/ttyS1" => "/dev/ttyS1", "/dev/psaux" =>"/dev/psaux", - "/dev/input/mice" => "/dev/input/mice"); + $this->MouseTypes= array("auto" => "auto", + "explorerps/2" => "explorerps/2", + "ImPS/2" => "ImPS/2", + "PS/2" => "PS/2", + "Microsoft" => "Microsoft", + "Logitech" => "Logitech",); + + $this->MousePorts= array("/dev/input/mice" => "/dev/input/mice", + "/dev/mouse" => "/dev/mouse", + "/dev/psaux" => "/dev/psaux", + "/dev/ttyS0" => "/dev/ttyS0", + "/dev/ttyS1" => "/dev/ttyS1",); /* Additional values will be extracted from CONFIG_DIR./keyboardLayouts */ $this->XKbLayouts= array ("de"=> "de","intl" =>"intl","us" =>"us"); @@ -215,10 +221,10 @@ class workservice extends plugin $this->XKbVariants= array('default' => _("inherited").' ['.$attrs[$name][0].']' ) + $this->XKbVariants; break; case 'gotoXMouseType': - $this->MouseTypes= array('AUTO' => _("inherited").' ['.$attrs[$name][0].']' ) + $this->MouseTypes; + $this->MouseTypes= array('default' => _("inherited").' ['.$attrs[$name][0].']' ) + $this->MouseTypes; break; case 'gotoXMouseport': - $this->MousePorts= array('AUTO' => _("inherited").' ['.$attrs[$name][0].']' ) + $this->MousePorts; + $this->MousePorts= array('default' => _("inherited").' ['.$attrs[$name][0].']' ) + $this->MousePorts; break; } @@ -234,8 +240,8 @@ class workservice extends plugin $this->XKbModels= array('default' => _("inherited")); $this->XKbLayouts= array('default' => _("inherited")); $this->XKbVariants= array('default' => _("inherited")); - $this->MouseTypes= array('AUTO' => _("inherited")); - $this->MousePorts= array('AUTO' => _("inherited")); + $this->MouseTypes= array('default' => _("inherited")); + $this->MousePorts= array('default' => _("inherited")); } }