From 1b5f4456a6d2eb25c84a7f1e9b5f27f1f03b5a2f Mon Sep 17 00:00:00 2001 From: raulmateos Date: Fri, 23 Jul 2010 17:10:08 +0000 Subject: [PATCH] 2010-07-23 Raul Mateos * godmode/alerts/alert_list.list.php: Added code to show title if page called from Manage Agents. * godmode/modules/manage_network_components.php: Change title. * godmode/gis_maps/configure_gis_map.php: Change fixed text to variable. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3058 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f --- pandora_console/ChangeLog | 19 ++++++++++++++----- .../godmode/alerts/alert_list.list.php | 4 ++++ .../godmode/gis_maps/configure_gis_map.php | 2 +- .../modules/manage_network_components.php | 2 +- 4 files changed, 20 insertions(+), 7 deletions(-) diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 24c1a3952c..ce6e58f379 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,12 @@ +2010-07-23 Raúl Mateos + + * godmode/alerts/alert_list.list.php: Added code to show title if page + called from Manage Agents. + + * godmode/modules/manage_network_components.php: Change title. + + * godmode/gis_maps/configure_gis_map.php: Change fixed text to variable. + 2010-07-23 Sergio Martin * include/functions_networkmap.php @@ -5,20 +14,20 @@ operation/agentes/networkmap.topology.php operation/agentes/networkmap.groups.php operation/agentes/ver_agente.php - operation/agentes/networkmap.php: Rewritted the get status of modules - and agents and writted the same feature for groups and policys. Added + operation/agentes/networkmap.php: Rewritten the get status of modules + and agents and written the same feature for groups and policies. Added the groups view network map. All for pending task: 3019636 2010-07-23 Dario Rodriguez * operation/agentes/ver_agente.php: Changed code to use print_page_header - to print de tabs + to print the tabs * godmode/agentes/configurar_agente.php: Changed code to use print_page_header - to print de tabs + to print the tabs 2010-07-23 Raúl Mateos - * godmode/alerts/aler_list*.php: Cleaned code. Removed old title style. + * godmode/alerts/alert_list*.php: Cleaned code. Removed old title style. * godmode/agentes/massive_operations.php: Updated year. diff --git a/pandora_console/godmode/alerts/alert_list.list.php b/pandora_console/godmode/alerts/alert_list.list.php index 7992bbab3f..8cd561fd6f 100644 --- a/pandora_console/godmode/alerts/alert_list.list.php +++ b/pandora_console/godmode/alerts/alert_list.list.php @@ -34,6 +34,10 @@ if (! give_acl ($config['id_user'], 0, "LW")) { exit; } +if (isset($_GET["tab"])) { + echo "

".__('Alerts')."

"; +} + echo ''.__('Alert control filter').' '.print_image ("images/down.png", true, array ("title" => __('Toggle filter(s)'))).'

'; //INI DIV OF FORM FILTER diff --git a/pandora_console/godmode/gis_maps/configure_gis_map.php b/pandora_console/godmode/gis_maps/configure_gis_map.php index d96b09ae86..cf752326cc 100644 --- a/pandora_console/godmode/gis_maps/configure_gis_map.php +++ b/pandora_console/godmode/gis_maps/configure_gis_map.php @@ -367,7 +367,7 @@ $table->data = array (); $table->valign[0] = 'top'; $table->valign[1] = 'top'; -$table->data[0][0] = "

List of layers

". print_help_tip (__('It is possible to edit, delete and reorder the layers.'), true); +$table->data[0][0] = "

" .__('List of layers') . print_help_tip (__('It is possible to edit, delete and reorder the layers.'), true) . "

"; $table->data[0][1] = '
' . print_button(__('New layer'), 'new_layer', false, 'newLayer();', 'class="sub add"', true) . '
'; $table->data[1][0] = '' . diff --git a/pandora_console/godmode/modules/manage_network_components.php b/pandora_console/godmode/modules/manage_network_components.php index e7a49cd82c..24ad4cb931 100644 --- a/pandora_console/godmode/modules/manage_network_components.php +++ b/pandora_console/godmode/modules/manage_network_components.php @@ -26,7 +26,7 @@ if (! give_acl ($config['id_user'], 0, "PM")) { } // Header -print_page_header (__('Module management').' » '.__('Module component management'), "", false, "", true); +print_page_header (__('Module management').' » '.__('Network component management'), "", false, "", true); require_once ('include/functions_network_components.php');