webif/var/mongoose/include/menuicons.jim
hummypkg dec82728cb remove remote code, now in plugin
git-svn-id: file:///root/webif/svn/humax/pkg/src/webif/trunk@1139 2a923420-c742-0410-a762-8d5b09965624
2012-10-02 20:05:53 +00:00

58 lines
1.3 KiB
Plaintext
Executable File

#!/mod/bin/jimsh
source /mod/webif/lib/setup
require settings.class
proc menuitem {title icon link {width 217} {height 0} {extra ""}} {
if {$extra ne ""} { append extra " " }
puts -nonewline "
<div class=left>
<center>
<a href=$link>
<img src=$icon ${extra}border=0 width=$width"
if {$height} { puts -nonewline " height=$height" }
puts -nonewline ">
</a>
<br>
<a href=$link>
<b>$title</b>
</a>
<br>
</center>
</div>
"
}
if {[[settings] epg_style] eq "grid"} {
set epglink "/cgi-bin/xepg.jim"
} else {
set epglink "/epg.shtml"
}
puts {<div style="clear: both">}
menuitem "Browse Media Files" "/images/323_1_10_Menu_Video.png" \
/cgi-bin/browse.jim 217 228
menuitem "Scheduled Events" "/images/321_1_00_Menu_CHList.png" \
/sched/sched.jim 217 228
menuitem "EPG" "/images/328_1_26_Menu_TV_Guide.png" \
$epglink 217 228
if {[file exists "/mod/bin/ir"]} {
menuitem "Remote" "/img/remote.png" /plugin/ir/remote.jim 217 228
}
puts {</div><div style="clear: both; padding-top: 1em">}
menuitem "Service Management" "/img/spanner.png" \
/services.shtml 217 228
menuitem "Package Management" "/img/packages.png" \
/pkg/index.shtml 217 228
menuitem "Settings" "/images/326_1_00_Menu_Settings.png" \
/cgi-bin/settings.jim 217 228
menuitem "Diagnostics" "/img/diagnostics.png" \
/diag/diag.jim 217 228
puts {</div>}