diff options
author | Sascha Volkenandt <sascha (at) akv-soft (dot) de> | 2007-06-01 19:36:43 +0000 |
---|---|---|
committer | Sascha Volkenandt <sascha (at) akv-soft (dot) de> | 2007-06-01 19:36:43 +0000 |
commit | e71ea234a90f701dfb84e03443c7cd3134da5260 (patch) | |
tree | f0c6d2e1da3f16e3c37ab33f6da1b9afc9810a96 /pages | |
parent | 0c94dc395d2df875098ea9d1e7b39bf27db7310d (diff) | |
download | vdr-plugin-live-e71ea234a90f701dfb84e03443c7cd3134da5260.tar.gz vdr-plugin-live-e71ea234a90f701dfb84e03443c7cd3134da5260.tar.bz2 |
- [0000281] patch committed
Diffstat (limited to 'pages')
-rw-r--r-- | pages/searchtimers.ecpp | 10 | ||||
-rw-r--r-- | pages/tooltip.ecpp | 2 | ||||
-rw-r--r-- | pages/whats_on.ecpp | 2 |
3 files changed, 7 insertions, 7 deletions
diff --git a/pages/searchtimers.ecpp b/pages/searchtimers.ecpp index d54fd5c..4a39402 100644 --- a/pages/searchtimers.ecpp +++ b/pages/searchtimers.ecpp @@ -66,14 +66,14 @@ if (!logged_in && LiveSetup().UseAuth()) return reply.redirect("login.html"); }> <tr> <td class="border" style="border-left: 1px solid black"></td> - <td><{ if(timer->UseAsSearchTimer()) { }><img src="/arrow.png" alt=""></img><{ } }></td> + <td><{ if(timer->UseAsSearchTimer()) { }><img src="arrow.png" alt=""></img><{ } }></td> <td><$ timer->Search() $></td> <td><$ timer->ChannelText() $></td> <td><? timer->UseTime() ? timer->StartTimeFormatted()+" - "+timer->StopTimeFormatted() ?></td> - <td><a href="searchtimers.html?searchtimerid=<$ timer->Id() $>&action=toggle"><img src="/<$ timer->UseAsSearchTimer() ? "active" : "inactive" $>.png" alt="<$ tr("Toggle search timer actions (in)active") $>" <& tooltip.hint text=(tr("Toggle search timer actions (in)active")) &>></img></a></td> - <td><a href="searchresults.html?searchtimerid=<$ timer->Id() $>"><img src="/search.png" border="0" alt="<$ tr("Browse search timer results") $>" <& tooltip.hint text=(tr("Browse search timer results")) &>></img></a></td> - <td><a href="edit_searchtimer.html?searchtimerid=<$ timer->Id() $>"><img src="/edit.png" alt="<$ tr("Edit search timer") $>" <& tooltip.hint text=(tr("Edit search timer")) &>></img></a></td> - <td><a href="searchtimers.html?searchtimerid=<$ timer->Id() $>&action=delete" onclick="return confirm('<$ tr("Delete this search timer?") $>')"><img src="/del.png" alt="<$ tr("Delete search timer") $>" <& tooltip.hint text=(tr("Delete search timer")) &>></img></a></td> + <td><a href="searchtimers.html?searchtimerid=<$ timer->Id() $>&action=toggle"><img src="<$ timer->UseAsSearchTimer() ? "active" : "inactive" $>.png" alt="<$ tr("Toggle search timer actions (in)active") $>" <& tooltip.hint text=(tr("Toggle search timer actions (in)active")) &>></img></a></td> + <td><a href="searchresults.html?searchtimerid=<$ timer->Id() $>"><img src="search.png" border="0" alt="<$ tr("Browse search timer results") $>" <& tooltip.hint text=(tr("Browse search timer results")) &>></img></a></td> + <td><a href="edit_searchtimer.html?searchtimerid=<$ timer->Id() $>"><img src="edit.png" alt="<$ tr("Edit search timer") $>" <& tooltip.hint text=(tr("Edit search timer")) &>></img></a></td> + <td><a href="searchtimers.html?searchtimerid=<$ timer->Id() $>&action=delete" onclick="return confirm('<$ tr("Delete this search timer?") $>')"><img src="del.png" alt="<$ tr("Delete search timer") $>" <& tooltip.hint text=(tr("Delete search timer")) &>></img></a></td> <td class="border" style="border-right: 1px solid black"></td> </tr> <{ diff --git a/pages/tooltip.ecpp b/pages/tooltip.ecpp index 47af850..bdba57c 100644 --- a/pages/tooltip.ecpp +++ b/pages/tooltip.ecpp @@ -51,5 +51,5 @@ domId; <%args> text; </%args> - <img src="/help.png" onmouseover="domTT_close(domTT_lastOpened); domTT_activate(this, event, 'predefined', 'tipHint', 'content', '<$ text $>');"></img> + <img src="help.png" onmouseover="domTT_close(domTT_lastOpened); domTT_activate(this, event, 'predefined', 'tipHint', 'content', '<$ text $>');"></img> </%def> diff --git a/pages/whats_on.ecpp b/pages/whats_on.ecpp index 81a40b7..0b274e1 100644 --- a/pages/whats_on.ecpp +++ b/pages/whats_on.ecpp @@ -137,7 +137,7 @@ if (type == "now") { <& pageelems.ajax_action_href action="switch_channel" tip=(tr("Switch to this channel.")) param=(channel_id) image="zap.png" alt="" &> % } % if (LiveSetup().HaveEPGSearch()) { - <a href="searchresults.html?searchplain=<$ StringEscapeAndBreak(epgEvent->Title()) $>"><img src="/search.png" border="0" alt="" <& tooltip.hint text=(tr("Search for repeats.")) &>></img></a> + <a href="searchresults.html?searchplain=<$ StringEscapeAndBreak(epgEvent->Title()) $>"><img src="search.png" border="0" alt="" <& tooltip.hint text=(tr("Search for repeats.")) &>></img></a> % } <a href="http://akas.imdb.com/Tsearch?title=<$ StringUrlEncode(epgEvent->Title()) $>"><img src="imdb.png" border="0" alt="" <& tooltip.hint text=(tr("Find more at the Internet Movie Database.")) &>></img></a> </div> |