stefano 00/01/05 08:04:18
Modified: . build.xml changes.xml
Log:
updates and added resources to jar
Revision Changes Path
1.15 +4 -3 xml-cocoon/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/xml-cocoon/build.xml,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- build.xml 2000/01/03 01:33:22 1.14
+++ build.xml 2000/01/05 16:04:18 1.15
@@ -50,6 +50,7 @@
- ant.jar
- projectx-tr2.jar
- tools.jar
+ - servlet-2.2.0.jar
that you should place into your classpath.
@@ -61,7 +62,7 @@
Apache FOP 0.12.0+ - http://xml.apache.org/dist/
Sun ProjectX (TR2) - jakarta-tools CVS at jakarta.apache.org
- Sun Servlet API (2.1+) - jakarta-tools CVS at jakarta.apache.org
+ Sun Servlet API (2.2+) - jakarta-tools CVS at jakarta.apache.org
Sun JNDI API (1.2.1+) - http://java.sun.com/products/jndi/index.html
James Clark XT - ftp://ftp.jclark.com/pub/xml/xt.zip
@@ -215,14 +216,14 @@
<!-- Compiles the source directory -->
<!-- =================================================================== -->
<target name="compile" depends="prepare-src">
- <javac srcdir="${build.src}" destdir="${build.dest}" debug="${debug}"/>
+ <javac srcdir="${build.src}" destdir="${build.dest}" classpath="${classpath}" debug="${debug}"/>
</target>
<!-- =================================================================== -->
<!-- Creates the class package -->
<!-- =================================================================== -->
<target name="package" depends="compile">
- <jar jarfile="${build.dir}/${name}.jar" basedir="${build.dest}" manifest="${build.src}/Manifest.mf"
items="org"/>
+ <jar jarfile="${build.dir}/${name}.jar" basedir="${build.dest}" manifest="${build.src}/Manifest.mf"
items="org, resources"/>
</target>
<!-- =================================================================== -->
1.16 +5 -1 xml-cocoon/changes.xml
Index: changes.xml
===================================================================
RCS file: /home/cvs/xml-cocoon/changes.xml,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- changes.xml 2000/01/03 01:33:22 1.15
+++ changes.xml 2000/01/05 16:04:18 1.16
@@ -4,7 +4,7 @@
<!--
History of Cocoon changes
- $Id: changes.xml,v 1.15 2000/01/03 01:33:22 stefano Exp $
+ $Id: changes.xml,v 1.16 2000/01/05 16:04:18 stefano Exp $
-->
<changes title="Cocoon History of Changes">
@@ -15,6 +15,10 @@
</devs>
<release version="1.6-dev" date="not yet released">
+ <action dev="SM" type="fix" due-to="Axel Müller" due-to-email="axel.mueller@i2c-systems.com">
+ Fixed Servlet API illegal state when setting the content type after acquiring the
+ servlet response instance.
+ </action>
<action dev="SM" type="update">
Added XSP sample pages.
</action>
|