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_form.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/prog_detail_form.html')
-rw-r--r-- | template/default/prog_detail_form.html | 96 |
1 files changed, 96 insertions, 0 deletions
diff --git a/template/default/prog_detail_form.html b/template/default/prog_detail_form.html new file mode 100644 index 0000000..0a6f582 --- /dev/null +++ b/template/default/prog_detail_form.html @@ -0,0 +1,96 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html> + +<head> + <meta http-equiv="content-type" content="text/html;charset=<?% gettext('ISO-8859-1') %?>" /> + <title><?% title %?></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="prog_detail_form""> + <form action="<?% url %?>" method="get" name="EPGform"> + <table width="100%" border="0" cellspacing="0" cellpadding="0" id="heading"> + <tr> + <td class="col_title"> + <h1><?% gettext('Edit EPG') %?></h1> + </td> +<?% IF help_url %?> + <td class="col_help"> + <a href="javascript:open_help('<?% help_url %?>');"><img src="bilder/help.png" border="0" alt="help" title="<?% gettext('Help') %?>"/></a> + </td> +<?% END %?> + </tr> + </table> + + <div id="content"> + <table width="100%" border="0" cellspacing="0" cellpadding="0" class="group"> + <?% tr_class = "row_odd" %?> + <tr class="<?% tr_class %?>"> + <?% tr_class = (tr_class == "row_odd" ? "row_even" : "row_odd") %?> + <td class="col_label"><h5><?% gettext('Channel') %?>:</h5></td> + <td class="col_value"><?% channel_name %?></td> + </tr> + <tr class="<?% tr_class %?>"> + <?% tr_class = (tr_class == "row_odd" ? "row_even" : "row_odd") %?> + <td class="col_label"><h5><?% gettext('Time') %?>:</h5></td> + <td class="col_value"><?% start_hr %?></td> + </tr> + <tr class="<?% tr_class %?>"> + <?% tr_class = (tr_class == "row_odd" ? "row_even" : "row_odd") %?> + <td class="col_label"><h5><?% gettext('Title') %?>:</h5></td> + <td class="col_value"><input type="text" name="title" value="<?% title %?>" size="80" /></td> + </tr> + <tr class="<?% tr_class %?>"> + <?% tr_class = (tr_class == "row_odd" ? "row_even" : "row_odd") %?> + <td class="col_label"><h5><?% gettext('Subtitle') %?>:</h5></td> + <td class="col_value"><input type="text" name="subtitle" value="<?% subtitle %?>" size="80" /></td> + </tr> + <tr class="<?% tr_class %?>"> + <?% tr_class = (tr_class == "row_odd" ? "row_even" : "row_odd") %?> + <td class="col_label" valign="top"><h5><?% gettext('Description') %?>:</h5></td> + <td class="col_value"><textarea name="description" rows="8" cols="80"><?% description %?></textarea></td> + </tr> + <?% IF vps %?> + <tr class="<?% tr_class %?>"> + <?% tr_class = (tr_class == "row_odd" ? "row_even" : "row_odd") %?> + <td class="col_label"><h5><?% gettext('VPS') %?>:</h5></td> + <td class="col_value"><?% vps %?></td> + </tr> + <?% END %?> + <?% IF video %?> + <tr class="<?% tr_class %?>"> + <?% tr_class = (tr_class == "row_odd" ? "row_even" : "row_odd") %?> + <td class="col_label"><h5><?% gettext('Video tracks') %?>:</h5></td> + <td class="col_value"><?% video %?></td> + </tr> + <?% END %?> + <?% IF audio %?> + <tr class="<?% tr_class %?>"> + <?% tr_class = (tr_class == "row_odd" ? "row_even" : "row_odd") %?> + <td class="col_label"><h5><?% gettext('Audio tracks') %?>:</h5></td> + <td class="col_value"><?% audio %?></td> + </tr> + <?% END %?> + </table> + </div> + + <div id="buttons"> + <input type="submit" class="submit" name="save" value="<?% gettext('Save') %?>" /> + <input type="submit" class="submit" name="exit" value="<?% gettext('Cancel') %?>" /> + </div> + <input type="hidden" name="aktion" value="prog_detail_aktion" /> + <?% IF referer %?> + <input type="hidden" name="referer" value="<?% referer %?>" /> + <?% END %?> + <input type="hidden" name="vdr_id" value="<?% vdr_id %?>" /> + <input type="hidden" name="epg_id" value="<?% epg_id %?>" /> + <input type="hidden" name="start" value="<?% start %?>" /> + <input type="hidden" name="duration" value="<?% duration %?>" /> + </form> +</body> + +</html> |