blob: 3d1c0a9112c46e5cb73e2539af86c0c9707d6740 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
|
<?php
//********************************************************************
// Descripción :
// Pagina de informacion sobre el proyecto OpenGnSys
//********************************************************************
include_once("../includes/ctrlacc.php");
include_once("../idiomas/php/".$idioma."/acercade_".$idioma.".php");
?>
<!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">
<img alt="*" src="../images/acercade.png" align="left" hspace="10em" vspace="10em" />
<h1><img alt="OpenGnSys" src="../images/iconos/logoopengnsys.png" /></h1>
<p>
<?php
// Añadir versión.
$versionfile="../../doc/VERSION.txt";
if (file_exists ($versionfile))
include ($versionfile);
?>
</p>
<?php
// Añadir CHANGELOG.
$buschangelog=exec('ls ../../doc | grep CHANGELOG*', $nombrechange);
$changelogfile="../../doc/".$buschangelog;
?>
<?php
// Añadir Manual.
$usermanual="../../doc/userManual";
if (file_exists ($usermanual)){
// Copiamos el directorio userManual
system("cp -R ../../doc/userManual ../api");
// Creamos el Inicio del Manual
system("touch ../api/userManual/Inicio.php");
// Añadimos instrucciones
$ficheroinicio="../api/userManual/Inicio.php";
$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> </p>
<p> </p>
<p> </p>
<p> </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>
<p><?php echo $TbMsg["DESCRIPTION"] ?> </p>
<p><?php echo $TbMsg["LICENSE"] ?> <a href="http://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>";
include ($versionfile);}
?></p>
<p><?php echo "<strong><a href='../api/userManual/Inicio.php' target='_blank'>".$TbMsg["MANUAL"]."</a></strong>";?></p>
<p><strong><?php echo $TbMsg["LINK"]; ?> <a href="http://opengnsys.es" target="_blank" >opengnsys.es</a><strong></p>
</body>
</html>
|