fix0rz.
This commit is contained in:
@ -480,7 +480,7 @@ public class HTMLRenderer extends EventReceiverImpl {
|
||||
_postBodyBuffer.append("</td></tr>\n<!-- end of the post body -->");
|
||||
if (_cutBody) {
|
||||
_postBodyBuffer.append("<!-- beginning of the post summary -->\n");
|
||||
_postBodyBuffer.append("<tr ").append(getClass("summ")).append("\">\n");
|
||||
_postBodyBuffer.append("<tr ").append(getClass("summ")).append(">\n");
|
||||
_postBodyBuffer.append("<td colspan=\"2\" valign=\"top\" align=\"left\" ").append(getClass("summ")).append(" >");
|
||||
_postBodyBuffer.append("<a ").append(getClass("summLink")).append(" href=\"").append(getEntryURL()).append("\">View details...</a> ");
|
||||
_postBodyBuffer.append(getSpan("summ"));
|
||||
|
@ -32,7 +32,7 @@ if (user.getAuthenticated() && (null != request.getParameter("action")) ) {
|
||||
}
|
||||
}
|
||||
%><table border="0" width="100%" class="b_content">
|
||||
<tr class="b_content"><form action="index.jsp"><td nowrap="true">
|
||||
<tr class="b_content"><form action="index.jsp"><td nowrap="nowrap">
|
||||
<em class="b_selectorTitle">Blogs:</em> <span class="b_selector"><%ArchiveViewerBean.renderBlogSelector(user, request.getParameterMap(), out);%></span>
|
||||
<input type="submit" value="Refresh" class="b_selectorRefresh" />
|
||||
<input type="submit" name="action" value="<%=ArchiveViewerBean.SEL_ACTION_SET_AS_DEFAULT%>" class="b_selectorDefault" />
|
||||
|
@ -1,12 +1,12 @@
|
||||
<%@page import="net.i2p.syndie.*, net.i2p.syndie.sml.*, net.i2p.syndie.web.*" %>
|
||||
<jsp:useBean scope="session" class="net.i2p.syndie.User" id="user" />
|
||||
<form action="<%=request.getRequestURI() + "?" + (request.getQueryString() != null ? request.getQueryString() : "")%>">
|
||||
<td nowrap="true" colspan="2" height="10" class="b_topnav">
|
||||
<td nowrap="nowrap" colspan="2" height="10" class="b_topnav">
|
||||
<span class="b_topnavHome"><a href="index.jsp" class="b_topnavHome">Home</a></span>
|
||||
<a href="admin.jsp" class="b_topnavAdmin">Syndie admin</a>
|
||||
<a href="remote.jsp" class="b_topnavRemote">Remote archives</a>
|
||||
<a href="import.jsp" class="b_topnavImport">Import</a>
|
||||
</td><td nowrap="true" height="10" class="b_topnavUser"><%
|
||||
</td><td nowrap="nowrap" height="10" class="b_topnavUser"><%
|
||||
if ("true".equals(request.getParameter("logout"))) {
|
||||
user.invalidate();
|
||||
RemoteArchiveBean rem = (RemoteArchiveBean)session.getAttribute("remote");
|
||||
|
@ -152,7 +152,7 @@ if (!user.getAuthenticated()) {
|
||||
if (j + 1 < name.getGroupCount())
|
||||
buf.append(',');
|
||||
}
|
||||
buf.append("\" /></td><td class=\"b_addrDetail\" nowrap=\"true\">");
|
||||
buf.append("\" /></td><td class=\"b_addrDetail\" nowrap=\"nowrap\">");
|
||||
buf.append("<input class=\"b_addrChange\" type=\"submit\" name=\"action\" value=\"Change\" /> <input class=\"b_addrDelete\" type=\"submit\" name=\"action\" value=\"Delete\" />");
|
||||
buf.append("</td></form></tr>");
|
||||
out.write(buf.toString());
|
||||
|
Reference in New Issue
Block a user