2006-12-15 Raul Mateos <raulofpandora@gmail.com>

* operation/agentes/datos_agente.php: Add no data CSS style. Some style correction.

git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@325 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
raulmateos 2006-12-15 22:44:11 +00:00
parent dcc8e1d6a9
commit 3e61ff9768
2 changed files with 17 additions and 6 deletions

View File

@ -1,3 +1,8 @@
2006-12-15 Raul Mateos <raulofpandora@gmail.com>
* operation/agentes/datos_agente.php: Add no data CSS style. Some
style correction.
2006-12-15 Raul Mateos <raulofpandora@gmail.com>
* include/styles/op.css, god.css: Solved detected problem,

View File

@ -66,20 +66,26 @@ function datos_raw($id_agente_modulo, $periodo){
if ( (dame_nombre_tipo_modulo($id_tipo_modulo) == "generic_data_string" ) OR
(dame_nombre_tipo_modulo($id_tipo_modulo) == "remote_tcp_string" ) OR
(dame_nombre_tipo_modulo($id_tipo_modulo) == "remote_snmp_string" )) {
$sql1="SELECT * FROM tagente_datos_string WHERE id_agente_modulo = ".$id_agente_modulo." AND timestamp > '".$periodo."' ORDER BY timestamp DESC";
$sql1="SELECT * FROM tagente_datos_string WHERE id_agente_modulo = ".
$id_agente_modulo." AND timestamp > '".$periodo."'
ORDER BY timestamp DESC";
}
else {
$sql1="SELECT * FROM tagente_datos WHERE id_agente_modulo = ".$id_agente_modulo." AND timestamp > '".$periodo."' ORDER BY timestamp DESC";
$sql1="SELECT * FROM tagente_datos WHERE id_agente_modulo = ".
$id_agente_modulo." AND timestamp > '".$periodo."'
ORDER BY timestamp DESC";
}
$result=mysql_query($sql1);
$nombre_agente = dame_nombre_agente_agentemodulo($id_agente_modulo);
$nombre_modulo = dame_nombre_modulo_agentemodulo($id_agente_modulo);
echo "<h2>".$lang_label["data_received"]." '$nombre_agente' / '$nombre_modulo' </h2>";
echo "<h3> $et <a href='help/".$help_code."/chap3.php#3322' target='_help' class='help'>&nbsp;<span>".$lang_label["help"]."</span></a></h3>";
echo "<h2>".$lang_label["data_received"]."
'$nombre_agente' / '$nombre_modulo' </h2>";
echo "<h3> $et <a href='help/".$help_code."/chap3.php#3322' target='_help'
class='help'>&nbsp;<span>".$lang_label["help"]."</span></a></h3>";
if (mysql_num_rows($result)){
echo "<table cellpadding='3' cellspacing='3' width='600' border='0'>";
echo "<table cellpadding='3' cellspacing='3' width='600'>";
$color=1;
echo "<th>".$lang_label["timestamp"]."</th>";
echo "<th>".$lang_label["data"]."</th>";
@ -116,7 +122,7 @@ function datos_raw($id_agente_modulo, $periodo){
echo "</table>";
}
else {
echo "no_data";
echo "<div class='nf'>no_data</div>";
}
}