diff options
Diffstat (limited to 'abs/core/local-website/htdocs/remote/index.html')
-rw-r--r-- | abs/core/local-website/htdocs/remote/index.html | 93 |
1 files changed, 82 insertions, 11 deletions
diff --git a/abs/core/local-website/htdocs/remote/index.html b/abs/core/local-website/htdocs/remote/index.html index 35ff9e7..9ec9fe0 100644 --- a/abs/core/local-website/htdocs/remote/index.html +++ b/abs/core/local-website/htdocs/remote/index.html @@ -1,19 +1,90 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"> - +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> +<html> <head> - <meta content="text/html; charset=ISO-8859-1" http-equiv="content-type" /> + <title>MythTV Web Remote</title> + + <meta http-equiv="content-type" content="text/html; charset=utf-8"> + <meta name="robots" content="noindex, nofollow"> + + <script type="text/javascript" src="/linhes/js/prototype.js"></script> + <script type="text/javascript" src="/linhes/js/prototip/prototip.js"></script> + <link rel="stylesheet" type="text/css" href="/linhes/js/prototip/prototip.css"> + + <script type="text/javascript" src="/linhes/js/utils.js"></script> + <script type="text/javascript" src="/linhes/js/AC_OETags.js"></script> + <script type="text/javascript" src="/linhes/js/table_sort.js"></script> - - <title>MythWeb Remote</title> + <link rel="stylesheet" type="text/css" href="/linhes/default/style.css"> + <link rel="stylesheet" type="text/css" href="/linhes/default/header.css"> + <link rel="stylesheet" type="text/css" href="/linhes/default/menus.css"> + <link rel="stylesheet" type="text/css" href="/linhes/default/programming.css"> + <link rel="stylesheet" type="text/css" href="/linhes/default/welcome.css"> </head> <body> -Please click through for the <a href="remote.html">vertical remote control</a>.<br /><br /> -Or click through for the <a href="remote-wide.html">horizontal remote control</a>.<br /> -<br /> -There is now an initial <a href="pda.php">PDA</a> version of the layout<br /> -</body> +<div id="page_header" style="position:relative; text-align:center;"> + <div id="logo_box"> + <a id="LinHES_logo" href="/"> + <img src="/header.png" alt="Tux with a Remote" class="body"> + </a> + </div> +</div> + +<table width="100%" border="0" cellspacing="2" cellpadding="0"> +<tr> + <td colspan="2" class="menu menu_border_t menu_border_b"> + <table class="body" width="100%" border="0" cellspacing="2" cellpadding="2"> + <td align="center"> + <a href="http://linhes.org" <b>The Linux Home Entertainment System Release 7</b></a> + </td> + </table> + </td> +</tr> +</table> + +<script type="text/javascript"> +//<!-- + var visible_module = 'media'; + function show_module_info(module) { + if (visible_module == module) + return; + // Change the outline on the list item + $('module_'+ visible_module).removeClassName('selected'); + $('module_'+ module).addClassName('selected'); + // Show and hide the appropriate info boxes + $('info_' + visible_module).hide(); + $('info_' + visible_module).addClassName('hidden'); + $('info_' + module).show(); + $('info_' + module).removeClassName('hidden'); + // Keep track of what's visible now + visible_module = module; + } + +// --> +</script> + +<div id="modules" class="clearfix"> + + <div id="module_names"> + <ul> + <li id="module_media" class="selected" onmouseover="show_module_info('media')">Remote</li> + </ul> + </div> + + <div id="module_info"> + <div id="info_media"> + + <ul> + Before using one of the remotes you must enable "Network Remote Control interface" in Service Menu -> MythTV Configuration -> Setup -> General -> Remote Control.<br><br> + <li><a href="remote.html" target="_blank">Vertical Layout</a><br></li> + <li><a href="remote-wide.html" target="_blank">Horizontal Layout</a><br></li> + <li><a href="pda.php" target="_blank">PDA Layout</a><br></li> + </ul> + </div> + </div> + +</div> +</body> </html> |