This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to annotated tag jaxp-ri-1_2_0-build13 in repository https://gitbox.apache.org/repos/asf/xalan-java.git
commit 01bf95f2c6a30d9374e5177d5a3057935204bc53 Author: No Author <[email protected]> AuthorDate: Mon Feb 25 18:37:12 2002 +0000 This commit was manufactured by cvs2svn to create tag 'jaxp-ri-1_2_0-build13'. --- build.xml | 11 +++++++++-- src/org/apache/xalan/xsltc/trax/SAX2DOM.java | 5 +---- src/trax/trax.properties | 11 ----------- 3 files changed, 10 insertions(+), 17 deletions(-) diff --git a/build.xml b/build.xml index df7e608..ba937f2 100644 --- a/build.xml +++ b/build.xml @@ -78,6 +78,9 @@ Copyright: <property name="jlex.jar" value="${bin.dir}/${jlex.jar.name}"/> <property name="runtime.jar.name" value="runtime.jar"/> <property name="runtime.jar" value="${bin.dir}/${runtime.jar.name}"/> + <property name="regexp.jar.name" value="regexp.jar"/> + <property name="regexp.jar" value="${bin.dir}/${regexp.jar.name}"/> + <!-- Defines general variables used by the other targets; name controls output xalan.jar --> <property name="version.VERSION" value="2"/> @@ -359,7 +362,7 @@ Copyright: </javac> </target> - <target name="xsltc.jar" depends="xsltc.compile" + <target name="xsltc.unbundledjar" depends="xsltc.compile" description="Jar just the xsltc.jar file" > <!-- Copy over the manifest, with filtering (for version number) --> <filter token="impl.version" value="${impl.version}"/> @@ -372,7 +375,7 @@ Copyright: </target> - <target name="xsltc.bundledjar" depends="xsltc.compile" + <target name="xsltc.jar" depends="xsltc.compile" description="Jar xsltc, BCEL,JLex,java_cup,runtime and jakarta regexp"> <!-- make a tmp directory to work in --> <delete dir="${build.dir}/xsltctmp" includeEmptyDirs="true" quiet="true"/> @@ -447,11 +450,14 @@ Copyright: includeEmptyDirs="true" quiet="true"/> <!-- create new META-INF dir w/ transformer factory default --> + <!-- GTM: comment this out so that bundled xsltc.jar does not have + service provider default until further notice 2/20/2002 <mkdir dir="${build.dir}/xsltctmp/META-INF"/> <mkdir dir="${build.dir}/xsltctmp/META-INF/services"/> <copy todir="${build.dir}/xsltctmp/META-INF/services" file="${src.dir}/${xsltc.reldir}/javax.xml.transform.TransformerFactory" /> + --> <!-- Copy over the manifest, with filtering (for version number) --> <filter token="impl.version" value="${impl.version}"/> @@ -845,6 +851,7 @@ Copyright: <include name="${dist.file}/bin/${java_cup.jar.name}"/> <include name="${dist.file}/bin/${jlex.jar.name}"/> <include name="${dist.file}/bin/${runtime.jar.name}"/> + <include name="${dist.file}/bin/${regexp.jar.name}"/> </patternset> <tar tarfile="${build.dir}/${dist.file}-bin.tar" > diff --git a/src/org/apache/xalan/xsltc/trax/SAX2DOM.java b/src/org/apache/xalan/xsltc/trax/SAX2DOM.java index 82177b7..8dd4616 100644 --- a/src/org/apache/xalan/xsltc/trax/SAX2DOM.java +++ b/src/org/apache/xalan/xsltc/trax/SAX2DOM.java @@ -57,7 +57,6 @@ * <http://www.apache.org/>. * * @author G. Todd Miller - * */ @@ -102,9 +101,7 @@ class SAX2DOM implements ContentHandler { public void startDocument() { _document = _builder.newDocument(); - Element root = (Element)_document.createElement("root"); - _document.appendChild(root); - _nodeStk.push(root); + // bugfix 6417, contributed by Tim Elcott } public void endDocument() { diff --git a/src/trax/trax.properties b/src/trax/trax.properties deleted file mode 100644 index e593c39..0000000 --- a/src/trax/trax.properties +++ /dev/null @@ -1,11 +0,0 @@ -# $Revision$ $Date$ -# -# Note: This properties file is provided for illustrative purposes -# only and is not part of the interface definition. -# This properties file is located in the implementation JAR -# and different implementations will specify different -# implementation classes and output methods. -# - -# The TRaX Stylesheet processor -trax.processor.xslt=org.apache.xalan.processor.StylesheetProcessor --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
