CVS Update: xmlpull-api-v1/doc
Aleksander Andrzej Slominski <[email protected]> Thu, 15 Jan 2004 12:17:11 -0500 (EST)
| Newsgroups | gmane.text.xml.xmlpull.devel |
|---|---|
| Message-ID | <[email protected]> |
aslom 04/01/15 12:17:11
Modified: . build.xml
doc changes.html
Log:
added target="1.1" to make sure that compiled code can work with JDK 1.1
(as described in ANT Javac Task documentation:
(...) Generate class files for specific VM version (e.g., 1.1 or 1.2).
Note that the default value depends on the JVM that is running Ant.
In particular, if you use JDK 1.4 the generated classes will not be usable
for a 1.1 Java VM unless you explicitly set this attribute to the value 1.1
(which is the default value for JDK 1.1 to 1.3).
Revision Changes Path
1.30 +10 -13 xmlpull-api-v1/build.xml
Index: build.xml
===================================================================
RCS file: /l/extreme/cvspub/xmlpull-api-v1/build.xml,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -b -t -w -r1.29 -r1.30
--- build.xml 30 Jul 2003 17:10:18 -0000 1.29
+++ build.xml 15 Jan 2004 17:17:11 -0000 1.30
@@ -11,7 +11,7 @@
<property name="name" value="XmlPull"/>
<property name="year" value="2003"/>
- <property name="version" value="1_1_3_4"/>
+ <property name="version" value="1_1_3_4a"/>
<property name="xmlpull_version" value="xmlpull_${version}"/>
<property name="xmlpull_tag" value="XMLPULL_${version}"/>
<property name="copyright"
@@ -142,7 +142,7 @@
<!-- =================================================================== -->
<target name="api" depends="prepare">
- <javac debug="${debug}" deprecation="${deprecation}"
+ <javac debug="${debug}" deprecation="${deprecation}" target="1.1"
srcdir="${src_api}" destdir="${build_classes}" classpath="${build_classes}"/>
</target>
@@ -157,10 +157,7 @@
<target name="samples" depends="xmlpull">
<mkdir dir="${build_samples}"/>
- <javac debug="${debug}" deprecation="${deprecation}"
- srcdir="${src_samples}" destdir="${build_samples}"
- classpath="${build_classes}"/>
- <javac debug="${debug}" deprecation="${deprecation}"
+ <javac debug="${debug}" deprecation="${deprecation}" target="1.1"
srcdir="${src_samples}" destdir="${build_samples}"
classpath="${build_classes}"/>
</target>
@@ -177,7 +174,7 @@
<target name="dom2_builder" depends="api">
<mkdir dir="${build_dom2_builder}"/>
- <javac debug="${debug}" deprecation="${deprecation}"
+ <javac debug="${debug}" deprecation="${deprecation}" target="1.1"
srcdir="${src_dom2_builder}" destdir="${build_dom2_builder}"
classpath="${build_classes}"/>
<jar jarfile="${jar_dom2_builder}">
@@ -187,7 +184,7 @@
<target name="parser_pool" depends="api">
<mkdir dir="${build_parser_pool}"/>
- <javac debug="${debug}" deprecation="${deprecation}"
+ <javac debug="${debug}" deprecation="${deprecation}" target="1.1"
srcdir="${src_parser_pool}" destdir="${build_parser_pool}"
classpath="${build_classes}"/>
<jar jarfile="${jar_parser_pool}">
@@ -197,7 +194,7 @@
<target name="sax2" depends="api">
<mkdir dir="${build_sax2}"/>
- <javac debug="${debug}" deprecation="${deprecation}"
+ <javac debug="${debug}" deprecation="${deprecation}" target="1.1"
srcdir="${src_sax2}" destdir="${build_sax2}">
<classpath>
<pathelement location="${build_classes}" />
@@ -213,7 +210,7 @@
<target name="util" depends="api">
<mkdir dir="${build_util}"/>
- <javac debug="${debug}" deprecation="${deprecation}"
+ <javac debug="${debug}" deprecation="${deprecation}" target="1.1"
srcdir="${src_util}" destdir="${build_util}" classpath="${build_classes}"/>
<jar jarfile="${jar_util}">
<fileset dir="${build_util}"/>
@@ -222,7 +219,7 @@
<target name="wrapper" depends="require_junit,util">
<mkdir dir="${build_wrapper}"/>
- <javac debug="${debug}" deprecation="${deprecation}"
+ <javac debug="${debug}" deprecation="${deprecation}" target="1.1"
srcdir="${src_wrapper}" destdir="${build_wrapper}" classpath="${build_classes}:${build_util}"/>
<jar jarfile="${jar_wrapper}">
<fileset dir="${build_wrapper}"/>
@@ -231,14 +228,14 @@
<target name="wrapper_tests" depends="require_junit,wrapper">
<mkdir dir="${build_addons_tests}"/>
- <javac debug="${debug}" deprecation="${deprecation}"
+ <javac debug="${debug}" deprecation="${deprecation}" target="1.1"
srcdir="${src_wrapper_tests}" destdir="${build_wrapper}"
classpath="${build_classes}:${build_util}:${build_wrapper}"/>
</target>
<target name="xmlrpc" depends="api">
<mkdir dir="${build_xmlrpc}"/>
- <javac debug="${debug}" deprecation="${deprecation}"
+ <javac debug="${debug}" deprecation="${deprecation}" target="1.1"
srcdir="${src_xmlrpc}" destdir="${build_xmlrpc}" classpath="${build_classes}"/>
<jar jarfile="${jar_xmlrpc}">
<fileset dir="${build_xmlrpc}"/>
1.51 +13 -4 xmlpull-api-v1/doc/changes.html
Index: changes.html
===================================================================
RCS file: /l/extreme/cvspub/xmlpull-api-v1/doc/changes.html,v
retrieving revision 1.50
retrieving revision 1.51
diff -u -b -t -w -r1.50 -r1.51
--- changes.html 12 Jan 2004 16:20:59 -0000 1.50
+++ changes.html 15 Jan 2004 17:17:11 -0000 1.51
@@ -18,9 +18,18 @@
<h3><a name="XMLPULL_1_1_3_*"></a>2004-01- (XMLPULL_1_1_3_*)</h3>
<ul>
+
+<li>added <code>target="1.1"</code> to make sure that compiled code can work with JDK 1.1
+(as described in <a href="http://ant.apache.org/manual/CoreTasks/javac.html">ANT Javac Task documentation</a>: (...)
+Generate class files for specific VM version (e.g., 1.1 or 1.2).
+Note that the default value depends on the JVM that is running Ant.
+In particular, if you use JDK 1.4 the generated classes <b>will not be usable for a 1.1 Java VM unless</b>
+you explicitly set this attribute to the value 1.1 (which is the default value for JDK 1.1 to 1.3).
+</li>
+
<li>added test to check that workaround from issue "unable to select prefix to
-use when writing startTag, endTag, and attribute" " (<a href="http://www.extreme.indiana.edu/bugzilla/show_bug.cgi?id=169">bug
-169</a>) is tested</li>
+use when writing startTag, endTag, and attribute" "
+(<a href="http://www.extreme.indiana.edu/bugzilla/show_bug.cgi?id=169">bug 169</a>) is tested</li>
<li>updated unit test to check for disallowed "]]>" in character content, more
tests for CDSECT</li>
<li>changed DOM2 builder addon to be completely stateless factory
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Buy Ink Cartridges or Refill Kits for your HP, Epson, Canon or Lexmark
Printer at MyInks.com. Free s/h on orders $50 or more to the US & Canada.
http://www.c1tracking.com/l.asp?cid=5511
http://us.click.yahoo.com/mOAaAA/3exGAA/qnsNAA/2U_rlB/TM
---------------------------------------------------------------------~->
Yahoo! Groups Links
To visit your group on the web, go to:
http://groups.yahoo.com/group/xmlpull-dev/
To unsubscribe from this group, send an email to:
[email protected]
Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/