Commit 3cea539e authored by Matt Tucker's avatar Matt Tucker Committed by matt

UI tweaks.


git-svn-id: http://svn.igniterealtime.org/svn/repos/messenger/trunk@638 b35dd754-fafc-0310-a699-88a17e54d16e
parent 26589ad2
......@@ -127,25 +127,25 @@ and IQ packets are primarily useful for tracing and troubleshooting XMPP deploym
<div>
<table cellpadding="3" cellspacing="0" border="0" width="100%">
<tbody>
<tr valign="top">
<tr valign="middle">
<td width="1%" nowrap>
<input type="radio" name="auditEnabled" value="false" id="rb01"
<%= (!auditEnabled ? "checked" : "") %>>
</td>
<td width="99%">
<label for="rb01">
<b>Disable Message Auditing</b> - Packets are not logged.
<b>Disable Message Auditing</b> -- packets are not logged.
</label>
</td>
</tr>
<tr valign="top">
<tr valign="middle">
<td width="1%" nowrap>
<input type="radio" name="auditEnabled" value="true" id="rb02"
<%= (auditEnabled ? "checked" : "") %>>
</td>
<td width="99%">
<label for="rb02">
<b>Enable Message Auditing</b> - Packets are logged with the following options:
<b>Enable Message Auditing</b> -- packets are logged with the following options:
</label>
</td>
</tr>
......@@ -255,19 +255,21 @@ and IQ packets are primarily useful for tracing and troubleshooting XMPP deploym
</table>
</td>
</tr>
<tr valign="top">
<td width="1%" nowrap class="c1">
Queued packets:
</td>
<td width="99%">
<%= auditManager.getAuditor().getQueuedPacketsNumber() %>
</td>
</tr>
</table>
</td>
</tr>
</tbody>
</table>
<table border="0">
<tr valign="top">
<td width="1%" nowrap class="c1">
Queued packets:
</td>
<td width="99%">
<%= auditManager.getAuditor().getQueuedPacketsNumber() %>
</td>
</tr>
</table>
</div>
</fieldset>
......
......@@ -104,7 +104,7 @@ allows them to request a different resource name.
<div>
<table cellpadding="3" cellspacing="0" border="0" width="100%">
<tbody>
<tr valign="top">
<tr valign="middle">
<td width="1%">
<input type="radio" name="kickPolicy" value="0" id="rb01"
<%= ((kickPolicy==0) ? "checked" : "") %>>
......@@ -114,7 +114,7 @@ allows them to request a different resource name.
immediately kick the other resource.
</td>
</tr>
<tr valign="top">
<tr valign="middle">
<td width="1%">
<input type="radio" name="kickPolicy" value="<%= SessionManager.NEVER_KICK %>" id="rb02"
<%= ((kickPolicy==SessionManager.NEVER_KICK) ? "checked" : "") %>>
......@@ -124,7 +124,7 @@ allows them to request a different resource name.
allow the new resource to log in.
</td>
</tr>
<tr valign="top">
<tr valign="middle">
<td width="1%">
<input type="radio" name="kickPolicy" value="1" id="rb04"
<%= ((kickPolicy==1) ? "checked" : "") %>>
......@@ -140,7 +140,7 @@ allows them to request a different resource name.
assignedKickPolicy = true;
}
%>
<tr valign="top">
<tr valign="middle">
<td width="1%">
<input type="radio" name="kickPolicy" value="<%= Integer.MAX_VALUE %>" id="rb03"
onfocus="this.form.kickValue.focus();"
......@@ -152,7 +152,7 @@ allows them to request a different resource name.
number greater than one.
</td>
</tr>
<tr valign="top">
<tr valign="middle">
<td width="1%">
&nbsp;
</td>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment