summaryrefslogtreecommitdiff
path: root/pages
diff options
context:
space:
mode:
authorThomas Keil <tkeil (at) datacrystal (dot) de>2007-04-24 12:07:37 +0000
committerThomas Keil <tkeil (at) datacrystal (dot) de>2007-04-24 12:07:37 +0000
commit158ccda96ef13bcbdde51b7e5e381c685de573c8 (patch)
tree72708b596478da8659d5fcdd82f40bd55de9aff2 /pages
parentc6acf0e85ece7c28076ed80f087acbeb5f5102ef (diff)
downloadvdr-plugin-live-158ccda96ef13bcbdde51b7e5e381c685de573c8.tar.gz
vdr-plugin-live-158ccda96ef13bcbdde51b7e5e381c685de573c8.tar.bz2
Switched to shutters design
Diffstat (limited to 'pages')
-rw-r--r--pages/searchtimers.ecpp16
1 files changed, 6 insertions, 10 deletions
diff --git a/pages/searchtimers.ecpp b/pages/searchtimers.ecpp
index 2e6f402..3013de9 100644
--- a/pages/searchtimers.ecpp
+++ b/pages/searchtimers.ecpp
@@ -30,8 +30,6 @@ using namespace vdrlive;
<table class="timers" cellspacing="0" cellpadding="0">
<tr class="head">
<td style="background: url(bg_box_l.png); width: 3px;"/></td>
- <td><button type="button" class="smallbutton" onclick="location.href='edit_searchtimer.html';"><$ tr("New") $></button></td>
- <td><$ tr("Active") $></td>
<td><$ tr("") $></td>
<td><$ tr("Expression") $></td>
<td><$ tr("Channel") $></td>
@@ -39,31 +37,29 @@ using namespace vdrlive;
<td><$ tr("Stop") $></td>
<td>&nbsp;</td>
<td>&nbsp;</td>
+ <td><button type="button" class="smallbutton" onclick="location.href='edit_searchtimer.html';"><$ tr("New") $></button></td>
<td style="background: url(bg_box_r.png); width: 3px;" /></td>
</tr>
<{
- bool active = false;
for (SearchTimers::iterator timer = timers.begin(); timer != timers.end(); ++timer) {
}>
- <tr class="<$ active ? "active" : "" $>">
+ <tr>
<td class="border" style="border-left: 1px solid black"></td>
- <td><button type="button" class="smallbutton" onclick="location.href='edit_searchtimer.html?searchtimerid=<$ timer->Id() $>';"><$ tr("Edit") $></button></td>
- <td><img src="/<$ timer->UseAsSearchTimer() ? "active" : "inactive" $>.png" alt="Aktiv?" /></td>
- <td><a href='searchresults.html?searchtimerid=<$ timer->Id() $>'"><img src="/search.png" border="0" alt="<$ tr("Search") $>"></a></td>
<td><$ timer->Search() $></td>
<td><$ timer->ChannelText() $></td>
<td><? timer->UseTime() ? timer->StartTimeFormatted() ?></td>
<td><? timer->UseTime() ? timer->StopTimeFormatted() ?></td>
<td>&nbsp;</td>
- <td>&nbsp;</td>
+ <td><img src="/<$ timer->UseAsSearchTimer() ? "active" : "inactive" $>.png" alt="Aktiv?" /></td>
+ <td><a href='searchresults.html?searchtimerid=<$ timer->Id() $>'"><img src="/search.png" border="0" alt="<$ tr("Search") $>"></a></td>
+ <td><button type="button" class="smallbutton" onclick="location.href='edit_searchtimer.html?searchtimerid=<$ timer->Id() $>';"><$ tr("Edit") $></button></td>
<td class="border" style="border-right: 1px solid black"></td>
</tr>
<{
- active = !active;
}
}
}>
- <tr><td colspan="10" style="border-top: 1px solid black">&nbsp;</td></tr>
+ <tr><td colspan="10" style="border-top: 1px solid black; background-image: none; border-bottom: none">&nbsp;</td></tr>
</table>
</div>
</body>