Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 2 additions & 8 deletions xmppserver/src/main/webapp/component-session-details.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -132,17 +132,11 @@
<td>
<c:if test="${componentSession.externalComponent.category eq 'gateway'}">
<c:choose>
<c:when test="${componentSession.externalComponent.type eq 'msn'}">
<img src="images/msn.gif" alt="MSN">&nbsp;
</c:when>
<c:when test="${componentSession.externalComponent.type eq 'aim'}">
<img src="images/aim.gif" alt="AIM">&nbsp;
</c:when>
<c:when test="${componentSession.externalComponent.type eq 'yahoo'}">
<img src="images/yahoo.gif" alt="Yahoo!">&nbsp;
</c:when>
<c:when test="${componentSession.externalComponent.type eq 'icq'}">
<img src="images/icq.gif" alt="ICQ">&nbsp;
<c:when test="${componentSession.externalComponent.type eq 'irc'}">
<img src="images/irc.gif" alt="IRC">&nbsp;
</c:when>
</c:choose>
</c:if>
Expand Down
11 changes: 1 addition & 10 deletions xmppserver/src/main/webapp/component-session-summary.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -216,17 +216,8 @@
<table>
<tr style="text-align: center">
<% if ("gateway".equals(componentSession.getExternalComponent().getCategory())) {
if ("msn".equals(componentSession.getExternalComponent().getType())) { %>
<td><img src="images/msn.gif" alt="MSN"></td>
<% }
else if ("aim".equals(componentSession.getExternalComponent().getType())) { %>
if ("aim".equals(componentSession.getExternalComponent().getType())) { %>
<td><img src="images/aim.gif" alt="AIM"></td>
<% }
else if ("yahoo".equals(componentSession.getExternalComponent().getType())) { %>
<td><img src="images/yahoo.gif" alt="Yahoo!"></td>
<% }
else if ("icq".equals(componentSession.getExternalComponent().getType())) { %>
<td><img src="images/icq.gif" alt="ICQ"></td>
<% }
else if ("irc".equals(componentSession.getExternalComponent().getType())) { %>
<td><img src="images/irc.gif" alt="IRC"></td>
Expand Down
Binary file removed xmppserver/src/main/webapp/images/icq-gray.gif
Binary file not shown.
Binary file removed xmppserver/src/main/webapp/images/icq.gif
Binary file not shown.
Binary file removed xmppserver/src/main/webapp/images/msn-gray.gif
Binary file not shown.
Binary file removed xmppserver/src/main/webapp/images/msn.gif
Binary file not shown.
Binary file removed xmppserver/src/main/webapp/images/yahoo-gray.gif
Binary file not shown.
Binary file removed xmppserver/src/main/webapp/images/yahoo.gif
Binary file not shown.