2009-12-04 Raul Mateos <raulofpandora@gmail.com>

* include/config_process.php: Solved notice when PHP < 5.3

	* general/header.php: Add some alts and title.

	* general/include/cluetip.css: Changed .gif to .png.

	* images/daarrow*.png: New files, converted from .gif files.

	* Changelog: Format dates.

git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@2160 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
raulmateos 2009-12-04 21:56:34 +00:00
parent 7a4eba5b7e
commit 4983d2b629
12 changed files with 39 additions and 19 deletions

View File

@ -1,3 +1,15 @@
2009-12-04 Raul Mateos <raulofpandora@gmail.com>
* include/config_process.php: Solved notice when PHP < 5.3
* general/header.php: Add some alts and title.
* general/include/cluetip.css: Changed .gif to .png.
* images/daarrow*.png: New files, converted from .gif files.
* Changelog: Format dates.
2009-12-04 Miguel de Dios <miguel.dedios@artica.es>
* operation/agentes/datos_agente.php: fix the bug when you have a large,
@ -26,32 +38,32 @@
* include/functions_config.php: By default custom logo is "none"
2009-12-4 Miguel de Dios <miguel.dedios@artica.es>
2009-12-04 Miguel de Dios <miguel.dedios@artica.es>
* godmode/alerts/alert_templates.php: use the function to translate the
seconds time to "human time" for time threshold.
Fixes: 2905968
2009-12-3 Miguel de Dios <miguel.dedios@artica.es>
2009-12-03 Miguel de Dios <miguel.dedios@artica.es>
* operation/agentes/estado_ultimopaquete.php: fix the column of data with
a empty module string.
Fixes: 2881181
2009-12-3 Miguel de Dios <miguel.dedios@artica.es>
2009-12-03 Miguel de Dios <miguel.dedios@artica.es>
* godmode/agentes/module_manager_editor_common.php: clean source code.
* include/functions_reporting.php: fix the query to count bad modules for
SLA.
Fixes: 2908101
2009-12-3 Miguel de Dios <miguel.dedios@artica.es>
2009-12-03 Miguel de Dios <miguel.dedios@artica.es>
* godmode/reporting/map_builder.php: tiny fix the text for select all
modules in select box.
Fixes: 2897433
2009-12-1 Sancho Lerena <slerena@artica.es>
2009-12-01 Sancho Lerena <slerena@artica.es>
* include/functions_reporting.php: Fixed some innacurate queries, skipping
non-init modules, async modules and keepalive modules.
@ -89,19 +101,19 @@
* godmode/servers/modificar_server.php: Added include to functions_servers.php
to use the new server functions, moved from functions_db.php.
2009-12-1 Miguel de Dios <miguel.dedios@artica.es>
2009-12-01 Miguel de Dios <miguel.dedios@artica.es>
* include/functions_alerts.php: fix the select box of correlation alerts,
now it has the XOR operation.
Fixes: 2849260
2009-12-1 Miguel de Dios <miguel.dedios@artica.es>
2009-12-01 Miguel de Dios <miguel.dedios@artica.es>
* extensions/module_groups.php: fix the style of page, adjust the with of
table of modules, and fix the description text that fail in panoramic style.
Fixes: 2866316
2009-12-1 Sancho Lerena <slerena@artica.es>
2009-12-01 Sancho Lerena <slerena@artica.es>
* include/functions_reporting.php: SLA readjust to be used in SLA view.

View File

@ -22,12 +22,12 @@ require_once ("include/functions_messages.php");
<a href="index.php?sec=main">
<?php
if (!defined ('PANDORA_ENTERPRISE')){
echo "<img border=0 src='images/pandora_header_logo.png'>";
echo "<img border=0 src='images/pandora_header_logo.png' alt='Pandora FMS Opensource'>";
} else {
echo "<img border=0 src='images/pandora_header_logo_enterprise.png'>";
echo "<img border=0 src='images/pandora_header_logo_enterprise.png' alt='Pandora FMS Enterprise'>";
}
?>
</A>
</a>
</td>
<td width="20%">
<img src="images/user_<?php if (is_user_admin ($config["id_user"]) == 1) echo 'suit'; else echo 'green'; ?>.png" class="bot" alt="user" />
@ -36,7 +36,7 @@ require_once ("include/functions_messages.php");
$msg_cnt = get_message_count ($config["id_user"]);
if ($msg_cnt > 0) {
echo '<div id="dialog_messages" style="display: none"></div>';
require_css_file ('dialog');
require_jquery_file ('ui.core');
require_jquery_file ('ui.dialog');
@ -47,7 +47,7 @@ require_once ("include/functions_messages.php");
}
?>
&nbsp;
<a class="white_bold" href="index.php?bye=bye"><img src="images/log-out.png" alt="<?php echo __('Logout');?>" class="bot" /></a>
<a class="white_bold" href="index.php?bye=bye"><img src="images/log-out.png" alt="<?php echo __('Logout');?>" class="bot" title="<?php echo __('Logout');?>" /></a>
</td>
<td width="20%">

Binary file not shown.

Before

Width:  |  Height:  |  Size: 69 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 186 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 76 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 191 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 77 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 186 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 69 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 187 B

View File

@ -22,13 +22,21 @@
/**
* Pandora build version and version
*/
$build_version = 'PC091201';
$build_version = 'PC091204';
$pandora_version = 'v3.0RC3-dev';
/* Help to debug problems. Override global PHP configuration */
// error_reporting(E_ALL);
error_reporting(E_ALL & ~E_DEPRECATED & ~E_NOTICE);
if (strnatcmp(phpversion(),'5.3') >= 0)
{
error_reporting(E_ALL & ~E_DEPRECATED & ~E_NOTICE);
}
else
{
error_reporting(E_ALL & ~E_NOTICE);
}
ini_set("display_errors", 0);
ini_set("error_log", $config["homedir"]."/pandora_console.log");

View File

@ -72,15 +72,15 @@
/* default arrows */
.clue-right-default .cluetip-arrows {
background-image: url(../../images/darrowleft.gif);
background-image: url(../../images/darrowleft.png);
}
.clue-left-default .cluetip-arrows {
background-image: url(../../images/darrowright.gif);
background-image: url(../../images/darrowright.png);
left: 100%;
margin-right: -11px;
}
.clue-top-default .cluetip-arrows {
background-image: url(../../images/darrowdown.gif);
background-image: url(../../images/darrowdown.png);
top: 100%;
left: 50%;
margin-left: -11px;
@ -88,7 +88,7 @@
width: 22px;
}
.clue-bottom-default .cluetip-arrows {
background-image: url(../../images/darrowup.gif);
background-image: url(../../images/darrowup.png);
top: -11px;
left: 50%;
margin-left: -11px;