summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: ec1e385)
raw | patch | inline | side by side (parent: ec1e385)
author | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 17 May 2006 06:16:52 +0000 (06:16 +0000) | ||
committer | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 17 May 2006 06:16:52 +0000 (06:16 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@3374 594d385d-05f5-0310-b6e9-bd551577e9d8
TODO | patch | blob | history | |
plugins/admin/ogroups/termgroup.tpl | patch | blob | history | |
plugins/gofax/faxreports/main.inc | patch | blob | history |
index af8180ff900694abc02920aed5801fdf41b2457c..6224ac02863f5d44f65550a0b247c75ef47b1e40 100644 (file)
--- a/TODO
+++ b/TODO
* Explaination of several FIXME's. Group removal, etc.
-* saveFilter added, please use!
-
-* generatePasteIcon added, please use!
-
-* Added functions normalizePreg and normalizeLdap. Please use where needed!
-
* Add online help (english/german)
Document how to generate it, generate it and check it in
* Change FAIstate when triggering actions
(install, sysinfo, softupdate)
+* Add another tab to ogroups when workstations are included
+ (generic settings include ntp, syslog, mode and action)
+
+* Fix DNS plugin
-Now:
-* evaluate what effects a ldap->cat(..., $this->attributes)
- will have to other plugins in class_plugin.inc
-* Changing NTP-Servers -> start tab! Actions?
-* Fix DNS plugin. Add some more checks
+* Move from "default" to translated "inherited" (TC, WS and Servers)
Target for 2.5:
index 6cbc7cc5028e52c5e61d377d9c94b7b535db75ed..22c11de181c2147d889f9f223ff98732ac3d24f9 100644 (file)
<table summary="">
<tr>
<td>
- <select size="1" name="saction" {$actionACL} title="{t}Select action to execute for this group of terminals{/t}">
+ <select size="1" name="saction" {$actionACL} title="{t}Select action to execute for this group of terminals{/t}">
<option></option>
{html_options options=$actions}
</select>
index 24beb48aa8953208b2e25acb8e8a3ffd11a6521c..701ea89d240e81e6dca4b2122cb26275e12ff9dd 100644 (file)
<?php
if (!$remove_lock){
- /* Page header*/
- $display= print_header(get_template_path('images/reports.png'), _("FAX reports"));
-
/* Create faxreport object on demand */
if (!isset($_SESSION['faxreport']) || (isset($_GET['reset']) && $_GET['reset'] == 1)){
$_SESSION['faxreport']= new faxreport ($config, $ui);
$faxreport->acl= get_module_permission($acl, "faxreport", $ui->dn);
/* Execute formular */
- $display.= $faxreport->execute ();
+ $display= $faxreport->execute ();
$display.= "<input type=\"hidden\" name=\"ignore\">\n";
+ $display= print_header(get_template_path('images/reports.png'), _("FAX reports")).$display;
/* Store changes in session */
$_SESSION['faxreport']= $faxreport;