2007-04-02 Raul Mateos <raulofpandora@gmail.com>

* images/ok.gif: Deleted
	* images/cross.png, go.png, ok.png, upd.png: Added new images
	* include/styles/pandora.css, tip.css, op.css: Updated. Deleted some
	old styles, not all.
	* include/languages/language_en.php, language_es_es.php: Added text
	for no recon task.
	* godmode/*.php, operation/*.php, help/*.php: Changed some icons, 
	updated several buttons with new icons.

git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@410 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
raulmateos 2007-04-02 17:17:27 +00:00
parent 5805ac3d8e
commit ea1a814c40
44 changed files with 192 additions and 162 deletions

View File

@ -1,3 +1,18 @@
2007-04-02 Raul Mateos <raulofpandora@gmail.com>
* images/ok.gif: Deleted
* images/cross.png, go.png, ok.png, upd.png: Added new images
* include/styles/pandora.css, tip.css, op.css: Updated. Deleted some
old styles, not all.
* include/languages/language_en.php, language_es_es.php: Added text
for no recon task.
* godmode/*.php, operation/*.php, help/*.php: Changed some icons,
updated several buttons with new icons.
2007-04-01 Raul Mateos <raulofpandora@gmail.com>
* pandoradb.sql, pandoradb_data.sql: Removed comments that

View File

@ -73,7 +73,7 @@ $result=mysql_query($sql1);
$string = $string."<a href='index.php?sec=gagente&
sec2=godmode/agentes/configurar_agente&
id_agente=".$id_agente."&delete_alert=".$row3["id_aam"]."'>
<img src='images/cancel.gif' border=0 alt='".$lang_label["delete"]."'></a> &nbsp; ";
<img src='images/cross.png' border=0 alt='".$lang_label["delete"]."'></a> &nbsp; ";
$string = $string."<a href='index.php?sec=gagente&
sec2=godmode/agentes/configurar_agente&
id_agente=".$id_agente."&update_alert=".$row3["id_aam"]."#alerts'>

View File

@ -189,25 +189,25 @@ if (mysql_num_rows($result)){
borrar_agente=".$row["id_agente"]."'
onClick='if (!confirm(\' ".$lang_label["are_you_sure"]."\'))
return false;'>
<img border='0' src='images/cancel.gif'></a></td>";
<img border='0' src='images/cross.png'></a></td>";
}
}
echo "<tr><td colspan='5'><div class='raya'></div></td></tr>";
echo "<tr><td align='right' colspan='5'>";
echo "<form method='post' action='index.php?sec=gagente&
sec2=godmode/agentes/configurar_agente&create_agent=1'>";
echo "<input type='submit' class='sub' name='crt'
echo "<input type='submit' class='sub next' name='crt'
value='".$lang_label["create_agent"]."'>";
echo "</form></td></tr>";
echo "</table>";
} else {
// If no data... let's show a beautiful button to create agent
// This is a piece of crap because we're duplicanting code above
// of this, don't do again, Raul, please.
// of this, don't do again.
echo "<div class='nf'>".$lang_label["no_agent_def"]."</div>";
echo "<form method='post' action='index.php?sec=gagente&
sec2=godmode/agentes/configurar_agente&creacion=1'>";
echo "<input type='submit' class='sub' name='crt'
echo "<input type='submit' class='sub next' name='crt'
value='".$lang_label["create_agent"]."'>";
echo "</form>";
}

View File

@ -229,7 +229,7 @@ if ($row=mysql_num_rows($result)){
sec2=godmode/agentes/configurar_agente&
id_agente=".$id_agente."&
delete_module=".$row["id_agente_modulo"]."'>
<img src='images/cancel.gif' border=0 alt='".$lang_label["delete"]."'>
<img src='images/cross.png' border=0 alt='".$lang_label["delete"]."'>
</b></a> &nbsp; ";
echo "<a href='index.php?sec=gagente&
sec2=godmode/agentes/configurar_agente&

View File

@ -2,15 +2,14 @@
// Pandora - The Free Monitoring System
// This code is protected by GPL license.
// Este codigo esta protegido por la licencia GPL.
// Sancho Lerena <slerena@gmail.com>, 2003-2006
// Raul Mateos <raulofpandora@gmail.com>, 2005-2006
// Sancho Lerena <slerena@gmail.com>, 2003-2007
// Raul Mateos <raulofpandora@gmail.com>, 2005-2007
// Load global vars
require("include/config.php");
//require("include/functions.php");
//require("include/functions_db.php");
if ( (give_acl($id_user, 0, "LM")==1)){
if (isset($_POST["update_alerta"])){ // se ha modificado algun parametro de agente
if (isset($_POST["update_alerta"])){ // if modified any parameter
$id_alerta = entrada_limpia($_POST["id_alerta"]);
$nombre = entrada_limpia($_POST["nombre"]);
$comando = entrada_limpia($_POST["comando"]);
@ -23,8 +22,7 @@ if ( (give_acl($id_user, 0, "LM")==1)){
echo "<h3 class='suc'>".$lang_label["update_alert_ok"]."</h3>";
}
if (isset($_POST["crear_alerta"])){ // se ha modificado algun parametro de agente
// $id_alerta = entrada_limpia($_POST["id_alerta"]);
if (isset($_POST["crear_alerta"])){ // if create alert
$nombre = entrada_limpia($_POST["nombre"]);
$comando = entrada_limpia($_POST["comando"]);
$descripcion= entrada_limpia($_POST["descripcion"]);
@ -36,9 +34,8 @@ if ( (give_acl($id_user, 0, "LM")==1)){
echo "<h3 class='suc'>".$lang_label["create_alert_ok"]."</h3>";
}
if (isset($_GET["borrar_alerta"])){ // se ha modificado algun parametro
if (isset($_GET["borrar_alerta"])){ // if delete alert
$id_alerta = entrada_limpia($_GET["borrar_alerta"]);
// Primero borramos de la tabla de tagente_modulo
$sql_delete= "DELETE FROM talerta WHERE id_alerta = ".$id_alerta;
$result=mysql_query($sql_delete);
if (! $result)
@ -70,17 +67,17 @@ if ( (give_acl($id_user, 0, "LM")==1)){
}
echo "<tr><td class='$tdcolor'><b><a href='index.php?sec=galertas&sec2=godmode/alertas/configurar_alerta&id_alerta=".$row["id_alerta"]."'>".$row["nombre"]."</a></b>";
echo "<td class='$tdcolor'>".$row["descripcion"];
echo "<td class='$tdcolor' align='center'><a href='index.php?sec=gagente&sec2=godmode/alertas/modificar_alerta&borrar_alerta=".$row["id_alerta"]."' onClick='if (!confirm(\' ".$lang_label["are_you_sure"]."\')) return false;'><img border='0' src='images/cancel.gif'></a>";
echo "<td class='$tdcolor' align='center'><a href='index.php?sec=gagente&sec2=godmode/alertas/modificar_alerta&borrar_alerta=".$row["id_alerta"]."' onClick='if (!confirm(\' ".$lang_label["are_you_sure"]."\')) return false;'><img border='0' src='images/cross.png'></a>";
}
echo "<tr><td colspan='3'><div class='raya'></div></td></tr>";
echo "<tr><td align='right' colspan='3'>";
echo "<form method=post action='index.php?sec=galertas&sec2=godmode/alertas/configurar_alerta&creacion=1'>";
echo "<input type='submit' class='sub' name='crt' value='".$lang_label["create_alert"]."'>";
echo "<input type='submit' class='sub next' name='crt' value='".$lang_label["create_alert"]."'>";
echo "</form>";
echo "</td></tr></table>";
} // Fin pagina
} // End page
else {
audit_db($id_user,$REMOTE_ADDR, "ACL Violation","Trying to access Alert Management");
require ("general/noaccess.php");

View File

@ -113,7 +113,7 @@ if (comprueba_login() == 0)
borrar_grupo=".$row["id_grupo"]."'
onClick='if (!confirm(\' ".$lang_label["are_you_sure"]."\'))
return false;'>
<img border='0' src='images/cancel.gif'></a>
<img border='0' src='images/cross.png'></a>
</td>
</tr>";
}
@ -122,7 +122,7 @@ if (comprueba_login() == 0)
echo "<tr><td colspan='4' align='right'>";
echo "<form method=post action='index.php?sec=gagente&
sec2=godmode/grupos/configurar_grupo&creacion_grupo=1'>";
echo "<input type='submit' class='sub' name='crt' value='".$lang_label["create_group"]."'>";
echo "<input type='submit' class='sub next' name='crt' value='".$lang_label["create_group"]."'>";
echo "</form></td></tr></table>";
} // Fin pagina

View File

@ -105,7 +105,7 @@ while ($row=mysql_fetch_array($result)){
<a href='index.php?sec=gmodules&sec2=godmode/modules/manage_nc_groups&delete=1&id_sg=".$row["id_sg"]."'
onClick='if (!confirm(\' ".$lang_label["are_you_sure"]."\'))
return false;'>
<img border='0' src='images/cancel.gif'></a>
<img border='0' src='images/cross.png'></a>
</td>
</tr>";

View File

@ -240,7 +240,7 @@ if ( $row = mysql_num_rows ($result)){
echo $module_max." / ".$module_min;
echo "<td class='$tdcolor' align='center'>";
echo "<a href='index.php?sec=gmodules&sec2=godmode/modules/manage_network_components&delete=1&id_nc=".$row["id_nc"]."'>";
echo "<img src='images/cancel.gif' border=0 alt='".$lang_label["delete"]."'></A>";
echo "<img src='images/cross.png' border=0 alt='".$lang_label["delete"]."'></A>";
}
echo "<tr><td colspan='7'><div class='raya'></div></td></tr>";
echo "<tr><td colspan='7' align='right'>";

View File

@ -71,7 +71,7 @@ while ($row=mysql_fetch_array($result)){
<a href='index.php?sec=gmodules&sec2=godmode/modules/manage_network_templates&delete=".$row["id_np"]."'
onClick='if (!confirm(\' ".$lang_label["are_you_sure"]."\'))
return false;'>
<img border='0' src='images/cancel.gif'></a>
<img border='0' src='images/cross.png'></a>
</td>
</tr>";

View File

@ -161,7 +161,7 @@ if ($id_np != -1){
}
echo "<td class='$tdcolor'>".substr($descripcion,0,30)."</td>";
echo "<td class='$tdcolor'>".give_network_component_group_name($id_group)."</td>";
echo "<td class='$tdcolor'><a href='index.php?sec=gmodules&sec2=godmode/modules/manage_network_templates_form&id_np=$id_np&delete_module=$id_npc'><img src='images/cancel.gif'></a></td>";
echo "<td class='$tdcolor'><a href='index.php?sec=gmodules&sec2=godmode/modules/manage_network_templates_form&id_np=$id_np&delete_module=$id_npc'><img src='images/cross.png'></a></td>";
}
}
echo "</table>";

View File

@ -101,7 +101,7 @@ if (give_acl($id_user, 0, "PM")==1) {
echo "<tr><td colspan='4' align='right'>";
echo "<form method=post action='index.php?sec=gmodules&
sec2=godmode/modules/manage_modules&create=1'>";
echo "<input type='submit' class='sub' name='crt' value='".$lang_label["create_module"]."'>";
echo "<input type='submit' class='sub next' name='crt' value='".$lang_label["create_module"]."'>";
echo "</form></td></tr></table>";
} // Fin pagina

View File

@ -2,8 +2,8 @@
// Pandora - The Free Monitoring System
// This code is protected by GPL license.
// Este codigo esta protegido por la licencia GPL.
// Sancho Lerena <slerena@gmail.com>, 2003-2006
// Raul Mateos <raulofpandora@gmail.com>, 2005-2006
// Sancho Lerena <slerena@gmail.com>, 2003-2007
// Raul Mateos <raulofpandora@gmail.com>, 2005-2007
// Global variables
require("include/config.php");
@ -183,18 +183,18 @@ echo "<tr><td colspan='3' align='right'><input name='uptbutton' type='submit' cl
$query_del1="SELECT * FROM tperfil";
$resq1=mysql_query($query_del1);
echo "<tr>";
echo "<th class='w180'><font size=1>".$lang_label["profiles"];
echo "<th class='w40'><font size=1>IR<a href='#' class='tip2'>&nbsp;<span>".$help_label["IR"]."</span></a>";
echo "<th class='w40'><font size=1>IW<a href='#' class='tip2'>&nbsp;<span>".$help_label["IW"]."</span></a>";
echo "<th class='w40'><font size=1>IM<a href='#' class='tip2'>&nbsp;<span>".$help_label["IM"]."</span></a>";
echo "<th class='w40'><font size=1>AR<a href='#' class='tip2'>&nbsp;<span>".$help_label["AR"]."</span></a>";
echo "<th class='w40'><font size=1>AW<a href='#' class='tip2'>&nbsp;<span>".$help_label["AW"]."</span></a>";
echo "<th class='w40'><font size=1>LW<a href='#' class='tip2'>&nbsp;<span>".$help_label["LW"]."</span></a>";
echo "<th class='w40'><font size=1>UM<a href='#' class='tip2'>&nbsp;<span>".$help_label["UM"]."</span></a>";
echo "<th class='w40'><font size=1>DM<a href='#' class='tip2'>&nbsp;<span>".$help_label["DM"]."</span></a>";
echo "<th class='w40'><font size=1>LM<a href='#' class='tip2'>&nbsp;<span>".$help_label["LM"]."</span></a>";
echo "<th class='w40'><font size=1>PM<a href='#' class='tip2'>&nbsp;<span>".$help_label["PM"]."</span></a>";
echo "<th class='w30'>".$lang_label["delete"]."</th></tr>";
echo "<th width='180px'><font size=1>".$lang_label["profiles"];
echo "<th width='40px'><font size=1>IR<a href='#' class='tipp'>&nbsp;<span>".$help_label["IR"]."</span></a>";
echo "<th width='40px'><font size=1>IW<a href='#' class='tipp'>&nbsp;<span>".$help_label["IW"]."</span></a>";
echo "<th width='40px'><font size=1>IM<a href='#' class='tipp'>&nbsp;<span>".$help_label["IM"]."</span></a>";
echo "<th width='40px'><font size=1>AR<a href='#' class='tipp'>&nbsp;<span>".$help_label["AR"]."</span></a>";
echo "<th width='40px'><font size=1>AW<a href='#' class='tipp'>&nbsp;<span>".$help_label["AW"]."</span></a>";
echo "<th width='40px'><font size=1>LW<a href='#' class='tipp'>&nbsp;<span>".$help_label["LW"]."</span></a>";
echo "<th width='40px'><font size=1>UM<a href='#' class='tipp'>&nbsp;<span>".$help_label["UM"]."</span></a>";
echo "<th width='40px'><font size=1>DM<a href='#' class='tipp'>&nbsp;<span>".$help_label["DM"]."</span></a>";
echo "<th width='40px'><font size=1>LM<a href='#' class='tipp'>&nbsp;<span>".$help_label["LM"]."</span></a>";
echo "<th width='40px'><font size=1>PM<a href='#' class='tipp'>&nbsp;<span>".$help_label["PM"]."</span></a>";
echo "<th width='40px'>".$lang_label["delete"]."</th></tr>";
while ($rowdup=mysql_fetch_array($resq1)){
$id_perfil = $rowdup["id_perfil"];
$nombre=$rowdup["name"];
@ -219,42 +219,42 @@ echo "<tr><td colspan='3' align='right'><input name='uptbutton' type='submit' cl
echo "<td class='$tdcolor'><a href='index.php?sec=gperfiles&amp;sec2=godmode/perfiles/lista_perfiles&amp;edit_profile=".$id_perfil."'><b>".$nombre."</b></a>";
echo "<td class='$tdcolor'>";
if ($incident_view == 1) echo "<img src='images/ok.gif' border=0>";
if ($incident_view == 1) echo "<img src='images/ok.png' border=0>";
echo "<td class='$tdcolor'>";
if ($incident_edit == 1) echo "<img src='images/ok.gif' border=0>";
if ($incident_edit == 1) echo "<img src='images/ok.png' border=0>";
echo "<td class='$tdcolor'>";
if ($incident_management == 1) echo "<img src='images/ok.gif' border=0>";
if ($incident_management == 1) echo "<img src='images/ok.png' border=0>";
echo "<td class='$tdcolor'>";
if ($agent_view == 1) echo "<img src='images/ok.gif' border=0>";
if ($agent_view == 1) echo "<img src='images/ok.png' border=0>";
echo "<td class='$tdcolor'>";
if ($agent_edit == 1) echo "<img src='images/ok.gif' border=0>";
if ($agent_edit == 1) echo "<img src='images/ok.png' border=0>";
echo "<td class='$tdcolor'>";
if ($alert_edit == 1) echo "<img src='images/ok.gif' border=0>";
if ($alert_edit == 1) echo "<img src='images/ok.png' border=0>";
echo "<td class='$tdcolor'>";
if ($user_management == 1) echo "<img src='images/ok.gif' border=0>";
if ($user_management == 1) echo "<img src='images/ok.png' border=0>";
echo "<td class='$tdcolor'>";
if ($db_management == 1) echo "<img src='images/ok.gif' border=0>";
if ($db_management == 1) echo "<img src='images/ok.png' border=0>";
echo "<td class='$tdcolor'>";
if ($alert_management == 1) echo "<img src='images/ok.gif' border=0>";
if ($alert_management == 1) echo "<img src='images/ok.png' border=0>";
echo "<td class='$tdcolor'>";
if ($pandora_management == 1) echo "<img src='images/ok.gif' border=0>";
echo "<td class='$tdcolor' align='center'><a href='index.php?sec=gagente&sec2=godmode/perfiles/lista_perfiles&delete_profile=".$id_perfil."' onClick='if (!confirm(\' ".$lang_label["are_you_sure"]."\')) return false;'><img border='0' src='images/cancel.gif'></a></td></tr>";
if ($pandora_management == 1) echo "<img src='images/ok.png' border=0>";
echo "<td class='$tdcolor' align='center'><a href='index.php?sec=gagente&sec2=godmode/perfiles/lista_perfiles&delete_profile=".$id_perfil."' onClick='if (!confirm(\' ".$lang_label["are_you_sure"]."\')) return false;'><img border='0' src='images/cross.png'></a></td></tr>";
}
echo "</div></td></tr>";
echo "<tr><td colspan='12'><div class='raya'></div></td></tr>";
echo "<tr><td colspan='12' align='right'>";
echo "<form method=post action='index.php?sec=gperfiles&sec2=godmode/perfiles/lista_perfiles&new_profile=1'>";
echo "<input type='submit' class='sub' name='crt' value='".$lang_label["create_profile"]."'>";
echo "<input type='submit' class='sub next' name='crt' value='".$lang_label["create_profile"]."'>";
echo "</form></table>";
}
}

View File

@ -91,18 +91,19 @@ echo "<h2>".$lang_label["manage_recontask"]."</h2>";
$query="SELECT * FROM trecon_task";
$result=mysql_query($query);
$color=1;
echo "<table cellpadding='4' cellspacing='4' witdh='750'>";
echo "<tr><th class='datos'>".$lang_label["name"];
echo "<th class='datos'>".$lang_label['type'];
echo "<th class='datos'>".$lang_label['network'];
echo "<th class='datos'>".$lang_label['network_profile'];
echo "<th class='datos'>".$lang_label['group'];
echo "<th class='datos'>".$lang_label['incident'];
echo "<th class='datos'>".$lang_label['interval'];
echo "<th class='datos'>".$lang_label['recon_server'];
echo "<th class='datos'>".$lang_label['network_server'];
echo "<th class='datos'>X";
if (mysql_num_rows($result)){
echo "<table cellpadding='4' cellspacing='4' witdh='750'>";
echo "<tr><th class='datos'>".$lang_label["name"];
echo "<th class='datos'>".$lang_label['type'];
echo "<th class='datos'>".$lang_label['network'];
echo "<th class='datos'>".$lang_label['network_profile'];
echo "<th class='datos'>".$lang_label['group'];
echo "<th class='datos'>".$lang_label['incident'];
echo "<th class='datos'>".$lang_label['interval'];
echo "<th class='datos'>".$lang_label['recon_server'];
echo "<th class='datos'>".$lang_label['network_server'];
echo "<th class='datos'>X";
}
while ($row=mysql_fetch_array($result)){
$id_rt = $row["id_rt"];
$name = $row["name"];
@ -160,14 +161,18 @@ while ($row=mysql_fetch_array($result)){
echo "<a href='index.php?sec=gserver&sec2=godmode/servers/modificar_server&server=$id_network_server_assigned'>".give_server_name($id_network_server_assigned)."</a>";;
// ACTION
echo "<td class='".$tdcolor."' align='center'><a href='index.php?sec=gservers&sec2=godmode/servers/manage_recontask&delete=$id_rt'><img src='images/cancel.gif' border='0'>";
echo "<td class='".$tdcolor."' align='center'><a href='index.php?sec=gservers&sec2=godmode/servers/manage_recontask&delete=$id_rt'><img src='images/cross.png' border='0'>";
}
echo '<tr><td colspan="12"><div class="raya"></div></td></tr>';
if (mysql_num_rows($result)){
echo '<tr><td colspan="12"><div class="raya"></div></td></tr>';
} else {
echo "<div class='nf'>".$lang_label["no_rtask"]."</div>";
echo "<table>";
}
echo "<tr><td align='right' colspan='11'>";
echo "<form method='post' action='index.php?sec=gservers&sec2=godmode/servers/manage_recontask_form&create'>";
echo "<input type='submit' class='sub' name='crt'
echo "<input type='submit' class='sub next' name='crt'
value='".$lang_label["create"]."'>";
echo "</form></table>";

View File

@ -159,7 +159,7 @@ if (comprueba_login() == 0) {
}
echo "<td class='".$tdcolor."f9' align='middle'>".substr($keepalive,0,25);
echo "<td class='".$tdcolor."f9' align='middle'>".substr($laststart,0,25);
echo "<td class='".$tdcolor."f9' align='middle'><a href='index.php?sec=gserver&sec2=godmode/servers/modificar_server&server_del=".$id_server."&delete'><img src='images/cancel.gif' border='0'>";
echo "<td class='".$tdcolor."f9' align='middle'><a href='index.php?sec=gserver&sec2=godmode/servers/modificar_server&server_del=".$id_server."&delete'><img src='images/cross.png' border='0'>";
}
echo '<tr><td colspan="12"><div class="raya"></div></td></tr></table>';
}

View File

@ -2,8 +2,8 @@
// Pandora - The Free Monitoring System
// This code is protected by GPL license.
// Este codigo esta protegido por la licencia GPL.
// Sancho Lerena <slerena@gmail.com>, 2003-2006
// Raul Mateos <raulofpandora@gmail.com>, 2005-2006
// Sancho Lerena <slerena@gmail.com>, 2003-2007
// Raul Mateos <raulofpandora@gmail.com>, 2005-2007
// Load global vars
if (comprueba_login() == 0)
@ -23,7 +23,7 @@ if (comprueba_login() == 0)
}
}
if (isset($_POST["update"])){ // se ha modificado algun parameter
if (isset($_POST["update"])){ // if update
$id_link = entrada_limpia($_POST["id_link"]);
$name = entrada_limpia($_POST["name"]);
$link = entrada_limpia($_POST["link"]);
@ -35,7 +35,7 @@ if (comprueba_login() == 0)
echo "<h3 class='suc'>".$lang_label["modify_link_ok"]."</h3>";
}
if (isset($_GET["borrar"])){ // se ha modificado algun parametro
if (isset($_GET["borrar"])){ // if delete
$id_link = entrada_limpia($_GET["borrar"]);
$sql_delete= "DELETE FROM tlink WHERE id_link = ".$id_link;
$result=mysql_query($sql_delete);
@ -103,12 +103,12 @@ if (comprueba_login() == 0)
$color = 1;
}
echo "<tr><td class='$tdcolor'><b><a href='index.php?sec=gsetup&sec2=godmode/setup/links&form_edit=1&id_link=".$row["id_link"]."'>".$row["name"]."</a></b>";
echo '<td class="'.$tdcolor.'" align="center"><a href="index.php?sec=gsetup&sec2=godmode/setup/links&id_link='.$row["id_link"].'&borrar='.$row["id_link"].'" onClick="if (!confirm(\' '.$lang_label["are_you_sure"].'\')) return false;"><img border=0 src="images/cancel.gif"></a>';
echo '<td class="'.$tdcolor.'" align="center"><a href="index.php?sec=gsetup&sec2=godmode/setup/links&id_link='.$row["id_link"].'&borrar='.$row["id_link"].'" onClick="if (!confirm(\' '.$lang_label["are_you_sure"].'\')) return false;"><img border=0 src="images/cross.png"></a>';
}
echo "<tr><td colspan='2'><div class='raya'></div></td>";
echo "<tr><td colspan='2' align='right'>";
echo "<form method='post' action='index.php?sec=gsetup&sec2=godmode/setup/links&form_add=1'>";
echo "<input type='submit' class='sub' name='form_add' value='".$lang_label["add"]."'>";
echo "<input type='submit' class='sub next' name='form_add' value='".$lang_label["add"]."'>";
echo "</form></table>";
} // Fin bloque else
} else {

View File

@ -54,7 +54,7 @@ if (comprueba_login() == 0)
echo "<form name='setup' method='POST' action='index.php?sec=gsetup&amp;sec2=godmode/setup/setup&update=1'>";
echo '<table width="500" cellpadding="3" cellspacing="3">';
echo '<tr><td class="lb" rowspan="9" width="5"></td><td class="datos">'.$lang_label["language_code"];
echo '<td class="datos"><select name="language_code" onChange="javascript:this.form.submit();" class="w180">';
echo '<td class="datos"><select name="language_code" onChange="javascript:this.form.submit();" width="180px">';
$sql="SELECT * FROM tlanguage";
$result=mysql_query($sql);
@ -124,7 +124,7 @@ if (comprueba_login() == 0)
echo "<tr><td colspan='3'><div class='raya'></div></td></tr>";
echo "<tr><td colspan='3' align='right'>";
echo '<input type="submit" class="sub" value="'.$lang_label["update"].'">';
echo '<input type="submit" class="sub upd" value="'.$lang_label["update"].'">';
echo "</table>";
}
else {

View File

@ -236,7 +236,7 @@ if (comprueba_login() == 0)
echo '<td class="'.$tdcolor.'">';
echo "<b style='margin-left:10px'>".dame_perfil($row["id_perfil"])."</b> / ";
echo "<b>".dame_grupo($row["id_grupo"])."</b>";
echo '<td class="'.$tdcolor.'t"><a href="index.php?sec=gusuarios&sec2=godmode/usuarios/configurar_usuarios&id_usuario_mio='.$id_usuario_mio.'&borrar_grupo='.$row["id_up"].' " onClick="if (!confirm(\' '.$lang_label["are_you_sure"].'\')) return false;"><img border=0 src="images/cancel.gif"></a><tr>';
echo '<td class="'.$tdcolor.'t"><a href="index.php?sec=gusuarios&sec2=godmode/usuarios/configurar_usuarios&id_usuario_mio='.$id_usuario_mio.'&borrar_grupo='.$row["id_up"].' " onClick="if (!confirm(\' '.$lang_label["are_you_sure"].'\')) return false;"><img border=0 src="images/cross.png"></a><tr>';
}
echo "<tr><td colspan='3'><div class='raya'></div></td></tr>";
}

View File

@ -2,16 +2,15 @@
// Pandora - The Free Monitoring System
// This code is protected by GPL license.
// Este codigo esta protegido por la licencia GPL.
// Sancho Lerena <slerena@gmail.com>, 2003-2006
// Raul Mateos <raulofpandora@gmail.com>, 2005-2006
// Sancho Lerena <slerena@gmail.com>, 2003-2007
// Raul Mateos <raulofpandora@gmail.com>, 2005-2007
// Load globar vars
require("include/config.php");
//require("include/functions.php");
//require("include/functions_db.php");
if (comprueba_login() == 0)
if (give_acl($id_user, 0, "UM")==1) {
if (isset($_GET["borrar_usuario"])){ // se ha modificado algun parametro de agente
if (isset($_GET["borrar_usuario"])){ // if delete user
$nombre= entrada_limpia($_GET["borrar_usuario"]);
// Delete user
// Delete cols from table tgrupo_usuario
@ -40,7 +39,7 @@ if (comprueba_login() == 0)
<?php
$query1="SELECT * FROM tusuario";
$resq1=mysql_query($query1);
// Inicializacion variables
// Init vars
$nombre = "";
$nivel = "";
$comentarios = "";
@ -82,13 +81,13 @@ while ($rowdup=mysql_fetch_array($resq1)){
echo "</span></a>";
echo "<td class='$tdcolor'>".$comentarios;
echo "<td class='$tdcolor' align='center'><a href='index.php?sec=gagente&sec2=godmode/usuarios/lista_usuarios&borrar_usuario=".$nombre."' onClick='if (!confirm(\' ".$lang_label["are_you_sure"]."\')) return false;'><img border='0' src='images/cancel.gif'></a>";
echo "<td class='$tdcolor' align='center'><a href='index.php?sec=gagente&sec2=godmode/usuarios/lista_usuarios&borrar_usuario=".$nombre."' onClick='if (!confirm(\' ".$lang_label["are_you_sure"]."\')) return false;'><img border='0' src='images/cross.png'></a>";
}
echo "<tr><td colspan='5'><div class='raya'></div></td></tr>";
echo "<tr><td colspan='5' align='right'>";
echo "<form method=post action='index.php?sec=gusuarios&sec2=godmode/usuarios/configurar_usuarios&alta=1'>";
echo "<input type='submit' class='sub' name='crt' value='".$lang_label["create_user"]."'>";
echo "</form></td></tr></table>";
echo "<input type='submit' class='sub next' name='crt' value='".$lang_label["create_user"]."'>";
echo "</form></td></tr></table>";
echo "</table>";

View File

@ -111,11 +111,11 @@ least, fill in the user ID, the password (twice) and Pandora's global profile.</
<p class="center"><img src="images/image004.png"></p>
<p>A user profile is deleted by clicking on the delete icon <img src="../../images/cancel.gif"> on the right hand side of the profile.</p>
<p>A user profile is deleted by clicking on the delete icon <img src="../../images/cross.png"> on the right hand side of the profile.</p>
<h2><a name="23">2.3. Deleting a user</a></h2>
<p>A user is deleted by clicking on the delete icon <img src="../../images/cancel.gif"> on the right hand side of the user. The list of users is accessed through the "Manage Users" option in the Administration menu.</p>
<p>A user is deleted by clicking on the delete icon <img src="../../images/cross.png"> on the right hand side of the user. The list of users is accessed through the "Manage Users" option in the Administration menu.</p>
<p class="center"><img src="images/image005.png"></p>

View File

@ -90,7 +90,7 @@ and can be accessed.</p>
A group is added by clicking "Create group" and assigning a name to it.</p>
<p>
A group is deleted by clicking the delete icon <img src="../../images/cancel.gif"> in the right hand side of each group.</p>
A group is deleted by clicking the delete icon <img src="../../images/cross.png"> in the right hand side of each group.</p>
<h2><a name="32">3.2. Adding an agent</a></h2>
@ -155,7 +155,7 @@ user views.</li>
<p>In this screen the modules can be:</p>
<ul>
<li>Deleted by clicking <img src="../../images/cancel.gif"></li>
<li>Deleted by clicking <img src="../../images/cross.png"></li>
<li>Edited by clicking <img src="../../images/config.gif"></li>
</ul>
@ -185,7 +185,7 @@ Operating System.</p>
<p class="center"><img src="images/image011.png"></p>
<p>An Alert is deleted by clicking on the delete icon <img src="../../images/cancel.gif"> placed on the right hand side of the Alert. A new customised Alert can be created clicking in "Create Alert".</p>
<p>An Alert is deleted by clicking on the delete icon <img src="../../images/cross.png"> placed on the right hand side of the Alert. A new customised Alert can be created clicking in "Create Alert".</p>
<p>The values "<code>_field1_</code>", "<code>_field2_</code>" and "<code>_field3_</code>" in the customised Alerts are used to build the command line that the machine where Pandora resides will execute if there were several servers, the one in Master mode.</p>

View File

@ -68,8 +68,8 @@ if the problem can be ignored or it's been already solved.</p>
<p><b>User ID: </b>User that validated the event.</p>
<p><b>Timestamp:</b> Date and time when the event was raised or validated- if it has been validated.</p>
<p><b>Action:</b> Action that can be executed over the event.</p>
<p class="ml25"><img src="../../images/ok.gif"> This icon will validate the event, disappearing the icon</p>
<p class="ml25"><img src="../../images/cancel.gif"> This icon will delete the event</p>
<p class="ml25"><img src="../../images/ok.png"> This icon will validate the event, disappearing the icon</p>
<p class="ml25"><img src="../../images/cross.png"> This icon will delete the event</p>
<p>The events can be also validated or deleted in groups by selecting the tick boxes
on the last column of the event, and pressing "Validate" or "Delete" at the

View File

@ -95,7 +95,7 @@ in the Operation menu.</p>
servers.</p>
<p>
It is possible delete a server using the icon
<img src="../../images/cancel.gif">
<img src="../../images/cross.png">
</p>
<p>
It is possible to change the server properties using the icon

View File

@ -104,12 +104,12 @@ grupos a los que tiene acceso una vez se ha creado el usuario, y actualizar su c
<p class="center"><img src="images/image004.png"></p>
<p>Para borrar un perfil de un usuario bastar&aacute; con pulsar en el icono <img src="../../images/cancel.gif">
<p>Para borrar un perfil de un usuario bastar&aacute; con pulsar en el icono <img src="../../images/cross.png">
correspondiente que hay a la derecha de cada perfil.</p>
<h2><a name="23">2.3. Borrar un usuario</a></h2>
<p>Para borrar un usuario bastar&aacute; en pulsar en el icono <img src="../../images/cancel.gif">
<p>Para borrar un usuario bastar&aacute; en pulsar en el icono <img src="../../images/cross.png">
correspondiente que hay a la derecha del usuario en la lista de usuarios accesible desde «Gesti&oacute;n de usuarios», en el men&uacute; de administraci&oacute;n.</p>
<p class="center"><img src="images/image005.png"></p>

View File

@ -87,7 +87,7 @@ de administraci&oacute;n.</p>
<p>Se pueden crear todos los grupos que se necesiten pulsando en «Crear grupo» y asign&aacute;ndole un nombre.</p>
<p>Para borrar un grupo se pulsa en
el icono <img src="../../images/cancel.gif"> que cada grupo tienen a su derecha.</p>
el icono <img src="../../images/cross.png"> que cada grupo tienen a su derecha.</p>
<h2><a name="32">3.2. A&ntilde;adir un agente</a></h2>
@ -171,7 +171,7 @@ Cualquier valor por debajo del m&iacute;nimo definido se interpretar&aacute; com
<p>Desde aqu&iacute; se puede:</p>
<ul>
<li>borrar un m&oacute;dulo pinchando en el icono <img src="../../images/cancel.gif"></li>
<li>borrar un m&oacute;dulo pinchando en el icono <img src="../../images/cross.png"></li>
<li>o editarlo, pinchando en el icono <img src="../../images/config.gif"></li>
</ul>
@ -203,7 +203,7 @@ Operativo de Pandora.</p>
<p class="center"><img src="images/image011.png"></p>
<p>Para borrar una alerta pulsamos en <img src="../../images/cancel.gif"> que se encuentra a la derecha de la alerta que se quiere borrar.</p>
<p>Para borrar una alerta pulsamos en <img src="../../images/cross.png"> que se encuentra a la derecha de la alerta que se quiere borrar.</p>
<p>Para crear una alerta personalizada se accede a «Gesti&oacute;n de alertas» &gt; «Crear alertas», en el men&uacute; de administraci&oacute;n</p>

View File

@ -64,8 +64,8 @@ solucionado.</p>
<p><b>ID de usuario:</b> Usuario que ha validado el evento.</p>
<p><b>Fecha y hora:</b> Fecha y hora de aparici&oacute;n del evento o de validaci&oacute;n en caso de estar validado.</p>
<p><b>Acci&oacute;n:</b> Acci&oacute;n que se puede ejecutar sobre el evento:</p>
<p class="ml25"><img src="../../images/ok.gif"> Pinchando en este icono se validar&aacute; el evento y desaparecer&aacute; el icono</p>
<p class="ml25"><img src="../../images/cancel.gif"> Pinchando en este icono se borrar&aacute; (y desaparecer&aacute;) el evento</p>
<p class="ml25"><img src="../../images/ok.png"> Pinchando en este icono se validar&aacute; el evento y desaparecer&aacute; el icono</p>
<p class="ml25"><img src="../../images/cross.png"> Pinchando en este icono se borrar&aacute; (y desaparecer&aacute;) el evento</p>
<p>Los eventos tambi&eacute;n se pueden validar y eliminar, marc&aacute;ndolos en la columna de la derecha y pinchando en «Validar» o «Borrar».</p>

View File

@ -92,7 +92,7 @@ acceder a la lista de los Servidores Pandora.</p>
<p>Desde «Gesti&oacute; en el men&uacute; de administraci&oacute;n se puede acceder a la lista de los Servidores Pandora que est&aacute;n configurados y administrarlos.</p>
<p>
Para borrar un servidor utilizamos el icono
<img src="../../images/cancel.gif">
<img src="../../images/cross.png">
</p>
<p>
Para modificar un servidor utilizamos el icono

Binary file not shown.

After

Width:  |  Height:  |  Size: 655 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 410 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 795 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 781 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 600 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 692 B

After

Width:  |  Height:  |  Size: 556 B

View File

@ -740,6 +740,9 @@ $lang_label["Data"]="Data";
$lang_label["Main"]="Main";
$lang_label["version"]="Version";
//2 Apr 2007
$lang_label["no_rtask"]="There are no recon task configured";
global $lang_label;
global $help_label;

View File

@ -659,6 +659,9 @@ $lang_label["agent_general_reporting"]="Agent overview";
$lang_label["active_console"]="Consola activa";
$lang_label["parent"]="Padre";
//2 Apr 2007
$lang_label["no_rtask"]="No hay ninguna tarea de reconocimiento configurada";
global $lang_label;
global $help_label;
?>

View File

@ -39,17 +39,17 @@ div#op7s>ul, div#op8s>ul, div#op9s>ul {
}
/* users */
#op5 li, #op5 li:hover, #op5s li {
background: url(../../images/group.png) no-repeat 4px 3px;
background: url(../../images/group.png) no-repeat 4px 4px;
}
#op6 li, #op6 li:hover, #op6s li {
background: url(../../images/computer_error.png) no-repeat 4px 5px;
background: url(../../images/computer_error.png) no-repeat 4px 4px;
}
/* trap console */
#op7 li, #op7 li:hover, #op7s li {
background: url(../../images/email.png) no-repeat 4px 3px;
background: url(../../images/email.png) no-repeat 4px 4px;
}
#op8 li, #op8 li:hover, #op8s li {
background: url(../../images/chart_pie.png) no-repeat 4px 3px;
background: url(../../images/chart_pie.png) no-repeat 4px 4px;
}
#op9 li, #op9 li:hover, #op9s li {
background: url(../../images/op9.gif) no-repeat 4px 3px;

View File

@ -193,6 +193,14 @@ input.sub {
-moz-border-radius: 5%;
font-size: 11px;
}
input.next {
padding-right: 15px;
background: #e5e5e5 url(../../images/go.png) no-repeat right 2px;
}
input.upd {
padding-right: 15px;
background: #e5e5e5 url(../../images/upd.png) no-repeat right 2px;
}
table, img {
border: 0px;
}
@ -215,7 +223,7 @@ td.lb, td.lb_view {
td.datos, td.datost, td.datosb, td.datos_id, td.datosf9,
td.datosf9i, td.datos_jus, td.w90datos, td.w135datos {
/* background-color: #f5f5f5; */
background-color: #F9F9F9;
background-color: #f9f9f9;
}
td.datos2, td.datos2t, td.datos2b, td.datos2_id, td.datos2f9,
@ -332,9 +340,6 @@ td.datosf9i, td.datos2f9i {
.w30 {
width: 30px;
}
.w40 {
width: 40px;
}
.w45 {
width: 45px;
}
@ -374,9 +379,6 @@ td.datosf9i, td.datos2f9i {
.bot, .titb, td.datosb {
vertical-align: bottom;
}
.w180 {
width: 180px;
}
.w200 {
width: 200px;
}

View File

@ -1,11 +1,11 @@
a.tip, a.tip2 {
a.tip, a.tip2, a.tipp {
cursor: help;
background: url(../../images/tip.gif) no-repeat;
}
a.tip {
a.tip , a.tip2 {
padding: 5px 2px 5px 12px;
}
a.tip2 {
a.tipp {
padding: 2px 2px 2px 12px;
}
a.help {
@ -20,26 +20,30 @@ a.info {
a.info2 {
padding: 2px 0px 0px 0px;
}
a.tip, a.tip2, a.help , a.info, a.info2 {
a.tip, a.tip2, a.tipp, a.help , a.info, a.info2 {
position: relative;
text-decoration: none;
}
a.tip:hover {
text-decoration: none;
background-color: #f5f5f5;
background-color: #f9f9f9;
}
a.tip2:hover {
text-decoration: none;
background-color: #e6e9cd;
}
a.tipp:hover {
text-decoration: none;
background-color: #778866;
}
a.info:hover, a.info2:hover, a.help:hover {
text-decoration: none;
}
a.tip span, a.tip2 span, a.info span, a.info2 span, a.help span {
a.tip span, a.tip2 span, a.tipp span, a.info span, a.info2 span, a.help span {
display: none;
}
a.tip:hover span, a.tip2:hover span, a.info:hover span, a.info2:hover span,
a.help:hover span {
a.tip:hover span, a.tip2:hover span,a.tipp:hover span, a.info:hover span,
a.info2:hover span, a.help:hover span {
display: block;
text-decoration: none;
position: absolute;

View File

@ -1277,7 +1277,7 @@ while ($vista=mysql_fetch_array($vistas)){
<TD></TD><TD></TD><TD></TD><TD></TD><TD></TD><TD></TD>
<TD>
<IMG SRC='imagenes/utiles/cancel.gif' border=0 onclick=\"setCookieEstado();location.href='index.php?action=cerrarVista&mode='+modo\">
<IMG SRC='imagenes/utiles/cross.png' border=0 onclick=\"setCookieEstado();location.href='index.php?action=cerrarVista&mode='+modo\">
</TD>
</TR>

View File

@ -178,9 +178,9 @@ echo "<br>";
echo "<img src='images/dot_red.gif'> - ".$lang_label["not_validated_event"];
echo "</td>";
echo "<td class='f9l30w17t'>";
echo "<img src='images/ok.gif'> - ".$lang_label["validate_event"];
echo "<img src='images/ok.png'> - ".$lang_label["validate_event"];
echo "<br>";
echo "<img src='images/cancel.gif'> - ".$lang_label["delete_event"];
echo "<img src='images/cross.png'> - ".$lang_label["delete_event"];
echo "</td>";
echo "<tr><td valign='middle'>".$lang_label["events"]."</td>";
echo "<td><form method='post' action='index.php?sec=eventos&sec2=operation/events/events&refr=60'>";
@ -297,9 +297,9 @@ if ($total_events > 0){
echo "<td class='$tdcolor' align='right'>";
if (($row2["estado"] == 0) and (give_acl($id_user,$id_group,"IW") ==1))
echo "<a href='index.php?sec=eventos&sec2=operation/events/events&offset=".$offset."&check=".$row2["id_evento"]."'><img src='images/ok.gif' border='0'></a> ";
echo "<a href='index.php?sec=eventos&sec2=operation/events/events&offset=".$offset."&check=".$row2["id_evento"]."'><img src='images/ok.png' border='0'></a> ";
if (give_acl($id_user,$id_group,"IM") ==1)
echo "<a href='index.php?sec=eventos&sec2=operation/events/events&delete=".$row2["id_evento"]."&refr=60&offset=".$offset."'><img src='images/cancel.gif' border=0></a> ";
echo "<a href='index.php?sec=eventos&sec2=operation/events/events&delete=".$row2["id_evento"]."&refr=60&offset=".$offset."'><img src='images/cross.png' border=0></a> ";
if (give_acl($id_user,$id_group,"IW") == 1)
echo "<a href='index.php?sec=incidencias&sec2=operation/incidents/incident_detail&insert_form&from_event=".$row2["id_evento"]."'><img src='images/page_lightning.png' border=0></a>";

View File

@ -110,7 +110,7 @@ if ((isset($_GET["action"])) AND ($_GET["action"]=="insert")){
audit_db($usuario,$REMOTE_ADDR,"Incident created","User ".$id_usuario." created incident #".$id_inc);
}
} else {
audit_db($id_usuario,$REMOTE_ADDR,"ACL Forbidden","User ".$_SESSION["id_usuario"]." try to create incident");
audit_db($id_usuario,$REMOTE_ADDR,"ACL Forbidden","User ".$_SESSION["id_usuario"]." try to create incident");
no_permission();
}
}
@ -430,7 +430,7 @@ if ($row2_count[0] <= 0 ) {
if ((give_acl($id_usuario, $id_group, "IM") ==1) OR ($_SESSION["id_usuario"] == $id_author_inc) ){
// Only incident owners or incident manager
// from this group can delete incidents
echo "<td class='$tdcolor' align='center'><a href='index.php?sec=incidencias&sec2=operation/incidents/incident&quick_delete=".$row2["id_incidencia"]."' onClick='if (!confirm(\' ".$lang_label["are_you_sure"]."\')) return false;'><img src='images/cancel.gif' border='0'></a></td>";
echo "<td class='$tdcolor' align='center'><a href='index.php?sec=incidencias&sec2=operation/incidents/incident&quick_delete=".$row2["id_incidencia"]."' onClick='if (!confirm(\' ".$lang_label["are_you_sure"]."\')) return false;'><img src='images/cross.png' border='0'></a></td>";
}
}
}
@ -440,7 +440,7 @@ if ($row2_count[0] <= 0 ) {
if (give_acl($_SESSION["id_usuario"], 0, "IW")==1) {
echo "<tr><td align='right' colspan='9'>";
echo "<form method='post' action='index.php?sec=incidencias&sec2=operation/incidents/incident_detail&insert_form'>";
echo "<input type='submit' class='sub' name='crt' value='".$lang_label["create_incident"]."'></form>";
echo "<input type='submit' class='sub next' name='crt' value='".$lang_label["create_incident"]."'></form>";
}
echo "</td></tr></table>";

View File

@ -105,7 +105,7 @@ if (isset($_GET["nuevo"]) || isset($_GET["nuevo_g"])){
<tr><td class="datos2">'.$lang_label["message"].':</td></tr>
<tr><td class="datos" colspan="4"><textarea name="mensaje" rows="10" class="w540">';
if (isset($_POST["mensaje"])) {
echo $_POST["mensaje"];
echo $_POST["mensaje"];
}
echo '</textarea></td></tr>
<tr><td colspan="2"><div class="noraya"></div></td></tr>
@ -178,7 +178,7 @@ else {
echo "<i>".$lang_label["no_subject"]."</i></a>";
echo "</a></td><td class='".$tdcolor."'>".$row3["timestamp"]."</td>";
echo "<td class='$tdcolor' align='center'><a href='index.php?sec=messages&sec2=operation/messages/message&borrar=1&id_mensaje=".$row3["id_mensaje"]."'><img src='images/cancel.gif' border='0'></a></td></tr>";
echo "<td class='$tdcolor' align='center'><a href='index.php?sec=messages&sec2=operation/messages/message&borrar=1&id_mensaje=".$row3["id_mensaje"]."'><img src='images/cross.png' border='0'></a></td></tr>";
}
echo "<tr><td colspan='5'><div class='raya'></div></td></tr>";
}
@ -207,7 +207,7 @@ else {
<input type="submit" class="sub" name="send_mes" value="'.$lang_label["reply"].'">
</form></td></tr>';
}
else echo '<tr><td colspan="5"><div class="noraya"></div></td></tr><tr><td colspan="5" align="right"><form method="post" name="new_mes" action="index.php?sec=messages&sec2=operation/messages/message&nuevo"><input type="submit" class="sub" name="send_mes" value="'.$lang_label["new_message"].'"></form></td></tr>';
else echo '<tr><td colspan="5"><div class="noraya"></div></td></tr><tr><td colspan="5" align="right"><form method="post" name="new_mes" action="index.php?sec=messages&sec2=operation/messages/message&nuevo"><input type="submit" class="sub next" name="send_mes" value="'.$lang_label["new_message"].'"></form></td></tr>';
}
echo '</table>';
?>

View File

@ -58,7 +58,7 @@ if (give_acl($id_user, 0, "LW")==1) {
if (isset($_GET["submit"])){
$alert_submit=1;
$create = entrada_limpia($_POST["create"]);
$update = entrada_limpia($_POST["create"]);
$update = entrada_limpia($_POST["update"]);
$id_as = entrada_limpia($_POST["id_as"]);
$max = entrada_limpia($_POST["max"]);
$min = entrada_limpia($_POST["min"]);
@ -288,20 +288,20 @@ if (give_acl($id_user, 0, "LW")==1) {
else
echo $lang_label["never"];
echo "<td class='$tdcolor'>";
echo "<a href='index.php?sec=snmpconsole&sec2=operation/snmpconsole/snmp_alert&delete_alert=".$id_as."'><img src='images/cancel.gif' border=0 alt='".$lang_label["delete"]."'></b></a> &nbsp; ";
echo "<a href='index.php?sec=snmpconsole&sec2=operation/snmpconsole/snmp_alert&delete_alert=".$id_as."'><img src='images/cross.png' border=0 alt='".$lang_label["delete"]."'></b></a> &nbsp; ";
echo "<a href='index.php?sec=snmpconsole&sec2=operation/snmpconsole/snmp_alert&update_alert=".$id_as."'><img src='images/config.gif' border=0 alt='".$lang_label["update"]."'></b></a>";
}
echo "<tr><td colspan='9'><div class='raya'></div></td></tr>";
echo "<tr><td colspan=9 align='right'>";
echo '<form name="agente" method="post" action="index.php?sec=snmpconsole&sec2=operation/snmpconsole/snmp_alert">';
echo '<input name="add_alert" type="submit" class="sub" value="'.$lang_label["create"].'">';
echo '<input name="add_alert" type="submit" class="sub next" value="'.$lang_label["create"].'">';
echo "</form>";
echo "</table>";
} else {
echo "<div class='nf'>".$lang_label["no_snmp_alert"]."</div>";
echo "<br><br>";
echo '<form name="agente" method="post" action="index.php?sec=snmpconsole&sec2=operation/snmpconsole/snmp_alert">';
echo '<input name="add_alert" type="submit" class="sub" value="'.$lang_label["create"].'">';
echo '<input name="add_alert" type="submit" class="sub next" value="'.$lang_label["create"].'">';
echo "</form>";
} // End of view snmp alert
}

View File

@ -141,9 +141,9 @@ if (comprueba_login() == 0) {
echo "<img src='images/dot_yellow.gif'> - ".$lang_label["alert"];
echo "</td>";
echo "<td class='f9l20'>";
echo "<img src='images/ok.gif'> - ".$lang_label["validate_event"];
echo "<img src='images/ok.png'> - ".$lang_label["validate_event"];
echo "<br>";
echo "<img src='images/cancel.gif '> - ".$lang_label["delete_event"];
echo "<img src='images/cross.png '> - ".$lang_label["delete_event"];
echo "</td>";
echo "</tr></table>";
echo "<br>";
@ -246,9 +246,9 @@ if (comprueba_login() == 0) {
echo "<td class='datos' align='center'>";
if (($row["status"] == 0) and (give_acl($id_usuario,"0","IW") ==1))
echo "<a href='index.php?sec=snmpconsole&sec2=operation/snmpconsole/snmp_view&check=".$row["id_trap"]."'><img src='images/ok.gif' border='0'></a>";
echo "<a href='index.php?sec=snmpconsole&sec2=operation/snmpconsole/snmp_view&check=".$row["id_trap"]."'><img src='images/ok.png' border='0'></a>";
if (give_acl($id_usuario,"0","IM") ==1)
echo "<a href='index.php?sec=snmpconsole&sec2=operation/snmpconsole/snmp_view&delete=".$row["id_trap"]."&refr=60&offset=".$offset."'><img src='images/cancel.gif' border=0></a>";
echo "<a href='index.php?sec=snmpconsole&sec2=operation/snmpconsole/snmp_view&delete=".$row["id_trap"]."&refr=60&offset=".$offset."'><img src='images/cross.png' border=0></a>";
echo "<td class='datos' align='center'>";
echo "<input type='checkbox' class='chk' name='snmptrapid".$offset_counter."' value='".$row["id_trap"]."'>";
echo "</td></tr>";

View File

@ -46,10 +46,12 @@ while ($rowdup=mysql_fetch_array($resq1)){
if ($color == 1){
$tdcolor = "datos";
$color = 0;
$tip = "tip";
}
else {
$tdcolor = "datos2";
$color = 1;
$tip = "tip2";
}
echo "<tr><td class='$tdcolor'><a href='index.php?sec=usuarios&sec2=operation/users/user_edit&ver=".$nombre."'><b>".$nombre."</b></a>";
echo "<td class='$tdcolor'><font size=1>".$fecha_registro."</font>";
@ -60,7 +62,7 @@ while ($rowdup=mysql_fetch_array($resq1)){
echo "<img src='images/user_green.png'>";
$sql1='SELECT * FROM tusuario_perfil WHERE id_usuario = "'.$nombre.'"';
$result=mysql_query($sql1);
echo "<a href='#' class='tip'>&nbsp;<span>";
echo "<a href='#' class='$tip'>&nbsp;<span>";
if (mysql_num_rows($result)){
while ($row=mysql_fetch_array($result)){
echo dame_perfil($row["id_perfil"])."/ ";
@ -86,17 +88,17 @@ echo "<tr><td colspan='5'><div class='raya'></div></td></tr></table><br>";
$query_del1="SELECT * FROM tperfil";
$resq1=mysql_query($query_del1);
echo "<tr>";
echo "<th class='w180'><font size=1>".$lang_label["profiles"];
echo "<th class='w40'><font size=1>IR<a href='#' class='tip2'>&nbsp;<span>".$help_label["IR"]."</span></a>";
echo "<th class='w40'><font size=1>IW<a href='#' class='tip2'>&nbsp;<span>".$help_label["IW"]."</span></a>";
echo "<th class='w40'><font size=1>IM<a href='#' class='tip2'>&nbsp;<span>".$help_label["IM"]."</span></a>";
echo "<th class='w40'><font size=1>AR<a href='#' class='tip2'>&nbsp;<span>".$help_label["AR"]."</span></a>";
echo "<th class='w40'><font size=1>AW<a href='#' class='tip2'>&nbsp;<span>".$help_label["AW"]."</span></a>";
echo "<th class='w40'><font size=1>LW<a href='#' class='tip2'>&nbsp;<span>".$help_label["LW"]."</span></a>";
echo "<th class='w40'><font size=1>UM<a href='#' class='tip2'>&nbsp;<span>".$help_label["UM"]."</span></a>";
echo "<th class='w40'><font size=1>DM<a href='#' class='tip2'>&nbsp;<span>".$help_label["DM"]."</span></a>";
echo "<th class='w40'><font size=1>LM<a href='#' class='tip2'>&nbsp;<span>".$help_label["LM"]."</span></a>";
echo "<th class='w40'><font size=1>PM<a href='#' class='tip2'>&nbsp;<span>".$help_label["PM"]."</span></a>";
echo "<th width='180px'><font size=1>".$lang_label["profiles"];
echo "<th width='40px'><font size=1>IR<a href='#' class='tipp'>&nbsp;<span>".$help_label["IR"]."</span></a>";
echo "<th width='40px'><font size=1>IW<a href='#' class='tipp'>&nbsp;<span>".$help_label["IW"]."</span></a>";
echo "<th width='40px'><font size=1>IM<a href='#' class='tipp'>&nbsp;<span>".$help_label["IM"]."</span></a>";
echo "<th width='40px'><font size=1>AR<a href='#' class='tipp'>&nbsp;<span>".$help_label["AR"]."</span></a>";
echo "<th width='40px'><font size=1>AW<a href='#' class='tipp'>&nbsp;<span>".$help_label["AW"]."</span></a>";
echo "<th width='40px'><font size=1>LW<a href='#' class='tipp'>&nbsp;<span>".$help_label["LW"]."</span></a>";
echo "<th width='40px'><font size=1>UM<a href='#' class='tipp'>&nbsp;<span>".$help_label["UM"]."</span></a>";
echo "<th width='40px'><font size=1>DM<a href='#' class='tipp'>&nbsp;<span>".$help_label["DM"]."</span></a>";
echo "<th width='40px'><font size=1>LM<a href='#' class='tipp'>&nbsp;<span>".$help_label["LM"]."</span></a>";
echo "<th width='40px'><font size=1>PM<a href='#' class='tipp'>&nbsp;<span>".$help_label["PM"]."</span></a>";
$color = 1;
while ($rowdup=mysql_fetch_array($resq1)){
$id_perfil = $rowdup["id_perfil"];
@ -122,34 +124,34 @@ echo "<tr><td colspan='5'><div class='raya'></div></td></tr></table><br>";
echo "<tr><td class='$tdcolor"."_id'>".$nombre;
echo "<td class='$tdcolor'>";
if ($incident_view == 1) echo "<img src='images/ok.gif' border=0>";
if ($incident_view == 1) echo "<img src='images/ok.png' border=0>";
echo "<td class='$tdcolor'>";
if ($incident_edit == 1) echo "<img src='images/ok.gif' border=0>";
if ($incident_edit == 1) echo "<img src='images/ok.png' border=0>";
echo "<td class='$tdcolor'>";
if ($incident_management == 1) echo "<img src='images/ok.gif' border=0>";
if ($incident_management == 1) echo "<img src='images/ok.png' border=0>";
echo "<td class='$tdcolor'>";
if ($agent_view == 1) echo "<img src='images/ok.gif' border=0>";
if ($agent_view == 1) echo "<img src='images/ok.png' border=0>";
echo "<td class='$tdcolor'>";
if ($agent_edit == 1) echo "<img src='images/ok.gif' border=0>";
if ($agent_edit == 1) echo "<img src='images/ok.png' border=0>";
echo "<td class='$tdcolor'>";
if ($alert_edit == 1) echo "<img src='images/ok.gif' border=0>";
if ($alert_edit == 1) echo "<img src='images/ok.png' border=0>";
echo "<td class='$tdcolor'>";
if ($user_management == 1) echo "<img src='images/ok.gif' border=0>";
if ($user_management == 1) echo "<img src='images/ok.png' border=0>";
echo "<td class='$tdcolor'>";
if ($db_management == 1) echo "<img src='images/ok.gif' border=0>";
if ($db_management == 1) echo "<img src='images/ok.png' border=0>";
echo "<td class='$tdcolor'>";
if ($alert_management == 1) echo "<img src='images/ok.gif' border=0>";
if ($alert_management == 1) echo "<img src='images/ok.png' border=0>";
echo "<td class='$tdcolor'>";
if ($pandora_management == 1) echo "<img src='images/ok.gif' border=0>";
if ($pandora_management == 1) echo "<img src='images/ok.png' border=0>";
}
} //end of page