diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 9e0ffb9042..471cfb343e 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,31 @@ +2009-03-26 Esteban Sanchez + + * include/javascript/jquery.ui.dialog.js: Added to repository. + + * index.php, general/header.php: Replaced overlay with jquery UI + dialog. + + * godmode/agentes/module_manager.php: Use print_moduletype_image(). + + * images/close.png, images/transparent.png, + include/javascript/jquery.overlay.js: Removed from repository. + + * include/javascript/jquery.pandora.js: Use dialog instead of overlay. + + * include/styles/images/dialog-*: Added to repository. Dialog images. + + * include/styles/pandora.css: Removed overlay styles. + + * include/styles/dialog.css: Added to repository. Dialog styles. + + * include/functions_ui.php: Show description on + print_moduletype_icon() title. + + * operation/agentes/estado_agente.php: Return control instead of exit. + + * operation/agentes/estado_ultimopaquete.php: Style corrections and + usage of pandora database functions. + 2009-03-26 Esteban Sanchez * godmode/reporting/reporting_builder.php: Some small fixes which diff --git a/pandora_console/general/header.php b/pandora_console/general/header.php index e8126b178c..92f5cb929a 100644 --- a/pandora_console/general/header.php +++ b/pandora_console/general/header.php @@ -37,8 +37,16 @@ echo ' '; echo 'user '.''.__('You are').' ['.$config["id_user"].'] '; $msg_cnt = get_message_count ($config["id_user"]); if ($msg_cnt > 0) { - echo ''; - print_image ("images/email.png", false, array ("title" => __('You have').' '.$msg_cnt.' '.__('unread message(s)'), "id" => "yougotmail", "class" => "bot")); + echo ''; + + require_css_file ('dialog'); + require_jquery_file ('ui.core'); + require_jquery_file ('ui.dialog'); + echo ''; + print_image ("images/email.png", false, + array ("title" => __('You have %d unread message(s)', $msg_cnt), + "id" => "yougotmail", + "class" => "bot")); echo ''; } @@ -107,7 +115,9 @@ require_jquery_file ('countdown');