diff options
author | Andreas Mair <amair.sob@googlemail.com> | 2006-05-24 14:00:09 +0200 |
---|---|---|
committer | Andreas Mair <amair.sob@googlemail.com> | 2006-05-24 14:00:09 +0200 |
commit | 9e8fe7b8ec42e928db062413ee824b7b4ec13132 (patch) | |
tree | 661dd0a6ea202dab5d13ce710fcb98bb25626374 /template/default/prog_summary.html | |
parent | b8893f9631d2ea760848ba6c56c22d45f8413591 (diff) | |
download | vdradmin-am-3.4.6beta2.tar.gz vdradmin-am-3.4.6beta2.tar.bz2 |
2006-05-24: 3.4.6beta2v3.4.6beta2
- Added: VPS time, audio and video tracks to prog_detail if available.
- Added: class names for action icons (info, record...) for hiding single items (not yet finished).
- Added: ids for navigation items, see user.css_example for hiding single items.
- Changed: Icons for stream and switch TV.
- Replaced: "default" skin by "default.png" skin.
- Added: Link from pattern title in AutoTimer list to AutoTimer edit (Requested by Tarandor).
- Reworked: prog_timeline; still needs some beautification (Based on patch submitted by Torsten Herz).
- Fixed: IMDb link in prog_summary listview (Reported by heiwil).
- Fixed: detection of valid Locale::gettext calls.
Diffstat (limited to 'template/default/prog_summary.html')
-rw-r--r-- | template/default/prog_summary.html | 34 |
1 files changed, 24 insertions, 10 deletions
diff --git a/template/default/prog_summary.html b/template/default/prog_summary.html index d9f899b..a7a300f 100644 --- a/template/default/prog_summary.html +++ b/template/default/prog_summary.html @@ -39,6 +39,7 @@ </table> <input type="hidden" name="aktion" value="prog_summary" /> + <div id="content"> <tmpl_loop rows> <tmpl_if longdate> <table border="0" cellspacing="0" cellpadding="0" class="group"> @@ -67,22 +68,34 @@ <tr> <td class="col_buttons"> <tmpl_if stream_live_on> - <span class="item"><a href="<tmpl_var streamurl>" title="<%! Stream !%>"><img src="bilder/stream.gif" border="0" alt="<%! Stream !%>" onmouseover="window.status='<%! Stream !%>';return true" title="<%! Stream !%>" /></a> + <span class="action stream"> + <a href="<tmpl_var streamurl>" title="<%! Stream !%>"><img src="bilder/stream.png" border="0" alt="<%! Stream !%>" onmouseover="window.status='<%! Stream !%>';return true" title="<%! Stream !%>" /></a> + </span> </tmpl_if> <tmpl_if recurl> <tmpl_if switchurl> - <span class="item"><a href="javascript:callurl('<tmpl_var switchurl>');"><img src="bilder/sum_view.gif" border="0" alt="<%! TV select !%>" onmouseover="window.status='<%! TV select !%>';return true" title="<%! TV select !%>" /></a></span> + <span class="action switch"> + <a href="javascript:callurl('<tmpl_var switchurl>');"><img src="bilder/view.png" border="0" alt="<%! TV select !%>" onmouseover="window.status='<%! TV select !%>';return true" title="<%! TV select !%>" /></a> + </span> </tmpl_if> - <span class="item"><a href="vdradmin.pl?search=<tmpl_var find_title>&aktion=prog_summary&submit=go11"><img src="bilder/sum_find.gif" border="0" alt="<%! Search for other show times !%>" onmouseover="window.status='<%! Search for other show times !%>';return true" title="<%! Search for other show times !%>" /></a></span> - <tmpl_if summary> - <span class="item"><a href="javascript:popup('<tmpl_var infurl>');"><img src="bilder/sum_info.gif" border="0" alt="<%! More Information !%>" onmouseover="window.status='<%! More Information !%>';return true" title="<%! More Information !%>" /></a></span> - <tmpl_else> - <span class="item"><img src="bilder/sum_info_disabled.gif" border="0" alt="noinfo" title="<%! No Information !%>" /></span> - </tmpl_if> - <span class="item"><a href="<tmpl_var recurl>"><img src="bilder/sum_rec.gif" border="0" alt="<%! Record !%>" onmouseover="window.status='<%! Record !%>';return true" title="<%! Record !%>" /></a></span> + <span class="action repeatings"> + <a href="vdradmin.pl?search=<tmpl_var find_title>&aktion=prog_summary&submit=go11"><img src="bilder/find.png" border="0" alt="<%! Search for other show times !%>" onmouseover="window.status='<%! Search for other show times !%>';return true" title="<%! Search for other show times !%>" /></a> + </span> + <span class="action info"> + <tmpl_if summary> + <a href="javascript:popup('<tmpl_var infurl>');"><img src="bilder/info_button.png" border="0" alt="<%! More Information !%>" onmouseover="window.status='<%! More Information !%>';return true" title="<%! More Information !%>" /></a> + <tmpl_else> + <img src="bilder/info_button_disabled.png" border="0" alt="noinfo" title="<%! No Information !%>" /> + </tmpl_if> + </span> + <span class="action record"> + <a href="<tmpl_var recurl>"><img src="bilder/rec_button.png" border="0" alt="<%! Record !%>" onmouseover="window.status='<%! Record !%>';return true" title="<%! Record !%>" /></a> + </span> </tmpl_if> <tmpl_if imdburl> - <span class="item"><a href="<tmpl_var imdburl>" target="_blank" title="<%! Lookup movie in the Internet-Movie-Database (IMDb) !%>"><img src="bilder/imdb.gif" border="0" alt="IMDb" onmouseover="window.status='IMDb';return true" title="IMDb" /></a></span> + <span class="action imdb"> + <a href="<tmpl_var imdburl>" target="_blank"><img src="bilder/imdb.png" border="0" alt="IMDb" onmouseover="window.status='<%! Lookup movie in the Internet-Movie-Database (IMDb) !%>';return true" title="<%! Lookup movie in the Internet-Movie-Database (IMDb) !%>" /></a> + </span> </tmpl_if> </td> <td class="col_epg"> @@ -118,6 +131,7 @@ </table> </tmpl_if> </tmpl_loop> + </div> </form> </body> </html> |