You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
2.0 KiB
51 lines
2.0 KiB
<!--#set global $have_refresh=5#-->
|
|
<!--#set global $topmenu="connections"#-->
|
|
<!--#set global $statpath=".."#-->
|
|
<!--#set global $helpsubject="GUI+Connections"#-->
|
|
<!--#include $webdir + "/inc_top.tmpl"#-->
|
|
|
|
<span class="SubMenu">
|
|
<!--#set $msg=$T('askTestEmail')#-->
|
|
<a href="./disconnect?session=$session">$T('link-forceDisc')</a> |
|
|
<a href="./testmail?session=$session" onclick="javascript:return confirm('$msg')">$T('link-testEmail')</a> |
|
|
<a href="./showlog?session=$session">$T('link-showLog')</a> |
|
|
<a href="./showweb?session=$session">$T('link-showWeblog')</a>
|
|
$T('logging'):
|
|
<select onChange="location = './change_loglevel?session=$session&loglevel='+this.options[this.selectedIndex].value">
|
|
<option value="0" <!--#if $loglevel == "0" then "selected" else ""#-->>$T('log-errWarn')</option>
|
|
<option value="1" <!--#if $loglevel == "1" then "selected" else ""#-->>$T('log-info')</option>
|
|
<option value="2" <!--#if $loglevel == "2" then "selected" else ""#-->>$T('log-debug')</option>
|
|
</select>
|
|
</span>
|
|
|
|
<h2>$T('connections')</h2>
|
|
<!--#if $servers#-->
|
|
<ul>
|
|
<!--#for $server in $servers#-->
|
|
<li>
|
|
$server[0]:$server[1]: $server[2]
|
|
<!--#if not $server[5]#-->
|
|
<a href="./unblock_server?server=$server[0]:$server[1]&session=$session">($T('server-blocked'))</a>
|
|
$server[6]
|
|
<!--#end if#-->
|
|
<ul>
|
|
<!--#for $thrd in $server[3]#-->
|
|
<li>$T('thread') #$thrd[0] -> $thrd[1] -> $thrd[2] -> $thrd[3]</li>
|
|
<!--#end for#-->
|
|
</ul>
|
|
</li>
|
|
<!--#end for#-->
|
|
</ul>
|
|
<!--#end if#-->
|
|
<!--#if $lastmail#-->
|
|
<h2>$T('emailResult')</h2>
|
|
$lastmail
|
|
<!--#end if#-->
|
|
<!--#if $warnings#-->
|
|
<h2>$T('lastWarnings') (<a href="./clearwarnings?session=$session">$T('clearWarnings')</a>)</h2>
|
|
<!--#for $warn in $warnings#-->
|
|
$warn<br/>
|
|
<!--#end for#-->
|
|
<!--#end if#-->
|
|
|
|
<!--#include $webdir + "/inc_bottom.tmpl"#-->
|
|
|