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:
raulmateos 2009-08-29 15:56:14 +00:00
parent 9f9d64f020
commit 43cdabcc1e
10 changed files with 24 additions and 11 deletions

View File

@ -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>
* 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
position of submenu. Change the example "hello" for to show as be.
2009-08-26 Miguel de Dios <miguel.dedios@artica.es>
* operation/extensions.php, godmode/extensions.php: fix hidden bug that show

View File

@ -38,7 +38,8 @@ if (is_ajax ()) {
return;
}
echo '<h1>'.__('Alert actions').'</h1>';
echo "<h2>".__('Alerts')." &raquo; ";
echo __('Alert actions').'</h2>';
$update_action = (bool) get_parameter ('update_action');
$create_action = (bool) get_parameter ('create_action');

View File

@ -37,7 +37,8 @@ if (is_ajax ()) {
return;
}
echo '<h1>'.__('Alert commands').'</h1>';
echo "<h2>".__('Alerts')." &raquo; ";
echo __('Alert commands').'</h2>';
$update_command = (bool) get_parameter ('update_command');
$create_command = (bool) get_parameter ('create_command');
$delete_command = (bool) get_parameter ('delete_command');

View File

@ -76,7 +76,8 @@ if ($disable_alert) {
return;
}
echo '<h1>'.__('Correlated alerts').'</h1>';
echo "<h2>".__('Alerts')." &raquo; ";
echo __('Correlated alerts').'</h2>';
$table->id = 'filter_compound_table';
$table->width = '90%';

View File

@ -184,10 +184,10 @@ if ($disable_alert) {
}
if ($id_agente) {
echo '<h1>'.__('Agent configuration').' &raquo; '.__('Alerts').'</h1>';
echo '<h2>'.__('Agent configuration').' &raquo; '.__('Alerts').'</h2>';
$agents = array ($id_agente => get_agent_name ($id_agente));
} else {
echo '<h1>'.__('Alerts').'</h1>';
echo '<h2>'.__('Alerts').'</h2>';
$groups = get_user_groups ();
$agents = get_group_agents (array_keys ($groups), false, "none");
}

View File

@ -103,7 +103,8 @@ if (is_ajax ()) {
return;
}
echo '<h1>'.__('Alert templates').'</h1>';
echo "<h2>".__('Alerts')." &raquo; ";
echo __('Alert templates')."</h2>";
$update_template = (bool) get_parameter ('update_template');
$delete_template = (bool) get_parameter ('delete_template');

View File

@ -269,7 +269,8 @@ if ($update_compound) {
}
}
echo '<h1>'.__('Configure correlated alert').'</h1>';
echo "<h2>".__('Alerts')." &raquo; ";
echo __('Configure correlated alert').'</h2>';
print_alert_compound_steps ($step, $id);

View File

@ -22,7 +22,7 @@
/**
* Pandora build version and version
*/
$build_version = 'PC090623';
$build_version = 'PC090829';
$pandora_version = 'v3.0-dev';
$config['start_time'] = microtime (true);

View File

@ -27,6 +27,7 @@ if (! give_acl ($config['id_user'], 0, "AR")) {
require ("general/noaccess.php");
return;
}
echo "<h2>".__('Events')." &raquo; ".__('Statistics'). "</h2>";
echo "<table width=95%>";
echo "<tr><td valign='top'>";
echo "<h3>".__('Event graph')."</h3>";

View File

@ -26,8 +26,8 @@ if (sizeof ($config['extensions']) == 0) {
echo '<h3>'.__('There are no extensions defined').'</h3>';
return;
}
echo '<h2>'.__('Defined extensions')."</h2>";
echo "<h2>".__('Extensions')." &raquo; ";
echo __('Defined extensions')."</h2>";
$table->width = '95%';
$table->head = array ();
$table->head[0] = __('Name');