diff options
author | Andreas Mair <amair.sob@googlemail.com> | 2007-08-17 14:21:52 +0200 |
---|---|---|
committer | Andreas Mair <amair.sob@googlemail.com> | 2007-08-17 14:21:52 +0200 |
commit | 5eb0558b86988c43a9f36516eb42e1f150fe498e (patch) | |
tree | a15f0d2029cac6c05fb488eaab2c3235d69a2fda /template/default/prog_detail.html | |
parent | 12afd457f85ae4c80446787ec2a37f5a0c30e3fb (diff) | |
download | vdradmin-am-5eb0558b86988c43a9f36516eb42e1f150fe498e.tar.gz vdradmin-am-5eb0558b86988c43a9f36516eb42e1f150fe498e.tar.bz2 |
2007-08-17: 3.6.0betav3.6.0beta
- Added: export of channels in each channel group as m3u playlist in vdr_cmds.
- Added: channel list to rc.
- Added: VDRAdmin-AM now holds four default channel groups: all channels / selected channels / tv channels / radio channels.
- Reworked: Logging; Use "LOGFILE = stderr" if you want logging to stderr.
- Added: If background EPG refreshes are enabled, VDRAdmin-AM will try to read the EPG data from VDR at startup and if VDR can't be reached it will try every minute until it can read the EPG data.
- Added: New option in configuration for enabling/disabling background EPG refreshes.
- Changed: default for tv.html to only show the grabbed picture (for VDR streamingtool).
- Added: config option "Show channels without EPG information"
- Fixed: wrong background color for some broadcasts having timers in prog_timeline.
- Fixed: Last frame now shows "REC" (see bug report #249).
- Fixed: Reduce memory usage of EPG tree.
- Fixed: Priority and lifetime can be set to "0" (See bug report #232).
- Changed: Priority/Lifetime/Buffer Start/Buffer Stop in (Auto)Timer can now be empty ("") which means "use default set in configuration".
- New: configure options for AutoTimer: start/stop buffer.
- Fixed: Handle symbolic links when find'ing video files for a recording.
- Added: "stderr" as special LOGFILE target to log to stderr (=console?).
- Fixed: LOGFILE config file option.
- Fixed: Allow more than two characters in EPGsearch's "record" action (See bug report #286).
- Changed: Join CACHE_TIMEOUT and AT_TIMEOUT to their minimum in CACHE_TIMEOUT.
- Added: New buttons in EPG views to edit the EPG entry (Based on patch by Christoph Haubrich).
- Added: New "--pid" vdradmind.pl to set the used pidfile.
- Added: extended information in m3u file used for livetv streaming (Submitted by Samuli Sorvakko).
- Changed: IMDb search URL can be modified.
- Added: Optional user defined external search (Based on suggestion by Axel Röhken).
- Fixed: Saving of wrong timer if repeating timers have no day set (= "-------").
- Added: Record button to epgsearch result list if no timer is set.
- Added: Support for epgsearch's timer checking.
- Changed: Minimum required epgsearch release to 0.9.21.
- Fixed: Disable EPG_DIRECT because it no longer works with the "lste" speedup patch.
- Minor bugfixes and improvements.
Diffstat (limited to 'template/default/prog_detail.html')
-rw-r--r-- | template/default/prog_detail.html | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/template/default/prog_detail.html b/template/default/prog_detail.html index f35e94f..eedf611 100644 --- a/template/default/prog_detail.html +++ b/template/default/prog_detail.html @@ -40,10 +40,18 @@ <span class="action repeatings"> <a href="vdradmin.pl?search=<?% find_title %?>&aktion=prog_summary&submit=go11" target="main"><img src="bilder/find.png" border="0" alt="<?% gettext('search') %?>" onmouseover="window.status='<?% gettext('search') %?>';return true" title="<?% gettext('search') %?>" /></a> </span> + <span class="action edit"> + <a href="javascript:void(opener.location.href='<?% editurl %?>'); window.close()"><img src="bilder/edit.png" border="0" alt="<?% gettext('edit') %?>" onmouseover="window.status='<?% gettext('edit') %?>';return true" title="<?% gettext('edit') %?>" /></a> + </span> + <?% END %?> + <?% IF srch1_url %?> + <span class="action imdb"> + <a href="<?% srch1_url %?>" target="_blank"><img src="bilder/imdb.png" border="0" alt="IMDb" onmouseover="window.status='<?% srch1_title %?>';return true" title="<?% srch1_title %?>" /></a> + </span> <?% END %?> - <?% IF imdburl %?> + <?% IF srch2_url %?> <span class="action imdb"> - <a href="<?% imdburl %?>" target="_blank" title="<?% gettext('Lookup movie in the Internet-Movie-Database (IMDb)') %?>"><img src="bilder/imdb.png" border="0" alt="IMDb" onmouseover="window.status='IMDb';return true" title="IMDb" /></a> + <a href="<?% srch2_url %?>" target="_blank"><img src="bilder/udef_search.png" border="0" alt="Search" onmouseover="window.status='<?% broadcast.srch2_url %?>';return true" title="<?% broadcast.srch2_url %?>" /></a> </span> <?% END %?> </td> @@ -55,13 +63,13 @@ <div class="epg_summary"><?% text %?></div> <?% IF video %?> <div class="epg_video"> - <h4><?% gettext('Video tracks:') %?></h4> + <h4><?% gettext('Video tracks:') %?></h4> <?% video %?> </div> <?% END %?> <?% IF audio %?> <div class="epg_audio"> - <h4><?% gettext('Audio tracks:') %?></h4> + <h4><?% gettext('Audio tracks:') %?></h4> <?% audio %?> </div> <?% END %?> |