2005-11-10 jrandom

* First pass to a new threaded Syndie interface, which isn't enabled by
      default, as its not done yet.
This commit is contained in:
jrandom
2005-11-11 03:46:36 +00:00
committed by zzz
parent f6979c811f
commit 6de4673e9e
4 changed files with 10 additions and 6 deletions

View File

@ -17,7 +17,7 @@
<h4> <h4>
<a href="susimail/susimail">Susimail</a> | <a href="susimail/susimail">Susimail</a> |
<a href="susidns/index.jsp">SusiDNS</a> | <a href="susidns/index.jsp">SusiDNS</a> |
<a href="syndie/">Syndie</a> | <a href="syndie/index.jsp">Syndie</a> |
<a href="i2ptunnel/index.jsp">I2PTunnel</a> | <a href="i2ptunnel/index.jsp">I2PTunnel</a> |
<a href="tunnels.jsp">Tunnels</a> | <a href="tunnels.jsp">Tunnels</a> |
<a href="profiles.jsp">Profiles</a> | <a href="profiles.jsp">Profiles</a> |

View File

@ -160,8 +160,8 @@ class ArchiveIndexer {
} }
threads.organizeTree(); threads.organizeTree();
if (_log.shouldLog(Log.DEBUG)) if (log.shouldLog(Log.DEBUG))
_log.debug("Tree: \n" + threads.toString()); log.debug("Tree: \n" + threads.toString());
rv.setThreadedIndex(threads); rv.setThreadedIndex(threads);
return rv; return rv;

View File

@ -1,4 +1,8 @@
$Id: history.txt,v 1.315 2005/11/05 16:12:57 jrandom Exp $ $Id: history.txt,v 1.316 2005/11/06 17:25:18 jrandom Exp $
2005-11-10 jrandom
* First pass to a new threaded Syndie interface, which isn't enabled by
default, as its not done yet.
2005-11-06 jrandom 2005-11-06 jrandom
* Include SSU establishment failure in the peer profile as a commError, * Include SSU establishment failure in the peer profile as a commError,

View File

@ -15,9 +15,9 @@ import net.i2p.CoreVersion;
* *
*/ */
public class RouterVersion { public class RouterVersion {
public final static String ID = "$Revision: 1.284 $ $Date: 2005/11/05 16:12:59 $"; public final static String ID = "$Revision: 1.285 $ $Date: 2005/11/06 17:25:18 $";
public final static String VERSION = "0.6.1.4"; public final static String VERSION = "0.6.1.4";
public final static long BUILD = 5; public final static long BUILD = 6;
public static void main(String args[]) { public static void main(String args[]) {
System.out.println("I2P Router version: " + VERSION + "-" + BUILD); System.out.println("I2P Router version: " + VERSION + "-" + BUILD);
System.out.println("Router ID: " + RouterVersion.ID); System.out.println("Router ID: " + RouterVersion.ID);