918-git-images-111dconfigure-oglivegit-imageslgromero-new-oglivemainmaint-cronmount-efivarfsmultivmmultivm-ogboot-installerogClonningEngineogboot-installer-jenkinsoglive-ipv6test-python-scriptsticket-301ticket-50ticket-50-oldticket-577ticket-585ticket-611ticket-612ticket-693ticket-700ubu24tplunification2use-local-agent-oglivevarios-instalacion
opengnsys-1.1.1b
Last change
on this file since f3499a3 was
4f9b004,
checked in by Ramón M. Gómez <ramongomez@…>, 6 years ago
|
#867: REST API documentacion added to help screen.
|
-
Property mode set to
100644
|
File size:
1.4 KB
|
Rev | Line | |
---|
[2a0c332] | 1 | <?php |
---|
| 2 | //********************************************************************** |
---|
| 3 | // Descripción : Muestra la configuración de los clientes en engine.cfg |
---|
| 4 | //********************************************************************** |
---|
| 5 | include_once("../includes/ctrlacc.php"); |
---|
[aafe8f9] | 6 | include_once("../idiomas/php/".$idioma."/ayuda_".$idioma.".php"); |
---|
[2a0c332] | 7 | |
---|
| 8 | // Añadir versión. |
---|
[bb3f689] | 9 | $data = json_decode(@file_get_contents('../../doc/VERSION.json')); |
---|
| 10 | $version=(empty($data->project)) ? "OpenGnsys" : @$data->project.' '.@$data->version.' '.(isset($data->codename) ? '('.$data->codename.') ' : '').@$data->release;; |
---|
[2a0c332] | 11 | |
---|
| 12 | $changelogfile="../../doc/CHANGELOG.es.txt"; |
---|
| 13 | $changelog=(file_exists ($changelogfile)) ? file_get_contents($changelogfile, TRUE) : ""; |
---|
| 14 | ?> |
---|
| 15 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
---|
| 16 | <html> |
---|
| 17 | <head> |
---|
| 18 | <title> Administración web de aulas </title> |
---|
| 19 | <meta http-equiv="Content-Type" content="text/html;charset=UTF-8"> |
---|
| 20 | <link rel="stylesheet" type="text/css" href="../estilos.css" /> |
---|
| 21 | </head> |
---|
| 22 | |
---|
| 23 | <body> |
---|
| 24 | |
---|
[4f9b004] | 25 | <div><p align="center" class="cabeceras"><img border="0" src="../images/iconos/aula.gif" > <?php echo $TbMsg["CHANGELOG_TITLE"] ?><br> |
---|
| 26 | <span id="aulas-1" class="subcabeceras"><?php echo $version ?></span></p> |
---|
[2a0c332] | 27 | </div> |
---|
| 28 | |
---|
[4f9b004] | 29 | <div style="margin: 3em"> |
---|
| 30 | <pre><?php echo $changelog; ?><pre> |
---|
[2a0c332] | 31 | </div> |
---|
| 32 | </body> |
---|
| 33 | </html> |
---|
| 34 | |
---|
Note: See
TracBrowser
for help on using the repository browser.