summaryrefslogtreecommitdiffstats
path: root/abs/core/local-website/htdocs/remote/index.html
blob: 9ec9fe0fe6d78746578483fbde53cfa8faccaff9 (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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
    <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>

    <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>
<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>