I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 2e7eac02 authored by jrandom's avatar jrandom Committed by zzz
Browse files

2005-02-26 jrandom

    * Force 1.3-isms on the precompiled jsps too (thanks laberhost)
parent 238389fc
No related branches found
No related tags found
No related merge requests found
...@@ -56,7 +56,8 @@ ...@@ -56,7 +56,8 @@
<arg value="-webapp" /> <arg value="-webapp" />
<arg value="../jsp/" /> <arg value="../jsp/" />
</java> </java>
<javac destdir="../jsp/WEB-INF/classes/" srcdir="../jsp/WEB-INF/classes" includes="**/*.java"> <javac debug="true" deprecation="on" source="1.3" target="1.3"
destdir="../jsp/WEB-INF/classes/" srcdir="../jsp/WEB-INF/classes" includes="**/*.java">
<classpath> <classpath>
<pathelement location="../../jetty/jettylib/jasper-runtime.jar" /> <pathelement location="../../jetty/jettylib/jasper-runtime.jar" />
<pathelement location="../../jetty/jettylib/javax.servlet.jar" /> <pathelement location="../../jetty/jettylib/javax.servlet.jar" />
......
...@@ -74,7 +74,9 @@ ...@@ -74,7 +74,9 @@
<arg value="../jsp/" /> <arg value="../jsp/" />
</java> </java>
<javac destdir="../jsp/WEB-INF/classes/" srcdir="../jsp/WEB-INF/classes" includes="**/*.java"> <javac debug="true" deprecation="on" source="1.3" target="1.3"
destdir="../jsp/WEB-INF/classes/"
srcdir="../jsp/WEB-INF/classes" includes="**/*.java">
<classpath> <classpath>
<pathelement location="../../jetty/jettylib/jasper-runtime.jar" /> <pathelement location="../../jetty/jettylib/jasper-runtime.jar" />
<pathelement location="../../jetty/jettylib/javax.servlet.jar" /> <pathelement location="../../jetty/jettylib/javax.servlet.jar" />
......
$Id: history.txt,v 1.157 2005/02/24 18:53:35 jrandom Exp $ $Id: history.txt,v 1.158 2005/02/26 14:16:46 jrandom Exp $
2005-02-26 jrandom
* Force 1.3-isms on the precompiled jsps too (thanks laberhost)
2005-02-26 jrandom 2005-02-26 jrandom
* Further streaming lib caching improvements * Further streaming lib caching improvements
......
...@@ -15,9 +15,9 @@ import net.i2p.CoreVersion; ...@@ -15,9 +15,9 @@ import net.i2p.CoreVersion;
* *
*/ */
public class RouterVersion { public class RouterVersion {
public final static String ID = "$Revision: 1.152 $ $Date: 2005/02/24 18:53:36 $"; public final static String ID = "$Revision: 1.153 $ $Date: 2005/02/26 14:16:47 $";
public final static String VERSION = "0.5.0.1"; public final static String VERSION = "0.5.0.1";
public final static long BUILD = 4; public final static long BUILD = 5;
public static void main(String args[]) { public static void main(String args[]) {
System.out.println("I2P Router version: " + VERSION); System.out.println("I2P Router version: " + VERSION);
System.out.println("Router ID: " + RouterVersion.ID); System.out.println("Router ID: " + RouterVersion.ID);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment