diff options
author | Andreas Mair <amair.sob@googlemail.com> | 2005-10-21 10:24:52 +0200 |
---|---|---|
committer | Andreas Mair <amair.sob@googlemail.com> | 2005-10-21 10:24:52 +0200 |
commit | 8ed70947cc069fb98d9a281927ba0f289b0a6115 (patch) | |
tree | ecf409e62d86fa44e99b85e137e2ead3423926eb /template/default/prog_timeline.html | |
parent | a935422b27fcfc8713c63033c419081b5731fcff (diff) | |
download | vdradmin-am-8ed70947cc069fb98d9a281927ba0f289b0a6115.tar.gz vdradmin-am-8ed70947cc069fb98d9a281927ba0f289b0a6115.tar.bz2 |
2005-10-21: 0.97-am3.4.2rcv0.97-am3.4.2rc
- Hopefully fixed browsing in "recordings" menu (if there are folders having the same name).
- Added new skin "default".
- Removed i18n.pl.
- Localization can be set in configuration again.
- Added "Transponder" and "CA-System" to tooltips in timer_list.
- Show recording's summary and subtitle in rec_edit (Requested by BigDiSt).
- Check for and shorten too long summary when programming timer.
- Check for too long commands sent to SVDRPort.
- Channel select box in TV.
- "Test" button in AutoTimer edit for showing results of current settings (Requested by Hardy Flor).
- Link from channel name in prog_list2 and timer_list to prog_list.
- Bring popups to the front (e.g. help, prog_detail...) (Based on a patch submitted by Ville Skyttä).
- Reuse existing TV, RC and help windows (Based on a patch submitted by Ville Skyttä).
- Send vdradmin.m3u when streaming.
- Tooltips in timer_list, prog_timeline and at_timer_list can be deactivated (Requested by Hardy Flor).
- Fixed wrong HTML tags in rec_detail (Reported by foobar42).
Diffstat (limited to 'template/default/prog_timeline.html')
-rw-r--r-- | template/default/prog_timeline.html | 36 |
1 files changed, 20 insertions, 16 deletions
diff --git a/template/default/prog_timeline.html b/template/default/prog_timeline.html index bad19e7..c5eafb2 100644 --- a/template/default/prog_timeline.html +++ b/template/default/prog_timeline.html @@ -64,24 +64,28 @@ } } </script> +<?% IF config.TL_TOOLTIP %?> <script type="text/javascript" language="JavaScript1.2" src="infobox.js"></script> +<?% END %?> </head> <body id="prog_timeline"> -<div id="infodiv" style="position:absolute; visibility:hidden; z-index:20; top:0px; left:0px;"></div> -<script language="JavaScript" type="text/javascript"> -<?% - FOREACH name = shows2.keys.nsort; - counter = 0; - FOREACH show = shows2.${name}; -%?> - maketip("VDR-<?% show.vdr_id %?>-<?% counter %?>", "<?% show.title %?>", "<%! Duration: !%> <?% date.format(show.start, '%H:%M') %?> - <?% date.format(show.stop, '%H:%M') %?> (<?% (show.stop - show.start) / 60 %?><%! min !%>)" ); -<?% - counter = counter + 1; +<?% IF config.TL_TOOLTIP %?> + <div id="infodiv" style="position:absolute; visibility:hidden; z-index:20; top:0px; left:0px;"></div> + <script language="JavaScript" type="text/javascript"> + <?% + FOREACH name = shows2.keys.nsort; + counter = 0; + FOREACH show = shows2.${name}; + %?> + maketip("VDR-<?% show.vdr_id %?>-<?% counter %?>", "<?% show.title %?>", "<%! Duration: !%> <?% date.format(show.start, '%H:%M') %?> - <?% date.format(show.stop, '%H:%M') %?> (<?% (show.stop - show.start) / 60 %?><%! min !%>)" ); + <?% + counter = counter + 1; + END; END; - END; -%?> -</script> + %?> + </script> +<?% END %?> <form action="<?% nowurl %?>" method="get" name="FormName"> <table width="100%" border="0" cellspacing="0" cellpadding="0" id="heading"> @@ -146,9 +150,9 @@ <?% WHILE minute < bis %?> <td width="1%" height="10px" align="left" valign="bottom" class=<?% minute % 10 ? "color1" : "color2" %?>> <?% IF minute % 15 %?> - <img src="bilder/pixel.gif" width="1" height="5" border="0" /> + <img src="bilder/spacer.gif" width="1" height="5" border="0" /> <?% ELSE %?> - <img src="bilder/pixel.gif" width="1" height="10" border="0" /> + <img src="bilder/spacer.gif" width="1" height="10" border="0" /> <?% END %?> </td> <?% minute = minute + 5 %?> @@ -216,7 +220,7 @@ td_class = show.timer ? "color_timer" : td_class %?> <table border="0" align="left" cellpadding="0" cellspacing="0" id=<?% show.timer ? "timertable" : "prgtable" %?>> <tr> - <td width="1" class="<?% td_class %?>" onMouseOver="tip('VDR-<?% show.vdr_id %?>-<?% counter %?>'); return true;" onMouseOut="untip(); return true;"> + <td width="1" class="<?% td_class %?>" <?% IF config.TL_TOOLTIP %?>onMouseOver="tip('VDR-<?% show.vdr_id %?>-<?% counter %?>'); return true;" onMouseOut="untip(); return true;"<?% END %?>> <img src="bilder/spacer.gif" width="<?% laenge_pix %?>" height="1" border="0" hspace="0" /><br /> <nobr> <?% IF show.summary %?><a href="javascript:popup('./vdradmin.pl?aktion=prog_detail&epg_id=<?% show.anchor %?>&vdr_id=<?% show.vdr_id %?>');"><?% END %?> |