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 ...@@ -127,25 +127,25 @@ and IQ packets are primarily useful for tracing and troubleshooting XMPP deploym
<div> <div>
<table cellpadding="3" cellspacing="0" border="0" width="100%"> <table cellpadding="3" cellspacing="0" border="0" width="100%">
<tbody> <tbody>
<tr valign="top"> <tr valign="middle">
<td width="1%" nowrap> <td width="1%" nowrap>
<input type="radio" name="auditEnabled" value="false" id="rb01" <input type="radio" name="auditEnabled" value="false" id="rb01"
<%= (!auditEnabled ? "checked" : "") %>> <%= (!auditEnabled ? "checked" : "") %>>
</td> </td>
<td width="99%"> <td width="99%">
<label for="rb01"> <label for="rb01">
<b>Disable Message Auditing</b> - Packets are not logged. <b>Disable Message Auditing</b> -- packets are not logged.
</label> </label>
</td> </td>
</tr> </tr>
<tr valign="top"> <tr valign="middle">
<td width="1%" nowrap> <td width="1%" nowrap>
<input type="radio" name="auditEnabled" value="true" id="rb02" <input type="radio" name="auditEnabled" value="true" id="rb02"
<%= (auditEnabled ? "checked" : "") %>> <%= (auditEnabled ? "checked" : "") %>>
</td> </td>
<td width="99%"> <td width="99%">
<label for="rb02"> <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> </label>
</td> </td>
</tr> </tr>
...@@ -255,6 +255,12 @@ and IQ packets are primarily useful for tracing and troubleshooting XMPP deploym ...@@ -255,6 +255,12 @@ and IQ packets are primarily useful for tracing and troubleshooting XMPP deploym
</table> </table>
</td> </td>
</tr> </tr>
</table>
</td>
</tr>
</tbody>
</table>
<table border="0">
<tr valign="top"> <tr valign="top">
<td width="1%" nowrap class="c1"> <td width="1%" nowrap class="c1">
Queued packets: Queued packets:
...@@ -264,10 +270,6 @@ and IQ packets are primarily useful for tracing and troubleshooting XMPP deploym ...@@ -264,10 +270,6 @@ and IQ packets are primarily useful for tracing and troubleshooting XMPP deploym
</td> </td>
</tr> </tr>
</table> </table>
</td>
</tr>
</tbody>
</table>
</div> </div>
</fieldset> </fieldset>
......
...@@ -104,7 +104,7 @@ allows them to request a different resource name. ...@@ -104,7 +104,7 @@ allows them to request a different resource name.
<div> <div>
<table cellpadding="3" cellspacing="0" border="0" width="100%"> <table cellpadding="3" cellspacing="0" border="0" width="100%">
<tbody> <tbody>
<tr valign="top"> <tr valign="middle">
<td width="1%"> <td width="1%">
<input type="radio" name="kickPolicy" value="0" id="rb01" <input type="radio" name="kickPolicy" value="0" id="rb01"
<%= ((kickPolicy==0) ? "checked" : "") %>> <%= ((kickPolicy==0) ? "checked" : "") %>>
...@@ -114,7 +114,7 @@ allows them to request a different resource name. ...@@ -114,7 +114,7 @@ allows them to request a different resource name.
immediately kick the other resource. immediately kick the other resource.
</td> </td>
</tr> </tr>
<tr valign="top"> <tr valign="middle">
<td width="1%"> <td width="1%">
<input type="radio" name="kickPolicy" value="<%= SessionManager.NEVER_KICK %>" id="rb02" <input type="radio" name="kickPolicy" value="<%= SessionManager.NEVER_KICK %>" id="rb02"
<%= ((kickPolicy==SessionManager.NEVER_KICK) ? "checked" : "") %>> <%= ((kickPolicy==SessionManager.NEVER_KICK) ? "checked" : "") %>>
...@@ -124,7 +124,7 @@ allows them to request a different resource name. ...@@ -124,7 +124,7 @@ allows them to request a different resource name.
allow the new resource to log in. allow the new resource to log in.
</td> </td>
</tr> </tr>
<tr valign="top"> <tr valign="middle">
<td width="1%"> <td width="1%">
<input type="radio" name="kickPolicy" value="1" id="rb04" <input type="radio" name="kickPolicy" value="1" id="rb04"
<%= ((kickPolicy==1) ? "checked" : "") %>> <%= ((kickPolicy==1) ? "checked" : "") %>>
...@@ -140,7 +140,7 @@ allows them to request a different resource name. ...@@ -140,7 +140,7 @@ allows them to request a different resource name.
assignedKickPolicy = true; assignedKickPolicy = true;
} }
%> %>
<tr valign="top"> <tr valign="middle">
<td width="1%"> <td width="1%">
<input type="radio" name="kickPolicy" value="<%= Integer.MAX_VALUE %>" id="rb03" <input type="radio" name="kickPolicy" value="<%= Integer.MAX_VALUE %>" id="rb03"
onfocus="this.form.kickValue.focus();" onfocus="this.form.kickValue.focus();"
...@@ -152,7 +152,7 @@ allows them to request a different resource name. ...@@ -152,7 +152,7 @@ allows them to request a different resource name.
number greater than one. number greater than one.
</td> </td>
</tr> </tr>
<tr valign="top"> <tr valign="middle">
<td width="1%"> <td width="1%">
&nbsp; &nbsp;
</td> </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