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 | |
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')
-rw-r--r-- | template/Deutsch/rec_list.html | 2 | ||||
-rw-r--r-- | template/Deutsch/timer_new.html | 7 | ||||
-rw-r--r-- | template/English/rec_list.html | 2 | ||||
-rw-r--r-- | template/French/prog_list2.html | 2 | ||||
-rw-r--r-- | template/French/rec_list.html | 2 |
5 files changed, 9 insertions, 6 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();"); diff --git a/template/English/rec_list.html b/template/English/rec_list.html index 2f4201c..fead819 100644 --- a/template/English/rec_list.html +++ b/template/English/rec_list.html @@ -123,7 +123,7 @@ <p class="einzug_liste"> <tmpl_if isfolder> New - <tmp_else> + <tmpl_else> <tmpl_if new>New</tmpl_if> </tmpl_if> </p> diff --git a/template/French/prog_list2.html b/template/French/prog_list2.html index 5c146d4..646bb5b 100644 --- a/template/French/prog_list2.html +++ b/template/French/prog_list2.html @@ -72,7 +72,7 @@ <tr> <td valign="top" width="30" background="bilder/uebersicht_links<tmpl_if __ODD__>_dark</tmpl_if>.gif"><a name="<tmpl_var anchor>"></a> </td> <td valign="top" width="170" background="bilder/uebersicht_mitte<tmpl_if __ODD__>_dark</tmpl_if>.gif"> - <p class="einzug_liste"><tmpl_var emit> - <tmpl_var duration> Uhr</p> + <p class="einzug_liste"><tmpl_var emit> - <tmpl_var duration> Heure</p> </td> <td valign="top" width="652" background="bilder/uebersicht_mitte<tmpl_if __ODD__>_dark</tmpl_if>.gif"> <p class="einzug_liste"><b><tmpl_var title></b><br><tmpl_unless subtitle><br></tmpl_unless><tmpl_var subtitle> </p> diff --git a/template/French/rec_list.html b/template/French/rec_list.html index d71a929..edbf4dc 100644 --- a/template/French/rec_list.html +++ b/template/French/rec_list.html @@ -123,7 +123,7 @@ <p class="einzug_liste"> <tmpl_if isfolder> Nouveau - <tmp_else> + <tmpl_else> <tmpl_if new>Nouveau</tmpl_if> </tmpl_if> </p> |