diff options
author | Andreas Mair <amair.sob@googlemail.com> | 2005-03-06 08:11:12 +0100 |
---|---|---|
committer | Andreas Mair <amair.sob@googlemail.com> | 2005-03-06 08:11:12 +0100 |
commit | 7525bed2d315a25ac2caf95ff0bf44c905d58a7e (patch) | |
tree | 64f68331dd109cf5c92182d10bb53c614db4a73b /template/French/tv.html | |
download | vdradmin-am-0.97-am1.tar.gz vdradmin-am-0.97-am1.tar.bz2 |
2005-03-06: 0.97-am1 "initial release"v0.97-am1
This is mainly the lastest vdradmin (v0.97) with different patches applied:
- vdradmin-0.97 has been taken from linvdr-0.7.
- xpix's BigPatch_0.9pre5 (ported from vdradmin-0.95 to vdradmin-0.97 (see HISTORY.bigpatch).
- included changes from vdradmin-0.95-ct-10 (see HISTORY.ct).
- included vdradmin-0.95_0.9_pre5_fb1.diff (see HISTORY.macfly).
- included vdradmin-0.96-rename.diff which also needs an applied "vdr-aio21_svdrprename.patch" patch (don't know the author right now).
My own changes:
- included missing "Was läuft heute?" template (found at www.vdr-portal.de).
- fixed some rendering problems with "New Timer" and "New Autotimer" on KDE's Konqueror.
- Beautified recordings listing (at least in my eyes ;-)
- Added "Size" selectbox to TV template.
Diffstat (limited to 'template/French/tv.html')
-rw-r--r-- | template/French/tv.html | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/template/French/tv.html b/template/French/tv.html new file mode 100644 index 0000000..0976ba8 --- /dev/null +++ b/template/French/tv.html @@ -0,0 +1,75 @@ +<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> |