From: cajus Date: Mon, 19 Sep 2005 10:53:04 +0000 (+0000) Subject: Prepared headpage conformance X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=64c918b4f1ae734ea4b0f840158e07b9e23782fb;p=gosa.git Prepared headpage conformance git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@1392 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/html/images/fai_hook.png b/html/images/fai_hook.png index 120f2ff73..1930fb233 100644 Binary files a/html/images/fai_hook.png and b/html/images/fai_hook.png differ diff --git a/html/images/fai_new_hook.png b/html/images/fai_new_hook.png new file mode 100644 index 000000000..f02e6a46f Binary files /dev/null and b/html/images/fai_new_hook.png differ diff --git a/html/images/fai_new_packages.png b/html/images/fai_new_packages.png new file mode 100644 index 000000000..15cad1eca Binary files /dev/null and b/html/images/fai_new_packages.png differ diff --git a/html/images/fai_new_partitionTable.png b/html/images/fai_new_partitionTable.png new file mode 100644 index 000000000..9ac4600a4 Binary files /dev/null and b/html/images/fai_new_partitionTable.png differ diff --git a/html/images/fai_new_profile.png b/html/images/fai_new_profile.png new file mode 100644 index 000000000..6808820ab Binary files /dev/null and b/html/images/fai_new_profile.png differ diff --git a/html/images/fai_new_script.png b/html/images/fai_new_script.png new file mode 100644 index 000000000..b8333c7c2 Binary files /dev/null and b/html/images/fai_new_script.png differ diff --git a/html/images/fai_new_template.png b/html/images/fai_new_template.png new file mode 100644 index 000000000..9a88da967 Binary files /dev/null and b/html/images/fai_new_template.png differ diff --git a/html/images/fai_new_variable.png b/html/images/fai_new_variable.png new file mode 100644 index 000000000..d915c53fc Binary files /dev/null and b/html/images/fai_new_variable.png differ diff --git a/html/images/fai_packages.png b/html/images/fai_packages.png index af23ddfaa..dd6de2f62 100644 Binary files a/html/images/fai_packages.png and b/html/images/fai_packages.png differ diff --git a/html/images/fai_partitionTable.png b/html/images/fai_partitionTable.png index c7c34a1a7..7e8d7017f 100644 Binary files a/html/images/fai_partitionTable.png and b/html/images/fai_partitionTable.png differ diff --git a/html/images/fai_profile.png b/html/images/fai_profile.png index 477387c61..07391b6ec 100644 Binary files a/html/images/fai_profile.png and b/html/images/fai_profile.png differ diff --git a/html/images/fai_script.png b/html/images/fai_script.png index a8b69f73f..f8aaba2e3 100644 Binary files a/html/images/fai_script.png and b/html/images/fai_script.png differ diff --git a/html/images/fai_variable.png b/html/images/fai_variable.png index 7d26d9937..d7915fe52 100644 Binary files a/html/images/fai_variable.png and b/html/images/fai_variable.png differ diff --git a/plugins/admin/fai/class_faiManagement.inc b/plugins/admin/fai/class_faiManagement.inc index 7ec7329f6..b5d697f13 100644 --- a/plugins/admin/fai/class_faiManagement.inc +++ b/plugins/admin/fai/class_faiManagement.inc @@ -192,7 +192,7 @@ class faiManagement extends plugin $this->dialog->by_object[$type[1]]->remove_from_parent (); unset ($this->dialog); - gosa_log ("System object'".$this->dn."' has been removed"); + gosa_log ("FAI class '".$this->dn."' has been removed"); $this->dialog= NULL; /* Terminal list has changed, reload it. */ @@ -359,28 +359,28 @@ class faiManagement extends plugin $faihead = "
 ". - "  ". + + "\"\" ". + + "  ". - "  ". - "  ". - "  ". - "  ". - "  ". - - "\"\" ". - - "  ". + "  ". "
"; @@ -393,13 +393,13 @@ class faiManagement extends plugin $divlist->SetHeader(array( array("string" => " "), - array("string" => _("FAI objects / ObjectClasses")), - array("string" => _("Object group")), - array("string" => _("Options"), "attach" => "style='border:none'" ))); + array("string" => _("Name of FAI class")), + array("string" => _("Class type")), + array("string" => _("Actions"), "attach"=>"style='border:none;width:40px;'"))); $action = ""; - $action .= ""; + $action .= ""; /* Attach objects */ foreach($this->objects as $key => $value){ @@ -428,21 +428,21 @@ class faiManagement extends plugin $abort = true; } $img="S"; - $info = _("Script set"); + $info = _("Scripts"); break; case "FAIvariable" : if(!$faifilter['ShowVariables']){ $abort = true; } $img="V"; - $info = _("Variable set"); + $info = _("Variables"); break; case "FAIhook" : if(!$faifilter['ShowHooks']){ $abort = true; } $img="H"; - $info = _("Hook set"); + $info = _("Hooks"); break; case "FAIprofile" : if(!$faifilter['ShowProfiles']){ @@ -456,7 +456,7 @@ class faiManagement extends plugin $abort = true; } $img="T"; - $info = _("Template"); + $info = _("Templates"); break; default : $img="";$info = "";break; @@ -472,7 +472,7 @@ class faiManagement extends plugin $field1 = array("string" => $img , "attach" => "style='height:26px;width=20px;'"); $field2 = array("string" => $value['cn'].$desc , "attach" => ""); $field3 = array("string" => $info, "attach" => ""); - $field4 = array("string" => preg_replace("/%KEY%/",$key,$action) , "attach" => "style='border-right:none;'"); + $field4 = array("string" => preg_replace("/%KEY%/",$key,$action) , "attach"=>"style='text-align:right;border:none'"); $divlist->AddEntry(array($field1,$field2,$field3,$field4)); } diff --git a/plugins/admin/fai/headpage.tpl b/plugins/admin/fai/headpage.tpl index 2a4714c95..a3bd5b130 100644 --- a/plugins/admin/fai/headpage.tpl +++ b/plugins/admin/fai/headpage.tpl @@ -3,7 +3,7 @@

- {t}List of FAI objects (Fully Automatic Installation){/t} + {t}List of FAI classes{/t}

@@ -21,7 +21,7 @@

- {t}This menu allows you to create, delete and edit FAI objects.{/t} + {t}This menu allows you to create, delete and edit FAI classes.{/t}