summaryrefslogtreecommitdiff
path: root/template/French/tv.html
diff options
context:
space:
mode:
authorAndreas Mair <amair.sob@googlemail.com>2005-03-22 12:27:44 +0100
committerAndreas Mair <amair.sob@googlemail.com>2005-03-22 12:27:44 +0100
commit46de243c304867eff807fef1e2fc31c9ad8f2f66 (patch)
tree22a0cfb4e1f0c50d2f64ce875f99d03b141ce1a5 /template/French/tv.html
parent5083c05ce2e2bfc5719346d809719ebf01b0e69d (diff)
downloadvdradmin-am-0.97-am2a.tar.gz
vdradmin-am-0.97-am2a.tar.bz2
2005-03-22: 0.97-am2av0.97-am2a
- fixed Volume+ and Volume- in TV (Reported by Unimatrix0) - fixed missplaced channel name prog_summary (Reported by several people) - added updated English templates (Supplied by C.Y.M) - now VDRAdmin understands timers format from vdr1.3.22- and vdr1.3.23 (Supplied by Stefan Neuwirth) - fixed small display problem in timeline.
Diffstat (limited to 'template/French/tv.html')
-rw-r--r--template/French/tv.html75
1 files changed, 0 insertions, 75 deletions
diff --git a/template/French/tv.html b/template/French/tv.html
deleted file mode 100644
index 0976ba8..0000000
--- a/template/French/tv.html
+++ /dev/null
@@ -1,75 +0,0 @@
-<html>
-
- <head>
- <title>TV (<tmpl_var host>)</title>
- <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
- <script language="JavaScript">
- <!--
- var aktiv;
- var interval = 5;
- function switch_channel(url) {
- Now = new Date();
- document.switchimage.src = url + "&" + Now.getTime();
- }
- function WebcamUpdate() {
- Now = new Date();
- NewPicUrl = "<tmpl_var url>&" + Now.getTime();
- document.Bild.src = NewPicUrl;
- }
- function go() {
- //alert(document.liveform.livebild.checked);
- if(document.liveform.livebild.checked == true)
- v_Start();
- else
- v_Stop();
- }
- function v_Start() {
- aktiv = window.setInterval("WebcamUpdate()", interval * 1000);
- }
- function v_Stop() {
- window.clearInterval(aktiv);
- }
- function v_changeInterval(val) {
- interval = val;
- v_Stop();
- go();
- //v_Start();
- }
-
- //-->
- </script>
- <style type="text/css" media="screen"><!--
-#Ebene1 { position: absolute; z-index: 0; top: 0px; left: 0px; width: 100px; height: 100px; visibility: visible; display: block }
-#Ebene2 { position: absolute; z-index: 10; top: 0px; left: 0px; width: 100px; height: 100px; visibility: visible; display: block }
-td { color: #000; font-weight: normal; font-size: 11px; font-family: Verdana, Arial, Geneva, Helvetica, sans-serif }
- --></style>
- </head>
-
- <body background="bilder/tv_bottom.gif" bgcolor="#FFFFFF" leftmargin="0" marginheight="0" marginwidth="0" topmargin="0">
- <form name="liveform">
- <table width="200" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td>
- <img name="Bild" height="288" src="<tmpl_var url>" border="0">
- <div id="Ebene2"><img src="bilder/framed.gif" alt="" border="0"></div>
- </td>
- </tr>
- <tr>
- <td>
- <img src="bilder/spacer.gif" name="switchimage" width="1" height="1">
- Photo <input type="checkbox" name="livebild" onClick="go()">
- Intervale <select name="Seconds" size="1" onChange="v_changeInterval(this.options[this.selectedIndex].value)">
- <option value="1">un</option>
- <option value="2">deux</option>
- <option value="3">trois</option>
- <option value="5" selected>cinq</option>
- <option value="10">10</option>
- <option value="30">30</option>
- <option value="60">60</option>
- </select>
- </td>
- </tr>
- </table>
- </form>
- </body>
-</html>