From ff1186ee57215675fe98b62b5d9182f8b734f634 Mon Sep 17 00:00:00 2001 From: m-lopez-f Date: Tue, 16 Jun 2015 16:09:50 +0200 Subject: [PATCH] Changed visual of console --- pandora_console/extensions/api_checker.php | 4 +- pandora_console/extensions/dbmanager.php | 7 ++-- .../extensions/extension_uploader.php | 3 +- .../extensions/files_repo/files_repo_form.php | 3 +- .../extensions/files_repo/files_repo_list.php | 5 +-- pandora_console/extensions/net_tools.php | 2 +- .../extensions/plugin_registration.php | 2 +- pandora_console/extensions/system_info.php | 13 ++++--- .../general/firts_task/recon_view.php | 30 +++++++-------- pandora_console/general/login_page.php | 2 +- pandora_console/godmode/admin_access_logs.php | 8 ++-- .../godmode/alerts/alert_actions.php | 13 +++---- .../godmode/alerts/alert_commands.php | 12 +++--- .../godmode/alerts/alert_special_days.php | 10 +++-- .../godmode/alerts/alert_templates.php | 15 ++++---- .../godmode/alerts/configure_alert_action.php | 4 +- .../alerts/configure_alert_command.php | 4 +- .../alerts/configure_alert_special_days.php | 4 +- .../alerts/configure_alert_template.php | 7 ++-- pandora_console/godmode/db/db_audit.php | 4 +- pandora_console/godmode/db/db_event.php | 6 +-- pandora_console/godmode/db/db_refine.php | 2 +- .../godmode/events/custom_events.php | 3 +- .../godmode/events/event_filter.php | 11 +++--- .../godmode/events/event_responses.editor.php | 7 ++-- .../godmode/events/event_responses.list.php | 35 +++++++----------- .../modules/manage_network_components.php | 6 +-- pandora_console/godmode/servers/plugin.php | 19 ++++------ .../godmode/servers/recon_script.php | 14 +++---- pandora_console/godmode/setup/license.php | 5 ++- pandora_console/godmode/setup/links.php | 16 ++++---- pandora_console/godmode/setup/news.php | 10 ++--- pandora_console/godmode/setup/os.builder.php | 5 ++- pandora_console/godmode/setup/os.list.php | 6 ++- .../godmode/update_manager/update_manager.css | 2 +- .../update_manager/update_manager.setup.php | 5 ++- pandora_console/images/ayuda_blanco.png | Bin 0 -> 397 bytes pandora_console/images/box_item.png | Bin 1255 -> 419 bytes pandora_console/images/database_history.png | Bin 1293 -> 428 bytes pandora_console/images/icono_logo_pandora.png | Bin 0 -> 4827 bytes pandora_console/images/line_item.png | Bin 1479 -> 527 bytes pandora_console/images/new_message.png | Bin 1431 -> 514 bytes pandora_console/images/op_netflow.png | Bin 446 -> 571 bytes pandora_console/images/pdf.png | Bin 1617 -> 453 bytes pandora_console/images/percentile_item.png | Bin 1452 -> 460 bytes pandora_console/images/performance.png | Bin 1293 -> 477 bytes pandora_console/images/schedule_report.png | Bin 1438 -> 439 bytes pandora_console/include/styles/firts_task.css | 23 ++++++++---- pandora_console/include/styles/pandora.css | 14 +++---- pandora_console/operation/users/user_edit.php | 4 +- 50 files changed, 174 insertions(+), 171 deletions(-) create mode 100644 pandora_console/images/ayuda_blanco.png create mode 100644 pandora_console/images/icono_logo_pandora.png diff --git a/pandora_console/extensions/api_checker.php b/pandora_console/extensions/api_checker.php index bc2f266cb7..c6ccd3e4cc 100755 --- a/pandora_console/extensions/api_checker.php +++ b/pandora_console/extensions/api_checker.php @@ -169,7 +169,7 @@ function extension_api_checker() { echo ""; echo "
"; html_print_input_hidden('api_execute', 1); - html_print_submit_button(__('Call'), 'submit', false, 'class="sub"'); + html_print_submit_button(__('Call'), 'submit', false, 'class="sub next"'); echo "
"; echo ""; @@ -182,7 +182,7 @@ function extension_api_checker() { echo "
"; html_print_input_hidden('api_execute', 1); - html_print_submit_button(__('Call'), 'submit', false, 'class="sub"'); + html_print_submit_button(__('Call'), 'submit', false, 'class="sub next"'); echo "
"; echo ""; diff --git a/pandora_console/extensions/dbmanager.php b/pandora_console/extensions/dbmanager.php index 06371bcf3e..3bfaf53862 100644 --- a/pandora_console/extensions/dbmanager.php +++ b/pandora_console/extensions/dbmanager.php @@ -113,7 +113,8 @@ function dbmgr_extension_main () { echo "
"; html_print_textarea ('sql', 5, 40, html_entity_decode($sql, ENT_QUOTES)); echo '
'; - echo '
'; + echo '
'; + echo '
'; html_print_submit_button (__('Execute SQL'), '', false, 'class="sub next"'); echo '
'; echo ""; @@ -147,8 +148,8 @@ function dbmgr_extension_main () { } echo "
"; - $table->width = '90%'; - $table->class = 'dbmanager'; + $table->width = '100%'; + $table->class = 'databox data'; $table->head = array_keys ($result[0]); $table->data = $result; diff --git a/pandora_console/extensions/extension_uploader.php b/pandora_console/extensions/extension_uploader.php index 1fa33029ba..1a64ebb05d 100644 --- a/pandora_console/extensions/extension_uploader.php +++ b/pandora_console/extensions/extension_uploader.php @@ -67,7 +67,8 @@ function extension_uploader_extensions() { $table = null; - $table->width = '98%'; + $table->width = '100%'; + $table->class = 'databox filters'; $table->data = array(); $table->data[0][0] = __('Upload extension'); $table->data[0][1] = html_print_input_file('extension', true) . diff --git a/pandora_console/extensions/files_repo/files_repo_form.php b/pandora_console/extensions/files_repo/files_repo_form.php index 2032522295..e514b1630d 100644 --- a/pandora_console/extensions/files_repo/files_repo_form.php +++ b/pandora_console/extensions/files_repo/files_repo_form.php @@ -35,7 +35,8 @@ if (isset($file_id) && $file_id > 0) { } $table = new stdClass(); -$table->width = '99.5%'; +$table->width = '100%'; +$table->class = 'databox filters'; $table->style = array(); $table->style[0] = "font-weight: bold;"; $table->style[2] = "text-align: center;"; diff --git a/pandora_console/extensions/files_repo/files_repo_list.php b/pandora_console/extensions/files_repo/files_repo_list.php index 8028deca85..051646185a 100644 --- a/pandora_console/extensions/files_repo/files_repo_list.php +++ b/pandora_console/extensions/files_repo/files_repo_list.php @@ -32,8 +32,6 @@ $files = files_repo_get_files($filter); if (!empty($files)) { - echo "
"; - if (!isset($manage)) { $manage = false; } @@ -49,7 +47,8 @@ if (!empty($files)) { ui_pagination($total_files, $url, $offset); $table = new stdClass(); - $table->width = '98%'; + $table->width = '100%'; + $table->class = 'databox data'; $table->style = array(); $table->style[1] = "max-width: 200px;"; $table->style[2] = "text-align: center;"; diff --git a/pandora_console/extensions/net_tools.php b/pandora_console/extensions/net_tools.php index 852e965513..b094a6ea3b 100644 --- a/pandora_console/extensions/net_tools.php +++ b/pandora_console/extensions/net_tools.php @@ -293,7 +293,7 @@ function godmode_net_tools() { } $table = null; - $table->width = "80%"; + $table->width = "100%"; $table->data = array(); diff --git a/pandora_console/extensions/plugin_registration.php b/pandora_console/extensions/plugin_registration.php index c0c4d3dfd1..fa960f510d 100644 --- a/pandora_console/extensions/plugin_registration.php +++ b/pandora_console/extensions/plugin_registration.php @@ -411,7 +411,7 @@ function pluginreg_extension_main () { // Upload form echo "
"; - echo ''; + echo '
'; echo "
"; echo ""; echo "
"; diff --git a/pandora_console/extensions/system_info.php b/pandora_console/extensions/system_info.php index 4c7b17e8db..07c4570dd0 100644 --- a/pandora_console/extensions/system_info.php +++ b/pandora_console/extensions/system_info.php @@ -221,8 +221,8 @@ function getLastLog($numLines = 2000) { function show_array($title, $anchor, $array = array()) { $table = new StdClass(); - $table->width = '98%'; - $table->class = "databox"; + $table->width = '100%'; + $table->class = "databox filters"; $table->head = array(); $table->head[0] = $title; $table->data = array(); @@ -417,8 +417,9 @@ function mainSystemInfo() { echo __("This extension can run as PHP script in a shell for extract more information, but it must be run as root or across sudo. For example: sudo php /var/www/pandora_console/extensions/system_info.php -d -s -c"); echo '
'; - $table = null; - $table->width = '99%'; + $table = new StdClass(); + $table->width = '100%'; + $table->class = 'databox filters'; $table->align = array(); $table->align[1] = 'right'; if ($pandora_diag) { @@ -452,7 +453,8 @@ function mainSystemInfo() { $table_file = new StdClass(); $table_file->id = "table_file"; - $table_file->width = '99%'; + $table_file->class = "databox filters"; + $table_file->width = '100%'; $table_file->style = array(); $table_file->style[0] = "font-weight: bold"; $table_file->data = array(); @@ -487,7 +489,6 @@ function mainSystemInfo() { html_print_table($table_file); echo "
"; - echo "
"; echo "
"; html_print_submit_button(__('Generate file'), 'generate', false, 'class="sub next"'); html_print_image('images/spinner.gif', false, array('id' => 'spinner_img', 'title' => __('Loading'), 'style' => 'display: none;')); diff --git a/pandora_console/general/firts_task/recon_view.php b/pandora_console/general/firts_task/recon_view.php index 6ab7b6af8c..22ef5f31d8 100755 --- a/pandora_console/general/firts_task/recon_view.php +++ b/pandora_console/general/firts_task/recon_view.php @@ -3,25 +3,21 @@ global $config; check_login (); ui_require_css_file ('firts_task'); ?> +true, 'message'=> __('There are no recon task defined yet.') ) ); ?>
-
-
+
+ __('Recon server')));?>
-
-
- __('Recon server')));?> -
-
-

-

ICMP (pings), - SNMP (detecting the topology of networks and their interfaces), and other customized - type. You can define your own customized recon script.'); ?>

-
- -
-
+
+

+

ICMP (pings), + SNMP (detecting the topology of networks and their interfaces), and other customized + type. You can define your own customized recon script.'); ?>

+
+ +
diff --git a/pandora_console/general/login_page.php b/pandora_console/general/login_page.php index 7c770a0c1d..a29a90e94c 100644 --- a/pandora_console/general/login_page.php +++ b/pandora_console/general/login_page.php @@ -103,7 +103,7 @@ echo '
'; // For stable/live function it might be wise to comment it out /* CUSTOM BRANDING ENDS HERE */ - echo ''; + echo ''; switch ($login_screen) { case 'login': diff --git a/pandora_console/godmode/admin_access_logs.php b/pandora_console/godmode/admin_access_logs.php index f7911d97f1..5f1b25f52b 100644 --- a/pandora_console/godmode/admin_access_logs.php +++ b/pandora_console/godmode/admin_access_logs.php @@ -39,7 +39,7 @@ $filter_text = get_parameter('filter_text', ''); $filter_hours_old = get_parameter('filter_hours_old', 24); $filter_ip = get_parameter('filter_ip', ''); -echo ""; +echo "
"; echo '
'; echo '
'; echo ''.__('Filter').'

'; @@ -176,8 +176,8 @@ if (empty ($result)) { $table->cellpadding = 4; $table->cellspacing = 4; -$table->width = '98%'; -$table->class = "databox"; +$table->width = '100%'; +$table->class = "databox data"; $table->size = array (); $table->data = array (); $table->head = array (); @@ -299,7 +299,7 @@ echo '
'; echo '' . - html_print_button (__('Export to CSV '), 'export_csv', false, '', 'class=sub next', true, false). ''; + html_print_button (__('Export to CSV '), 'export_csv', false, '', 'class=sub upd', true, false). ''; echo '
'; if ($enterprise_include !== ENTERPRISE_NOT_HOOK) { diff --git a/pandora_console/godmode/alerts/alert_actions.php b/pandora_console/godmode/alerts/alert_actions.php index 540ea99549..bc073aedd3 100644 --- a/pandora_console/godmode/alerts/alert_actions.php +++ b/pandora_console/godmode/alerts/alert_actions.php @@ -333,9 +333,8 @@ if ($delete_action) { __('Could not be deleted')); } -$table->width = '98%'; -if (defined('METACONSOLE')) - $table->width = '100%'; +$table->width = '100%'; +$table->class = 'databox data'; $table->data = array (); $table->head = array (); $table->head[0] = __('Name'); @@ -349,9 +348,9 @@ $table->size[1] = '30px'; $table->size[2] = '40px'; $table->size[3] = '40px'; $table->align = array (); -$table->align[1] = 'center'; -$table->align[2] = 'center'; -$table->align[3] = 'center'; +$table->align[1] = 'left'; +$table->align[2] = 'left'; +$table->align[3] = 'left'; $filter = array(); if (!is_user_admin($config['id_user'])) @@ -396,7 +395,7 @@ if (isset($data)) { html_print_table ($table); } else { - echo "
".__('No alert actions configured')."
"; + ui_print_info_message ( array('no_close'=>true, 'message'=> __('No alert actions configured') ) ); } echo '
'; diff --git a/pandora_console/godmode/alerts/alert_commands.php b/pandora_console/godmode/alerts/alert_commands.php index 9552e12827..89d1c37dde 100644 --- a/pandora_console/godmode/alerts/alert_commands.php +++ b/pandora_console/godmode/alerts/alert_commands.php @@ -266,9 +266,9 @@ if ($delete_command) { } -$table->width = '98%'; -if (defined('METACONSOLE')) - $table->width = '100%'; +$table->width = '100%'; +$table->class = 'databox data'; + $table->data = array (); $table->head = array (); $table->head[0] = __('Name'); @@ -280,7 +280,7 @@ $table->style[0] = 'font-weight: bold'; $table->size = array (); $table->size[3] = '40px'; $table->align = array (); -$table->align[3] = 'center'; +$table->align[3] = 'left'; $commands = db_get_all_rows_in_table ('talert_commands'); if ($commands === false) @@ -313,9 +313,7 @@ if (isset($data)) { html_print_table ($table); } else { - echo "
" . - __('No alert commands configured') . - "
"; + ui_print_info_message ( array('no_close'=>true, 'message'=> __('No alert commands configured') ) ); } echo '
'; diff --git a/pandora_console/godmode/alerts/alert_special_days.php b/pandora_console/godmode/alerts/alert_special_days.php index 51542736dd..9567729b08 100644 --- a/pandora_console/godmode/alerts/alert_special_days.php +++ b/pandora_console/godmode/alerts/alert_special_days.php @@ -145,7 +145,9 @@ if ($delete_special_day) { __('Could not be deleted')); } -$table->width = '98%'; +$table->width = '100%'; +$table->class = 'databox data'; + $table->data = array (); $table->head = array (); $table->head[0] = __('Date'); @@ -162,8 +164,8 @@ $table->size[2] = '55%'; $table->size[3] = '5%'; $table->size[4] = '5%'; $table->align = array (); -$table->align[3] = 'center'; -$table->align[4] = 'center'; +$table->align[3] = 'left'; +$table->align[4] = 'left'; $filter = array(); if (!is_user_admin($config['id_user'])) @@ -217,7 +219,7 @@ if(isset($data)) { html_print_table ($table); } else { - echo "
".__('No special days configured')."
"; + ui_print_info_message ( array('no_close'=>true, 'message'=> __('No special days configured') ) ); } echo '
'; diff --git a/pandora_console/godmode/alerts/alert_templates.php b/pandora_console/godmode/alerts/alert_templates.php index f1c2ffcce7..f10a94b8fa 100644 --- a/pandora_console/godmode/alerts/alert_templates.php +++ b/pandora_console/godmode/alerts/alert_templates.php @@ -230,7 +230,8 @@ $url = ui_get_url_refresh (array ('offset' => false)); $search_string = (string) get_parameter ('search_string'); $search_type = (string) get_parameter ('search_type'); -$table->width = '98%'; +$table->width = '100%'; +$table->class = 'databox filters'; if (defined("METACONSOLE")) { $table->width = '96%'; $table->class = 'databox_filters'; @@ -288,9 +289,8 @@ $templates = alerts_get_alert_templates ($filter, if ($templates === false) $templates = array (); -$table->width = '98%'; -if (defined("METACONSOLE")) - $table->width = '100%'; +$table->width = '100%'; +$table->class = 'databox data'; $table->data = array (); $table->head = array (); $table->head[0] = __('Name'); @@ -303,8 +303,8 @@ $table->style[0] = 'font-weight: bold'; $table->size = array (); $table->size[4] = '85px'; $table->align = array (); -$table->align[1] = 'center'; -$table->align[4] = 'center'; +$table->align[1] = 'left'; +$table->align[4] = 'left'; $rowPair = true; $iterator = 0; @@ -354,8 +354,7 @@ if (isset($data)) { html_print_table ($table); } else { - echo "
" . __('No alert templates defined') . - "
"; + ui_print_info_message ( array('no_close'=>true, 'message'=> __('No alert templates defined') ) ); } echo '
'; echo '
'; diff --git a/pandora_console/godmode/alerts/configure_alert_action.php b/pandora_console/godmode/alerts/configure_alert_action.php index a45285f507..9868571c74 100644 --- a/pandora_console/godmode/alerts/configure_alert_action.php +++ b/pandora_console/godmode/alerts/configure_alert_action.php @@ -89,7 +89,9 @@ html_print_div( 'hidden' => true)); $table->id = 'table_macros'; -$table->width = '98%'; +$table->width = '100%'; +$table->class = 'databox filters'; + if (defined('METACONSOLE')) { $table->class = 'databox data'; $table->width = '100%'; diff --git a/pandora_console/godmode/alerts/configure_alert_command.php b/pandora_console/godmode/alerts/configure_alert_command.php index d39e0fab74..754b28650b 100644 --- a/pandora_console/godmode/alerts/configure_alert_command.php +++ b/pandora_console/godmode/alerts/configure_alert_command.php @@ -118,7 +118,9 @@ if (!empty($fields_values)) { $fields_values = json_decode($fields_values, true); } -$table->width = '98%'; +$table->width = '100%'; +$table->class = 'databox filters'; + if (defined('METACONSOLE')) { $table->width = '100%'; $table->class = 'databox data'; diff --git a/pandora_console/godmode/alerts/configure_alert_special_days.php b/pandora_console/godmode/alerts/configure_alert_special_days.php index 0acdf83c1e..8af9b3b1cc 100644 --- a/pandora_console/godmode/alerts/configure_alert_special_days.php +++ b/pandora_console/godmode/alerts/configure_alert_special_days.php @@ -51,7 +51,9 @@ if ($date == '') { // Header ui_print_page_header (__('Alerts').' » '.__('Configure special day'), "images/gm_alerts.png", false, "", true); -$table->width = '98%'; +$table->width = '100%'; +$table->class = 'databox filters'; + $table->style = array (); $table->style[0] = 'font-weight: bold'; $table->size = array (); diff --git a/pandora_console/godmode/alerts/configure_alert_template.php b/pandora_console/godmode/alerts/configure_alert_template.php index 5b7d76d5cf..df9dbbb49c 100644 --- a/pandora_console/godmode/alerts/configure_alert_template.php +++ b/pandora_console/godmode/alerts/configure_alert_template.php @@ -470,7 +470,8 @@ if ($id && ! $create_template) { print_alert_template_steps ($step, $id); $table->id = 'template'; -$table->width = '98%'; +$table->width = '100%'; +$table->class = 'databox filters'; if(defined("METACONSOLE")) { $table->width = '100%'; $table->class = 'databox data'; @@ -480,8 +481,8 @@ if(defined("METACONSOLE")) { } $table->style = array (); if(!defined("METACONSOLE")) { - $table->style[0] = 'font-weight: bold; vertical-align: top'; - $table->style[2] = 'font-weight: bold; vertical-align: top'; + $table->style[0] = 'font-weight: bold;'; + $table->style[2] = 'font-weight: bold;'; } $table->size = array (); $table->size[0] = '20%'; diff --git a/pandora_console/godmode/db/db_audit.php b/pandora_console/godmode/db/db_audit.php index b3a55ed56c..73e0464cc4 100644 --- a/pandora_console/godmode/db/db_audit.php +++ b/pandora_console/godmode/db/db_audit.php @@ -73,7 +73,7 @@ if (isset($_POST["purgedb"])) { # Fixed 2005-1-13, nil } # End of get parameters block -echo ""; +echo "
"; echo "
"; $result = db_get_row_sql ("SELECT COUNT(*) AS total, MIN(fecha) AS first_date, MAX(fecha) AS latest_date FROM tsesion"); @@ -91,7 +91,7 @@ echo "
"; ?>

- +
+echo '
'; $time = get_system_time (); diff --git a/pandora_console/godmode/db/db_refine.php b/pandora_console/godmode/db/db_refine.php index 7da1f997bf..b83662253b 100644 --- a/pandora_console/godmode/db/db_refine.php +++ b/pandora_console/godmode/db/db_refine.php @@ -63,7 +63,7 @@ if ((isset ($_GET["operacion"])) && (!isset ($_POST["update_agent"]))) { ui_print_success_message(__('Filtering completed')); } echo ''; -echo ""; +echo "
"; echo '
'; echo '
'; diff --git a/pandora_console/godmode/events/custom_events.php b/pandora_console/godmode/events/custom_events.php index d2cd9978e6..ab9e5392fa 100644 --- a/pandora_console/godmode/events/custom_events.php +++ b/pandora_console/godmode/events/custom_events.php @@ -133,7 +133,8 @@ echo ' '; -$table->width = '90%'; +$table->width = '100%'; +$table->class = 'databox filters'; $table->size = array(); //~ $table->size[0] = '20%'; diff --git a/pandora_console/godmode/events/event_filter.php b/pandora_console/godmode/events/event_filter.php index 23dfd6783b..8bc76dbdcd 100644 --- a/pandora_console/godmode/events/event_filter.php +++ b/pandora_console/godmode/events/event_filter.php @@ -96,9 +96,9 @@ $filters = db_get_all_rows_sql($sql); if ($filters === false) $filters = array (); -$table->width = '98%'; -if(defined("METACONSOLE")) - $table->width = '100%'; +$table->width = '100%'; +$table->class = 'databox data'; + $table->head = array (); $table->head[0] = __('Name'); $table->head[1] = __('Group'); @@ -113,7 +113,7 @@ $table->align = array (); $table->align[1] = 'center'; $table->align[2] = 'center'; if(!defined("METACONSOLE")) - $table->align[3] = 'center'; + $table->align[3] = 'left'; $table->align[4] = 'center'; $table->align[5] = 'center'; $table->size = array (); @@ -159,8 +159,7 @@ if (isset($data)) { echo ""; } else { - echo "
" . - __('There are no defined filters') . "
"; + ui_print_info_message ( array('no_close'=>true, 'message'=> __('There are no defined filters') ) ); } echo '
'; diff --git a/pandora_console/godmode/events/event_responses.editor.php b/pandora_console/godmode/events/event_responses.editor.php index 53d5e850df..f74ff3e7b2 100644 --- a/pandora_console/godmode/events/event_responses.editor.php +++ b/pandora_console/godmode/events/event_responses.editor.php @@ -55,7 +55,8 @@ else { $event_response['params'] = ''; } -$table->width = '90%'; +$table->width = '100%'; +$table->class = 'databox filters'; if(defined('METACONSOLE')) { $table->width = '100%'; @@ -128,7 +129,7 @@ if ($event_response_id == 0) { echo ''; html_print_table($table); if(!defined('METACONSOLE')) - echo '

'; + echo '
'; else echo '

'; html_print_submit_button(__('Create'), 'create_response_button', false, array('class' => 'sub next')); @@ -139,7 +140,7 @@ else { echo ''; html_print_table($table); if(!defined('METACONSOLE')) - echo '

'; + echo '
'; else echo '

'; html_print_submit_button(__('Update'), 'update_response_button', false, array('class' => 'sub next')); diff --git a/pandora_console/godmode/events/event_responses.list.php b/pandora_console/godmode/events/event_responses.list.php index 67a31b6169..f8071c1af4 100644 --- a/pandora_console/godmode/events/event_responses.list.php +++ b/pandora_console/godmode/events/event_responses.list.php @@ -25,14 +25,6 @@ if (! check_acl($config['id_user'], 0, "PM")) { return; } -if(!defined('METACONSOLE')) { - echo '

'; - echo ''; - html_print_submit_button(__('Create response'), 'create_response_button', false, array('class' => 'sub next')); - echo ''; - echo '
'; -} - if (!is_user_admin($config['id_user'])) { $id_groups = array_keys(users_get_groups(false, "PM")); $event_responses = db_get_all_rows_filter('tevent_response', @@ -43,21 +35,20 @@ else { } if(empty($event_responses)) { - ui_print_info_message(__('No responses found')); + ui_print_info_message ( array('no_close'=>true, 'message'=> __('No responses found') ) ); $event_responses = array(); return; } -$table->width = '99%'; -if(defined('METACONSOLE')) - $table->width = '100%'; +$table->width = '100%'; +$table->class = 'databox data'; + $table->size = array(); $table->size[0] = '200px'; -$table->size[2] = '70px'; +$table->size[2] = '100px'; $table->size[3] = '70px'; -$table->style[2] = 'text-align:center;'; -$table->style[2] = 'text-align:center;'; +$table->style[2] = 'text-align:left;'; $table->head[0] = __('Name'); $table->head[1] = __('Description'); @@ -78,11 +69,11 @@ foreach($event_responses as $response) { html_print_table($table); -if(defined('METACONSOLE')) { - echo '

'; - echo '
'; - html_print_submit_button(__('Create response'), 'create_response_button', false, array('class' => 'sub next')); - echo '
'; - echo '
'; -} + +echo '
'; +echo '
'; +html_print_submit_button(__('Create response'), 'create_response_button', false, array('class' => 'sub next')); +echo '
'; +echo '
'; + ?> diff --git a/pandora_console/godmode/modules/manage_network_components.php b/pandora_console/godmode/modules/manage_network_components.php index 10caa3d730..2fb07c5f61 100644 --- a/pandora_console/godmode/modules/manage_network_components.php +++ b/pandora_console/godmode/modules/manage_network_components.php @@ -539,6 +539,7 @@ unset ($table); $table->width = '100%'; $table->head = array (); +$table->class = 'databox data'; $table->head[0] = __('Module name'); $table->head[1] = __('Type'); $table->head[3] = __('Description'); @@ -550,7 +551,7 @@ $table->head[6] = __('Action') . $table->size = array (); $table->size[1] = '75px'; $table->size[6] = '80px'; -$table->align[6] = 'center'; +$table->align[6] = 'left'; $table->data = array (); foreach ($components as $component) { @@ -608,8 +609,7 @@ if (isset($data)) { echo ""; } else { - echo "
" . - __('There are no defined network components') . "
"; + ui_print_info_message ( array('no_close'=>true, 'message'=> __('There are no defined network components') ) ); } echo '
'; diff --git a/pandora_console/godmode/servers/plugin.php b/pandora_console/godmode/servers/plugin.php index 22d84026cc..0480878a7d 100644 --- a/pandora_console/godmode/servers/plugin.php +++ b/pandora_console/godmode/servers/plugin.php @@ -230,9 +230,9 @@ if (($create != "") OR ($view != "")) { echo ""; } - $table->width = '98%'; + $table->width = '100%'; $table->id = 'table-form'; - $table->class = 'databox_color'; + $table->class = 'databox filters'; $table->style = array (); $table->style[0] = 'font-weight: bold'; $table->style[2] = 'font-weight: bold'; @@ -265,7 +265,7 @@ if (($create != "") OR ($view != "")) { if (!defined("METACONSOLE")) { echo '
'; - echo '
'; + echo '
'; } if (defined("METACONSOLE")) { @@ -668,7 +668,7 @@ else { if(defined('METACONSOLE')) echo ''; else - echo '
'; + echo '
'; echo ""; echo ""; @@ -724,15 +724,10 @@ else { echo "
" . __('Name') . "" . __('Type') . "
"; } else { - echo '
' . - __('There are no plugins in the system') . - '
'; - echo "
"; + ui_print_info_message ( array('no_close'=>true, 'message'=> __('There are no plugins in the system') ) ); } - if(defined('METACONSOLE')) - echo ""; - else - echo "
"; + + echo "
"; echo "
"; echo ""; diff --git a/pandora_console/godmode/servers/recon_script.php b/pandora_console/godmode/servers/recon_script.php index f590116e33..324dd8ca60 100644 --- a/pandora_console/godmode/servers/recon_script.php +++ b/pandora_console/godmode/servers/recon_script.php @@ -82,9 +82,9 @@ if (($create != "") OR ($view != "")) { else echo ""; - $table->width = '98%'; + $table->width = '100%'; $table->id = 'table-form'; - $table->class = 'databox_color'; + $table->class = 'databox filters'; $table->style = array (); $table->style[0] = 'font-weight: bold'; $table->style[2] = 'font-weight: bold'; @@ -212,7 +212,7 @@ if (($create != "") OR ($view != "")) { html_print_table($table); - echo ''; + echo '
'; echo '
'; if ($create != "") { @@ -343,7 +343,7 @@ else { $rows = db_get_all_rows_in_table('trecon_script'); if ($rows !== false) { - echo ''; + echo '
'; echo ""; echo ""; echo ""; @@ -374,11 +374,9 @@ else { echo "
" . __('Name') . "" . __('Description') . "" . __('Delete') . "
"; } else { - echo '
'. - __('There are no recon scripts in the system') . '
'; - echo "
"; + ui_print_info_message ( array('no_close'=>true, 'message'=> __('There are no recon scripts in the system') ) ); } - echo ""; + echo "
"; echo "
"; echo ""; echo ""; diff --git a/pandora_console/godmode/setup/license.php b/pandora_console/godmode/setup/license.php index 522ae0eb19..cff9b10d11 100644 --- a/pandora_console/godmode/setup/license.php +++ b/pandora_console/godmode/setup/license.php @@ -53,7 +53,9 @@ echo ''; echo ''; -$table->width = '95%'; +$table->width = '100%'; +$table->class = 'databox filters'; + $table->data = array (); $table->data[0][0] = ''.__('Customer key').''; @@ -76,6 +78,7 @@ if (enterprise_installed()) { echo '
'; html_print_input_hidden ('update_settings', 1); html_print_submit_button (__('Validate'), 'update_button', false, 'class="sub upd"'); + echo "  "; html_print_button(__('Request new license'), '', false, 'generate_request_code()', 'class="ui-button-dialog ui-widget ui-state-default ui-corner-all ui-button-text-only sub next"'); echo '
'; } diff --git a/pandora_console/godmode/setup/links.php b/pandora_console/godmode/setup/links.php index e8fa817d3d..acd0ab5647 100644 --- a/pandora_console/godmode/setup/links.php +++ b/pandora_console/godmode/setup/links.php @@ -91,7 +91,7 @@ if ((isset($_GET["form_add"])) or (isset($_GET["form_edit"]))) { $nombre = ""; $link = ""; } - echo ''; + echo '
'; echo ''; if ($creation_mode == 1) echo ""; @@ -108,10 +108,10 @@ if ((isset($_GET["form_add"])) or (isset($_GET["form_edit"]))) { echo ''; + '; echo ''; echo "
'.__('Link').' -
"; - echo ""; + echo "
"; echo "
"; if (isset($_GET["form_add"])) { echo ""; @@ -129,12 +129,12 @@ else { // Main list view for Links editor } if (empty($rows)) { - echo '
'.__("There isn't links").'
'; + ui_print_info_message ( array('no_close'=>true, 'message'=> __("There isn't links") ) ); } else { - echo ""; + echo "
"; echo ""; - echo ""; + echo ""; $color = 1; foreach ($rows as $row) { @@ -147,12 +147,12 @@ else { // Main list view for Links editor $color = 1; } echo ""; - echo ''; + echo ''; } echo "
".__('Link name')."".__('Delete')."".__('Delete')."
".$row["name"]."' . html_print_image("images/cross.png", true) . '
' . html_print_image("images/cross.png", true) . '
"; } - echo ""; + echo "
"; echo "
"; echo ""; echo ""; diff --git a/pandora_console/godmode/setup/news.php b/pandora_console/godmode/setup/news.php index 63f9eb857c..37ab25eacd 100644 --- a/pandora_console/godmode/setup/news.php +++ b/pandora_console/godmode/setup/news.php @@ -144,11 +144,11 @@ if ((isset ($_GET["form_add"])) || (isset ($_GET["form_edit"]))) { // Create news - $table->width = '98%%'; + $table->width = '100%'; $table->id = "news"; $table->cellpadding = 4; $table->cellspacing = 4; - $table->class = "databox"; + $table->class = "databox filters"; $table->head = array (); $table->data = array (); $table->style[0] = 'font-weight: bold;'; @@ -212,11 +212,11 @@ else { $rows = db_get_all_rows_in_table("tnews", "timestamp"); if ($rows === false) { $rows = array(); - echo "
".__('There are no defined news')."
"; + ui_print_info_message ( array('no_close'=>true, 'message'=> __("There are no defined news") ) ); } else { // Main list view for Links editor - echo ""; + echo "
"; echo ""; echo ""; echo ""; @@ -269,7 +269,7 @@ else { echo "
".__('Subject')."".__('Type')."".__('Author')."
"; } - echo ""; + echo "
"; echo "
"; echo ""; echo ""; diff --git a/pandora_console/godmode/setup/os.builder.php b/pandora_console/godmode/setup/os.builder.php index 1e0344a41f..288dc2ed9a 100644 --- a/pandora_console/godmode/setup/os.builder.php +++ b/pandora_console/godmode/setup/os.builder.php @@ -26,9 +26,10 @@ if (! check_acl ($config['id_user'], 0, "PM") && ! is_user_admin ($config['id_us echo ''; $table = null; -$table->width = '98%'; +$table->width = '100%'; +$table->class = 'databox filters'; -$table->style[0] = 'font-weight: bolder; vertical-align: top;'; +$table->style[0] = 'font-weight: bolder;'; $table->data[0][0] = __('Name:'); $table->data[0][1] = html_print_input_text('name', $name, __('Name'), 20, 30, true); diff --git a/pandora_console/godmode/setup/os.list.php b/pandora_console/godmode/setup/os.list.php index 56ac12c796..81de048a31 100644 --- a/pandora_console/godmode/setup/os.list.php +++ b/pandora_console/godmode/setup/os.list.php @@ -26,7 +26,9 @@ if (! check_acl ($config['id_user'], 0, "PM") && ! is_user_admin ($config['id_us $table = null; -$table->width = '98%'; +$table->width = '100%'; +$table->class = 'databox data'; + $table->head[0] = ''; $table->head[1] = __('ID'); $table->head[2] = __('Name'); @@ -64,6 +66,6 @@ if (isset($data)) { html_print_table($table); } else { - echo "
".__('There are no defined operating systems')."
"; + ui_print_info_message ( array('no_close'=>true, 'message'=> __('There are no defined operating systems') ) ); } ?> diff --git a/pandora_console/godmode/update_manager/update_manager.css b/pandora_console/godmode/update_manager/update_manager.css index 2c0f7014d2..8a07438ef5 100644 --- a/pandora_console/godmode/update_manager/update_manager.css +++ b/pandora_console/godmode/update_manager/update_manager.css @@ -3,7 +3,7 @@ background-image: -moz-linear-gradient(center top , #373A3D, #313437); border-radius: 3px; font-family: 'PT Sans Narrow',sans-serif; - margin: 20px; + margin: 0px; padding: 30px; } #drop_file { diff --git a/pandora_console/godmode/update_manager/update_manager.setup.php b/pandora_console/godmode/update_manager/update_manager.setup.php index f1af09d8a9..30d1d4226b 100644 --- a/pandora_console/godmode/update_manager/update_manager.setup.php +++ b/pandora_console/godmode/update_manager/update_manager.setup.php @@ -54,9 +54,10 @@ if ($action_update_url_update_manager) { echo ''; $table = null; -$table->width = '98%'; +$table->width = '100%'; +$table->class = 'databox filters'; -$table->style[0] = 'font-weight: bolder; vertical-align: top;'; +$table->style[0] = 'font-weight: bolder;'; $table->data[0][0] = __('URL update manager:'); $table->data[0][1] = html_print_input_text('url_update_manager', diff --git a/pandora_console/images/ayuda_blanco.png b/pandora_console/images/ayuda_blanco.png new file mode 100644 index 0000000000000000000000000000000000000000..adcb28240f06ca128073c6ed6fb8ca81b7f5f972 GIT binary patch literal 397 zcmV;80doF{P)0Zn-iGaRScOhA4Bl)0m1qIs6YW(VZnb)Ab`xl6`udGXg-fK7LmYxWO;x9A|HV~0*h9B z!GsRpqbm|X_XJkOXkiL7*#J4%um#b7Xu3o;wSftTlP?0X0TTZKOyL21ApuN03vk5{ ziZieU(S0;U2_#1ZK!DK~K_jdIi_`x@#TwvoL1a!M6$Icja6Yy)2g|b16r+G8SK^Ez zTrLE8b3a;UG{B+O0o~9B0$yAX4d?TC)HGnrkNCiQv`mBz7?2uC>!FzR$ifq0L}wvJ rB9d4DG*`<*g&qR&1z@J#fJ+YmIP68dYyI5;00000NkvXXu0mjfPw0o-~bJt z2SB|Gn2_Y+pp_AtHZN$LV}*rQpl lk5uG8KoS=~QhNYq1^{8ehEBTCl=lDt002ovPDHLkV1g?tji3Mk literal 1255 zcmeAS@N?(olHy`uVBq!ia0vp^k|4~%#=yY1`Q6s9AWn&EL`iUdT1k0gQ7VIDN`6wR zf@f}GdTLN=VoGJ<$y6H#24v4 zq}24xJX@vryZ0+8WTx0Eg`4^s_!c;)W@LI)6{QAO`Gq7`WhYyvDB0U7*i={n4aiL` zNmQuF&B-gas<2f8n`;GRgM{^!6u?SKvTcwn`Gtf;oFf&vzGto0N zF|ahT)KM@pFf`CNG}1RP*EKY-GBvj{FjRm7C7^9ZDQQ+gE^bh}fIM5JjFOT9D}DX) z@^Za$W4-*MbbUihOG|wNBYh(yU7!lx;>x^|#0uTKVr7^KE~&-IMVSR9nfZANAQKal z@=Hr>m4GgVcp+top^2{qPNz6-5^>ndS0-B+hnVDi`VPI)#U}R`uW@%|*Xy|HU>1Jl(XyE2( zX=Z3@;biOx)9aF-T$-DjR|3NYTMMS8k8hE&{2`t$$4Ju{bs7{kVy5*HY_cWE^+Bpoqe)^-SF6L1h<4zp?L zP`G#^%&h4oN2QyHo!wjp#+J*PIz8I*f7_)Q8NWHaX*hn+U^8duL0gWgM>jApU(LYO zabiO90U>9F)nPU{2UZKH@bgNDt(c%JV6Twyk5PhIjDLYckixZ61K+PKPU2|=wl^6W z1sqhela#Kq6|8U!=2KEUbcsRgfBg;_<*Y|X!w6f8)uEc9{$;5|xqD=X`0O#5S?n&S@W`?xxot zPrP?O-~ZrCR}QC81j7;TjUuAl6S~=TKD9dNFdX^lFsH$EhlHf$N;w~c%`+ulFhp!v zVt!?Vn&^UKvdVXBjP^Wcnb@NIL|);f_JYu~7oXT7CK;Tw@N5uU!)bBk`{N1kk1L*Y cn4ZMSaDnmCwWZN&nxLY`)78&qol`;+03v9gTmS$7 diff --git a/pandora_console/images/database_history.png b/pandora_console/images/database_history.png index f732812bd2e51335a1b45369d1a0db362b4eceb4..b54f662b042ca01d1064d487703bc420a1826da9 100644 GIT binary patch delta 400 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 B?K=Pf literal 0 HcmV?d00001 diff --git a/pandora_console/images/line_item.png b/pandora_console/images/line_item.png index c0aa3d4a98044496a5c26db156c260e4d9422730..0779675877193ef00f5222425ae0f314e96aa2e5 100644 GIT binary patch delta 500 zcmV%^U($V0|XEQaR4BIn341ZC@3g!Jbd`@1&GfC6?_k*@`3m~ki8$T zQ2+siA0fMm37aDsK`ww=<^aS8fY<;OznY5<#g7nhYIC32#QUMC3qWe1gNA5lhik04g)Eq*@1Pf)s$# zpzyr_l?SO`0OUVlAT|*qN=FnlAMHnq&;vlj9PySQSPU!xQV~GR0X66%5YGhSk1#dB q9DESD#39zD4$us%2z1p4Lh1oPW|zlWP*K1D0000v4 zq}24xJX@vryZ0+8WTx0Eg`4^s_!c;)W@LI)6{QAO`Gq7`WhYyvDB0U7*i={n4aiL` zNmQuF&B-gas<2f8n`;GRgM{^!6u?SKvTcwn`Gtf;oFf&vzGto0N zF|ahT)KM@pFf`CNG}1RP*EKY-GBvj{FjRm7C7^9ZDQQ+gE^bh}fIM5JjFOT9D}DX) z@^Za$W4-*MbbUihOG|wNBYh(yU7!lx;>x^|#0uTKVr7^KE~&-IMVSR9nfZANAQKal z@=Hr>m4GgVcp+top^2{qPNz6-5^>ndS0-B+hnVDkcVqtFV;^b;-=4@bYXy|I<8Iua(|ZvxVTlbLf2IMkUNs*a-B)QA%jU- z+^rna&t#AxwjipLC14Kwrplv-nckR91bVU~#n&f=)zpgNCvykyhE=YobQJvGx%)49 zAvIy{7lt``4L92@>|IW1Go5r%u=BT=^5(7M!@K;#JktfzBYr+o-F3?;LB+3O3PU@e zZ^JVVca1a+z7>fU3!evaJe6-)bx_tTVZQ^@BO5*c#Y`TBjGL}DEUH*gdx?R=;L|3( zosn}TPB$cOl<(m7Fcm+l{vb$x5({g?4<-XQI|tryhM?CIlhO{Z3SBMSdDiBJP9cNQ zcjs2S24PWyUk6*YLS!-+l{GD=aC%o+F&yc+P@}|fPWyn+?~Pq+8FvOYC30>kGGcgC zx4@Nq!8FOHBmLg5z6qDu2FQEZ|GSc!&(HOpA&0F&Yq^S|hi|j0^WtXS13Ypa)_w|l zLJVnd_+KnFxAAMLvU6w_l1qQ_>%(!*B_%%_uFsut>axHoYkpl9nSz(fTHl=}7uXBc p+uisoaGGV|(Oc~YCrf6sGI)fy%$|EdE*Vs`db;|#taD0e0suOX1wjA+ diff --git a/pandora_console/images/new_message.png b/pandora_console/images/new_message.png index f494fd0a20cfec9bf1143bea9877ba258bd059fc..b0b9c1008b4fac3310c0c2c9ad9132f9c5988399 100755 GIT binary patch delta 487 zcmVM19 zq$4(m?+4K=P>utT+7Hu#%d7uCfByU*r{w?vM4oGrT&xJh321@Q0CFhI2TW)N2!Qm0 zFi0Vg{y>Ti4}f?B5Wfd;wrttLf56Mj%gBOez7!~h5&+95`yXmY@% z2%20NSdayPni|m5Ex_;#ECJw(Y8aaZnp%`fR z!3#h-0IK=?|NsB@!$SjWYDRLiii!%{86VKI8yfhKlaq6Sq(}h>FxtmBf0BPdDK(x< zvnB$=32)SZ40eDeA7TMgc;Yo2Sp#y(f(tkT9dZDdBn!S6L@%yzB@dDfhbBT?X$=%N z{m>$)hh)Qn1}LBxcAz2&Xz2nF2Fhy#`B#xj90j1508s7&uIz&hK!(?&;rU3Jw-i)_ zAr+V)_3x9DlmEYe|9(HVJ){ULgc?aqhV|(2HDSVp3+TZT2*l(RrU#(DPyia*Z(v|> dfsv815C8&CpXXsEvTy(Z002ovPDHLkV1i^!!yo_v literal 1431 zcmbVMZA=?=7{9(ik(ZUh)G>%$j%KoE$^ ztQcetm)K3mnA12nW^~DL;um#OG2+Bz8-y>KX)<3HqQV#Ax0HH$hwkaX8L+N8=4sylBCnQYkyKYL^1%tQtk& zRfy7UN7jOB^9Nv$D08sch}E%}1&1vrBW}V-6Ilxr7>=PhfnwG=9HY!u3d7;`2LayX zSO*oPo7Q~+$&SPoMWRr&udmP8S8o*MP826e62%CVAnE|3F4-?AOsY;u*5oYET#}V} zN#R8S&RS%mVy|LHK%{FaBqYCo!?2KCFBB*lnqnjrH)3cak z4h?ciu~%k6KRRl1WKg?%JIVq3`U3ww4;P#QwoH8Xnpr}R?M_x!EMr$+;SvqSR-s|1hr zNZtu8{?;#!s}I1v)kAl>B17s&_N%s`U%hhpnqHS~D}C-JyI5(QRX>}Td2x5`?Rq!) zUhq6*;%(^#ooA-nRX$5o{fLpOZ?lzY)(GUr_#AoH#oe{PN5x z&1`Xeq&OXR+_zxVevneV4!f_{J~+od)V1qP>D2;1Qknj_F;k|S86KQ;sgKR6Gv}Ol zG;>%!>8zg79p{&v@6*R>({EhUv^b6pdTGRWTt9kxSzR((6gW~` zCUNbPp{=I3U;8}h`S4JFeG_qRTe>#noV;uMM%@J&sxKV6QgQk28GfG%N?(8X`L7Md Q^VzG?=WV4Y+>vMg0pMra)c^nh diff --git a/pandora_console/images/op_netflow.png b/pandora_console/images/op_netflow.png index 9570ff85d44933bad17a88f524451b60cac33d58..09b09e2df8bfdbb2b610d81fe89b36bd90377520 100755 GIT binary patch delta 508 zcmVOc^_096PA z=RpQDLH*c(WRfD(tBKHH1c3u6&Vbqg^7?utAr#*N1Q7X%m{3T-61^XQ)(gT?3`mgy zRFNQ(B2dshfW;6KQc!?G;R96h0U$dONGm`M5@5uVR1ZKEC?JV7GNHLC5NMJkkX{Ii z9ps>bDZBs;w|@=L@bm{oA&_>2I%xrV+&@6G5(Fjy6&5lfCs{1P3UW#zNf7}MU^GFD zc%mKTuX<>b#Rfo;*9i2+1A>O4C6N!%B#jLq%Ylm$Rpd55u@iH258y!04cgBz+w%^?*~!^Sao7`0}GOX0TwUb2Wm#<7XbMM zc;X0T#s*~XZ$MK3N}+;KufmH6B)%auT+t&BZxNCRwP-&yg(F88vK-8ZjzG%};7n3L y!{_5kN*GBCn&kol?U-q8YRU6 zqy7LBfe^8WmQ(srzCP3-dtxIe0Ld$$a5cbE6yx*$d1AtKKAwo0kF(4tP?EeSB1x@B cj!>Ec0JOYShzwm-o&W#<07*qoM6N<$f~<~`>;M1& diff --git a/pandora_console/images/pdf.png b/pandora_console/images/pdf.png index a0a4f4a083e13cf27fe47e151f6706f4d0cd7667..46b5e12d5a8c0760ffecf3f55beb019a007fcd54 100644 GIT binary patch delta 425 zcmV;a0apIe48;Q>iBL{Q4GJ0x0000DNk~Le0000L0000L2nGNE0p1Xm0Ffale*tGn zL_t(|+G1cp0*oNS-roK{13CZ*AXEfW0#^oPG{7VP0tjZnd?2+DCV24R!2?WCb^;LZ z2VwyzjT-<25LUzpG}{49Y(EQ(fh@{|rpggSut1%|h~yFMRsjSMvWf;g4*CEzZ30Z8 z13tyD@M1v{s|O0!1L*@m4DwbWf5=3TI7|Tx7K32^Uym-qL`p~k1Q78-4s|>z<`i%# z0)|2Za^i8sp)MYjE?AHg29BU|K=D0+BzXYY=Z!#Ih~|U?xPqu3NmcB3) zA}1>}&oq$a8KPqbAi!uB-AIwJpF;B-L6M9t88?E`3@Ii-0}^lEh_}a?f1_~%1+3AD zrXUfTI6$#8ABq0~T9(yAQ=9{_hQd-E$UuK24KVK|BBe?OQVgAsoQ$Da4wNVOp~+nU zDwcpZH6wuq(6YP{hlLxF*b9*?O~7a9LtJ?uPwYG3a_I%AD?yP@PI}z{HG=^FM7>`A Tc+0AS00000NkvXXu0mjfy~LXg literal 1617 zcmbVMeM}Q)7{9h4$O@>##VUidn)xy5eUz5=MlEfxg;tBCG_zTB_S!qz6Wi;qhZJOj zm?4g4;zBkOb(4j;#HbT>ehsra6m=$Jo4PQQ1&NEAg~&v}s%Upbs{6zE$1b_t`#ksi zJ>So}y{xo2J#B6p008Oc65PgrCGj_P8UP56-u-SYE^tN%SI$&$)dWicI+AfwpxH-w zC>uqPH6L7}3IRamrR@&RVO@#28J~=ZV`L#;fM)|hp*9pC+?5mux+o9r*GPxI|3M1U zq(-`0VTG*$1LdVlYFVnhw$$#ft#qqNsdhP77{Yi1K8hp2kZ*%Oh=nxLNxK+-j;kRl zI0@k@HPUB6Ijm)%fnh07A%pYWuo3~4`7$IQR_Cjifhdf?5Q0K*K^_8QiUJHqz^O;d zdt=E8%!Zq$eDRV->gBiq20_);)v{{2jA1P>2XXhzy2&zIa}f=pbjKUWD;d zbkJTCpdcF+WU5#<-;as~2{K>1S38OW`Dn0JEX_BC*nl(cDj((N%(zC%|B;b2iQ!6I zj>>f^1V>?|3PDslC2lenplYKY!Q}{?u<xtM{a2##Ux46`9I0cBo>V}f2L02;~_G6b{|ZrUH$ z#2fT1Uz}p;jTC8O86P-VVT^uB1Tdn45u_j=E_jhSu2aK^vcMo$=uqhtm;66fgZN;e z_;~zhToNjN2II%)!_N!P*N5`+JHztJ@pN8GGXMzd&A84Uy6&2Y#k3;SDV$lHbKsHo zUZ~K~G;_ajUwCJ7Zv!nz1x=*fkyC$iJl4DGb@A?Hg<|p8Iwt);-KMN{WCj z>h#BZve#tE$9s~7&uIH*c=|I=bmT4sM3%;;)D)p^ehJV-qzQ!0Gyi-i;Mvk_y#02p zCoB-m`v^9@)&57Hc7TXJz5QCrjE3P`?&K~gK8Hy&dXNlM%yd{nVQXZ{*W98PULvXPM z6n|`L-$C3My_pwK+CLHGr1eKGlle{9lN<>^|=c@e_!^AM}*jo zwid;u9(K04WMn^FI1xxT>>f9Zz{o{Q7wM_$(7D%GV#K-k-D;QqqykZ;NZiYX}Z$s-5EbN#%Lk z@qsUT{~5ZhX!|L=c*Wd3<8pM!4HOq1QY|^LHglhq?501zwR1sqq(#)Zh;W_d8yOk9 z_jnkZ^M2i_6#t5b#;mMjdskBbNdo?Cv?BG|K`C_M%2N4nUpoZAwW7-V>8l1e$1i!a Lu@pa~cQ*bD!L&z= diff --git a/pandora_console/images/percentile_item.png b/pandora_console/images/percentile_item.png index 8cfca63aacfd65489ac56efc1a3cdbab227ccd52..468149afd80faf3850bd7aacd6e4d185a6ddd294 100644 GIT binary patch delta 433 zcmV;i0Z#s`3(Nx{iBL{Q4GJ0x0000DNk~Le0000L0000L2nGNE0p1Xm0Ffale*tbu zL_t(|+G1cp2ln>%1t6Lc%J~nX0RjjGF@uySC@5$=eE9GJ3s9gRDzN|{fM9y&Lj@8J z9z4hhHw-En0HiJe@qVDBA_Fb}5J0#Qx|^7=Nibp&bYui_96&Y`v;!c3$U`u@Kr|31 zU=2MYG=i`Kh|hvWVFJh}P;MX)e+vME@d0v#fpjL|vkj=B0U&@FXa``PfU?(vFtR)g zRKfw84g{cVP`VH##zc%TWyGQZlmrcc7!(>CU`de)i{S~da0KE)j5LJ=8bJXKP0$4} zx8lwvsK5~xm5l@xJ|H@r0RoJP7Lmt-Bm5PhLHPid+K?jAfl#7iK{E^#e=p~elJI?? z7>I2M^*=0sCX(X)4@hhQG;vsYv;pYK1^5hQ#FMBUfSL~=m0_?%EeH)7Sc-c9O)Cos zMik6ID1f=L5NZ%8hzy_!4rJ(jXn5myDOw%?CGQJBLk!WxU;r*hGr)qDTqrGl9npe~ bdH?`S{Dz^gSh}770000<2SrXqu0mjf{+pG1 literal 1452 zcmbVMYfM{Z82;LF8*<&sxH!j`GKCG=bH38+p=G_CGRQ16&;;hl0a=!OH z&-32jZ`e`4BQw1y9RQG7S4%bu-@@3NmI8oi=9k&Un84dw_$Ic4@1r;dm}$11fptEr zlWAlqy1(ZVV*o(n_BdPk7W?Cbi}fj}7)BBD1q3z#hV7vM?EuF#4b(eb1Kln?E!$oV4Ix4>;A40ShJ0RskO&!N%XSIj98+U5 zxD4UDjk1-XTI>#JWjO|_6}a4mYY^0^6i9{ZRr(63#1W1mC5CI|2q)B90!J|Z$OLa3 z-9a>xHE~~pWR$siK0shtUtgc1uTsHsofy*V^%$1XVD@xLN=uZ$MqJZ)*=;YR;yH+ z1h>u~7gbFj>!j)D zqi`C$yK6pKB#!2OI{N+3SES*BYt9S?h%QF`m=b&gW{TZkJq>3?(R{_im?7L;Y67Cb-`wyw6>YbDf^A{p<+S^aw`Jmv3E)h&l zKbmSXqvGiGlIeX_*^?V{iZUX9N^-t^A$dcq{O08o zaBgz<`v=E=3WGHGvKozdNj5y%BiT8-ZfZWV{|Fpg66yDh`GD;^vpeTu)6k-%zG3Kg zl62T)OAV{aHfMna8@!u(+tRk@Y&iFK_juIu$yF*;R8|->h$e_o+0siH zTcksyL#j7L;?dL6ox$dDNeljAihbAAdr8sEDg84d{EfW11KBNKrVf&h;oj^LWAJk1LW*}|PF|_wmEZjQ0`SlaA`?JngPrhYo8~g{( CvERV} diff --git a/pandora_console/images/performance.png b/pandora_console/images/performance.png index 685f93b9959ee1f41907d1145fbf15d7cc25ad57..b1fb0682fc55e2510fe654e4efcab71f952fbd91 100644 GIT binary patch delta 450 zcmV;z0X_bW3f%)CiBL{Q4GJ0x0000DNk~Le0000N0000L2nGNE0ovt7J&_?Ne*u3< zL_t(|+G1cp0*oNS-roK{13CZ*AWQ^QRsf=zfQ$ejE&m?~00M}h76l*{K;k>#R16S6 zR6s!U8<05yK)fDZg#i+KJ;)EMSFgtHe}Dj@o})m)3<>~bC!i|?DR_@Vt^g&TfSmit zilHW>cx3zb?f;34TnK>0C_n%We-gxqBj)mfIN{*IgNz_g1L*@GK^8R4`=PWV5HEzL z-F|dK@uq!fd^8}N>2aAY8bPE}=7#ILef7=s*_yG`u z_#5Df3ezY3P)iDdxE{%(4=h+5JRho<0jR(cXaL9}P=>-V9Ga>VkqT^>uPy@d1V-f2 z9V&_8N@#8cc^_n0AU0p1sRx-Oz=W2ALEbu##f29@VGd+Ag5;sus~?-e(3~?L8eC)* s-ww!i7%YcDF$lb;NsfbB7yx!P0Av)uOG6DnxBvhE07*qoM6N<$f<=#}l>h($ literal 1293 zcmbVMUuYY39KSSKSKDO^4yBgJeqNZm(d2%2OD=b}WJ#J!)_}=k8a1$&UM{~jXPdk0 zr@mhT69(1d>9G^6`e3euJ=Tc2_h7!>ykW%Oi)CliW(-@-}`_B zN-0b}5lF+d9!F(maN0ma)0wH;=UL8b)im2tHy)WhVaT>+mhHAR9= zh&dJ}w}L99vmmY+2n2l4D?^qBtlvlbA@Aq=0Rw4B(F_HHUK$F4pa5ymdPwZeD2)g? zG1>Bkr7&4GO)3Gc-mxKyE{9wfH)fAgrVT3NaLa=Pgam>ro=Fb|M*HuNq_+k(sa-dgA8Ojn&x7x zm`ns2J~2RxM`+l#u@g7$hb%9~Ib3{}rV|Xu4lo=SWDt z7B_fDt`IknWNJoU)5hBqkS%MbRxN8fhz|vPG)PObqFNfOL0kEX$WWd_rKF)%z-EO7 zWrqkL{h!Q(EE9_dV_ckz;{-Ue#V!4xs!=!?${LSt_C{mZZ16#C8Wdg+}?BF zdgg9ix4EL+!TDaDcrclqksG}~EOk75;O$fMjpuEtSL_a#y6^ipch40fUGif+Wb~Im zUi#$XhU;wO(sz-2ci9Rny@S8m_uFR)&?sy6)jqw`b9L$2l}DqwA7@T@`cFIcD+ibT z#m_Qewd4KOu9v5p@;$Ge`R3fAJ&lW}-noA+bu)H(arV#`4=K${Hn2Q+ZNhW4qce2j zR@k2qqQC#Vc>CAvvGeoq?pyhDVxfmBHXY94l>5`Y%Qv76sErFY-oZaTTp-dj>x%{3 z;mZe34t!i(uwSpOOKn@kHVC(-1oFsbI9ihIP8^;@j`^k>xGap7D g|I+<=Ilr42J9B>Rg}YxrYF$vNL`HmLVEDPe0lGq@$p8QV diff --git a/pandora_console/images/schedule_report.png b/pandora_console/images/schedule_report.png index ed54e9247b06fc3222ed2cb11703b26884129849..c27aeecc1762b796a6ba1628e11627e9396ea8a6 100644 GIT binary patch delta 411 zcmV;M0c8H33%3IyiBL{Q4GJ0x0000DNk~Le0000L0000L2nGNE0p1Xm0Ffale*sxZ zL_t(|+G1cp2ln>%_b~(k0tiD%0}$^Av6(=`!Gi}KK{P-BF+yeM1F3~D)j-JuEKv4C z5Ql*n01!Y}5hKuS2Q;z$Ftb6<0h#RpcNUV<8etB1K=a6dtQG+T5F@fz@i^!M(D(^( zqwy(*S;c}y5aenFDBb`xF%Txte}rbp1StIgs!0G@64~T>d`_?X@(S&ai9TNk1L9h z70$<(SYdex=zv6=-p2wGkX?_I1`2>UA1N~?k{VHs&{TKZpc5v_dd`4 ze$V&wzU-{2+OU4hdH?`6*sBSb@Xb%Ynd<;Rbmq6S3rT^udiYwlk&lub1(*V?j{@x> zvWaq0WT3tEb4m{Y;vntz@E*rb+|Py}GKqm=p|HRP0KG95CjHG65BjJknlZ@dK0GG} z>3~6Ar*SMTIAVl#b7z?#95j+Pp<#9Mc3(HZU8bZqbhz12UDhO2}mb0h!!QaVa43|_YY83UUDUr}tci}e z+rt#>q9SY?=NJ0XSePOUwR^auBv6P3f10C(rjRWJ>u(ED3~wh4a^VjYpaVFeA(RTG zNrw^&M59Adok>I3tXc(THKT+QMN&4_;wqJ>NvTm;%^Ed)FMCtn!tqMx?FaNXE|@mr6RG=@X^Pj)`5qp&1}o-+8X<#Plp$*fU!9=7@6YkK{KgxS}(rpd82ds!0dO&PkOI+AqRS|6uW?|vC82EY`pV5aT*w} zzB)mSHpJ%_8+LuQd1zpAu2{i^rBEouDy^6iW}BjYnuiHq9~ zUEl9MXpnvZ-Hofqny0f5Cq8X5=MP9n46Ng@qs!IGB#{{+w^g;=yB2TRApY#?pwc#&L90@ zvfyH#&Xb;hS67s<-s?3sBp$mlS+Hr_CWsd8*oRh! rt-g{+ceGAid9sbX8GAlp8_RhLs5$$mimg { + margin-top: 35%; + margin-left: 15%; } .text_task { - width: 45em; + width: 70%; float: right; - padding-right: 100px; - margin-top: -120px; + height: 100%; +} +.text_task>p +{ + margin-top: 7%; } .button_task { margin-top:10px; - background-color: #82B92E; + background-color: #3F3F3F !important; padding: 10px 10px 10px 10px; font-weight: bold; - color: #FFF; + color: #82B92E; border:none; } #description_task diff --git a/pandora_console/include/styles/pandora.css b/pandora_console/include/styles/pandora.css index 3fc42f9fd7..ed3e4cfa9d 100755 --- a/pandora_console/include/styles/pandora.css +++ b/pandora_console/include/styles/pandora.css @@ -145,6 +145,7 @@ h1#log_title { font-size: 18px; margin-bottom: 0px; color: #FFF !important; + width:70% } div#log_msg { display: none; @@ -413,6 +414,7 @@ div#foot { p.log_in { color: #FFF !important; padding: 0px 10px; + width:70%; } h1#log_f { color: #c00; @@ -474,9 +476,9 @@ div#login_in, #login_f { text-align: center; } table#login_layout { - width: 30%; + width: 100%; height: 160px; - position: absolute; + position:fixed; } div#error_login { @@ -521,7 +523,7 @@ DIV.login_links>a { DIV.login_button{ text-align:right; - width: 68%; + width: 100%; margin-top: 15px; } @@ -3047,12 +3049,8 @@ table#policy_modules td * { top: 23px; } -.dashboard li{ -# width: 150px !important; -} - .dashboard li a{ - width: 160px !important; + width: 158px !important; } .text_subDashboard{ diff --git a/pandora_console/operation/users/user_edit.php b/pandora_console/operation/users/user_edit.php index 7809dc14f3..49abe970b9 100644 --- a/pandora_console/operation/users/user_edit.php +++ b/pandora_console/operation/users/user_edit.php @@ -178,14 +178,14 @@ if ($status != -1) { __('User info successfully updated'), __('Error updating user info')); } -$jump = "
"; +$jump = "  "; $table->id = 'user_form'; $table->width = '100%'; $table->cellspacing = 4; $table->cellpadding = 4; $table->class = 'databox filters'; if (defined('METACONSOLE')) { - $jump = "  "; + $table->width = '100%'; $table->class = 'databox data'; $table->head[0] = __('Edit my User');