summaryrefslogtreecommitdiff
path: root/pages
diff options
context:
space:
mode:
authorThomas Keil <tkeil (at) datacrystal (dot) de>2007-04-27 16:04:59 +0000
committerThomas Keil <tkeil (at) datacrystal (dot) de>2007-04-27 16:04:59 +0000
commit99a8670c463c3cd9587c683c8f2232bf0f31793c (patch)
treea93bd61a53b4691b4864498fc0648d3a99d44078 /pages
parent9cb91c43067f5f7c6b7d59f3c861256d09189e18 (diff)
downloadvdr-plugin-live-99a8670c463c3cd9587c683c8f2232bf0f31793c.tar.gz
vdr-plugin-live-99a8670c463c3cd9587c683c8f2232bf0f31793c.tar.bz2
Added active-arrows
Diffstat (limited to 'pages')
-rw-r--r--pages/searchtimers.ecpp2
-rw-r--r--pages/timers.ecpp4
2 files changed, 4 insertions, 2 deletions
diff --git a/pages/searchtimers.ecpp b/pages/searchtimers.ecpp
index 4fbe38a..940adcb 100644
--- a/pages/searchtimers.ecpp
+++ b/pages/searchtimers.ecpp
@@ -63,7 +63,7 @@ if (!logged_in && LiveSetup().UseAuth()) return reply.redirect("login.html");
}>
<tr>
<td class="border" style="border-left: 1px solid black"></td>
- <td><? timer->UseAsSearchTimer() ? ">" ?></td>
+ <td><{ if(timer->UseAsSearchTimer()) { }><img src="/arrow.png" alt=""><{ } }></td>
<td><$ timer->Search() $></td>
<td><$ timer->ChannelText() $></td>
<td><? timer->UseTime() ? timer->StartTimeFormatted() ?></td>
diff --git a/pages/timers.ecpp b/pages/timers.ecpp
index d6371c1..5a6b0be 100644
--- a/pages/timers.ecpp
+++ b/pages/timers.ecpp
@@ -74,11 +74,12 @@ if (!logged_in && LiveSetup().UseAuth()) return reply.redirect("login.html");
}>
<tr class="head">
<td style="background: url(bg_box_l.png); width: 3px;"/></td>
- <td colspan="9"><$ timer->WeekDays() > 0 ? *cTimer::PrintDay(0, timer->WeekDays()) : FormatDateTime(tr("%A, %x"), timer->Day()) $></td>
+ <td colspan="10"><$ timer->WeekDays() > 0 ? *cTimer::PrintDay(0, timer->WeekDays()) : FormatDateTime(tr("%A, %x"), timer->Day()) $></td>
<td style="background: url(bg_box_r.png); width: 3px;" /></td>
</tr>
<tr class="description">
<td class="border" style="border-left: 1px solid black"></td>
+ <td>&nbsp;</td>
<td><$ tr("Channel") $></td>
<td><$ tr("Date") $></td>
<td><$ tr("Start") $></td>
@@ -95,6 +96,7 @@ if (!logged_in && LiveSetup().UseAuth()) return reply.redirect("login.html");
}>
<tr>
<td class="border" style="border-left: 1px solid black"></td>
+ <td><{ if (timer->Flags() & tfActive) { }><img src="/arrow.png" alt=""> <{ } }></td>
<td><$ timer->Channel()->Name() $></td>
<td><$ timer->WeekDays() > 0 ? *cTimer::PrintDay(0, timer->WeekDays()) : FormatDateTime(tr("%a, %b %d"), timer->Day()) $></td>
<td><$ FormatDateTime(tr("%I:%M %p"), timer->StartTime()) $></td>