2009-08-29 Raul Mateos <raulofpandora@gmail.com>
* include/config_process.php: Update build after last changes * operation/events/event_statistics.php, operation/extensions.php, godmode/alerts/alert*.php, godmode/alerts/configure_alert_compound.php: Unify titles, adding parent and change from h1 git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1891 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
9f9d64f020
commit
43cdabcc1e
|
@ -1,3 +1,11 @@
|
||||||
|
2009-08-29 Raul Mateos <raulofpandora@gmail.com>
|
||||||
|
|
||||||
|
* include/config_process.php: Update build after last changes
|
||||||
|
|
||||||
|
* operation/events/event_statistics.php, operation/extensions.php,
|
||||||
|
godmode/alerts/alert*.php, godmode/alerts/configure_alert_compound.php:
|
||||||
|
Unify titles, adding parent and change from h1 to h2.
|
||||||
|
|
||||||
2009-08-28 Miguel de Dios <miguel.dedios@artica.es>
|
2009-08-28 Miguel de Dios <miguel.dedios@artica.es>
|
||||||
|
|
||||||
* extensions/module_groups, extensions/module_groups/icon_menu.png,
|
* extensions/module_groups, extensions/module_groups/icon_menu.png,
|
||||||
|
@ -27,7 +35,6 @@
|
||||||
into menu, now you can add extension with icon and into the submenu in any
|
into menu, now you can add extension with icon and into the submenu in any
|
||||||
position of submenu. Change the example "hello" for to show as be.
|
position of submenu. Change the example "hello" for to show as be.
|
||||||
|
|
||||||
|
|
||||||
2009-08-26 Miguel de Dios <miguel.dedios@artica.es>
|
2009-08-26 Miguel de Dios <miguel.dedios@artica.es>
|
||||||
|
|
||||||
* operation/extensions.php, godmode/extensions.php: fix hidden bug that show
|
* operation/extensions.php, godmode/extensions.php: fix hidden bug that show
|
||||||
|
|
|
@ -38,7 +38,8 @@ if (is_ajax ()) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
echo '<h1>'.__('Alert actions').'</h1>';
|
echo "<h2>".__('Alerts')." » ";
|
||||||
|
echo __('Alert actions').'</h2>';
|
||||||
|
|
||||||
$update_action = (bool) get_parameter ('update_action');
|
$update_action = (bool) get_parameter ('update_action');
|
||||||
$create_action = (bool) get_parameter ('create_action');
|
$create_action = (bool) get_parameter ('create_action');
|
||||||
|
|
|
@ -37,7 +37,8 @@ if (is_ajax ()) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
echo '<h1>'.__('Alert commands').'</h1>';
|
echo "<h2>".__('Alerts')." » ";
|
||||||
|
echo __('Alert commands').'</h2>';
|
||||||
$update_command = (bool) get_parameter ('update_command');
|
$update_command = (bool) get_parameter ('update_command');
|
||||||
$create_command = (bool) get_parameter ('create_command');
|
$create_command = (bool) get_parameter ('create_command');
|
||||||
$delete_command = (bool) get_parameter ('delete_command');
|
$delete_command = (bool) get_parameter ('delete_command');
|
||||||
|
|
|
@ -76,7 +76,8 @@ if ($disable_alert) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
echo '<h1>'.__('Correlated alerts').'</h1>';
|
echo "<h2>".__('Alerts')." » ";
|
||||||
|
echo __('Correlated alerts').'</h2>';
|
||||||
|
|
||||||
$table->id = 'filter_compound_table';
|
$table->id = 'filter_compound_table';
|
||||||
$table->width = '90%';
|
$table->width = '90%';
|
||||||
|
|
|
@ -184,10 +184,10 @@ if ($disable_alert) {
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($id_agente) {
|
if ($id_agente) {
|
||||||
echo '<h1>'.__('Agent configuration').' » '.__('Alerts').'</h1>';
|
echo '<h2>'.__('Agent configuration').' » '.__('Alerts').'</h2>';
|
||||||
$agents = array ($id_agente => get_agent_name ($id_agente));
|
$agents = array ($id_agente => get_agent_name ($id_agente));
|
||||||
} else {
|
} else {
|
||||||
echo '<h1>'.__('Alerts').'</h1>';
|
echo '<h2>'.__('Alerts').'</h2>';
|
||||||
$groups = get_user_groups ();
|
$groups = get_user_groups ();
|
||||||
$agents = get_group_agents (array_keys ($groups), false, "none");
|
$agents = get_group_agents (array_keys ($groups), false, "none");
|
||||||
}
|
}
|
||||||
|
|
|
@ -103,7 +103,8 @@ if (is_ajax ()) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
echo '<h1>'.__('Alert templates').'</h1>';
|
echo "<h2>".__('Alerts')." » ";
|
||||||
|
echo __('Alert templates')."</h2>";
|
||||||
$update_template = (bool) get_parameter ('update_template');
|
$update_template = (bool) get_parameter ('update_template');
|
||||||
$delete_template = (bool) get_parameter ('delete_template');
|
$delete_template = (bool) get_parameter ('delete_template');
|
||||||
|
|
||||||
|
|
|
@ -269,7 +269,8 @@ if ($update_compound) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
echo '<h1>'.__('Configure correlated alert').'</h1>';
|
echo "<h2>".__('Alerts')." » ";
|
||||||
|
echo __('Configure correlated alert').'</h2>';
|
||||||
|
|
||||||
print_alert_compound_steps ($step, $id);
|
print_alert_compound_steps ($step, $id);
|
||||||
|
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
/**
|
/**
|
||||||
* Pandora build version and version
|
* Pandora build version and version
|
||||||
*/
|
*/
|
||||||
$build_version = 'PC090623';
|
$build_version = 'PC090829';
|
||||||
$pandora_version = 'v3.0-dev';
|
$pandora_version = 'v3.0-dev';
|
||||||
|
|
||||||
$config['start_time'] = microtime (true);
|
$config['start_time'] = microtime (true);
|
||||||
|
|
|
@ -27,6 +27,7 @@ if (! give_acl ($config['id_user'], 0, "AR")) {
|
||||||
require ("general/noaccess.php");
|
require ("general/noaccess.php");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
echo "<h2>".__('Events')." » ".__('Statistics'). "</h2>";
|
||||||
echo "<table width=95%>";
|
echo "<table width=95%>";
|
||||||
echo "<tr><td valign='top'>";
|
echo "<tr><td valign='top'>";
|
||||||
echo "<h3>".__('Event graph')."</h3>";
|
echo "<h3>".__('Event graph')."</h3>";
|
||||||
|
|
|
@ -26,8 +26,8 @@ if (sizeof ($config['extensions']) == 0) {
|
||||||
echo '<h3>'.__('There are no extensions defined').'</h3>';
|
echo '<h3>'.__('There are no extensions defined').'</h3>';
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
echo "<h2>".__('Extensions')." » ";
|
||||||
echo '<h2>'.__('Defined extensions')."</h2>";
|
echo __('Defined extensions')."</h2>";
|
||||||
$table->width = '95%';
|
$table->width = '95%';
|
||||||
$table->head = array ();
|
$table->head = array ();
|
||||||
$table->head[0] = __('Name');
|
$table->head[0] = __('Name');
|
||||||
|
|
Loading…
Reference in New Issue