2007-02-21 Raul Mateos <raulofpandora@gmail.com>
* pandoradb.sql: Solved small problems that caused some tables not to be created. * operation/active_console/lib/db_functions.php: Remove ".." in include path for config file. * general/logon_ok.php: Use new styles and small check to show some text if no data. * include/styles/pandora.css: New styles. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@380 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
2d148cc0a5
commit
3aaa3a6b58
|
@ -1,6 +1,19 @@
|
||||||
|
2007-02-21 Raul Mateos <raulofpandora@gmail.com>
|
||||||
|
|
||||||
|
* pandoradb.sql: Solved small problems that caused some tables not
|
||||||
|
to be created.
|
||||||
|
|
||||||
|
* operation/active_console/lib/db_functions.php: Remove ".." in include
|
||||||
|
path for config file.
|
||||||
|
|
||||||
|
* general/logon_ok.php: Use new styles and small check to show some text if
|
||||||
|
no data.
|
||||||
|
|
||||||
|
* include/styles/pandora.css: New styles.
|
||||||
|
|
||||||
2007-02-20 Sancho Lerena <slerena@artica.es>
|
2007-02-20 Sancho Lerena <slerena@artica.es>
|
||||||
|
|
||||||
* pandoradb.sql: Upgraded SQL. Improved lenght for some fields.
|
* pandoradb.sql: Upgraded SQL. Improved lenght for some fields.
|
||||||
|
|
||||||
* index.php: Better permission checks
|
* index.php: Better permission checks
|
||||||
|
|
||||||
|
@ -13,7 +26,7 @@
|
||||||
* reporting/fgraph.php: MAJOR UPGRADE. Replacement for three main
|
* reporting/fgraph.php: MAJOR UPGRADE. Replacement for three main
|
||||||
graphics from agents now using Image Graph.
|
graphics from agents now using Image Graph.
|
||||||
|
|
||||||
* reporting/stat_win.php: MAJOR UPGRADE.
|
* reporting/stat_win.php: MAJOR UPGRADE.
|
||||||
|
|
||||||
|
|
||||||
2007-02-19 Sancho Leren <slerena@openideas.info>
|
2007-02-19 Sancho Leren <slerena@openideas.info>
|
||||||
|
|
|
@ -86,41 +86,45 @@ $query1="SELECT * FROM tsesion WHERE (TO_DAYS(fecha) > TO_DAYS(NOW()) - 7) AND I
|
||||||
echo $lang_label["new_message_ket"] . '</div>';
|
echo $lang_label["new_message_ket"] . '</div>';
|
||||||
}
|
}
|
||||||
|
|
||||||
echo '<h2>' . $lang_label["stat_title"] . '</h2>';
|
echo '<h2 class="mgb25">' . $lang_label["stat_title"] . '</h2>';
|
||||||
|
|
||||||
$query1 = "SELECT COUNT(*) FROM tusuario";
|
$query1 = "SELECT COUNT(*) FROM tusuario";
|
||||||
$result = mysql_query ($query1);
|
$result = mysql_query ($query1);
|
||||||
$row = mysql_fetch_array ($result);
|
$row = mysql_fetch_array ($result);
|
||||||
echo '<img src="images/usuarios.gif" align="middle" alt=""> ';
|
echo '<span class="users">';
|
||||||
echo $lang_label["there_are"] . $row[0] . ' ' . $lang_label["user_defined"];
|
echo $lang_label["there_are"] . $row[0] . ' ' . $lang_label["user_defined"];
|
||||||
echo '<br /><br />';
|
echo '</span>';
|
||||||
|
|
||||||
$query1 = "SELECT COUNT(*) FROM tagente";
|
$query1 = "SELECT COUNT(*) FROM tagente";
|
||||||
$result = mysql_query ($query1);
|
$result = mysql_query ($query1);
|
||||||
$row = mysql_fetch_array ($result);
|
$row = mysql_fetch_array ($result);
|
||||||
echo '<img src="images/agentes.gif" align="middle" alt=""> ';
|
echo '<span class="agents">';
|
||||||
echo $lang_label["there_are"] . $row[0] .' ' . $lang_label["agent_defined"];
|
echo $lang_label["there_are"] . $row[0] .' ' . $lang_label["agent_defined"];
|
||||||
echo '<br /><br />';
|
echo '</span>';
|
||||||
|
|
||||||
$query1 = "SELECT COUNT(id_agente_datos) FROM tagente_datos";
|
$query1 = "SELECT COUNT(id_agente_datos) FROM tagente_datos";
|
||||||
$result = mysql_query ($query1);
|
$result = mysql_query ($query1);
|
||||||
$row = mysql_fetch_array ($result);
|
$row = mysql_fetch_array ($result);
|
||||||
echo '<img src="images/datos.gif" align="middle" alt=""> ';
|
echo '<span class="data">';
|
||||||
echo $lang_label["there_are"] . $row[0] . ' ' . $lang_label["data_harvested"];
|
echo $lang_label["there_are"] . $row[0] . ' ' . $lang_label["data_harvested"];
|
||||||
echo '<br /><br />';
|
echo '</span>';
|
||||||
|
|
||||||
$query1 = "SELECT COUNT(*) FROM talerta_agente_modulo";
|
$query1 = "SELECT COUNT(*) FROM talerta_agente_modulo";
|
||||||
$result = mysql_query ($query1);
|
$result = mysql_query ($query1);
|
||||||
$row = mysql_fetch_array ($result);
|
$row = mysql_fetch_array ($result);
|
||||||
echo '<img src="images/alertas.gif" align="middle" alt=""> ';
|
echo "<span class='alerts'>";
|
||||||
echo $lang_label["there_are"] . $row[0] .' ' . $lang_label["alert_defined"];
|
echo $lang_label["there_are"] . $row[0] .' ' . $lang_label["alert_defined"];
|
||||||
echo '<br /><br />';
|
echo "</span>";
|
||||||
|
|
||||||
$query1 = "SELECT * FROM tagente_estado ORDER BY timestamp DESC";
|
echo '<span class="time">';
|
||||||
|
$query1 = "SELECT timestamp FROM tagente_estado ORDER BY timestamp DESC";
|
||||||
$result = mysql_query($query1);
|
$result = mysql_query($query1);
|
||||||
$row = mysql_fetch_array($result);
|
if($row = mysql_fetch_array($result)!='') { // Take the first element only
|
||||||
// Take the first element only
|
echo $lang_label["data_timestamp"] . $row["timestamp"];
|
||||||
echo '<img src="images/time.gif" align="middle" alt=""> ';
|
} else {
|
||||||
echo $lang_label["data_timestamp"] . $row["timestamp"];
|
echo 'No data received yet!';
|
||||||
|
}
|
||||||
|
echo '</span>';
|
||||||
|
|
||||||
echo '</div>';
|
echo '</div>';
|
||||||
?>
|
?>
|
|
@ -1,443 +1,467 @@
|
||||||
/*
|
/*
|
||||||
// Pandora - the Free monitoring system
|
// Pandora - the Free monitoring system
|
||||||
// ====================================
|
// ====================================
|
||||||
// Copyright (c) 2004-2006 Sancho Lerena, slerena@gmail.com
|
// Copyright (c) 2004-2006 Sancho Lerena, slerena@gmail.com
|
||||||
// Copyright (c) 2005-2006 Artica Soluciones Tecnológicas S.L, info@artica.es
|
// Copyright (c) 2005-2006 Artica Soluciones Tecnológicas S.L, info@artica.es
|
||||||
// Copyright (c) 2004-2006 Raul Mateos Martin, raulofpandora@gmail.com
|
// Copyright (c) 2004-2006 Raul Mateos Martin, raulofpandora@gmail.com
|
||||||
// This program is free software;
|
// This program is free software;
|
||||||
you can redistribute it and/or
|
you can redistribute it and/or
|
||||||
// modify it under the terms of the GNU General Public License
|
// modify it under the terms of the GNU General Public License
|
||||||
// as published by the Free Software Foundation;
|
// as published by the Free Software Foundation;
|
||||||
either version 2
|
either version 2
|
||||||
// of the License, or (at your option) any later version.
|
// of the License, or (at your option) any later version.
|
||||||
// This program is distributed in the hope that it will be useful,
|
// This program is distributed in the hope that it will be useful,
|
||||||
// but WITHOUT ANY WARRANTY;
|
// but WITHOUT ANY WARRANTY;
|
||||||
without even the implied warranty of
|
without even the implied warranty of
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
// GNU General Public License for more details.
|
// GNU General Public License for more details.
|
||||||
// You should have received a copy of the GNU General Public License
|
// You should have received a copy of the GNU General Public License
|
||||||
// along with this program;
|
// along with this program;
|
||||||
if not, write to the Free Software
|
if not, write to the Free Software
|
||||||
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@import url(op.css);
|
@import url(op.css);
|
||||||
@import url(god.css);
|
@import url(god.css);
|
||||||
@import url(link.css);
|
@import url(link.css);
|
||||||
@import url(tip.css);
|
@import url(tip.css);
|
||||||
@import url(calendar.css);
|
@import url(calendar.css);
|
||||||
* {
|
* {
|
||||||
font-family: Verdana, sans-serif, Arial, Helvetica;
|
font-family: Verdana, sans-serif, Arial, Helvetica;
|
||||||
font-size: 11px;
|
font-size: 11px;
|
||||||
}
|
}
|
||||||
select, textarea, input {
|
select, textarea, input {
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
}
|
}
|
||||||
textarea {
|
textarea {
|
||||||
border: 1px solid #c0c0c0;
|
border: 1px solid #c0c0c0;
|
||||||
-moz-border-radius: 3%;
|
-moz-border-radius: 3%;
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
}
|
}
|
||||||
input {
|
input {
|
||||||
border: 1px solid #c0c0c0;
|
border: 1px solid #c0c0c0;
|
||||||
-moz-border-radius: 1%;
|
-moz-border-radius: 1%;
|
||||||
padding: 2px 3px 4px 3px;
|
padding: 2px 3px 4px 3px;
|
||||||
height: 23px;
|
height: 23px;
|
||||||
}
|
}
|
||||||
option {
|
option {
|
||||||
height: 16px;
|
height: 16px;
|
||||||
}
|
}
|
||||||
h1, h2 {
|
h1, h2 {
|
||||||
color: #103a3a;
|
color: #103a3a;
|
||||||
}
|
}
|
||||||
h3 {
|
h3 {
|
||||||
color: #3c566d;
|
color: #3c566d;
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
}
|
}
|
||||||
h1 {
|
h1 {
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
}
|
}
|
||||||
h2 {
|
h2 {
|
||||||
font-size: 15px;
|
font-size: 15px;
|
||||||
}
|
}
|
||||||
a {
|
a {
|
||||||
color: #486787;
|
color: #486787;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
a:hover {
|
a:hover {
|
||||||
color: #003a3a;
|
color: #003a3a;
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
p.center {
|
p.center {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
h1#log {
|
h1#log {
|
||||||
border-bottom: 1px solid #778866;
|
border-bottom: 1px solid #778866;
|
||||||
padding-bottom: 3px;
|
padding-bottom: 3px;
|
||||||
margin-top: 5em;
|
margin-top: 5em;
|
||||||
width: 29em;
|
width: 29em;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
}
|
}
|
||||||
h1#log_f, h1#db_fh1 {
|
h1#log_f, h1#db_fh1 {
|
||||||
color: #ff0000;
|
color: #ff0000;
|
||||||
border-bottom: 1px solid #ff0000;
|
border-bottom: 1px solid #ff0000;
|
||||||
padding-bottom: 3px;
|
padding-bottom: 3px;
|
||||||
}
|
}
|
||||||
div#login {
|
div#login {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
border: 1px solid #999999;
|
border: 1px solid #999999;
|
||||||
margin-top: 2em;
|
margin-top: 2em;
|
||||||
margin-bottom: -1em;
|
margin-bottom: -1em;
|
||||||
padding: 0.5em;
|
padding: 0.5em;
|
||||||
width: 40em;
|
width: 40em;
|
||||||
background: url(../../images/backgrounds/background10.jpg);
|
background: url(../../images/backgrounds/background10.jpg);
|
||||||
}
|
}
|
||||||
div#login_f {
|
div#login_f {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
margin: auto;
|
margin: auto;
|
||||||
padding: 0.5em;
|
padding: 0.5em;
|
||||||
width: 48em;
|
width: 48em;
|
||||||
margin-top: 5em;
|
margin-top: 5em;
|
||||||
}
|
}
|
||||||
div#db_f {
|
div#db_f {
|
||||||
text-align: justify;
|
text-align: justify;
|
||||||
margin: auto;
|
margin: auto;
|
||||||
padding: 0.5em;
|
padding: 0.5em;
|
||||||
width: 55em;
|
width: 55em;
|
||||||
margin-top: 3em;
|
margin-top: 3em;
|
||||||
}
|
}
|
||||||
div#login_box {
|
div#login_box {
|
||||||
float: right;
|
float: right;
|
||||||
padding-right: 10px;
|
padding-right: 10px;
|
||||||
margin-top: 25px;
|
margin-top: 25px;
|
||||||
width: 140px;
|
width: 140px;
|
||||||
}
|
}
|
||||||
div#logo_box {
|
div#logo_box {
|
||||||
margin-top: 25px;
|
margin-top: 25px;
|
||||||
padding-left: 5px;
|
padding-left: 5px;
|
||||||
}
|
}
|
||||||
div#noaccess {
|
div#noaccess {
|
||||||
width: 350px;
|
width: 350px;
|
||||||
padding-left: 40px;
|
padding-left: 40px;
|
||||||
}
|
}
|
||||||
div#activity{
|
div#activity{
|
||||||
padding-top: 18px;
|
padding-top: 18px;
|
||||||
padding-bottom: 18px;
|
padding-bottom: 18px;
|
||||||
}
|
}
|
||||||
div#noa {
|
div#noa {
|
||||||
float: right;
|
float: right;
|
||||||
padding-right: 50px;
|
padding-right: 50px;
|
||||||
margin-top: 25px;
|
margin-top: 25px;
|
||||||
}
|
}
|
||||||
div#db_ftxt {
|
div#db_ftxt {
|
||||||
float: right;
|
float: right;
|
||||||
padding-top: 10px;
|
padding-top: 10px;
|
||||||
}
|
}
|
||||||
#page {
|
#page {
|
||||||
width: 960px;
|
width: 960px;
|
||||||
}
|
}
|
||||||
#head {
|
#head {
|
||||||
border-bottom: 1px solid #708090;
|
border-bottom: 1px solid #708090;
|
||||||
text-align: right;
|
text-align: right;
|
||||||
padding-bottom: 10px;
|
padding-bottom: 10px;
|
||||||
font-size: 10px;
|
font-size: 10px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
margin-bottom: 27px;
|
margin-bottom: 27px;
|
||||||
}
|
}
|
||||||
#main {
|
#main {
|
||||||
width: 780px;
|
width: 780px;
|
||||||
float: right;
|
float: right;
|
||||||
}
|
}
|
||||||
#menu {
|
#menu {
|
||||||
width: 155px;
|
width: 155px;
|
||||||
float: left;
|
float: left;
|
||||||
}
|
}
|
||||||
#foot {
|
#foot {
|
||||||
padding-top: 25px;
|
padding-top: 25px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
clear: both;
|
clear: both;
|
||||||
}
|
}
|
||||||
div#page>div#menu {
|
div#page>div#menu {
|
||||||
width: 157px;
|
width: 157px;
|
||||||
}
|
}
|
||||||
#ver {
|
#ver {
|
||||||
margin-bottom: 25px;
|
margin-bottom: 25px;
|
||||||
}
|
}
|
||||||
#ip {
|
#ip {
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
clear: both;
|
clear: both;
|
||||||
}
|
}
|
||||||
label {
|
label {
|
||||||
display: block;
|
display: block;
|
||||||
float: left;
|
float: left;
|
||||||
padding-top: 4px;
|
padding-top: 4px;
|
||||||
}
|
}
|
||||||
th > label {
|
th > label {
|
||||||
padding-top: 7px;
|
padding-top: 7px;
|
||||||
}
|
}
|
||||||
input:hover {
|
input:hover {
|
||||||
background-color: #d4dccd;
|
background-color: #d4dccd;
|
||||||
}
|
}
|
||||||
input.chk {
|
input.chk {
|
||||||
border: 0px none;
|
border: 0px none;
|
||||||
height: 14px;
|
height: 14px;
|
||||||
}
|
}
|
||||||
input.datos {
|
input.datos {
|
||||||
background-color: #f5f5f5;
|
background-color: #f5f5f5;
|
||||||
}
|
}
|
||||||
input.datos_readonly {
|
input.datos_readonly {
|
||||||
background-color: #050505;
|
background-color: #050505;
|
||||||
}
|
}
|
||||||
input.login {
|
input.login {
|
||||||
border-color: #778866;
|
border-color: #778866;
|
||||||
background-color: #f5f5f5;
|
background-color: #f5f5f5;
|
||||||
margin: 2px 0 8px;
|
margin: 2px 0 8px;
|
||||||
width: 90px;
|
width: 90px;
|
||||||
}
|
}
|
||||||
input.sub {
|
input.sub {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
border-bottom-color: #708090;
|
border-bottom-color: #708090;
|
||||||
border-right-color: #708090;
|
border-right-color: #708090;
|
||||||
-moz-border-radius: 5%;
|
-moz-border-radius: 5%;
|
||||||
font-size: 11px;
|
font-size: 11px;
|
||||||
}
|
}
|
||||||
table, img {
|
table, img {
|
||||||
border: 0px;
|
border: 0px;
|
||||||
}
|
}
|
||||||
th, td.lb {
|
th, td.lb {
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
background-color: #778866;
|
background-color: #778866;
|
||||||
}
|
}
|
||||||
td.lb {
|
td.lb {
|
||||||
height: 16px;
|
height: 16px;
|
||||||
padding-left: 3px;
|
padding-left: 3px;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
td.datos, td.datost, td.datosb, td.datos_id, td.datosf9,
|
td.datos, td.datost, td.datosb, td.datos_id, td.datosf9,
|
||||||
td.datosf9i, td.datos_jus {
|
td.datosf9i, td.datos_jus {
|
||||||
background-color: #f5f5f5;
|
background-color: #f5f5f5;
|
||||||
}
|
}
|
||||||
td.w90datos, td.w135datos, td.w230datos {
|
td.w90datos, td.w135datos, td.w230datos {
|
||||||
background-color: #f5f5f5;
|
background-color: #f5f5f5;
|
||||||
}
|
}
|
||||||
td.datos2, td.datos2t, td.datos2b, td.datos2_id, td.datos2f9,
|
td.datos2, td.datos2t, td.datos2b, td.datos2_id, td.datos2f9,
|
||||||
td.datos2f9i, td.datos2_jus {
|
td.datos2f9i, td.datos2_jus {
|
||||||
background-color: #fafbfc;
|
background-color: #fafbfc;
|
||||||
}
|
}
|
||||||
td.w90datos2, td.w135datos2, td.w230datos2 {
|
td.w90datos2, td.w135datos2, td.w230datos2 {
|
||||||
background-color: #fafbfc;
|
background-color: #fafbfc;
|
||||||
}
|
}
|
||||||
td.datos3 {
|
td.datos3 {
|
||||||
background-color: #e6e9cd;
|
background-color: #e6e9cd;
|
||||||
}
|
}
|
||||||
td.datos_id {
|
td.datos_id {
|
||||||
color: #1a313a;
|
color: #1a313a;
|
||||||
}
|
}
|
||||||
td.datos_jus, td.datos2_jus {
|
td.datos_jus, td.datos2_jus {
|
||||||
text-align: justify;
|
text-align: justify;
|
||||||
}
|
}
|
||||||
.bg , .bgt {
|
.bg , .bgt {
|
||||||
background-color: #4a6629;
|
background-color: #4a6629;
|
||||||
}
|
}
|
||||||
.bg {
|
.bg {
|
||||||
position: relative;
|
position: relative;
|
||||||
height: 20px;
|
height: 20px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
.f10, .w155f10, #ip {
|
.f10, .w155f10, #ip {
|
||||||
font-size: 10px;
|
font-size: 10px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
.f9, .f9i, .f9b, td.f9, td.f9i, td.datosf9, td.datos2f9,
|
.f9, .f9i, .f9b, td.f9, td.f9i, td.datosf9, td.datos2f9,
|
||||||
td.datosf9i, td.datos2f9i {
|
td.datosf9i, td.datos2f9i {
|
||||||
font-size: 9px;
|
font-size: 9px;
|
||||||
}
|
}
|
||||||
.f9i, .redi {
|
.f9i, .redi {
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
}
|
}
|
||||||
.f9l20 {
|
.f9l20 {
|
||||||
padding-left: 20px;
|
padding-left: 20px;
|
||||||
}
|
}
|
||||||
.f9l30, .f9l30t, .f9l30w17t {
|
.f9l30, .f9l30t, .f9l30w17t {
|
||||||
padding-left: 30px;
|
padding-left: 30px;
|
||||||
}
|
}
|
||||||
.f9l30w17t {
|
.f9l30w17t {
|
||||||
line-height: 17px;
|
line-height: 17px;
|
||||||
}
|
}
|
||||||
.jus {
|
.jus {
|
||||||
text-align: justify;
|
text-align: justify;
|
||||||
}
|
}
|
||||||
.tit {
|
.tit {
|
||||||
padding-top: 3px;
|
padding-top: 3px;
|
||||||
}
|
}
|
||||||
.tit, .titb {
|
.tit, .titb {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
.error {
|
.error {
|
||||||
background: url(../../images/error.gif) no-repeat;
|
background: url(../../images/error.gif) no-repeat;
|
||||||
padding: 4px 1px 6px 30px;
|
padding: 4px 1px 6px 30px;
|
||||||
}
|
}
|
||||||
.red , .redb, .redi, .error {
|
.red , .redb, .redi, .error {
|
||||||
color: #ff0000;
|
color: #ff0000;
|
||||||
}
|
}
|
||||||
.sep {
|
.sep {
|
||||||
margin-left: 30px;
|
margin-left: 30px;
|
||||||
border-bottom: 1px solid #708090;
|
border-bottom: 1px solid #708090;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
.suc {
|
.suc {
|
||||||
color: #5a8629;
|
color: #5a8629;
|
||||||
background: url(../../images/suc.gif) no-repeat 1px;
|
background: url(../../images/suc.gif) no-repeat 1px;
|
||||||
padding: 4px 1px 6px 30px;
|
padding: 4px 1px 6px 30px;
|
||||||
}
|
}
|
||||||
.green {
|
.green {
|
||||||
color: #5a8629;
|
color: #5a8629;
|
||||||
}
|
}
|
||||||
.greenb {
|
.greenb {
|
||||||
color: #00aa00;
|
color: #00aa00;
|
||||||
}
|
}
|
||||||
.grey {
|
.grey {
|
||||||
color: #808080;
|
color: #808080;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
.redb, .greenb, td.datos_id, td.datos2_id, f9b {
|
.redb, .greenb, td.datos_id, td.datos2_id, f9b {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
.raya {
|
.raya {
|
||||||
border-top: 1px solid #778866;
|
border-top: 1px solid #778866;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
.raya, .noraya {
|
.raya, .noraya {
|
||||||
margin-bottom: -10px;
|
margin-bottom: -10px;
|
||||||
}
|
}
|
||||||
.p10 {
|
.p10 {
|
||||||
padding-top: 1px;
|
padding-top: 1px;
|
||||||
padding-bottom: 0px;
|
padding-bottom: 0px;
|
||||||
}
|
}
|
||||||
.p21 {
|
.p21 {
|
||||||
padding-top: 2px;
|
padding-top: 2px;
|
||||||
padding-bottom: 1px;
|
padding-bottom: 1px;
|
||||||
}
|
}
|
||||||
.w30 {
|
.w30 {
|
||||||
width: 30px;
|
width: 30px;
|
||||||
}
|
}
|
||||||
.w40 {
|
.w40 {
|
||||||
width: 40px;
|
width: 40px;
|
||||||
}
|
}
|
||||||
.w45 {
|
.w45 {
|
||||||
width: 45px;
|
width: 45px;
|
||||||
}
|
}
|
||||||
.w70 {
|
.w70 {
|
||||||
width: 70px;
|
width: 70px;
|
||||||
}
|
}
|
||||||
.w80 {
|
.w80 {
|
||||||
width: 80px;
|
width: 80px;
|
||||||
}
|
}
|
||||||
.w90datos {
|
.w90datos {
|
||||||
width: 90px;
|
width: 90px;
|
||||||
}
|
}
|
||||||
.w100 {
|
.w100 {
|
||||||
width: 100px;
|
width: 100px;
|
||||||
}
|
}
|
||||||
.w120 {
|
.w120 {
|
||||||
width: 120px;
|
width: 120px;
|
||||||
}
|
}
|
||||||
.w130 {
|
.w130 {
|
||||||
width: 130px;
|
width: 130px;
|
||||||
}
|
}
|
||||||
.w135, .w135datos, .w35datos2 {
|
.w135, .w135datos, .w35datos2 {
|
||||||
width: 135px;
|
width: 135px;
|
||||||
}
|
}
|
||||||
.w140 {
|
.w140 {
|
||||||
width: 140px;
|
width: 140px;
|
||||||
}
|
}
|
||||||
.w155, .w155f10 {
|
.w155, .w155f10 {
|
||||||
width: 155px;
|
width: 155px;
|
||||||
}
|
}
|
||||||
.top, .bgt, .f9l30t, td.datost, td.datos2t {
|
.top, .bgt, .f9l30t, td.datost, td.datos2t {
|
||||||
vertical-align: top;
|
vertical-align: top;
|
||||||
}
|
}
|
||||||
.bot, .titb, td.datosb {
|
.bot, .titb, td.datosb {
|
||||||
vertical-align: bottom;
|
vertical-align: bottom;
|
||||||
}
|
}
|
||||||
.w180 {
|
.w180 {
|
||||||
width: 180px;
|
width: 180px;
|
||||||
}
|
}
|
||||||
.w200 {
|
.w200 {
|
||||||
width: 200px;
|
width: 200px;
|
||||||
}
|
}
|
||||||
.w230datos, .w230datos2 {
|
.w230datos, .w230datos2 {
|
||||||
width: 230px;
|
width: 230px;
|
||||||
}
|
}
|
||||||
.w255 {
|
.w255 {
|
||||||
width: 255px;
|
width: 255px;
|
||||||
}
|
}
|
||||||
.w540 {
|
.w540 {
|
||||||
width: 540px;
|
width: 540px;
|
||||||
}
|
}
|
||||||
.w550 {
|
.w550 {
|
||||||
width: 550px;
|
width: 550px;
|
||||||
}
|
}
|
||||||
.msg {
|
.msg {
|
||||||
margin-top: 15px;
|
margin-top: 15px;
|
||||||
text-align: justify;
|
text-align: justify;
|
||||||
}
|
}
|
||||||
.mr40 {
|
.mr40 {
|
||||||
margin-right: 40px;
|
margin-right: 40px;
|
||||||
}
|
}
|
||||||
ul.mn {
|
ul.mn {
|
||||||
list-style: none;
|
list-style: none;
|
||||||
padding: 0px 0px 0px 0px;
|
padding: 0px 0px 0px 0px;
|
||||||
margin: 0px 0px 0px 0px;
|
margin: 0px 0px 0px 0px;
|
||||||
line-height: 24px;
|
line-height: 24px;
|
||||||
}
|
}
|
||||||
.gr {
|
.gr {
|
||||||
font-size: 10pt;
|
font-size: 10pt;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
a.mn, .gr {
|
a.mn, .gr {
|
||||||
font-family: Arial, Verdana, sans-serif, Helvetica;
|
font-family: Arial, Verdana, sans-serif, Helvetica;
|
||||||
}
|
}
|
||||||
.imgl {
|
.imgl {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0;
|
top: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
}
|
}
|
||||||
.imgr {
|
.imgr {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0;
|
top: 0;
|
||||||
right: -1;
|
right: -1;
|
||||||
}
|
}
|
||||||
div.imgr>img {
|
div.imgr>img {
|
||||||
position:absolute;
|
position:absolute;
|
||||||
top: 0;
|
top: 0;
|
||||||
right: 1;
|
right: 1;
|
||||||
}
|
}
|
||||||
div.nf {
|
div.nf {
|
||||||
background: url(../../images/info.gif) no-repeat;
|
background: url(../../images/info.gif) no-repeat;
|
||||||
color: #9a2f0a;
|
color: #9a2f0a;
|
||||||
margin-left: 7px;
|
margin-left: 7px;
|
||||||
padding: 2px 1px 6px 25px;
|
padding: 2px 1px 6px 25px;
|
||||||
}
|
}
|
||||||
div#wizard {
|
div#wizard {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
border: 1px solid #999999;
|
border: 1px solid #999999;
|
||||||
margin-top: 3em;
|
margin-top: 3em;
|
||||||
margin-bottom: -1em;
|
margin-bottom: -1em;
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
width: 600px;
|
width: 600px;
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
background: url(../../images/background8.jpg);
|
background: url(../../images/background8.jpg);
|
||||||
}
|
}
|
||||||
.mt35 {
|
.mt35 {
|
||||||
margin-top: 35px;
|
margin-top: 35px;
|
||||||
}
|
}
|
||||||
|
|
||||||
div#install_box {
|
div#install_box {
|
||||||
float: right;
|
float: right;
|
||||||
padding-right: 20px;
|
padding-right: 20px;
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
width: 350px;
|
width: 350px;
|
||||||
|
}
|
||||||
|
span.users {
|
||||||
|
background: url(../../images/usuarios.gif) no-repeat;
|
||||||
|
}
|
||||||
|
span.agents {
|
||||||
|
background: url(../../images/agentes.gif) no-repeat;
|
||||||
|
}
|
||||||
|
span.data {
|
||||||
|
background: url(../../images/datos.gif) no-repeat;
|
||||||
|
}
|
||||||
|
span.alerts {
|
||||||
|
background: url(../../images/alertas.gif) no-repeat;
|
||||||
|
}
|
||||||
|
span.time {
|
||||||
|
background: url(../../images/time.gif) no-repeat;
|
||||||
|
}
|
||||||
|
span.users, span.agents, span.data, span.alerts, span.time {
|
||||||
|
margin-left: 4px;
|
||||||
|
margin-top: 10px;
|
||||||
|
padding: 4px 8px 12px 30px;
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
.mgb25 {
|
||||||
|
margin-bottom: 25px;
|
||||||
}
|
}
|
|
@ -16,8 +16,7 @@
|
||||||
// You should have received a copy of the GNU General Public License
|
// You should have received a copy of the GNU General Public License
|
||||||
// along with this program; if not, write to the Free Software
|
// along with this program; if not, write to the Free Software
|
||||||
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
||||||
include ("../../../include/config.php");
|
include "../../include/config.php";
|
||||||
|
|
||||||
|
|
||||||
//abrir y seleccionar la base de datos de pandora
|
//abrir y seleccionar la base de datos de pandora
|
||||||
|
|
||||||
|
|
|
@ -72,13 +72,13 @@ CREATE TABLE `tagente_datos_inc` (
|
||||||
CREATE TABLE `tagente_datos_string` (
|
CREATE TABLE `tagente_datos_string` (
|
||||||
`id_tagente_datos_string` bigint(20) unsigned NOT NULL auto_increment,
|
`id_tagente_datos_string` bigint(20) unsigned NOT NULL auto_increment,
|
||||||
`id_agente_modulo` int(10) unsigned NOT NULL default '0',
|
`id_agente_modulo` int(10) unsigned NOT NULL default '0',
|
||||||
`datos` tinytext NOT NULL default '',
|
`datos` tinytext NOT NULL,
|
||||||
`timestamp` datetime NOT NULL default '0000-00-00 00:00:00',
|
`timestamp` datetime NOT NULL default '0000-00-00 00:00:00',
|
||||||
`id_agente` bigint(4) unsigned NOT NULL default '0',
|
`id_agente` bigint(4) unsigned NOT NULL default '0',
|
||||||
`utimestamp` mediumint(12) unsigned NOT NULL default '0',
|
`utimestamp` mediumint(12) unsigned NOT NULL default '0',
|
||||||
PRIMARY KEY (`id_tagente_datos_string`),
|
PRIMARY KEY (`id_tagente_datos_string`),
|
||||||
KEY `data_string_index_1` (`id_agente_modulo`),
|
KEY `data_string_index_1` (`id_agente_modulo`),
|
||||||
KEY `data_string_index_2` (`id_agente`),
|
KEY `data_string_index_2` (`id_agente`)
|
||||||
) TYPE=InnoDB;
|
) TYPE=InnoDB;
|
||||||
|
|
||||||
# Database: pandora
|
# Database: pandora
|
||||||
|
@ -165,7 +165,7 @@ CREATE TABLE `talerta_agente_modulo` (
|
||||||
`id_alerta` int(10) unsigned NOT NULL default '0',
|
`id_alerta` int(10) unsigned NOT NULL default '0',
|
||||||
`al_campo1` varchar(255) default '',
|
`al_campo1` varchar(255) default '',
|
||||||
`al_campo2` varchar(255) default '',
|
`al_campo2` varchar(255) default '',
|
||||||
`al_campo3` mediumtext default '',
|
`al_campo3` mediumtext,
|
||||||
`descripcion` varchar(255) default '',
|
`descripcion` varchar(255) default '',
|
||||||
`dis_max` int(8) default NULL,
|
`dis_max` int(8) default NULL,
|
||||||
`dis_min` int(8) default NULL,
|
`dis_min` int(8) default NULL,
|
||||||
|
@ -221,7 +221,7 @@ CREATE TABLE `tevento` (
|
||||||
`id_agente` int(10) unsigned NOT NULL default '0',
|
`id_agente` int(10) unsigned NOT NULL default '0',
|
||||||
`id_usuario` varchar(60) NOT NULL default '0',
|
`id_usuario` varchar(60) NOT NULL default '0',
|
||||||
`id_grupo` int(10) unsigned NOT NULL default '0',
|
`id_grupo` int(10) unsigned NOT NULL default '0',
|
||||||
`estado` tynyint(4) unsigned NOT NULL default '0',
|
`estado` tinyint(4) unsigned NOT NULL default '0',
|
||||||
`timestamp` datetime NOT NULL default '0000-00-00 00:00:00',
|
`timestamp` datetime NOT NULL default '0000-00-00 00:00:00',
|
||||||
`evento` varchar(255) NOT NULL default '',
|
`evento` varchar(255) NOT NULL default '',
|
||||||
PRIMARY KEY (`id_evento`),
|
PRIMARY KEY (`id_evento`),
|
||||||
|
|
Loading…
Reference in New Issue