Commit e1ff03a0 authored by Daniel Henninger's avatar Daniel Henninger Committed by dhenninger

Added numeric priority to session listings. [also fixed minor column lineup bug]

git-svn-id: http://svn.igniterealtime.org/svn/repos/wildfire/trunk@5125 b35dd754-fafc-0310-a699-88a17e54d16e
parent ec7fbcef
......@@ -216,6 +216,14 @@
%>
</td>
</tr>
<tr>
<td class="c1">
<fmt:message key="session.details.priority" />
</td>
<td>
<%= currentSess.getPresence().getPriority() %>
</td>
</tr>
<tr>
<td class="c1">
<fmt:message key="session.details.session_created" />
......@@ -268,8 +276,9 @@
<th>&nbsp;</th>
<th><fmt:message key="session.details.name" /></th>
<th><fmt:message key="session.details.resource" /></th>
<th><fmt:message key="session.details.status" /></th>
<th nowrap colspan="2"><fmt:message key="session.details.status" /></th>
<th nowrap colspan="2"><fmt:message key="session.details.if_presence" /></th>
<th><fmt:message key="session.details.priority" /></th>
<th nowrap><fmt:message key="session.details.clientip" /></th>
<th nowrap><fmt:message key="session.details.close_connect" /></th>
</tr>
......
......@@ -149,6 +149,10 @@
<% } %>
<td width="1%" nowrap>
<%= sess.getPresence().getPriority() %>
</td>
<td width="1%" nowrap>
<%= sess.getConnection().getInetAddress().getHostAddress() %>
</td>
......
......@@ -208,6 +208,7 @@
<th nowrap><fmt:message key="session.details.resource" /></th>
<th nowrap colspan="2"><fmt:message key="session.details.status" /></th>
<th nowrap colspan="2"><fmt:message key="session.details.presence" /></th>
<th nowrap><fmt:message key="session.details.priority" /></th>
<th nowrap><fmt:message key="session.details.clientip" /></th>
<th nowrap><fmt:message key="session.details.close_connect" /></th>
</tr>
......
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