summaryrefslogtreecommitdiffstats
path: root/admin/WebConsole/principal/acercade.php
diff options
context:
space:
mode:
Diffstat (limited to 'admin/WebConsole/principal/acercade.php')
-rw-r--r--admin/WebConsole/principal/acercade.php105
1 files changed, 0 insertions, 105 deletions
diff --git a/admin/WebConsole/principal/acercade.php b/admin/WebConsole/principal/acercade.php
index f95e07c1..3581b977 100644
--- a/admin/WebConsole/principal/acercade.php
+++ b/admin/WebConsole/principal/acercade.php
@@ -35,95 +35,6 @@ if (empty($data->project)) {
}
?>
</p>
-<?php
-// Añadir CHANGELOG.
-$buschangelog=exec('ls ../../doc | grep CHANGELOG*', $nombrechange);
-$changelogfile="../../doc/".$buschangelog;
-?>
-<?php
-// Añadir Manual.
-$usermanual="../../doc/userManual";
-$destdir="../api/userManual";
-if (file_exists ($usermanual)){
-// Copiamos el directorio userManual
-system("rm -fr $destdir; cp -a $usermanual $destdir");
-// Creamos el Inicio del Manual
-// Añadimos instrucciones
-$ficheroinicio="$destdir/Inicio.php";
-system("touch $ficheroinicio");
-
-$crearficheroinicio=fopen($ficheroinicio,"w");
-fwrite($crearficheroinicio,"
-<!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' />
-</head>
-
-<body class='acercade'>
-<table width='100%' border='0'>
- <tr>
- <td width='30%'><p><img src='../../images/acercade.png' alt='*' hspace='10em' vspace='10em' align='left' /></p>
- <p>&nbsp;</p>
- <p>&nbsp;</p>
- <p>&nbsp;</p>
- <p>&nbsp;</p>
- <p><img alt='OpenGnsys' src='../../images/iconos/logoopengnsys.png' /></p></td>
- <td width='61%'>
-
-<p>
-
-
-
-<?php
-\$directorio = opendir('.'); //ruta actual
-while (\$archivo = readdir(\$directorio)) //obtenemos un archivo y luego otro sucesivamente
-{
- if (is_dir(\$archivo))//verificamos si es o no un directorio
- {
- if (\$archivo == '.' || \$archivo == '..')
- {}else{
- echo '['.\$archivo . ']<br />'; //de ser un directorio lo envolvemos entre corchetes
- }
- }
- else
- {
- if (\$archivo == 'Inicio.php' || \$archivo == '.' || \$archivo == '..')
- {}else{
- \$fichero[] = \$archivo;
- }
- }
-}
-sort(\$fichero);
-foreach (\$fichero as \$ficheros) {
- echo '<P><a href='.\$ficheros.' target=miframeflotante >'.\$ficheros.'</a></P>';
-}
-
-?>
-
- </td>
- </tr>
-
-</table>
-
-<table width='100%' height='100%' border='0'>
- <tr >
- <td align='center' >
- <?php echo '<iframe id=miframeflotante name=miframeflotante src='.\$fichero[0].' width=100% height=700 frameborder=0 scrolling=no marginwidth=0 marginheight=0 align=left>Tu navegador no soporta frames!!</iframe>';
- ?>
- </td>
- </tr>
-</table>
-");
-fclose($crearficheroinicio);
-
-
-}
-?>
-
-
<p><strong><?php echo $TbMsg["TITLE"] ?></strong></p>
@@ -131,21 +42,5 @@ fclose($crearficheroinicio);
<p><?php echo $TbMsg["LICENSE"] ?> <a href="https://www.gnu.org/licenses/gpl.html" target="_blank" ><img alt="GPL v3" src="../images/gplv3-88x31.png" height="20em" /></a></p>
-<p><?php
- if (file_exists ($changelogfile)){
- system("cp ../../doc/$buschangelog ../api");
- echo "<strong><a href='../api/$buschangelog' target='_blank'>".$TbMsg["CHANGE"]."</a></strong>"
- .@$data->project.' '.@$data->version.' '.(isset($data->codename)?'('.$data->codename.')':'');
- }
-?></p>
-
-<p><?php echo "<strong><a href='$ficheroinicio' target='_blank'>".$TbMsg["MANUAL"]."</a></strong>";?></p>
-
-<p><strong><?php echo $TbMsg["LINK"]; ?> <a href="https://opengnsys.es" target="_blank" >opengnsys.es</a><strong></p>
-
-
-
-
-
</body>
</html>