diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 424f1e17fd..9b467aea75 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,12 @@ +2013-10-09 Sergio Martin + + * include/javascript/jquery.pandora.js + images/tip.png: Replace tip image by new star, increse + a little the license info dialog + + * operation/agentes/estado_generalagente.php: Added real + time tip near status graph legend in main agent view + 2013-10-08 Miguel de Dios * include/functions_visual_map.php, diff --git a/pandora_console/images/tip.png b/pandora_console/images/tip.png index eea57ee0af..89261ba339 100644 Binary files a/pandora_console/images/tip.png and b/pandora_console/images/tip.png differ diff --git a/pandora_console/include/javascript/jquery.pandora.js b/pandora_console/include/javascript/jquery.pandora.js index 5d78dab4c0..ccf340f2a0 100644 --- a/pandora_console/include/javascript/jquery.pandora.js +++ b/pandora_console/include/javascript/jquery.pandora.js @@ -145,7 +145,7 @@ $(document).ready (function () { background: "black" }, width: 500, - height: 190 + height: 250 }) .show (); }, diff --git a/pandora_console/operation/agentes/estado_generalagente.php b/pandora_console/operation/agentes/estado_generalagente.php index cb6ece9cc0..07ac85f09c 100644 --- a/pandora_console/operation/agentes/estado_generalagente.php +++ b/pandora_console/operation/agentes/estado_generalagente.php @@ -107,6 +107,7 @@ $data = array(); $data[0] = '
'; $data[0] .= graph_agent_status ($id_agente, 150, 120, true); $data[0] .= '
' . reporting_tiny_stats ($agent, true); +$data[0] .= ui_print_help_tip(__('Agent statuses are re-calculated by the server, they are not shown in real time.'), true); $data[0] .= '
'; $table_agent->rowspan[count($table_agent->data)][0] = 6; $table_agent->colspan[count($table_agent->data)][0] = 2;