diff options
author | irina <irinagomez@us.es> | 2012-03-12 12:23:57 +0000 |
---|---|---|
committer | irina <irinagomez@us.es> | 2012-03-12 12:23:57 +0000 |
commit | 4b7ab2faeb56c1828c3aefdc1909665a95027afd (patch) | |
tree | a4751bfc2c0e69b2bc80e23e65495c6e50e4d538 /admin/WebConsole/menus | |
parent | a257e67f0481a86afbdd0a903491a5deff53c0d1 (diff) |
Internacionalizacion: menu ejemplo en y menu contextual asistente particionado esp
git-svn-id: https://opengnsys.es/svn/branches/version1.0@2836 a21b9725-9963-47de-94b9-378ad31fedc9
Diffstat (limited to 'admin/WebConsole/menus')
-rw-r--r-- | admin/WebConsole/menus/examplemenu.html | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/admin/WebConsole/menus/examplemenu.html b/admin/WebConsole/menus/examplemenu.html new file mode 100644 index 00000000..e5fa336c --- /dev/null +++ b/admin/WebConsole/menus/examplemenu.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>Init menu OpenGnSys client</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>Option Menu</h1> + <dl class="windows"> + <dt><a href="command:bootOs 1 1" title="Init session Windows" accesskey="1">Init session Windows.</a></dt> + <dd>Normal boot Windows without changes.</dd> + <dt><a href="commandwithconfirmation:restoreImage REPO windows 1 1" title="Format the disk and install the Windows operating system" accesskey="3">Install Windows.</a></dt> + <dd>The installation process takes a few minutes.</dd> + </dl> + + <dl class="linux"> + <dt><a href="command:bootOs 1 2" title="Init session GNU/Linux" accesskey="2">Init session GNU/Linux.</a></dt> + <dd>Normal boot <acronym title="GNU's not Unix">GNU</acronym>/Linux without changes.</dd> + <dt><a href="commandwithconfirmation:restoreImage REPO linux 1 2" title="Format the disk and install the GNU/Linux operating system GNU/Linux" accesskey="4">Install GNU/Linux.</a></dt> + <dd>The installation process takes a few minutes.</dd> + </dl> + + <dl class="apagar"> + <dt><a href="command:poweroff" title="Power-off" accesskey="5">Power-off.</a></dt> + <dd>Power-off computer.</dd> + <dt><a href="command:reboot" title="Reboot" accesskey="6">Reboot.</a></dt> + <dd>Reboot computer.</dd> + </dl> + </body> +</html> |