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/help_edit_epg.html | |
parent | 12afd457f85ae4c80446787ec2a37f5a0c30e3fb (diff) | |
download | vdradmin-am-3.6.0beta.tar.gz vdradmin-am-3.6.0beta.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/help_edit_epg.html')
-rw-r--r-- | template/default/help_edit_epg.html | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/template/default/help_edit_epg.html b/template/default/help_edit_epg.html new file mode 100644 index 0000000..3ca1e49 --- /dev/null +++ b/template/default/help_edit_epg.html @@ -0,0 +1,47 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + +<!-- This help is partly taken from the VDR man page, Copyright (c) by Klaus Schmidinger --> + +<html id="scroller"> + +<head> + <meta http-equiv="content-type" content="text/html;charset=<?% gettext('ISO-8859-1') %?>" /> + <title><?% gettext('Edit Timer') %?></title> + <script type="text/javascript" language="JavaScript1.2" src="library.js"></script> + <link href="style.css" rel="stylesheet" media="screen" type="text/css" /> + <?% IF usercss %?> + <link href="user.css" rel="stylesheet" media="screen" type="text/css" /> + <?% END %?> +</head> + +<body id="timer_new" class="help" onload="window.focus()"> + <table width="100%" border="0" cellspacing="0" cellpadding="0" id="help" class="group"> + <tr class="heading"> + <td><h2><?% gettext('Edit EPG') %?></h2></td> + </tr> + <tr class="row_even"> + <td> + <?% gettext('<p>Here you can edit the descriptive fields of an existing EPG entry.</p>') %?> + <dl> + <dt><?% gettext('Channel (readonly)') %?>:</dt> + <dd><?% gettext('This is the channel of the EPG entry. It cannot be changed.') %?></dd> + <dt><?% gettext('Time (readonly)') %?>:</dt> + <dd><?% gettext('This is the start and end time of the entry. It cannot be changed.') %?></dd> + <dt><?% gettext('Title') %?>:</dt> + <dd><?% gettext('Change this string to give this EPG Entry a new title. It must consist of only one line of text.') %?></dd> + <dt><?% gettext('Subtitle') %?>:</dt> + <dd><?% gettext('Change this string to give this EPG Entry a new subtitle. It must consist of only one line of text.') %?></dd> + <dt><?% gettext('Description') %?>:</dt> + <dd><?% gettext('Change the text in this field to edit the description of this entry. The text can consist of one or more lines.') %?></dd> + <dt><?% gettext('VPS (readonly)') %?>:</dt> + <dd><?% gettext('If available this field shows the vps time of the EPG entry. It cannot be changed.') %?></dd> + <dt><?% gettext('Video tracks (readonly)') %?>:</dt> + <dd><?% gettext('If available this field shows the video track(s). It cannot be changed.') %?></dd> + <dt><?% gettext('Audio tracks (readonly)') %?>:</dt> + <dd><?% gettext('If available this field shows the audio track(s). It cannot be changed.') %?></dd> + </dl> + </td> + </tr> + </table> +</body> +</html> |