Commit b5b9dd7f authored by Matt Tucker's avatar Matt Tucker Committed by matt

Updated table UI.


git-svn-id: http://svn.igniterealtime.org/svn/repos/messenger/trunk@1690 b35dd754-fafc-0310-a699-88a17e54d16e
parent cc821d70
...@@ -237,7 +237,7 @@ ...@@ -237,7 +237,7 @@
<thead> <thead>
<tr> <tr>
<th>&nbsp;</th> <th>&nbsp;</th>
<th nowrap><fmt:message key="plugin.admin.name" /></th> <th nowrap colspan="2"><fmt:message key="plugin.admin.name" /></th>
<th nowrap><fmt:message key="plugin.admin.description" /></th> <th nowrap><fmt:message key="plugin.admin.description" /></th>
<th nowrap><fmt:message key="plugin.admin.version" /></th> <th nowrap><fmt:message key="plugin.admin.version" /></th>
<th nowrap><fmt:message key="plugin.admin.author" /></th> <th nowrap><fmt:message key="plugin.admin.author" /></th>
...@@ -252,7 +252,7 @@ ...@@ -252,7 +252,7 @@
if (plugins.size() == 1) { if (plugins.size() == 1) {
%> %>
<tr> <tr>
<td align="center" colspan="7"><fmt:message key="plugin.admin.no_plugin" /></td> <td align="center" colspan="8"><fmt:message key="plugin.admin.no_plugin" /></td>
</tr> </tr>
<% <%
} }
...@@ -281,15 +281,14 @@ ...@@ -281,15 +281,14 @@
<% } %> <% } %>
</td> </td>
<td width="20%" nowrap> <td width="20%" nowrap>
<table border=0 cellpadding=0><tr>
<td nowrap>
<%= (pluginName != null ? pluginName : dirName) %> &nbsp; <%= (pluginName != null ? pluginName : dirName) %> &nbsp;
<% <%
boolean readmeExists = new File(pluginDir, "readme.html").exists(); boolean readmeExists = new File(pluginDir, "readme.html").exists();
boolean changelogExists = new File(pluginDir, "changelog.html").exists(); boolean changelogExists = new File(pluginDir, "changelog.html").exists();
%> %>
</td><td nowrap> </td>
<td nowrap>
<% if (readmeExists) { %> <% if (readmeExists) { %>
<a href="plugin-admin.jsp?plugin=<%= URLEncoder.encode(pluginDir.getName(), "utf-8") %>&showReadme=true" <a href="plugin-admin.jsp?plugin=<%= URLEncoder.encode(pluginDir.getName(), "utf-8") %>&showReadme=true"
><img src="images/doc-readme-16x16.gif" width="16" height="16" border="0" alt="README"></a> ><img src="images/doc-readme-16x16.gif" width="16" height="16" border="0" alt="README"></a>
...@@ -298,8 +297,7 @@ ...@@ -298,8 +297,7 @@
<a href="plugin-admin.jsp?plugin=<%= URLEncoder.encode(pluginDir.getName(), "utf-8") %>&showChangelog=true" <a href="plugin-admin.jsp?plugin=<%= URLEncoder.encode(pluginDir.getName(), "utf-8") %>&showChangelog=true"
><img src="images/doc-changelog-16x16.gif" width="16" height="16" border="0" alt="changelog"></a> ><img src="images/doc-changelog-16x16.gif" width="16" height="16" border="0" alt="changelog"></a>
<% } %> <% } %>
</td></tr></table> </td>
</td>
<td width="60%"> <td width="60%">
<%= pluginDescription != null ? pluginDescription : "" %> &nbsp; <%= pluginDescription != null ? pluginDescription : "" %> &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