2007-10-13 Raul Mateos <raulofpandora@gmail.com>
* styles/op.css, god.css, link.css: Simplify styles. * godmode/menu.php: removed unused class. * operation/menu.php: Updated license header. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@675 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
6344bf025b
commit
85bd03d1bf
|
@ -1,5 +1,11 @@
|
||||||
2007-10-13 Raul Mateos <raulofpandora@gmail.com>
|
2007-10-13 Raul Mateos <raulofpandora@gmail.com>
|
||||||
|
|
||||||
|
* styles/op.css, god.css, link.css: Simplify styles.
|
||||||
|
|
||||||
|
* godmode/menu.php: removed unused class.
|
||||||
|
|
||||||
|
* operation/menu.php: Updated license header.
|
||||||
|
|
||||||
* operation/incidents/indicent_statistics.php: Added vertical align to images.
|
* operation/incidents/indicent_statistics.php: Added vertical align to images.
|
||||||
|
|
||||||
* languages/language_es_es.php: Solved small text typo.
|
* languages/language_es_es.php: Solved small text typo.
|
||||||
|
|
|
@ -37,7 +37,7 @@ if (comprueba_login() == 0){
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
echo '<div id="god1">';
|
echo '<div id="god1">';
|
||||||
echo '<ul class="mn"><li class="bt0"><a href="index.php?sec=gagente&sec2=godmode/agentes/modificar_agente" class="mn">'.$lang_label["manage_agents"].'</a></li></ul></div>';
|
echo '<ul class="mn"><li><a href="index.php?sec=gagente&sec2=godmode/agentes/modificar_agente" class="mn">'.$lang_label["manage_agents"].'</a></li></ul></div>';
|
||||||
|
|
||||||
if (isset($_GET["sec"]) && $_GET["sec"] == "gagente"){
|
if (isset($_GET["sec"]) && $_GET["sec"] == "gagente"){
|
||||||
if (isset($_GET["sec2"]) && $_GET["sec2"] == "godmode/agentes/manage_config"){
|
if (isset($_GET["sec2"]) && $_GET["sec2"] == "godmode/agentes/manage_config"){
|
||||||
|
|
|
@ -71,6 +71,6 @@ div.arrowg>ul, div.arrowgs>ul, div#arrowgl>ul, div#arrowgls>ul {
|
||||||
#arrowgl li.bb0, #arrowgls li.bb0, #god8 li.bb0 {
|
#arrowgl li.bb0, #arrowgls li.bb0, #god8 li.bb0 {
|
||||||
border-bottom: 0px;
|
border-bottom: 0px;
|
||||||
}
|
}
|
||||||
#god1 li.bt0, #god1s li.bt0 {
|
#god {
|
||||||
border-top: 0px;
|
border-top: 0px;
|
||||||
}
|
}
|
|
@ -43,6 +43,6 @@ div.linkli>ul {
|
||||||
#link a:hover, .linkli li:hover {
|
#link a:hover, .linkli li:hover {
|
||||||
background-color: #cde0ad;
|
background-color: #cde0ad;
|
||||||
}
|
}
|
||||||
#link li.bb0 {
|
#link {
|
||||||
border-bottom: 0px;
|
border-bottom: 0px;
|
||||||
}
|
}
|
|
@ -69,9 +69,9 @@ div.arrow>ul, div.arrows>ul, div#arrowl>ul, div#arrowls>ul {
|
||||||
{
|
{
|
||||||
background-color: #d4ddc6;
|
background-color: #d4ddc6;
|
||||||
}
|
}
|
||||||
#arrowl li.bb0, #arrowls li.bb0, #op8 li.bb0 {
|
#op li.bb0, #arrowls li.bb0, #op8 li.bb0 {
|
||||||
border-bottom: 0px;
|
border-bottom: 0px;
|
||||||
}
|
}
|
||||||
#op1 li.bt0, #op1s li.bt0 {
|
#op {
|
||||||
border-top: 0px;
|
border-top: 0px;
|
||||||
}
|
}
|
|
@ -1,14 +1,18 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
// Pandora - the Free monitoring system
|
// Pandora FMS - the Free monitoring system
|
||||||
// ====================================
|
// ========================================
|
||||||
// Copyright (c) 2004-2006 Sancho Lerena, slerena@gmail.com
|
// Copyright (c) 2004-2007 Sancho Lerena, slerena@gmail.com
|
||||||
// Copyright (c) 2005-2006 Artica Soluciones Tecnol<6F>gicas S.L, info@artica.es
|
// Main PHP/SQL code development and project architecture and management
|
||||||
// Copyright (c) 2004-2006 Raul Mateos Martin, raulofpandora@gmail.com
|
// Copyright (c) 2004-2007 Raul Mateos Martin, raulofpandora@gmail.com
|
||||||
|
// CSS and some PHP additions
|
||||||
|
// Copyright (c) 2006 Jose Navarro <contacto@indiseg.net>
|
||||||
|
// Additions to Pandora FMS 1.2 graph code
|
||||||
|
// Copyright (c) 2005-2007 Artica Soluciones Tecnologicas, info@artica.es
|
||||||
|
//
|
||||||
// This program is free software; you can redistribute it and/or
|
// This program is free software; 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; either version 2
|
// as published by the Free Software Foundation; version 2
|
||||||
// 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; without even the implied warranty of
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
@ -271,5 +275,5 @@ if (give_acl($_SESSION["id_usuario"], 0, "AR")==1) {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
?>
|
?>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue