tweak settings ON/OFF to YES/NO
git-svn-id: file:///root/webif/svn/humax/pkg/src/webif/trunk@1255 2a923420-c742-0410-a762-8d5b09965624
This commit is contained in:
parent
4fe5bd1bff
commit
ebcd6cdbf7
@ -1,9 +1,9 @@
|
|||||||
Package: webif
|
Package: webif
|
||||||
Priority: optional
|
Priority: optional
|
||||||
Section: web
|
Section: web
|
||||||
Version: 0.10.1-1
|
Version: 0.10.1-4
|
||||||
Architecture: mipsel
|
Architecture: mipsel
|
||||||
Maintainer: af123@hummypkg.org.uk
|
Maintainer: af123@hummypkg.org.uk
|
||||||
Depends: webif-channelicons(>=1.0.3),mongoose(>=3.0-7),jim(>=0.73-1),jim-oo,jim-sqlite3(>=0.73-1),jim-cgi(>=0.5),service-control(>=1.2),busybox(>=1.19.3-1),lsof,epg(>=1.0.9),hmt(>=1.1.7),ssmtp,anacron,trm,openssl-command,nicesplice,id3v2,file,rsvsync(>=1.0.2),webif-charts(>=1.2),stripts(>=1.1.2),smartmontools,tmenu(>=1.02)
|
Depends: webif-channelicons(>=1.0.3),mongoose(>=3.0-7),jim(>=0.73-1),jim-oo,jim-sqlite3(>=0.73-1),jim-cgi(>=0.5),jim-binary,service-control(>=1.2),busybox(>=1.19.3-1),lsof,epg(>=1.0.9),hmt(>=1.1.7),ssmtp,anacron,trm,openssl-command,nicesplice,id3v2,file,rsvsync(>=1.0.2),webif-charts(>=1.2),stripts(>=1.1.2),smartmontools,tmenu(>=1.02)
|
||||||
Suggests: ffmpeg
|
Suggests: ffmpeg
|
||||||
Description: An evolving web interface for the Humax.
|
Description: An evolving web interface for the Humax.
|
||||||
|
@ -154,21 +154,6 @@ puts ">
|
|||||||
</tr>
|
</tr>
|
||||||
"
|
"
|
||||||
|
|
||||||
if {[system modversion 1] >= 214} {
|
|
||||||
|
|
||||||
puts -nonewline "
|
|
||||||
<tr>
|
|
||||||
<th class=key>Expert mode telnet server?</th>
|
|
||||||
<td><input id=xtelnet_toggle name=xtelnet type=checkbox value=yes"
|
|
||||||
if {[file exists /mod/boot/xtelnet]} { puts -nonewline " checked" }
|
|
||||||
puts ">
|
|
||||||
<div id=xtelnet_output></div>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
"
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
puts -nonewline "
|
puts -nonewline "
|
||||||
<tr>
|
<tr>
|
||||||
<th class=key>Slide-down toolbar?</th>
|
<th class=key>Slide-down toolbar?</th>
|
||||||
@ -379,6 +364,24 @@ if {$pkgdev} { puts -nonewline " checked" }
|
|||||||
puts ">
|
puts ">
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
"
|
||||||
|
|
||||||
|
if {[system modversion 1] >= 214} {
|
||||||
|
|
||||||
|
puts -nonewline "
|
||||||
|
<tr>
|
||||||
|
<th class=key>Expert mode telnet server?</th>
|
||||||
|
<td><input id=xtelnet_toggle name=xtelnet type=checkbox value=yes"
|
||||||
|
if {[file exists /mod/boot/xtelnet]} { puts -nonewline " checked" }
|
||||||
|
puts ">
|
||||||
|
<div id=xtelnet_output></div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
"
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
puts "
|
||||||
</table>
|
</table>
|
||||||
<div id=pkgdev_output></div>
|
<div id=pkgdev_output></div>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
|
@ -21,7 +21,11 @@
|
|||||||
|
|
||||||
$(document).ready(function () {
|
$(document).ready(function () {
|
||||||
$(":submit").button();
|
$(":submit").button();
|
||||||
$(":checkbox").iphoneStyle();
|
//$('[type="checkbox"] :not(.yesno)').iphoneStyle();
|
||||||
|
$('[type="checkbox"]').iphoneStyle({
|
||||||
|
checkedLabel: 'YES',
|
||||||
|
uncheckedLabel: 'NO'
|
||||||
|
});
|
||||||
$('form.auto').each(function(i, el) {
|
$('form.auto').each(function(i, el) {
|
||||||
var id = $(this).attr('id');
|
var id = $(this).attr('id');
|
||||||
var output = '#' + id + '_output';
|
var output = '#' + id + '_output';
|
||||||
|
Loading…
x
Reference in New Issue
Block a user