diff --git a/pandora_console/CHANGELOG b/pandora_console/CHANGELOG index 6d1b78a760..16668f43d2 100644 --- a/pandora_console/CHANGELOG +++ b/pandora_console/CHANGELOG @@ -1,7 +1,13 @@ +2006-07-20 Raul Mateos + + * snmp_alert.php. Add different colors between rows (cosmetic changes). + + 2006-07-18 Raul Mateos * Some headers changed to show the "official" GPL Header info. No new features or solved bugs + 2006-07-17 Raul Mateos * exportdata.php. Add a line at the end of table diff --git a/pandora_console/operation/snmpconsole/snmp_alert.php b/pandora_console/operation/snmpconsole/snmp_alert.php index 578411d788..2264d843eb 100644 --- a/pandora_console/operation/snmpconsole/snmp_alert.php +++ b/pandora_console/operation/snmpconsole/snmp_alert.php @@ -70,7 +70,7 @@ if (give_acl($id_user, 0, "LW")==1) { $field3 = entrada_limpia($_POST["field3"]); if ($create == 1){ - $sql = "insert into talert_snmp (id_alert,al_field1,al_field2,al_field3,description,alert_type,agent,custom_oid,oid,time_threshold,max_alerts,min_alerts) values ($alert_id,'$field1','$field2','$field3','$description', $alert_type, '$agent', '$custom', '$oid', $time, $max, $min)"; + $sql = "INSERT INTO talert_snmp (id_alert,al_field1,al_field2,al_field3,description,alert_type,agent,custom_oid,oid,time_threshold,max_alerts,min_alerts) VALUES ($alert_id,'$field1','$field2','$field3','$description', $alert_type, '$agent', '$custom', '$oid', $time, $max, $min)"; } else { $sql = "UPDATE talert_snmp set id_alert= $alert_id, al_field1 = '$field1', al_field2 = '$field2', al_field3 = '$field3', description = '$description', alert_type = $alert_type, agent = '$agent', custom_oid = '$custom', oid = '$oid', time_threshold = $time, max_alerts = '$max', min_alerts = '$min' WHERE id_as = $id_as"; } @@ -112,7 +112,7 @@ if (give_acl($id_user, 0, "LW")==1) { echo ''; // if known, if add will be undetermined (0). echo '

'.$lang_label["create_alert"]." ".$lang_label["help"]."

"; echo ''; - echo ''; // Update or Add button if ($alert_update != 0) { @@ -207,8 +207,16 @@ if (give_acl($id_user, 0, "LW")==1) { echo '
'; + echo '
'; // Alert echo '
'.$lang_label["alert"].'"; // Alert type - echo '
'.$lang_label["alert_type"]; - echo '
'.$lang_label["alert_type"]; + echo ''; } elseif ($alert_type == 1) { @@ -142,32 +142,32 @@ if (give_acl($id_user, 0, "LW")==1) { echo ''; // OID - echo '
'.$lang_label["OID"]; - echo ''; + echo '
'.$lang_label["OID"]; + echo ''; // OID Custom echo '
'.$lang_label["customvalue"]; echo ''; // SNMP Agent - echo '
'.$lang_label["SNMP_agent"]." IP"; - echo ''; + echo '
'.$lang_label["SNMP_agent"]." IP"; + echo ''; // Alert fields echo '
'.$lang_label["field1"]; echo ''; - echo '
'.$lang_label["field2"]; - echo ''; + echo '
'.$lang_label["field2"]; + echo ''; echo '
'.$lang_label["field3"]; echo ''; // max & min alerts, time threshold - echo '
'.$lang_label["min_alerts"]; - echo ''; + echo '
'.$lang_label["min_alerts"]; + echo ''; echo '
'.$lang_label["max_alerts"]; echo ''; - echo '
'.$lang_label["time_threshold"]; - echo ''; + echo '
'.$lang_label["time_threshold"]; + echo ''; echo '
'.$lang_label["times_fired"]; echo ''.$lang_label["last_fired"]; echo ''.$lang_label["action"]; - + $color=1; while ($row=mysql_fetch_array($result)){ + if ($color == 1){ + $tdcolor = "datos"; + $color = 0; + } + else { + $tdcolor = "datos2"; + $color = 1; + } $id_as = $row["id_as"]; $id_alert = $row["id_alert"]; $nombre_alerta = dame_nombre_alerta($id_alert); @@ -226,9 +234,9 @@ if (give_acl($id_user, 0, "LW")==1) { $max_alerts = $row["max_alerts"]; $min_alerts = $row["min_alerts"]; - echo "
"; + echo "
"; echo $nombre_alerta; - echo ""; + echo ""; if ($alert_type == 0) { $tipo_alerta = $lang_label["OID"]; } elseif ($alert_type == 1) { @@ -239,21 +247,21 @@ if (give_acl($id_user, 0, "LW")==1) { $tipo_alerta = "N/A"; } echo $tipo_alerta; - echo ""; + echo ""; if ($alert_type == 2) { echo $agent; } else { echo "N/A"; } - echo ""; + echo ""; if ($alert_type == 0) { echo $oid; } else { echo "N/A"; } - echo ""; + echo ""; if ($alert_type == 1) { echo $custom_oid; } else { @@ -261,17 +269,17 @@ if (give_acl($id_user, 0, "LW")==1) { } - echo ""; + echo ""; echo $description; - echo ""; + echo ""; echo $times_fired; - echo ""; + echo ""; if ($last_fired != "2005-01-01 00:00:00") echo $last_fired; else echo "N/A"; - echo ""; + echo ""; echo "".$lang_label["delete"]."   "; echo "".$lang_label["update"].""; } diff --git a/pandora_console/pandora_migrate_1.2.txt b/pandora_console/pandora_migrate_1.2.txt index f008a292c2..1102a17a48 100644 --- a/pandora_console/pandora_migrate_1.2.txt +++ b/pandora_console/pandora_migrate_1.2.txt @@ -42,4 +42,4 @@ Simply backup your Pandora Console and Pandora Server install and proceed as if Final step ---------- -Start your new Pandora components. Start your new Pandora components. Enter the WEB console and check that a new "server" has been created. Please, edit each agent you have and assign this new server for each agent. This process could be automated using SQL, and you only need to do once. +Start your new Pandora components. Start your new Pandora components. Enter the WEB console and check that a new "server" has been created. Please, edit each agent you have and assign this new server for each agent. This process could be automated using SQL, and you only need to do once. \ No newline at end of file