webif/var/mongoose/include/mediatomb.jim

26 lines
430 B
Plaintext
Raw Normal View History

#!/mod/bin/jimsh
if { [catch {set fd [open "/mod/mediatomb/config/mediatomb.html" r]} fid] } {
exit 0
}
set data [read $fd]
close $fd
regexp {URL=([^"]*)} $data match
set url [string range $match 4 [string length $match]]
puts "
<div style=\"float: left; padding-top: 5em\">
<center>
<a href=$url>
<img border=0 src=/img/mediatomb.png width=180>
</a>
<br>
<a href=$url>
<b>MediaTomb</b>
</a>
<br>
</center>
</div>
"