ac93144789
git-svn-id: file:///root/webif/svn/humax/pkg/src/webif/trunk@511 2a923420-c742-0410-a762-8d5b09965624
26 lines
656 B
Plaintext
26 lines
656 B
Plaintext
<!--#include virtual="/lib/header.shtml" -->
|
|
|
|
<fieldset style="display: inline">
|
|
<legend>Diagnostics</legend>
|
|
Diagnostic:
|
|
<input name=seq id=seq value=general size=30 maxlength=50
|
|
class="text ui-widget-content ui-corner-all">
|
|
<button id=rundiag>Run Diagnostic</button>
|
|
</fieldset>
|
|
|
|
<div style="margin-top: 2em; display: none" class=pre id=results>
|
|
<br><br>
|
|
<i>Running diagnostic, please wait...</i>
|
|
<br><br>
|
|
</div>
|
|
|
|
<script type=text/javascript>
|
|
$('#rundiag').button().click(function() {
|
|
$('#results').slideDown().load('/cgi-bin/diag.jim?diag=' +
|
|
encodeURIComponent($('#seq').val()));
|
|
});
|
|
</script>
|
|
|
|
<!--#include virtual="/lib/footer.shtml" -->
|
|
|