summaryrefslogtreecommitdiff
path: root/template/Deutsch
diff options
context:
space:
mode:
authorAndreas Mair <amair.sob@googlemail.com>2005-03-31 08:41:54 +0200
committerAndreas Mair <amair.sob@googlemail.com>2005-03-31 08:41:54 +0200
commit0fa79e11122e02518d57d19f346ddf89a894f43d (patch)
treeabe3eb3d3d999af871b3b8339c89d075fac8a304 /template/Deutsch
parentd652334559b84dded4e4d5c5c9c014232ff10616 (diff)
downloadvdradmin-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')
-rw-r--r--template/Deutsch/rec_list.html2
-rw-r--r--template/Deutsch/timer_new.html7
2 files changed, 6 insertions, 3 deletions
diff --git a/template/Deutsch/rec_list.html b/template/Deutsch/rec_list.html
index 015ef36..ef75b9f 100644
--- a/template/Deutsch/rec_list.html
+++ b/template/Deutsch/rec_list.html
@@ -123,7 +123,7 @@
<p class="einzug_liste">
<tmpl_if isfolder>
Neu
- <tmp_else>
+ <tmpl_else>
<tmpl_if new>Neu</tmpl_if>
</tmpl_if>
</p>
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();");