diff options
author | Andreas Mair <amair.sob@googlemail.com> | 2005-03-31 08:41:54 +0200 |
---|---|---|
committer | Andreas Mair <amair.sob@googlemail.com> | 2005-03-31 08:41:54 +0200 |
commit | 0fa79e11122e02518d57d19f346ddf89a894f43d (patch) | |
tree | abe3eb3d3d999af871b3b8339c89d075fac8a304 /template/Deutsch/timer_new.html | |
parent | d652334559b84dded4e4d5c5c9c014232ff10616 (diff) | |
download | vdradmin-am-0.97-am2c.tar.gz vdradmin-am-0.97-am2c.tar.bz2 |
2005-03-30: 0.97-am2cv0.97-am2c
- fixed handling of new recordings if VDR is patched with Wareagle-Icons patch (Reported at vdrportal.de).
2005-03-29:
- fixed handling of MTWTFSS@date in timer (edit & list).
2005-03-26:
- fixed forgotten items with "vdradmin-0.96_For_vdr-1.3_StoreAutotimerChannelID_And_EventIdCheckDisable.diff".
2005-03-25:
- fixed directory handling in auto_timer:
-> if a "%" (variable) is found you are fully responsible for the final recording's title, e.g. you must add %Title% if you want it (other vars: %Title%, %Subtitle%, %Director%, %Date%, %Category%, %Genre%, %Year%, %Country%, %Originaltitle%, %FSK%, %Episode% and %Rating%)
-> all "/" will be replaced by "~" (before variable substitution)
- Automatic programmed timers have their summary hyperlink back. (Reported by sn123py)
- Handle "VPS" in timer listing.
2005-03-23:
- fixed French translation.
Diffstat (limited to 'template/Deutsch/timer_new.html')
-rw-r--r-- | template/Deutsch/timer_new.html | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/template/Deutsch/timer_new.html b/template/Deutsch/timer_new.html index 0651a0d..a6a2615 100644 --- a/template/Deutsch/timer_new.html +++ b/template/Deutsch/timer_new.html @@ -8,6 +8,9 @@ <!-- function cTimer(idx) { var Timer = ""; + var dor = document.form.dor.value; + var StartDay = dor.indexOf('@') > 0 ? dor.substring(dor.indexOf('@')) : ""; + alert(StartDay + " " + document.form.dor); Days = new Array("M", "D", "M", "D", "F", "S", "S"); for(var i = 0; i <= 6; i++) { Status = eval("document.form.D" + i + ".checked"); @@ -16,12 +19,12 @@ } else { Timer = Timer + "-"; } - document.form.dor.value = Timer; + document.form.dor.value = Timer + StartDay; } } function eCheckbox(complTimer) { - if(complTimer.length == 7) { + if(complTimer.length == 7 || complTimer.length == 18) { for(var i = 0; i <= 6; i++) { if(complTimer.substring(i, i + 1) != "-") { eval("document.form.D" + i + ".click();"); |