summaryrefslogtreecommitdiff
path: root/template/default/timer_new.html
diff options
context:
space:
mode:
authorAndreas Mair <amair.sob@googlemail.com>2007-08-17 14:21:52 +0200
committerAndreas Mair <amair.sob@googlemail.com>2007-08-17 14:21:52 +0200
commit5eb0558b86988c43a9f36516eb42e1f150fe498e (patch)
treea15f0d2029cac6c05fb488eaab2c3235d69a2fda /template/default/timer_new.html
parent12afd457f85ae4c80446787ec2a37f5a0c30e3fb (diff)
downloadvdradmin-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/timer_new.html')
-rw-r--r--template/default/timer_new.html23
1 files changed, 18 insertions, 5 deletions
diff --git a/template/default/timer_new.html b/template/default/timer_new.html
index a32635c..37b86b1 100644
--- a/template/default/timer_new.html
+++ b/template/default/timer_new.html
@@ -11,6 +11,8 @@
<script type="text/javascript" language="JavaScript1.2" src="library.js"></script>
<script type="text/javascript" language="JavaScript1.2">
<!--
+ var defaultDate = "";
+
function cTimer(idx) {
var Timer = "";
var dor = document.form.dor.value;
@@ -23,11 +25,17 @@
} else {
Timer = Timer + "-";
}
- document.form.dor.value = Timer + StartDay;
}
+ if (Timer == "-------") {
+ document.form.dor.value = defaultDate;
+ eCheckbox(defaultDate);
+ } else {
+ document.form.dor.value = Timer + StartDay;
+ }
}
function eCheckbox(complTimer) {
+ defaultDate = complTimer;
if(complTimer.length == 7 || complTimer.length == 18) {
for(var i = 0; i <= 6; i++) {
if(complTimer.substring(i, i + 1) != "-") {
@@ -65,7 +73,8 @@
<input type="radio" name="active" value="0" id="active_no" <?% UNLESS active %?>checked="checked"<?% END %?> /><label for="active_no"><?% gettext('No') %?></label>
</td>
</tr>
-<?% IF features.AUTOTIMER %?>
+<?% UNLESS hide_at_check %?>
+ <?% IF features.AUTOTIMER || features.EPGSEARCH %?>
<tr class="<?% tr_class %?>">
<?% tr_class = (tr_class == "row_odd" ? "row_even" : "row_odd") %?>
<td class="col_label"><h5><?% gettext('AutoTimer Checking:') %?></h5></td>
@@ -78,6 +87,7 @@
<input type="radio" name="autotimer" value="0" id="event_off" <?% IF autotimer == 0 %?>checked="checked"<?% END %?> /><label for="event_off"><?% gettext('off') %?></label>
</td>
</tr>
+ <?% END %?>
<?% END %?>
<tr class="<?% tr_class %?>">
<?% tr_class = (tr_class == "row_odd" ? "row_even" : "row_odd") %?>
@@ -114,7 +124,7 @@
<input type="text" name="startm" value="<?% startm %?>" size="2" maxlength="2" />
&nbsp;<?% gettext('o\'clock') %?>
<?% IF bstart %?>
- (<?% gettext('Buffer:') %?> <?% bstart %?> <?% gettext('minutes') %?>)
+ (<?% gettext('Buffer:') %?>&nbsp;<?% bstart %?>&nbsp;<?% gettext('minutes') %?>)
<?% END %?>
</td>
</tr>
@@ -127,7 +137,7 @@
<input type="text" name="stopm" value="<?% stopm %?>" size="2" maxlength="2" />
&nbsp;<?% gettext('o\'clock') %?>
<?% IF bstop %?>
- (<?% gettext('Buffer:') %?> <?% bstop %?> <?% gettext('minutes') %?>)
+ (<?% gettext('Buffer:') %?>&nbsp;<?% bstop %?>&nbsp;<?% gettext('minutes') %?>)
<?% END %?>
</td>
</tr>
@@ -154,7 +164,7 @@
<tr class="<?% tr_class %?>">
<?% tr_class = (tr_class == "row_odd" ? "row_even" : "row_odd") %?>
<td class="col_label" valign="top"><h5><?% gettext('Summary:') %?></h5><h6>(<?% gettext('readonly') %?>)</h6></td>
- <td class="col_value"><textarea name="summary" rows="6" cols="80" readonly="readonly"><?% summary %?></textarea></td>
+ <td class="col_value"><textarea name="summary" rows="6" cols="80" readonly="readonly"><?% summary | html %?></textarea></td>
</tr>
<?% IF pattern %?>
<tr class="<?% tr_class %?>">
@@ -170,6 +180,9 @@
<input type="submit" class="submit" name="exit" value="<?% gettext('Cancel') %?>" />
</div>
<input type="hidden" name="aktion" value="timer_add" />
+ <?% IF tool %?>
+ <input type="hidden" name="tool" value="<?% tool %?>" />
+ <?% END %?>
<?% IF referer %?>
<input type="hidden" name="referer" value="<?% referer %?>" />
<?% END %?>