Versión 1.0.3, #454: Algunas mejoras en el buscador básico de equipos.

git-svn-id: https://opengnsys.es/svn/branches/version1.0@2555 a21b9725-9963-47de-94b9-378ad31fedc9
remotes/github/debian-pkg
ramon 2012-02-13 08:51:26 +00:00
parent 835d044c1b
commit 05d2e03baf
5 changed files with 12 additions and 8 deletions

View File

@ -14,5 +14,6 @@ $TbMsg["SEARCH_IP"]="Adreça IP";
$TbMsg["SEARCH_MAC"]="Adreça MAC";
$TbMsg["SEARCH_DUPLICATES"]="Duplicats";
$TbMsg["SEARCH_NOMATCHES"]="No es troben resultats";
$TbMsg["SEARCH_NOVALUE"]="Ha d\'introduir un valor per al criteri de cerca";
?>

View File

@ -14,5 +14,6 @@ $TbMsg["SEARCH_IP"]="IP address";
$TbMsg["SEARCH_MAC"]="MAC address";
$TbMsg["SEARCH_DUPLICATES"]="Duplicates";
$TbMsg["SEARCH_NOMATCHES"]="There are no matches";
$TbMsg["SEARCH_NOVALUE"]="You must enter a value for the search criteria";
?>

View File

@ -14,5 +14,6 @@ $TbMsg["SEARCH_IP"]="Dirección IP";
$TbMsg["SEARCH_MAC"]="Dirección MAC";
$TbMsg["SEARCH_DUPLICATES"]="Duplicados";
$TbMsg["SEARCH_NOMATCHES"]="No se encuentran resultados";
$TbMsg["SEARCH_NOVALUE"]="Debe introducir un valor para el criterio de búsqueda";
?>

View File

@ -15,13 +15,13 @@ include_once("../includes/CreaComando.php");
include_once("../includes/TomaDato.php");
include_once("../idiomas/php/".$idioma."/buscar_".$idioma.".php");
session_start(); // Activa variables de sesi<EFBFBD>
session_start(); // Activa variables de sesión.
if (isset($_POST["criterio"])) $criterio=$_POST["criterio"];
if (isset($_POST["valor"])) $valor=htmlspecialchars ($_POST["valor"]);
if (isset($_POST["criterio"])) $criterio=htmlspecialchars($_POST["criterio"]);
if (isset($_POST["valor"])) $valor=htmlspecialchars($_POST["valor"]);
if (!empty ($valor) || $criterio == "duplic") {
$cmd=CreaComando($cadenaconexion);
if ($cmd){
if ($cmd) {
$rs=new Recordset;
switch ($criterio) {
case "nombre":
@ -114,7 +114,7 @@ if (!empty ($valor) || $criterio == "duplic") {
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<link rel="stylesheet" type="text/css" href="../estilos.css">
<script languaje="JAVASCRIPT">
<script languaje="javascript">
//_________________________________
function confirmar(){
if (comprobar_datos())
@ -122,8 +122,8 @@ function confirmar(){
}
//_________________________________
function comprobar_datos(){
if (document.fdatos.valor.value=="" && document.fdatos.criterio.value!="duplic"){
alert("Debe introducir un valor para el criterio de búsqueda")
if (document.fdatos.valor.value=="" && document.fdatos.criterio.value!="duplic") {
alert("<?php echo $TbMsg["SEARCH_NOVALUE"] ?>")
document.fdatos.valor.focus()
return(false)
}
@ -182,7 +182,7 @@ if (!empty ($valor) || $criterio == "duplic") {
<div align="center" style="margin:20;">
<form action="#" class="formulariodatos" name="fdatos" method="post">
<?php echo $TbMsg["SEARCH_CRITERIA"] ?>:
<select name="criterio" id="criterio">
<select name="criterio" id="criterio" onchange="if (document.fdatos.criterio.value=='duplic') document.fdatos.valor.disabled=true; else document.fdatos.valor.disabled=false">
<option value="nombre"> <?php echo $TbMsg["SEARCH_NAME"] ?> </option>
<option value="ip"> <?php echo $TbMsg["SEARCH_IP"] ?> </option>
<option value="mac"> <?php echo $TbMsg["SEARCH_MAC"] ?> </option>

View File

@ -1477,4 +1477,5 @@ installationSummary
#rm -rf $WORKDIR
echoAndLog "OpenGnSys installation finished at $(date)"
exit 0