diff options
author | ramon <ramongomez@us.es> | 2011-03-08 16:21:37 +0000 |
---|---|---|
committer | ramon <ramongomez@us.es> | 2011-03-08 16:21:37 +0000 |
commit | 52695928bba5f51b3bc32c8219ee9efa76916073 (patch) | |
tree | 612deb0a099927b00db1d50c000a9b7752e69dd4 /admin/WebConsole/menus | |
parent | d47d38dba8beb01a077c176d95f887738af98c97 (diff) |
Rama version1.0: Menú de ejemplo para arranque de clientes cumple norma HTML e incluye opciones de apagado (gracias a Mario Fernández, ''mariof ARROBA us.es'').
git-svn-id: https://opengnsys.es/svn/branches/version1.0@1534 a21b9725-9963-47de-94b9-378ad31fedc9
Diffstat (limited to 'admin/WebConsole/menus')
-rw-r--r-- | admin/WebConsole/menus/images/linux_peque.png | bin | 0 -> 2828 bytes | |||
-rw-r--r-- | admin/WebConsole/menus/images/poweroff.png | bin | 0 -> 3477 bytes | |||
-rw-r--r-- | admin/WebConsole/menus/images/xp_peque.png | bin | 0 -> 4324 bytes | |||
-rw-r--r-- | admin/WebConsole/menus/menuaula1.html | 37 | ||||
-rw-r--r-- | admin/WebConsole/menus/menuejemplo.html | 74 |
5 files changed, 74 insertions, 37 deletions
diff --git a/admin/WebConsole/menus/images/linux_peque.png b/admin/WebConsole/menus/images/linux_peque.png Binary files differnew file mode 100644 index 00000000..96b6c677 --- /dev/null +++ b/admin/WebConsole/menus/images/linux_peque.png diff --git a/admin/WebConsole/menus/images/poweroff.png b/admin/WebConsole/menus/images/poweroff.png Binary files differnew file mode 100644 index 00000000..e494fddb --- /dev/null +++ b/admin/WebConsole/menus/images/poweroff.png diff --git a/admin/WebConsole/menus/images/xp_peque.png b/admin/WebConsole/menus/images/xp_peque.png Binary files differnew file mode 100644 index 00000000..9b46e50c --- /dev/null +++ b/admin/WebConsole/menus/images/xp_peque.png diff --git a/admin/WebConsole/menus/menuaula1.html b/admin/WebConsole/menus/menuaula1.html deleted file mode 100644 index b24b101f..00000000 --- a/admin/WebConsole/menus/menuaula1.html +++ /dev/null @@ -1,37 +0,0 @@ -<html> - <head> - <style type="text/css"> - * { font-size: 10px; } - h2 { font-size: 2em;} - br {font-size: 0.2em; } - a:link, a:visited { text-decoration: none; font-weight: normal; color:#505e6b; font-weight: bold; } </style> - </head> - - <body> - <table width=100%> - <tr><td colspan=3 height=50px > - <h2><img style="margin:0px 100px 0px 0px" align=middle src=images/opengnsys.png>Menú de opciones</h2></p></td></tr> - - <tr><td width=10% rowspan="2" align=right valign=top><img width="40px" heigth="40px" src=images/xp.png> - <td width=30%><a href="command:bootOs 1 1">1.- Arrancar Windows XP</a> - <td width=60%>Arranque normal sin modificaciones. - <tr> - <td width=30%><a href="command: restoreImage REPO /aula1/xp 1 1">2.- Reinstalar Windows XP</a></td> - <td width=60%><br>El proceso de instalación puede tardar unos minutos. - <br><font color=red>Durante la instalación se bloquean teclado y ratón.</font></td> - - <tr><td colspan=3 text=white bgcolor=#ffffff align=center height=10px> - - - <tr><td width=10% rowspan="2" align=right valign=top><img width="40px" heigth="40px" src=images/linux.png> - <td width=30%><a href="command:bootOs 1 2">3.- Arrancar Ubuntu 9.04</a> - <td width=60%>Arranque normal sin modificaciones. - <tr> - <td width=30%><a href="command: restoreImage REPO /aula1/ubuntu9 1 2"><br>4.- Reinstalar Ubuntu 9.04</a> - <td width=60%><br>El proceso de instalación puede tardar unos minutos. - <br><font color=red>Durante la instalación se bloquean teclado y ratón.</font> - - - </table> - <body> -</html> diff --git a/admin/WebConsole/menus/menuejemplo.html b/admin/WebConsole/menus/menuejemplo.html new file mode 100644 index 00000000..78701260 --- /dev/null +++ b/admin/WebConsole/menus/menuejemplo.html @@ -0,0 +1,74 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" lang="es" xml:lang="es"> + +<head> + <meta http-equiv="content-type" content="text/html;charset=utf-8" /> + <title>Menú de inicio de los equipos OpenGnSys</title> + + <style type="text/css"> + body { background: #fff; font-size: 0.7em; } + h1, h2 { font-size: 1.5em; } + br {font-size: 0.2em; } + a:link, a:visited { text-decoration: none; color:#900; font-weight: bold; } + a:hover, a:active { color:#d90; } + + h1 { + font-size: 1.5em; + width: 100%; + vertical-align: bottom; + color: #555; + background: transparent url('images/opengnsys.png') no-repeat top left; + padding: 2em 0 1.5em 12em; + margin-bottom: 1em; + } + + dl { + background: transparent url('images/xp_peque.png') no-repeat top left; + padding: 0 0 1em 5em; + margin: 5px 50px; + } + + dl.windows { + background-image: url('images/xp_peque.png'); + } + + dl.linux { + background-image: url('images/linux_peque.png'); + } + + dl.apagar { + background-image: url('images/poweroff.png'); + } + + dt { float: left;} + dd { margin: 1em 20em; } + </style> + +</head> + + <body> + + + <h1>Menú de opciones</h1> + <dl class="windows"> + <dt><a href="command:bootOs 1 1" title="Iniciar sesión de Windows" accesskey="1">Arrancar Windows.</a></dt> + <dd>Arranque normal de Windows sin modificaciones.</dd> + <dt><a href="commandwithconfirmation:restoreImage REPO windows 1 1" title="Formatear el disco e instalar el sistema operativo Windows" accesskey="3">Instalar Windows.</a></dt> + <dd>El proceso de instalación tardará unos minutos.</dd> + </dl> + + <dl class="linux"> + <dt><a href="command:bootOs 1 2" title="Iniciar sesión de GNU/Linux" accesskey="2">Arrancar GNU/Linux.</a></dt> + <dd>Arranque normal de <acronym title="GNU's not Unix">GNU</acronym>/Linux sin modificaciones.</dd> + <dt><a href="commandwithconfirmation:restoreImage REPO linux 1 2" title="Formatear el disco e instalar el sistema operativo GNU/Linux" accesskey="4">Instalar GNU/Linux.</a></dt> + <dd>El proceso de instalación tardará unos minutos.</dd> + </dl> + + <dl class="apagar"> + <dt><a href="command:poweroff" title="Apagar la máquina" accesskey="5">Apagar.</a></dt> + <dd>Apagar el ordenador.</dd> + <dt><a href="command:reboot" title="Reiniciar la máquina" accesskey="6">Reiniciar.</a></dt> + <dd>Reiniciar el ordenador.</dd> + </dl> + </body> +</html> |