2007-05-27 Raul Mateos <raulofpandora@gmail.com>
* include/styles/install.css: Forgotten file from last commit. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@475 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
2d04a50492
commit
2d3e6ccdb9
|
@ -155,7 +155,7 @@ while ($row=mysql_fetch_array($result)){
|
|||
<a name="alerts"> <!-- Don't Delete !! -->
|
||||
|
||||
<tr><td class="datos2"><?php echo $lang_label["min_value"] ?>
|
||||
<a href='#' class='tip'> <span> <?PHP echo $lang_label["min_valid_value_help"]; ?> </span></a>
|
||||
<a href='#' class='tip'> <span><?PHP echo $lang_label["min_valid_value_help"]; ?></span></a>
|
||||
|
||||
<td class="datos2"><input type="text" name="minimo" size="5" value="<?php echo $alerta_dis_min ?>" style="margin-right: 70px;">
|
||||
|
||||
|
@ -197,7 +197,7 @@ _data_<br>
|
|||
</span></a>
|
||||
<td class="datos"><textarea name="campo_3" style='height:85px;' cols="36" rows="4"><?php echo $alerta_campo3 ?></textarea>
|
||||
<tr><td class="datos2"><?php echo $lang_label["time_threshold"] ?>
|
||||
<a href='#' class='tip'> <span> <?PHP echo $lang_label["alert_time_threshold_help"]; ?> </span></a>
|
||||
<a href='#' class='tip'> <span><?PHP echo $lang_label["alert_time_threshold_help"]; ?></span></a>
|
||||
|
||||
<td class="datos2">
|
||||
<select name="time_threshold" style="margin-right: 60px;">
|
||||
|
@ -225,10 +225,12 @@ _data_<br>
|
|||
|
||||
<tr><td class="datos"><?php echo $lang_label["min_alerts"] ?>
|
||||
<td class="datos">
|
||||
<input type="text" name="min_alerts" size="5" value="<?php if (isset($alerta_min_alerts)) {echo$alerta_min_alerts;} ?>" style="margin-right: 10px;">
|
||||
<input type="text" name="min_alerts" size="5" value="<?php if (isset($alerta_min_alerts)) {
|
||||
echo $alerta_min_alerts;} ?>" style="margin-right: 10px;">
|
||||
<?php echo $lang_label["max_alerts"] ?>
|
||||
|
||||
<input type="text" name="max_alerts" size="5" value="<?php if (isset($alerta_max_alerts)) {echo $alerta_max_alerts;} ?>">
|
||||
<input type="text" name="max_alerts" size="5" value="<?php if (isset($alerta_max_alerts)) {
|
||||
echo $alerta_max_alerts;} ?>">
|
||||
|
||||
|
||||
<tr><td class="datos2"><?php echo $lang_label["assigned_module"] ?>
|
||||
|
@ -241,10 +243,10 @@ if ($update_alert != 1) {
|
|||
$result2=mysql_query($sql2);
|
||||
while ($row2=mysql_fetch_array($result2)){
|
||||
if ($row2["id_tipo_modulo"] != -1) {
|
||||
$sql1='SELECT nombre FROM ttipo_modulo WHERE id_tipo = '.$row2["id_tipo_modulo"];
|
||||
$sql1='SELECT nombre FROM ttipo_modulo WHERE id_tipo = '.$row2["id_tipo_modulo"].'</option>';
|
||||
$result=mysql_query($sql1);
|
||||
while ($row=mysql_fetch_array($result)){
|
||||
echo "<option value='".$row2["id_agente_modulo"]."'>".$row["nombre"]."/".$row2["nombre"];
|
||||
echo "<option value='".$row2["id_agente_modulo"]."'>".$row["nombre"]."/".$row2["nombre"]."</option>";
|
||||
}
|
||||
} else // for -1, is a special module, keep alive monitor !!
|
||||
echo "<option value='".$row2["id_agente_modulo"]."'>".$row2["nombre"]."</option>";
|
||||
|
|
|
@ -243,9 +243,10 @@ if (isset($_POST["insert_alert"])){ // if created alert
|
|||
'$min_alerts',
|
||||
'$alert_text')";
|
||||
$result=mysql_query($sql_insert);
|
||||
if (! $result)
|
||||
if (! $result) {
|
||||
echo $sql_insert;
|
||||
echo "<h3 class='error'>".$lang_label["create_alert_no"]."</h3>";
|
||||
else
|
||||
} else
|
||||
$id_agente = mysql_insert_id();
|
||||
echo "<h3 class='suc'>".$lang_label["create_alert_ok"]."</h3>";
|
||||
|
||||
|
|
|
@ -0,0 +1,82 @@
|
|||
/*
|
||||
// Pandora FMS - the Free monitoring system
|
||||
// ========================================
|
||||
// Copyright (c) 2004-2007 Sancho Lerena, slerena@gmail.com
|
||||
// Main PHP/SQL code development and project architecture and management
|
||||
// Copyright (c) 2004-2007 Raul Mateos Martin, raulofpandora@gmail.com
|
||||
// CSS and some PHP additions
|
||||
// Copyright (c) 2006-2007 Jonathan Barajas, jonathan.barajas[AT]gmail[DOT]com
|
||||
// Javascript Active Console code.
|
||||
// Copyright (c) 2006 Jose Navarro <contacto@indiseg.net>
|
||||
// Additions to Pandora FMS 1.2 graph code and new XML reporting template management
|
||||
// Copyright (c) 2005-2007 Artica Soluciones Tecnologicas, info@artica.es
|
||||
//
|
||||
// This program is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU General Public License
|
||||
// as published by the Free Software Foundation; version 2
|
||||
// This program is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
div#install_container {
|
||||
margin: 0 auto;
|
||||
margin-top: 35px;
|
||||
width: 600px;
|
||||
}
|
||||
div#logo_img {
|
||||
text-align: center;
|
||||
width: 200px;
|
||||
}
|
||||
div#wizard {
|
||||
text-align: left;
|
||||
border: 1px solid #999;
|
||||
margin-top: 3em;
|
||||
padding: 20px;
|
||||
padding-left: 20px;
|
||||
width: 600px;
|
||||
background-color: #fafafa;
|
||||
}
|
||||
div#install_box, div#install_img {
|
||||
float: right;
|
||||
padding-right: 20px;
|
||||
margin-top: 0px;
|
||||
width: 350px;
|
||||
}
|
||||
div#install_img {
|
||||
margin-bottom: 25px;
|
||||
margin-left: 25px;
|
||||
}
|
||||
div#foot_install {
|
||||
font-size: 7pt;
|
||||
color: #fff;
|
||||
margin-top: solid 2px #000;
|
||||
padding-top: 5px;
|
||||
padding-bottom: 5px;
|
||||
padding-left: 20px;
|
||||
padding-right: 20px;
|
||||
text-align: center;
|
||||
background: #777;
|
||||
width: 600px;
|
||||
border-left: 1px solid #999;
|
||||
border-right: 1px solid #999;
|
||||
}
|
||||
div#foot_install a{
|
||||
color: #ccc;
|
||||
}
|
||||
input#step4, input#step4:hover {
|
||||
width: 70px;
|
||||
height: 16px;
|
||||
border: 0px;
|
||||
background-color: #fafafa;
|
||||
}
|
||||
div.warn {
|
||||
background: url(../../images/info.png) no-repeat;
|
||||
color: #ac4444;
|
||||
margin-top: 7px;
|
||||
padding: 2px 1px 6px 25px;
|
||||
}
|
Loading…
Reference in New Issue