summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoradv <adv@uma.es>2011-04-08 13:04:06 +0000
committeradv <adv@uma.es>2011-04-08 13:04:06 +0000
commitfe86970a00c5913b0706ddf66c8ee461315f89ec (patch)
treeaba3139aa1b86da7d6a92a381cc511b740e4cf68
parent489537290b960ac4e9f3b57b2e15480720aa78d9 (diff)
version1.0 eliminandos pruebas de asistentes dentro de estructura comandos #359
git-svn-id: https://opengnsys.es/svn/branches/version1.0@1752 a21b9725-9963-47de-94b9-378ad31fedc9
-rw-r--r--admin/WebConsole/comandos/AsistenteCloneRemotePartition.php112
-rw-r--r--admin/WebConsole/comandos/AsistenteDeployImage.php138
-rw-r--r--admin/WebConsole/comandos/AsistenteParticionado.php131
-rw-r--r--admin/WebConsole/comandos/AsistenteUpdateCache.php138
-rw-r--r--admin/WebConsole/comandos/includes/asistentes/AyudanteFormularios.php337
-rw-r--r--admin/WebConsole/comandos/includes/asistentes/formCloneRemotePartition.php72
-rw-r--r--admin/WebConsole/comandos/includes/asistentes/formDeployImage.php48
-rw-r--r--admin/WebConsole/comandos/includes/asistentes/formParticionado.php75
-rw-r--r--admin/WebConsole/comandos/jscripts/asistentes.js83
-rw-r--r--admin/WebConsole/comandos/xajax.common.php7
-rw-r--r--admin/WebConsole/comandos/xajax.server.php91
11 files changed, 0 insertions, 1232 deletions
diff --git a/admin/WebConsole/comandos/AsistenteCloneRemotePartition.php b/admin/WebConsole/comandos/AsistenteCloneRemotePartition.php
deleted file mode 100644
index 839dfb2b..00000000
--- a/admin/WebConsole/comandos/AsistenteCloneRemotePartition.php
+++ /dev/null
@@ -1,112 +0,0 @@
-<?php
-// *************************************************************************************************************************************************
-// Aplicacion WEB: ogAdmWebCon
-// Autor: Antonio J. Doblas Viso
-// Baso en Codigo Comando.php de : Jose Manuel Alonso (E.T.S.I.I.) Universidad de Sevilla
-// Xajax
-// *************************************************************************************************************************************************
-
-
-require_once('xajax.common.php');
-//Haciendo referencia a las funciones registradas y que seran interpretadas como funciones javascript
-
-
-
-/********HACIENDO CONSULTA A LA TABLA ordenadores***********/
-include_once("../includes/ctrlacc.php");
-include_once("../clases/AdoPhp.php");
-include_once("../includes/constantes.php");
-include_once("../includes/comunes.php");
-include_once("../includes/CreaComando.php");
-include_once("../includes/HTMLSELECT.php");
-include_once("../idiomas/php/".$idioma."/comandos/ejecutarscripts_".$idioma.".php");
-//________________________________________________________________________________________________________
-include_once("./includes/capturaacciones.php");
-//________________________________________________________________________________________________________
-//________________________________________________________________________________________________________
-$cmd=CreaComando($cadenaconexion);
-if (!$cmd)
- Header('Location: '.$pagerror.'?herror=2'); // Error de conexión con servidor B.D.
-//________________________________________________________________________________________________________
-
-?>
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html>
-<head>
-<title> Administración web de aulas </title>
-<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
- <LINK rel="stylesheet" type="text/css" href="../estilos.css">
- <SCRIPT language="javascript" src="./jscripts/EjecutarScripts.js"></SCRIPT>
- <SCRIPT language="javascript" src="./jscripts/comunescomandos.js"></SCRIPT>
- <SCRIPT language="javascript" src="./jscripts/asistentes.js"></SCRIPT>
- <? echo '<SCRIPT language="javascript" src="../idiomas/javascripts/'.$idioma.'/comandos/ejecutarscripts_'.$idioma.'.js"></SCRIPT>'?>
- <? echo '<SCRIPT language="javascript" src="../idiomas/javascripts/'.$idioma.'/comandos/comunescomandos_'.$idioma.'.js"></SCRIPT>'?>
-<?php
-//indicamos al objeto xajax se encargue de generar el javascript de las funciones registradas por ejm: ListarParticionesXip
-$xajax->printJavascript('../xajax/');
-?>
-</head>
-
-
-<body>
-<?
-switch($ambito){
- case $AMBITO_CENTROS :
- $urlimg='../images/iconos/centros.gif';
- $textambito=$TbMsg[0];
- break;
- case $AMBITO_GRUPOSAULAS :
- $urlimg='../images/iconos/carpeta.gif';
- $textambito=$TbMsg[1];
- break;
- case $AMBITO_AULAS :
- $urlimg='../images/iconos/aula.gif';
- $textambito=$TbMsg[2];
- if (isset($_GET["idambito"])) $idambito=$_GET["idambito"];
- break;
- case $AMBITO_GRUPOSORDENADORES :
- $urlimg='../images/iconos/carpeta.gif';
- $textambito=$TbMsg[3];
- break;
- case $AMBITO_ORDENADORES :
- $urlimg='../images/iconos/ordenador.gif';
- $textambito=$TbMsg[4];
- break;
- }
- echo '<p align=center><span class=cabeceras>'.$descricomando.'&nbsp;</span><br>';
- echo '<IMG src="'.$urlimg.'">&nbsp;&nbsp;<span align=center class=subcabeceras>
- <U>'.$TbMsg[6].': '.$textambito.','.$nombreambito.'</U></span>&nbsp;&nbsp;</span></p>';
- ?>
-
-
- <form align=center name="fdatos" >
-
-
-
- <table align=center class=tabla_datos border="0" cellpadding="0" cellspacing="1">
- <?
- include_once("./includes/asistentes/AyudanteFormularios.php");
- include_once("./includes/asistentes/formCloneRemotePartition.php");
-?>
-
-
-
- <tr>
- <th><INPUT TYPE="button" NAME="GenerarInstruccion" Value="Generar InstruccionOG" onClick="codeCloneRemotePartition(this.form)"> </th>
- <td><textarea class="cajatexto" name="codigo" cols="70" rows="7"></textarea></td>
- </tr>
- </table>
- </form>
-
-<?
- //________________________________________________________________________________________________________
- include_once("./includes/formularioacciones.php");
- //________________________________________________________________________________________________________
- //________________________________________________________________________________________________________
- include_once("./includes/opcionesacciones.php");
- //________________________________________________________________________________________________________
-?>
-
-
-</body>
-</html> \ No newline at end of file
diff --git a/admin/WebConsole/comandos/AsistenteDeployImage.php b/admin/WebConsole/comandos/AsistenteDeployImage.php
deleted file mode 100644
index d7dfc695..00000000
--- a/admin/WebConsole/comandos/AsistenteDeployImage.php
+++ /dev/null
@@ -1,138 +0,0 @@
-<?php
-// *************************************************************************************************************************************************
-// Aplicacion WEB: ogAdmWebCon
-// Autor:
-// Baso en Codigo Comando.php de : Jose Manuel Alonso (E.T.S.I.I.) Universidad de Sevilla
-// Xajax
-// *************************************************************************************************************************************************
-
-
-require_once('xajax.common.php');
-//Haciendo referencia a las funciones registradas y que seran interpretadas como funciones javascript
-
-
-
-/********HACIENDO CONSULTA A LA TABLA ordenadores***********/
-include_once("../includes/ctrlacc.php");
-include_once("../clases/AdoPhp.php");
-include_once("../includes/constantes.php");
-include_once("../includes/comunes.php");
-include_once("../includes/CreaComando.php");
-include_once("../includes/HTMLSELECT.php");
-include_once("../idiomas/php/".$idioma."/comandos/ejecutarscripts_".$idioma.".php");
-
-
-
-include_once("../includes/HTMLCTESELECT.php");
-include_once("../includes/TomaDato.php");
-include_once("../includes/ConfiguracionesParticiones.php");
-include_once("../includes/RecopilaIpesMacs.php");
-
-include_once("./includes/asistentes/AyudanteFormularios.php");
-
-
-//________________________________________________________________________________________________________
-include_once("./includes/capturaacciones.php");
-//________________________________________________________________________________________________________
-//________________________________________________________________________________________________________
-$cmd=CreaComando($cadenaconexion);
-if (!$cmd)
- Header('Location: '.$pagerror.'?herror=2'); // Error de conexión con servidor B.D.
-//________________________________________________________________________________________________________
-
-?>
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html>
-<head>
-<title> Administración web de aulas </title>
-<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
- <LINK rel="stylesheet" type="text/css" href="../estilos.css">
- <SCRIPT language="javascript" src="./jscripts/EjecutarScripts.js"></SCRIPT>
- <SCRIPT language="javascript" src="./jscripts/comunescomandos.js"></SCRIPT>
- <SCRIPT language="javascript" src="./jscripts/asistentes.js"></SCRIPT>
- <? echo '<SCRIPT language="javascript" src="../idiomas/javascripts/'.$idioma.'/comandos/ejecutarscripts_'.$idioma.'.js"></SCRIPT>'?>
- <? echo '<SCRIPT language="javascript" src="../idiomas/javascripts/'.$idioma.'/comandos/comunescomandos_'.$idioma.'.js"></SCRIPT>'?>
-
-
-<?php
-//indicamos al objeto xajax se encargue de generar el javascript de las funciones registradas por ejm: ListarParticionesXip
-$xajax->printJavascript('../xajax/');
-?>
-</head>
-
-
-<body>
-<?
-# ambito: 4->aulas 16->ordenadores
-# idambito: id de los elementos en su correspondiente tabla-ambito (aulas, ordenadores...)
-# nombreambito: nombre del elemento.
-
-switch($ambito){
- case $AMBITO_CENTROS :
- $urlimg='../images/iconos/centros.gif';
- $textambito=$TbMsg[0];
- break;
- case $AMBITO_GRUPOSAULAS :
- $urlimg='../images/iconos/carpeta.gif';
- $textambito=$TbMsg[1];
- break;
- case $AMBITO_AULAS :
- $urlimg='../images/iconos/aula.gif';
- $textambito=$TbMsg[2];
- if (isset($_GET["idambito"])) $idambito=$_GET["idambito"];
- if (isset($_GET["litambito"])) $litambito=$_GET["litambito"];
- break;
- case $AMBITO_GRUPOSORDENADORES :
- $urlimg='../images/iconos/carpeta.gif';
- $textambito=$TbMsg[3];
- break;
- case $AMBITO_ORDENADORES :
- $urlimg='../images/iconos/ordenador.gif';
- $textambito=$TbMsg[4];
- if (isset($_GET["idambito"])) $idambito=$_GET["idambito"];
- if (isset($_GET["litambito"])) $litambito=$_GET["litambito"];
- break;
- }
- echo '<p align=center><span class=cabeceras>'.$descricomando.'&nbsp;</span><br>';
- echo '<IMG src="'.$urlimg.'">&nbsp;&nbsp;<span align=center class=subcabeceras>
- <U>'.$TbMsg[6].': '.$textambito.','.$nombreambito.'</U></span>&nbsp;&nbsp;</span></p>';
-
- $sws=$fk_sysFi | $fk_nombreSO | $fk_tamano | $fk_imagen | $fk_perfil;
- pintaConfiguraciones($cmd,$idambito,$ambito,7,$sws,false);
-
- ?>
-
-
- <form align=center name="fdatos" >
-
-
-
- <table class=tabla_datos border="0" cellpadding="0" cellspacing="1">
- <?
- include_once("./includes/asistentes/formDeployImage.php");
- ?>
-
- <tr>
- <th ><INPUT TYPE="button" NAME="GenerarInstruccion" Value="Generar InstruccionOG" onClick="codeDeployImage(this.form)"> </th>
- <td colspan="5"><textarea class="cajatexto" name="codigo" cols="70" rows="7"></textarea></td>
- </tr>
- </table>
- </form>
-
-<?
- //________________________________________________________________________________________________________
- include_once("./includes/formularioacciones.php");
- //________________________________________________________________________________________________________
- //________________________________________________________________________________________________________
- include_once("./includes/opcionesacciones.php");
- //________________________________________________________________________________________________________
-
-
-
-
-
-?>
-
-
-</body>
-</html> \ No newline at end of file
diff --git a/admin/WebConsole/comandos/AsistenteParticionado.php b/admin/WebConsole/comandos/AsistenteParticionado.php
deleted file mode 100644
index b48e0cf5..00000000
--- a/admin/WebConsole/comandos/AsistenteParticionado.php
+++ /dev/null
@@ -1,131 +0,0 @@
-<?php
-// *************************************************************************************************************************************************
-// Aplicacion WEB: ogAdmWebCon
-// Autor: Antonio J. Doblas Viso
-// Baso en Codigo Comando.php de : Jose Manuel Alonso (E.T.S.I.I.) Universidad de Sevilla
-// Xajax
-// *************************************************************************************************************************************************
-
-
-require_once('xajax.common.php');
-//Haciendo referencia a las funciones registradas y que seran interpretadas como funciones javascript
-
-
-
-/********HACIENDO CONSULTA A LA TABLA ordenadores***********/
-include_once("../includes/ctrlacc.php");
-include_once("../clases/AdoPhp.php");
-include_once("../includes/constantes.php");
-include_once("../includes/comunes.php");
-include_once("../includes/CreaComando.php");
-include_once("../includes/HTMLSELECT.php");
-include_once("../idiomas/php/".$idioma."/comandos/ejecutarscripts_".$idioma.".php");
-
-
-
-include_once("../includes/HTMLCTESELECT.php");
-include_once("../includes/TomaDato.php");
-include_once("../includes/ConfiguracionesParticiones.php");
-include_once("../includes/RecopilaIpesMacs.php");
-
- include_once("./includes/asistentes/AyudanteFormularios.php");
-
-
-//________________________________________________________________________________________________________
-include_once("./includes/capturaacciones.php");
-//________________________________________________________________________________________________________
-//________________________________________________________________________________________________________
-$cmd=CreaComando($cadenaconexion);
-if (!$cmd)
- Header('Location: '.$pagerror.'?herror=2'); // Error de conexión con servidor B.D.
-//________________________________________________________________________________________________________
-
-?>
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html>
-<head>
-<title> Administración web de aulas </title>
-<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
- <LINK rel="stylesheet" type="text/css" href="../estilos.css">
- <SCRIPT language="javascript" src="./jscripts/EjecutarScripts.js"></SCRIPT>
- <SCRIPT language="javascript" src="./jscripts/comunescomandos.js"></SCRIPT>
- <SCRIPT language="javascript" src="./jscripts/asistentes.js"></SCRIPT>
- <? echo '<SCRIPT language="javascript" src="../idiomas/javascripts/'.$idioma.'/comandos/ejecutarscripts_'.$idioma.'.js"></SCRIPT>'?>
- <? echo '<SCRIPT language="javascript" src="../idiomas/javascripts/'.$idioma.'/comandos/comunescomandos_'.$idioma.'.js"></SCRIPT>'?>
-
-
-<?php
-//indicamos al objeto xajax se encargue de generar el javascript de las funciones registradas por ejm: ListarParticionesXip
-$xajax->printJavascript('../xajax/');
-?>
-</head>
-
-
-<body>
-<?
-switch($ambito){
- case $AMBITO_CENTROS :
- $urlimg='../images/iconos/centros.gif';
- $textambito=$TbMsg[0];
- break;
- case $AMBITO_GRUPOSAULAS :
- $urlimg='../images/iconos/carpeta.gif';
- $textambito=$TbMsg[1];
- break;
- case $AMBITO_AULAS :
- $urlimg='../images/iconos/aula.gif';
- $textambito=$TbMsg[2];
- if (isset($_GET["idambito"])) $idambito=$_GET["idambito"];
- break;
- case $AMBITO_GRUPOSORDENADORES :
- $urlimg='../images/iconos/carpeta.gif';
- $textambito=$TbMsg[3];
- break;
- case $AMBITO_ORDENADORES :
- $urlimg='../images/iconos/ordenador.gif';
- $textambito=$TbMsg[4];
- break;
- }
- echo '<p align=center><span class=cabeceras>'.$descricomando.'&nbsp;</span><br>';
- echo '<IMG src="'.$urlimg.'">&nbsp;&nbsp;<span align=center class=subcabeceras>
- <U>'.$TbMsg[6].': '.$textambito.','.$nombreambito.'</U></span>&nbsp;&nbsp;</span></p>';
-
- $sws=$fk_sysFi | $fk_nombreSO | $fk_tamano | $fk_imagen | $fk_perfil;
- pintaConfiguraciones($cmd,$idambito,$ambito,7,$sws,false);
-
- ?>
-
-
- <form align=center name="fdatos" >
-
-
-
- <table class=tabla_datos border="0" cellpadding="0" cellspacing="1">
- <?
- include_once("./includes/asistentes/formParticionado.php");
-?>
-
- <tr>
- <th colspan="5"><INPUT TYPE="button" NAME="GenerarInstruccion" Value="Generar InstruccionOG" onClick="codeParticionado(this.form)"> </th>
- <td><textarea class="cajatexto" name="codigo" cols="70" rows="7"></textarea></td>
- </tr>
- </table>
- </form>
-
-<?
- //________________________________________________________________________________________________________
- include_once("./includes/formularioacciones.php");
- //________________________________________________________________________________________________________
- //________________________________________________________________________________________________________
- include_once("./includes/opcionesacciones.php");
- //________________________________________________________________________________________________________
-
-
-
-
-
-?>
-
-
-</body>
-</html> \ No newline at end of file
diff --git a/admin/WebConsole/comandos/AsistenteUpdateCache.php b/admin/WebConsole/comandos/AsistenteUpdateCache.php
deleted file mode 100644
index 7e06210f..00000000
--- a/admin/WebConsole/comandos/AsistenteUpdateCache.php
+++ /dev/null
@@ -1,138 +0,0 @@
-<?php
-// *************************************************************************************************************************************************
-// Aplicacion WEB: ogAdmWebCon
-// Autor:
-// Baso en Codigo Comando.php de : Jose Manuel Alonso (E.T.S.I.I.) Universidad de Sevilla
-// Xajax
-// *************************************************************************************************************************************************
-
-
-require_once('xajax.common.php');
-//Haciendo referencia a las funciones registradas y que seran interpretadas como funciones javascript
-
-
-
-/********HACIENDO CONSULTA A LA TABLA ordenadores***********/
-include_once("../includes/ctrlacc.php");
-include_once("../clases/AdoPhp.php");
-include_once("../includes/constantes.php");
-include_once("../includes/comunes.php");
-include_once("../includes/CreaComando.php");
-include_once("../includes/HTMLSELECT.php");
-include_once("../idiomas/php/".$idioma."/comandos/ejecutarscripts_".$idioma.".php");
-
-
-
-include_once("../includes/HTMLCTESELECT.php");
-include_once("../includes/TomaDato.php");
-include_once("../includes/ConfiguracionesParticiones.php");
-include_once("../includes/RecopilaIpesMacs.php");
-
-include_once("./includes/asistentes/AyudanteFormularios.php");
-
-
-//________________________________________________________________________________________________________
-include_once("./includes/capturaacciones.php");
-//________________________________________________________________________________________________________
-//________________________________________________________________________________________________________
-$cmd=CreaComando($cadenaconexion);
-if (!$cmd)
- Header('Location: '.$pagerror.'?herror=2'); // Error de conexión con servidor B.D.
-//________________________________________________________________________________________________________
-
-?>
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html>
-<head>
-<title> Administración web de aulas </title>
-<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
- <LINK rel="stylesheet" type="text/css" href="../estilos.css">
- <SCRIPT language="javascript" src="./jscripts/EjecutarScripts.js"></SCRIPT>
- <SCRIPT language="javascript" src="./jscripts/comunescomandos.js"></SCRIPT>
- <SCRIPT language="javascript" src="./jscripts/asistentes.js"></SCRIPT>
- <? echo '<SCRIPT language="javascript" src="../idiomas/javascripts/'.$idioma.'/comandos/ejecutarscripts_'.$idioma.'.js"></SCRIPT>'?>
- <? echo '<SCRIPT language="javascript" src="../idiomas/javascripts/'.$idioma.'/comandos/comunescomandos_'.$idioma.'.js"></SCRIPT>'?>
-
-
-<?php
-//indicamos al objeto xajax se encargue de generar el javascript de las funciones registradas por ejm: ListarParticionesXip
-$xajax->printJavascript('../xajax/');
-?>
-</head>
-
-
-<body>
-<?
-# ambito: 4->aulas 16->ordenadores
-# idambito: id de los elementos en su correspondiente tabla-ambito (aulas, ordenadores...)
-# nombreambito: nombre del elemento.
-
-switch($ambito){
- case $AMBITO_CENTROS :
- $urlimg='../images/iconos/centros.gif';
- $textambito=$TbMsg[0];
- break;
- case $AMBITO_GRUPOSAULAS :
- $urlimg='../images/iconos/carpeta.gif';
- $textambito=$TbMsg[1];
- break;
- case $AMBITO_AULAS :
- $urlimg='../images/iconos/aula.gif';
- $textambito=$TbMsg[2];
- if (isset($_GET["idambito"])) $idambito=$_GET["idambito"];
- if (isset($_GET["litambito"])) $litambito=$_GET["litambito"];
- break;
- case $AMBITO_GRUPOSORDENADORES :
- $urlimg='../images/iconos/carpeta.gif';
- $textambito=$TbMsg[3];
- break;
- case $AMBITO_ORDENADORES :
- $urlimg='../images/iconos/ordenador.gif';
- $textambito=$TbMsg[4];
- if (isset($_GET["idambito"])) $idambito=$_GET["idambito"];
- if (isset($_GET["litambito"])) $litambito=$_GET["litambito"];
- break;
- }
- echo '<p align=center><span class=cabeceras>'.$descricomando.'&nbsp;</span><br>';
- echo '<IMG src="'.$urlimg.'">&nbsp;&nbsp;<span align=center class=subcabeceras>
- <U>'.$TbMsg[6].': '.$textambito.','.$nombreambito.'</U></span>&nbsp;&nbsp;</span></p>';
-
- $sws=$fk_sysFi | $fk_nombreSO | $fk_tamano | $fk_imagen | $fk_perfil;
- pintaConfiguraciones($cmd,$idambito,$ambito,7,$sws,false);
-
- ?>
-
-
- <form align=center name="fdatos" >
-
-
-
- <table class=tabla_datos border="0" cellpadding="0" cellspacing="1">
- <?
- include_once("./includes/asistentes/formDeployImage.php");
- ?>
-
- <tr>
- <th ><INPUT TYPE="button" NAME="GenerarInstruccion" Value="Generar InstruccionOG" onClick="codeDeployImage(this.form)"> </th>
- <td colspan="5"><textarea class="cajatexto" name="codigo" cols="70" rows="7"></textarea></td>
- </tr>
- </table>
- </form>
-
-<?
- //________________________________________________________________________________________________________
- include_once("./includes/formularioacciones.php");
- //________________________________________________________________________________________________________
- //________________________________________________________________________________________________________
- include_once("./includes/opcionesacciones.php");
- //________________________________________________________________________________________________________
-
-
-
-
-
-?>
-
-
-</body>
-</html>
diff --git a/admin/WebConsole/comandos/includes/asistentes/AyudanteFormularios.php b/admin/WebConsole/comandos/includes/asistentes/AyudanteFormularios.php
deleted file mode 100644
index d3569aa3..00000000
--- a/admin/WebConsole/comandos/includes/asistentes/AyudanteFormularios.php
+++ /dev/null
@@ -1,337 +0,0 @@
-<?
-/// funciones php
-
-#devuelve los elementos [texto] multicast para un formulario.
-#$ambito (aula=4 y ordenadores=16)
-function htmlForm_mcast($cmd,$ambito,$idambito)
-{
-//if (isset($_GET["idambito"])) $idambito=$_GET["idambito"];
-if ($ambito == 4)
-{
-$cmd->texto='SELECT aulas.pormul,aulas.ipmul,aulas.modomul,aulas.velmul,aulas.modp2p,aulas.timep2p FROM aulas where aulas.idaula=' . $idambito ;
-}
-
-if ($ambito == 8)
-{
-$cmd->texto='SELECT aulas.pormul,aulas.ipmul,aulas.modomul,aulas.velmul,aulas.modp2p,aulas.timep2p FROM aulas JOIN gruposordenadores ON aulas.idaula=gruposordenadores.idaula where gruposordenadores.idgrupo=' . $idambito ;
-}
-
-if ($ambito == 16)
-{
-$cmd->texto='SELECT aulas.pormul,aulas.ipmul,aulas.modomul,aulas.velmul,aulas.modp2p,aulas.timep2p FROM aulas JOIN ordenadores ON ordenadores.idaula=aulas.idaula where ordenadores.idordenador=' . $idambito ;
-}
-
- $rs=new Recordset;
- $rs->Comando=&$cmd;
-if ($rs->Abrir()){
- $rs->Primero();
- $SelectHtml.='puerto :<input type="text" size="3" name="mcastpuerto" value="'.$rs->campos["pormul"] . '" /> <br />';
- $rs->Siguiente();
- $SelectHtml.='direccion Mcast :<input type="text" size="15" maxlength="15" name="mcastdireccion" value="'.$rs->campos["ipmul"] . '" /> <br />';
- $rs->Siguiente();
- switch ($rs->campos["modomul"])
- {
- case 1:
- $modomulticast="half-duplex";
- break;
- default:
- $modomulticast="full-duplex";
- break;
- }
- $SelectHtml.='modo :<input type="text" size="8" name="mcastmodo" value="'.$modomulticast. '" /> <br />';
- $rs->Siguiente();
- $SelectHtml.='velocidad :<input type="text" size="6" name="mcastvelocidad" value="'.$rs->campos["velmul"] . '" /> <br />';
-
- $rs->Cerrar();
- }
- $SelectHtml.='nº Max. clientes :<input type="text" size="8" name="mcastnclien" value="50" /> <br />';
- $SelectHtml.='Tiempo(seg) Max. Espera :<input type="text" size="8" name="mcastseg" value="60" /> <br />';
-
- return($SelectHtml);
-}
-
-
-#devuelve los elementos [texto] p2p para un formulario.
-#$ambito (aula=4 y ordenadores=16)
-function htmlForm_p2p($cmd,$ambito,$idambito)
-{
-//if (isset($_GET["idambito"])) $idambito=$_GET["idambito"];
-if ($ambito == 4)
-{
-$cmd->texto='SELECT aulas.modp2p,aulas.timep2p FROM aulas where aulas.idaula=' . $idambito ;
-}
-if ($ambito == 8)
-{
-$cmd->texto='SELECT aulas.modp2p,aulas.timep2p FROM aulas JOIN gruposordenadores ON aulas.idaula=gruposordenadores.idaula where gruposordenadores.idgrupo=' . $idambito ;
-}
-
-
-if ($ambito == 16)
-{
-$cmd->texto='SELECT aulas.modp2p,aulas.timep2p FROM aulas JOIN ordenadores ON ordenadores.idaula=aulas.idaula where ordenadores.idordenador=' . $idambito ;
-}
-
- $rs=new Recordset;
- $rs->Comando=&$cmd;
-if ($rs->Abrir()){
- $rs->Primero();
- $SelectHtml.='modo :<input type="text" size="10" name="modp2p" value="'.$rs->campos["modp2p"] . '" /> <br />';
- $rs->Siguiente();
- $SelectHtml.='tiempo de semilla :<input type="text" size="10" maxlength="15" name="timep2p" value="'.$rs->campos["timep2p"] . '" /> <br />';
- $rs->Siguiente();
- $rs->Cerrar();
- }
-
-return($SelectHtml);
-}
-
-
-function htmlOPTION_equipos($cmd,$ambito,$idambito)
-{
-
-//if (isset($_GET["idambito"])) $idambito=$_GET["idambito"];
-if ($ambito == 4)
-{
-$cmd->texto='SELECT nombreordenador,idordenador,ip FROM ordenadores where idaula=' . $idambito ;
-}
-
-if ($ambito == 8)
-{
-$cmd->texto='SELECT nombreordenador,idordenador,ip FROM ordenadores where grupoid=' . $idambito ;
-}
-if ($ambito == 16)
-{
-$cmd->texto='SELECT nombreordenador,idordenador,ip FROM ordenadores where idaula=' . $idambito ;
-}
-
- $SelectHtml="";
- $rs=new Recordset;
- $rs->Comando=&$cmd;
-
- if ($rs->Abrir()){
- $rs->Primero();
- while (!$rs->EOF){
- $SelectHtml.='<OPTION value="'.$rs->campos["ip"] . '" ';
- $SelectHtml.='>';
- $SelectHtml.= $rs->campos["nombreordenador"] .'</OPTION>';
- $rs->Siguiente();
- }
- $rs->Cerrar();
- }
- //$SelectHtml.= '</SELECT>';
- return($SelectHtml);
-}
-
-
-
-
-
-
-function htmlOPTION_images($cmd)
-{
- $SelectHtml="";
- $cmd->texto="SELECT *,repositorios.ip as iprepositorio FROM imagenes
- INNER JOIN repositorios ON repositorios.idrepositorio=imagenes.idrepositorio";
- $rs=new Recordset;
- $rs->Comando=&$cmd;
-
- if ($rs->Abrir()){
- $rs->Primero();
- while (!$rs->EOF){
- $SelectHtml.='<OPTION value="'.$rs->campos["nombreca"] . '" ';
- $SelectHtml.='>';
- $SelectHtml.= $rs->campos["descripcion"] .'</OPTION>';
- $rs->Siguiente();
- }
- $rs->Cerrar();
- }
- return($SelectHtml);
-}
-
-
-
-function HTMLSELECT_imagenes($cmd,$idimagen,$numpar,$codpar,$icp,$sw)
-{
- $SelectHtml="";
- $cmd->texto="SELECT *,repositorios.ip as iprepositorio FROM imagenes
- INNER JOIN repositorios ON repositorios.idrepositorio=imagenes.idrepositorio";
- if($sw) // Imágenes con el mismo tipo de partición
- $cmd->texto.= " WHERE imagenes.codpar=".$codpar;
- else
- $cmd->texto.= " WHERE imagenes.codpar<>".$codpar;
-
- $cmd->texto.=" AND imagenes.numpar>0 AND imagenes.codpar>0 AND imagenes.idrepositorio>0"; // La imagene debe existir y estar creada
- $rs=new Recordset;
- $rs->Comando=&$cmd;
- if($sw) $des=1; else $des=0;
- $SelectHtml.= '<SELECT class="formulariodatos" id="despleimagen_'.$icp.'_'.$des.'" style="WIDTH:220">';
- $SelectHtml.= ' <OPTION value="0"></OPTION>';
-
- if ($rs->Abrir()){
- $rs->Primero();
- while (!$rs->EOF){
- $SelectHtml.='<OPTION value="'.$rs->campos["idimagen"]."_".$rs->campos["nombreca"]."_".$rs->campos["iprepositorio"]."_".$rs->campos["idperfilsoft"].'"';
- if($idimagen==$rs->campos["idimagen"]) $SelectHtml.=" selected ";
- $SelectHtml.='>';
- $SelectHtml.= $rs->campos["descripcion"].'</OPTION>';
- $rs->Siguiente();
- }
- $rs->Cerrar();
- }
- $SelectHtml.= '</SELECT>';
- return($SelectHtml);
-}
-
-
-
-function htmlOPTION_typepartnotcache($cmd)
-{
- $SelectHtml="";
- $cmd->texto='SELECT tipopar FROM tipospar WHERE NOT tipopar = "CACHE"';
- $rs=new Recordset;
- $rs->Comando=&$cmd;
- //$SelectHtml.= '<SELECT class="formulariodatos" name="nombre" id="identificador" style="WIDTH:220" ;" >';
- //$SelectHtml.= ' <OPTION value="0"></OPTION>';
-
- if ($rs->Abrir()){
- $rs->Primero();
- while (!$rs->EOF){
- $SelectHtml.='<OPTION value="'.$rs->campos["tipopar"] . '" ';
- $SelectHtml.='>';
- $SelectHtml.= $rs->campos["tipopar"] .'</OPTION>';
- $rs->Siguiente();
- }
- $rs->Cerrar();
- }
- //$SelectHtml.= '</SELECT>';
- return($SelectHtml);
-}
-
-
-function htmlForm_typepart($cmd,$numpar)
-{
- $SelectHtml="";
- $cmd->texto='SELECT DISTINCT tipopar FROM tipospar JOIN ordenadores_particiones ON ordenadores_particiones.codpar = tipospar.codpar WHERE numpar = ' .$numpar;
- $rs=new Recordset;
- $rs->Comando=&$cmd;
-
- if ($rs->Abrir()){
- $rs->Primero();
- while (!$rs->EOF){
- if ( $rs->campos["tipopar"] == "LINUX" )
- {
- $valor="EXT4";
- $valormostrar="LINUX:EXT[2:3:4]";
- }
- else
- {
- $valor=$rs->campos["tipopar"];
- $valormostrar=$rs->campos["tipopar"];
- }
- $SelectHtml.='<OPTION value="'.$valor . '" ';
- $SelectHtml.='>';
- $SelectHtml.= $valormostrar .'</OPTION>';
- $rs->Siguiente();
- }
- $rs->Cerrar();
- }
- return($SelectHtml);
-}
-
-
-
-
-
-
-
-function htmlForm_typepartnotcacheEngine10()
-{
-$SelectHtml="";
-$SelectHtml.='<OPTION value="FAT12"> FAT12 </OPTION>';
-$SelectHtml.='<OPTION value="FAT16"> FAT16 </OPTION>';
-$SelectHtml.='<OPTION value="FAT32"> FAT32 </OPTION>';
-$SelectHtml.='<OPTION value="NTFS"> NTFS </OPTION>';
-#$SelectHtml.='<OPTION value="EXT2"> EXT2 </OPTION>';
-#$SelectHtml.='<OPTION value="EXT3"> EXT3 </OPTION>';
-$SelectHtml.='<OPTION value="EXT4"> LINUX:EXT[2:3:4] </OPTION>';
-$SelectHtml.='<OPTION value="LINUX-SWAP"> LINUX-SWAP </OPTION>';
-$SelectHtml.='<OPTION value="REISERFS"> REISERFS </OPTION>';
-$SelectHtml.='<OPTION value="REISER4"> RESISER4 </OPTION>';
-$SelectHtml.='<OPTION value="XFS"> XFS </OPTION>';
-$SelectHtml.='<OPTION value="JFS"> JFS </OPTION>';
-$SelectHtml.='<OPTION value="LINUX-RAID"> LINUX-RAID </OPTION>';
-$SelectHtml.='<OPTION value="LINUX-LVM"> LINUX-LVM </OPTION>';
-return($SelectHtml);
-}
-
-
-function htmlForm_sizepart($cmd,$numpar)
-{
- $SelectHtml="";
- $cmd->texto='SELECT DISTINCT tamano FROM ordenadores_particiones WHERE numpar = ' .$numpar . ' AND NOT tamano = 0';
- $rs=new Recordset;
- $rs->Comando=&$cmd;
-
- if ($rs->Abrir()){
- $rs->Primero();
- while (!$rs->EOF){
- $SelectHtml.='<OPTION value="'.$rs->campos["tamano"] . '" ';
- $SelectHtml.='>';
- $SelectHtml.= $rs->campos["tamano"] .'</OPTION>';
- $rs->Siguiente();
- }
- $rs->Cerrar();
- }
- return($SelectHtml);
-}
-
-function pintaParticiones($cmd,$configuraciones,$idordenadores,$cc)
-{
- global $tbKeys; // Tabla contenedora de claves de configuración
- global $conKeys; // Contador de claves de configuración
- global $TbMsg;
-
- $colums=7;
- echo '<TR height=16>';
- echo '<TH align=center>&nbsp;'.$TbMsg[20].'&nbsp;</TH>'; // Número de partición
- echo '<TH align=center>&nbsp;'.$TbMsg[24].'&nbsp;</TH>'; // Tipo de partición
- echo '<TH align=center>&nbsp;'.$TbMsg[27].'&nbsp;</TH>'; // Sistema de ficheros
- echo '<TH align=center>&nbsp;'.$TbMsg[21].'&nbsp;</TH>'; // Sistema Operativo Instalado
- echo '<TH align=center>&nbsp;'.$TbMsg[22].'&nbsp;</TH>'; // Tamaño
- echo '<TH align=center>&nbsp;'.$TbMsg[25].'&nbsp;</TH>'; // Imagen instalada
- echo '<TH align=center>&nbsp;'.$TbMsg[26].'&nbsp;</TH>'; // Perfil software
- echo '</TR>';
-
- $auxCfg=split("@",$configuraciones); // Crea lista de particiones
- for($i=0;$i<sizeof($auxCfg);$i++){
- $auxKey=split(";",$auxCfg[$i]); // Toma clave de configuracion
- for($k=0;$k<$conKeys;$k++){ // Busca los literales para las claves de esa partición
- if($tbKeys[$k]["cfg"]==$auxCfg[$i]){ // Claves encontradas
- echo'<TR height=16>'.chr(13);
- echo'<TD align=center>&nbsp;'.$tbKeys[$k]["numpar"].'&nbsp;</TD>'.chr(13);
- echo'<TD align=center>&nbsp;'.$tbKeys[$k]["tipopar"].'&nbsp;</TD>'.chr(13);
-
- //echo'<TD align=center>&nbsp;'.$tbKeys[$k]["sistemafichero"].'&nbsp;</TD>'.chr(13);
- echo'<TD align=center>&nbsp;'.tomaSistemasFicheros($tbKeys[$k]["numpar"],$idordenadores).'&nbsp;</TD>'.chr(13);
-
- //echo '<TD>&nbsp;'.$tbKeys[$k]["nombreso"].'&nbsp;</TD>'.chr(13);
- echo '<TD align=center>&nbsp;'.tomaNombresSO($tbKeys[$k]["numpar"],$idordenadores).'&nbsp;</TD>'.chr(13);
-
- //echo'<TD align=rigth>&nbsp;'.formatomiles($tbKeys[$k]["tamano"]).'&nbsp;</TD>'.chr(13);
- echo'<TD align=center>&nbsp;'.tomaTamano($tbKeys[$k]["numpar"],$idordenadores).'&nbsp;</TD>'.chr(13);
-
- //echo'<TD>&nbsp;'.$tbKeys[$k]["imagen"].'&nbsp;</TD>'.chr(13);
- echo'<TD align=center>&nbsp;'.tomaImagenes($tbKeys[$k]["numpar"],$idordenadores).'&nbsp;</TD>'.chr(13);
-
- //echo'<TD>&nbsp;'.$tbKeys[$k]["perfilsoft"].'&nbsp;</TD>'.chr(13);
- echo'<TD align=center>&nbsp;'.tomaPerfiles($tbKeys[$k]["numpar"],$idordenadores).'&nbsp;</TD>'.chr(13);
-
- echo'</TR>'.chr(13);
- break;
- }
- }
- }
- echo '<TR height=5><TD colspan='.$colums.' style="BORDER-TOP: #999999 1px solid;BACKGROUND-COLOR: #FFFFFF;">&nbsp;</TD></TR>';
-}
-
-?> \ No newline at end of file
diff --git a/admin/WebConsole/comandos/includes/asistentes/formCloneRemotePartition.php b/admin/WebConsole/comandos/includes/asistentes/formCloneRemotePartition.php
deleted file mode 100644
index 510d3a55..00000000
--- a/admin/WebConsole/comandos/includes/asistentes/formCloneRemotePartition.php
+++ /dev/null
@@ -1,72 +0,0 @@
-
-
-
-<tr>
- <td class="op_basic">
- Elige equipo MASTER:
- <select name="ipMaster" id="ipMaster" style="WIDTH:220" onChange="xajax_ListarParticionesXip(this.value);">
- <option value="">-- Elige equipo Master--</option>
- <?php echo ''.htmlOPTION_equipos($cmd,$ambito,$idambito).''; ?>
- </select>
- <br />
- <!--DIV donde se mostrara la respuesta AJAX sobre las particiones clonables del equipo-->
- Elige particion del Master a enviar
- <div id="divListado"></div>
- <br />
- Elige herramienta de clonacion:
- <select name="tool" id="tool" style="WIDTH:220";">
- <option value="partclone"> partclone </option>
- <option value="partimage"> partimage </option>
- </select>
- <br />
- Elige compresor para la herramienta de clonacion:
- <select name="compresor" id="compresor" style="WIDTH:220";">
- <option value="lzop"> lzop </option>
- <option value="gzip"> gzip </option>
- </select>
- </td>
-
- <td class="op_net_1">
- <?php echo ''. htmlForm_mcast($cmd,$ambito,$idambito).''; ?>
- </td>
-
- <td class="op_tools">
- </td>
-
- <td class="op_target"></td>
-
- <td class="op_tools"></td>
-</tr>
-<tr>
- <td class="op_basic">
-
- </td>
- <td class="op_net_1"></td>
-
-
- <td class="op_net_1">
-
-
- </td>
- <td class="op_target"></td>
- <td class="op_tools"></td>
-</tr>
-<tr>
- <td class="op_basic"></td>
- <td class="op_net_1"></td>
- <td class="op_net_1"></td>
- <td class="op_target"></td>
- <td class="op_tools"></td>
-</tr>
-<tr>
- <td class="op_basic"></td>
- <td class="op_net_1"></td>
- <td class="op_net_1"></td>
- <td class="op_target"></td>
- <td class="op_tools"></td>
-</tr>
-
-
-
-
-
diff --git a/admin/WebConsole/comandos/includes/asistentes/formDeployImage.php b/admin/WebConsole/comandos/includes/asistentes/formDeployImage.php
deleted file mode 100644
index 2ee0920c..00000000
--- a/admin/WebConsole/comandos/includes/asistentes/formDeployImage.php
+++ /dev/null
@@ -1,48 +0,0 @@
-
-
-<tr> <td> opciones basicas </td> <td> opciones multicast </td> <td> opciones torrent </td> <td> opciones unicast </td></tr>
-
-<tr>
- <td class="op_basic">
- Elige la particion del disco donde se restaurar la imagen:
- <select name="idparticion" id="idparticion" style="WIDTH:220">
- <option value="1"> 1 </option>
- <option value="2"> 2 </option>
- <option value="3"> 3 </option>
- </select>
-
- <!--DIV donde se mostrara la respuesta AJAX sobre las particiones clonables del equipo-->
- <div id="divListado"></div>
- Elige la imagen a distribuir:
- <select name="idimagen" id="idimagen" style="WIDTH:220">
- <option value="">--Selecciona imagen --</option>
- <?php echo ''. htmlOPTION_images($cmd) .''; ?>
- </select>
- <br />
-
- <br />
- Elige el metodo de transferencia
- <select name="idmetodo" id="idmetodo" style="WIDTH:220";">
- <!-- <option value="UNICAST"> UNICAST </option> -->
- <option value="TORRENT"> TORRENT </option>
- <option value="MULTICAST"> MULTICAST </option>
- </select>
- <br />
- </td>
-
- <td class="op_mcast">
- <?php echo ''. htmlForm_mcast($cmd,$ambito,$idambito).''; ?>
- </td>
-
- <td class="op_torrent">
- <?php echo ''. htmlForm_p2p($cmd,$ambito,$idambito).''; ?>
- </td>
-
- <td class="op_unicast">
-
- </td>
-</tr>
-
-
-
-
diff --git a/admin/WebConsole/comandos/includes/asistentes/formParticionado.php b/admin/WebConsole/comandos/includes/asistentes/formParticionado.php
deleted file mode 100644
index dba79047..00000000
--- a/admin/WebConsole/comandos/includes/asistentes/formParticionado.php
+++ /dev/null
@@ -1,75 +0,0 @@
-
-
-<TR>
-<TD > Particion </TD>
-<TD > Tipo </TD>
-<TD > Tamano </TD>
-</TR>
-
-<TR>
-<TD > <input type="checkbox" name="check1" value="check1" onclick="if (this.form.check1.checked) { this.form.part1.disabled=false; this.form.size1.disabled=false } else { this.form.part1.disabled=true; this.form.size1.disabled=true; this.form.part1custom.disabled=true; this.form.size1custom.disabled=true }" /> <br> Particion 1 </TD>
-<TD>
-<select name="part1" id="part1" style="WIDTH:220" disabled="true" onclick="if (this.form.part1.options[this.form.part1.selectedIndex].value == 'CUSTOM') { this.form.part1custom.disabled=false; this.form.part1.disabled=true }" >
- <?php echo ''. htmlForm_typepart($cmd,1) .''; ?>
- <option value="CUSTOM"> Personalizar </option>
-</select>
-<br>
-<select name="part1custom" id="part1custom" style="WIDTH:220" disabled="true" >
- <?php echo ''. htmlForm_typepartnotcacheEngine10() .''; ?>
-</select></TD>
-
-<TD><select name="size1" id="size1" style="WIDTH:220" disabled="true" onclick="if (this.form.size1.options[this.form.size1.selectedIndex].value == 'CUSTOM') { this.form.size1custom.disabled=false; this.form.size1.disabled=true }" >
- <?php echo ''. htmlForm_sizepart($cmd,1) .''; ?>
- <option value="CUSTOM"> Personalizar </option>
-</select>
-<br >
-<INPUT type="text" style="width:100" name="size1custom" value="1" disabled="true"></TD>
-</TR>
-
-<TD > <input type="checkbox" name="check2" value="check2" onclick="if (this.form.check2.checked) { this.form.part2.disabled=false; this.form.size2.disabled=false } else { this.form.part2.disabled=true; this.form.size2.disabled=true; this.form.part2custom.disabled=true; this.form.size2custom.disabled=true }" /> <br> Particion 2 </TD>
-<TD><select name="part2" id="part2" style="WIDTH:220" disabled="true" onclick="if (this.form.part2.options[this.form.part2.selectedIndex].value == 'CUSTOM') { this.form.part2custom.disabled=false; this.form.part2.disabled=true }" >
- <?php echo ''. htmlForm_typepart($cmd,2) .''; ?>
- <option value="CUSTOM"> Personalizar </option>
-</select>
-<br>
-<select name="part2custom" id="part2custom" style="WIDTH:220" disabled="true" >
- <?php echo ''. htmlForm_typepartnotcacheEngine10() .''; ?>
-</select></TD>
-
-<TD><select name="size2" id="size2" style="WIDTH:220" disabled="true" onclick="if (this.form.size2.options[this.form.size2.selectedIndex].value == 'CUSTOM') { this.form.size2custom.disabled=false; this.form.size2.disabled=true }" >
- <?php echo ''. htmlForm_sizepart($cmd,2) .''; ?>
- <option value="CUSTOM"> Personalizar </option>
-</select>
-<br >
-<INPUT type="text" style="width:100" name="size2custom" value="1" disabled="true"></TD>
-</TR>
-
-
-<TD > <input type="checkbox" name="check3" value="check3" onclick="if (this.form.check3.checked) { this.form.part3.disabled=false; this.form.size3.disabled=false } else { this.form.part3.disabled=true; this.form.size3.disabled=true; this.form.part3custom.disabled=true; this.form.size3custom.disabled=true }" /> <br> Particion 3 </TD>
-<TD><select name="part3" id="part3" style="WIDTH:220" disabled="true" onclick="if (this.form.part3.options[this.form.part3.selectedIndex].value == 'CUSTOM') { this.form.part3custom.disabled=false; this.form.part3.disabled=true }" >
- <?php echo ''. htmlForm_typepart($cmd,3) .''; ?>
- <option value="CUSTOM"> Personalizar </option>
-</select>
-<br>
-<select name="part3custom" id="part3custom" style="WIDTH:220" disabled="true" >
- <?php echo ''. htmlForm_typepartnotcacheEngine10() .''; ?>
-</select></TD>
-
-<TD><select name="size3" id="size3" style="WIDTH:220" disabled="true" onclick="if (this.form.size3.options[this.form.size3.selectedIndex].value == 'CUSTOM') { this.form.size3custom.disabled=false; this.form.size3.disabled=true }" >
- <?php echo ''. htmlForm_sizepart($cmd,3) .''; ?>
- <option value="CUSTOM"> Personalizar </option>
-</select>
-<br >
-<INPUT type="text" style="width:100" name="size3custom" value="1" disabled="true"></TD>
-</TR>
-
-<TR>
-
-<TD > <input type="checkbox" name="check4" value="check4" onclick="if (this.form.check4.checked) { this.form.part4.disabled=false; this.form.size4.disabled=false } else { this.form.part4.disabled=true; this.form.size4.disabled=true }" /> <br> Particion 4 </TD>
-<TD> <INPUT type="label" readonly size="8" name="part4" disabled="true" value="CACHE"></TD>
-<TD><select name="size4" id="size4" style="WIDTH:220" disabled="true" >
- <option value="0"> Sin modificar tamanio </option>
- <?php echo ''. htmlForm_sizepart($cmd,4) .''; ?>
-</select>
-
-</TR> \ No newline at end of file
diff --git a/admin/WebConsole/comandos/jscripts/asistentes.js b/admin/WebConsole/comandos/jscripts/asistentes.js
deleted file mode 100644
index e2b97903..00000000
--- a/admin/WebConsole/comandos/jscripts/asistentes.js
+++ /dev/null
@@ -1,83 +0,0 @@
-// ***********************************************************************************************************
-// Libreria de scripts de Javascript
-// Autor:
-// Fecha Creación: 2011
-// Fecha Última modificación: enero-2011
-// Nombre del fichero: asistentes.js
-// Descripción :
-// Este fichero implementa las funciones javascript del fichero AsistentesEjecutarScripts.php (Comandos)
-// ***********************************************************************************************************
-
-function codeCloneRemotePartition(form){
-form.codigo.value="cloneRemoteFromMaster " + form.ipMaster.value + " 1 " + form.PartOrigen.value + " " + form.mcastpuerto.value + ":" + form.mcastmodo.value + ":" + form.mcastdireccion.value + ":" + form.mcastvelocidad.value + "M:" + form.mcastnclien.value + ":" + form.mcastseg.value + " 1 " + form.PartOrigen.value + " " + form.tool.value + " " + form.compresor.value;
-}
-
-function codeDeployImage(form){
-switch (form.idmetodo.value)
-{
- case "MULTICAST":
- protocol="MULTICAST " + form.mcastpuerto.value + ":" + form.mcastmodo.value + ":" + form.mcastdireccion.value + ":" + form.mcastvelocidad.value + "M:" + form.mcastnclien.value + ":" + form.mcastseg.value + " ";
- break;
- case "TORRENT":
- protocol=" TORRENT " + form.modp2p.value + ":" + form.timep2p.value;
- break;
-}
-//form.codigo.value="deployImage REPO /";
-form.codigo.value="deployImage REPO /" + form.idimagen.value + " 1 " + form.idparticion.value + " " + protocol ;
-}
-
-function codeParticionado(form){
-var value1;
-var value2;
-var value3;
-var precache;
-if (form.check1.checked) {
- if (form.part1.value == "CUSTOM" ) {value1 = form.part1custom.value}
- else {value1 = form.part1.value};
- if (form.size1.value == "CUSTOM") {value1 += ":" + form.size1custom.value}
- else {value1 += ":" + form.size1.value};
-}
-else
-{
- value1 = "EMPTY:1"
-}
-if (form.check2.checked) {
- if (form.part2.value == "CUSTOM" ) {value2 = form.part2custom.value}
- else {value2 = form.part2.value};
- if (form.size2.value == "CUSTOM") {value2 += ":" + form.size2custom.value}
- else {value2 += ":" + form.size2.value};
-}
-else
-{
- value2 = "EMPTY:1"
-}
-if (form.check3.checked) {
- if (form.part3.value == "CUSTOM" ) {value3 = form.part3custom.value}
- else {value3 = form.part3.value};
- if (form.size3.value == "CUSTOM") {value3 += ":" + form.size3custom.value}
- else {value3 += ":" + form.size3.value};
-}
-else
-{
- value3 = "EMPTY:1"
-}
-
-if (form.size4.value == "0") {
-precache="ogUnmountCache \n ogUnmountAll 1 \n sizecache=`ogGetPartitionSize 1 4` \n ogDeletePartitionTable 1 \n ogUpdatePartitionTable 1 \n initCache $sizecache ";
-//alert(precache);
-}
-else
-{
-precache="ogUnmountCache \n ogUnmountAll 1 \n ogDeletePartitionTable 1 \n ogUpdatePartitionTable 1 \n initCache " + form.size4.value + " ";
-//alert(precache);
-}
-
-
-form.codigo.value="\
-" + precache + " \n \
-ogListPartitions 1 \n \
-ogCreatePartitions 1 " + value1 + " " + value2 + " " + value3 + " \n \
-ogSetPartitionActive 1 1 \n \
-ogUpdatePartitionTable 1 \n \
-ogListPartitions 1 \n";
-}
diff --git a/admin/WebConsole/comandos/xajax.common.php b/admin/WebConsole/comandos/xajax.common.php
deleted file mode 100644
index f35e9a44..00000000
--- a/admin/WebConsole/comandos/xajax.common.php
+++ /dev/null
@@ -1,7 +0,0 @@
-<?php
-//importando las librerias XAJAX
-require ("/opt/opengnsys/www/xajax/xajax_core/xajax.inc.php");
-$xajax = new xajax("xajax.server.php");
-//asociamos la función creada en index.server.php al objeto XAJAX
-$xajax->registerFunction("ListarParticionesXip");
-?> \ No newline at end of file
diff --git a/admin/WebConsole/comandos/xajax.server.php b/admin/WebConsole/comandos/xajax.server.php
deleted file mode 100644
index 5d378a7b..00000000
--- a/admin/WebConsole/comandos/xajax.server.php
+++ /dev/null
@@ -1,91 +0,0 @@
-<?php
-//importando nuestras las referencias XAJAX
-require ("xajax.common.php");
-
-
-
-//función que lista las Particiones segun la IP elegida
-function ListarParticionesXip($ip){
-include_once("../includes/ctrlacc.php");
-include_once("../clases/AdoPhp.php");
-include_once("../includes/constantes.php");
-include_once("../includes/comunes.php");
-include_once("../includes/CreaComando.php");
-include_once("../includes/HTMLSELECT.php");
-include_once("../idiomas/php/".$idioma."/comandos/ejecutarscripts_".$idioma.".php");
-
-
-
-$cmd=CreaComando($cadenaconexion);
-define ("SQL_HOST", "localhost");
-define("SQL_HOST_LOCAL", "localhost");
-define ("SQL_USER", "usuog");
-define ("SQL_PASS", "passusuog");
-define ("DATABASE", "ogAdmBD");
-$conexion=mysql_connect(SQL_HOST, SQL_USER, SQL_PASS) or die ('no se ha podido conectar con mysql');
-mysql_select_db(DATABASE, $conexion);
-
-
-
- $objResponse = new xajaxResponse();
- //instanciamos el objeto para la respuesta AJAX
- //$objResponse->alert("Este equipo tiene ".$cantRegistros." particiones clonables.");
- //ISO-8859-1 significa que los caracteres latinos como la ñ y los acentos seran tomados en cuenta
- //$sql=sprintf('select xxxxxx where id=%d',$ip);
- //$sql='SELECT ordenadores_particiones.numpar,nombresos.nombreso FROM ordenadores_particiones INNER JOIN tipospar ON tipospar.codpar=ordenadores_particiones.codpar INNER JOIN nombresos ON ordenadores_particiones.idnombreso=nombresos.idnombreso WHERE ordenadores_particiones.idordenador=' .$ip . ' AND tipospar.clonable>0 AND ordenadores_particiones.idnombreso>0 ORDER BY ordenadores_particiones.numpar';
-
- $sql='SELECT ordenadores_particiones.numpar,nombresos.nombreso
- FROM ordenadores_particiones INNER JOIN tipospar ON tipospar.codpar=ordenadores_particiones.codpar
- INNER JOIN nombresos ON ordenadores_particiones.idnombreso=nombresos.idnombreso
- INNER JOIN ordenadores ON ordenadores_particiones.idordenador=ordenadores.idordenador
- WHERE ordenadores.ip="' .$ip . '"
- AND tipospar.clonable>0
- AND ordenadores_particiones.idnombreso>0
- ORDER BY ordenadores_particiones.numpar';
- //$objResponse->alert("Consulta ".$sql." .");
-
-
- $element=" ";
- //$rs=new Recordset;
- //$rs->Comando=&$cmd;
-
-
-
-
-
- //$element='<select name="PartOrigen"> <option value="">--Particion a Enviar--</option>';
- //($rs->Abrir()){
- // $rs->Primero();
- // while (!$rs->EOF){
- // $element.='<OPTION value="'.$rs->campos["numpart"] . '" ';
- // $element.='>';
- // $element.= $rs->campos["numpar"] .'</OPTION>';
- // $rs->Siguiente();
- // }
- // $rs->Cerrar();
- // $element.='</select>';
- //}
-
-
- $rsParticiones=mysql_query($sql);
-$cantRegistros=mysql_num_rows($rsParticiones);
-
- $element=''; //variable donde guardaremos el elemento del formulario que luego se mostrara mediante AJAX
- //
- if($cantRegistros>0){ // Si existen registros entonces armamos la cabecera de los elementos del formulario
- $element='<select name="PartOrigen"> <option value="">--Particion a Enviar--</option>';
- while($row=mysql_fetch_array($rsParticiones)){ //recorriendo registro x registro y armando la variable element
- $element.=' <option value=' .$row[0]. ' > ' .$row[0]. ' - '.$row[1]. '</OPTION> ';
- }
- $element.='</select>';
- }
- //asignando el contenido de la varabiale $element al div que esta en la paquina inicial
- //innerHTML reemplaza el contenido HTML por otro
- $objResponse->assign("divListado","innerHTML",$element);
- //mostramos un alert
-//$objResponse->alert("Este equipo tiene ".$cantRegistros." particiones clonables.");
- return $objResponse; //retornamos la respuesta AJAX
-}
-
-$xajax->processRequest(); //procesando cualquier petición AJAX
-?> \ No newline at end of file