2006-02-17 jrandom

* Disable the message history log file by default (duh - feel free to
      delete messageHistory.txt after upgrading.  thanks deathfatty!)
    * Limit the size of the inbound tunnel build request queue so we don't
      get an insane backlog of requests that we're bound to reject, and adjust
      the queue processing so we keep on churning through them when we've got
      a backlog.
    * Small fixes for the multiuser syndie operation (thanks Complication!)
    * Renamed modified PRNG classes that were imported from gnu-crypto so we
      don't conflict with JVMs using that as a JCE provider (thanks blx!)
This commit is contained in:
jrandom
2006-02-17 09:16:00 +00:00
committed by zzz
parent 8c9167464b
commit 941b65eb32
2 changed files with 7 additions and 1 deletions

View File

@ -106,7 +106,12 @@ public class User {
public String getUsername() { return _username; }
public String getUserHash() { return _userHash; }
public Hash getBlog() { return _blog; }
public String getBlogStr() { return Base64.encode(_blog.getData()); }
public String getBlogStr() {
if (_blog != null)
return Base64.encode(_blog.getData());
else
return null;
}
public long getMostRecentEntry() { return _mostRecentEntry; }
public Map getBlogGroups() { return _blogGroups; }
public List getShitlistedBlogs() { return _shitlistedBlogs; }

View File

@ -33,6 +33,7 @@ public class ImportFeedServlet extends BaseServlet {
if (!BlogManager.instance().authorizeRemote(user)) {
out.write("<tr><td colspan=\"3\"><span class=\"b_rssMsgErr\">You are not authorized for remote access.</span></td></tr>\n");
return;
} else {
out.write("<tr><td colspan=\"3\">");