bruno 2003/04/24 02:44:07
Modified: lib/endorsed xml-apis.jar
lib jars.xml
src/blocks/woody/java/org/apache/cocoon/woody/util
DomHelper.java
Added: lib/endorsed xalan-2.5.0.jar xercesImpl-2.4.0.jar
Removed: lib/endorsed xalan-2.4.1.jar xercesImpl-2.1.0.jar
xsltc-20030211.jar
Log:
Upgraded Xalan and Xerces
(note: xsltc is now included in Xalan's jar)
Revision Changes Path
1.2 +262 -218 cocoon-2.1/lib/endorsed/xml-apis.jar
<<Binary file>>
1.1 cocoon-2.1/lib/endorsed/xalan-2.5.0.jar
<<Binary file>>
1.1 cocoon-2.1/lib/endorsed/xercesImpl-2.4.0.jar
<<Binary file>>
1.33 +5 -16 cocoon-2.1/lib/jars.xml
Index: jars.xml
===================================================================
RCS file: /home/cvs/cocoon-2.1/lib/jars.xml,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- jars.xml 24 Apr 2003 09:39:12 -0000 1.32
+++ jars.xml 24 Apr 2003 09:44:07 -0000 1.33
@@ -333,32 +333,21 @@
<file>
<title>The XSLT processor</title>
<description>
- Xalan is an XSLT processor that fully supports the W3C specs.
+ Xalan is an XSLT processor that fully supports the W3C specs.
+ Includes XSLTC.
</description>
<ant-target>jar</ant-target>
<used-by>Cocoon</used-by>
- <lib>endorsed/xalan-2.4.1.jar</lib>
+ <lib>endorsed/xalan-2.5.0.jar</lib>
<homepage>http://xml.apache.org/xalan/</homepage>
</file>
<file>
- <title>The XSLTC processor</title>
- <description>
- XLTC is an XSLT compiler that fully supports the W3C specs.
- It compiles XSLT programs to very efficient, reusable Bytecode called translets.
- </description>
- <ant-target>xsltc.jar</ant-target>
- <used-by>Cocoon TraxTransformer</used-by>
- <lib>endorsed/xsltc-20030211.jar</lib>
- <homepage>http://xml.apache.org/xalan-j/xsltc_usage.html</homepage>
- </file>
-
- <file>
<title>The XML parser</title>
<description>Xerces is an XML parser.</description>
<used-by>Cocoon</used-by>
<ant-target>jars</ant-target>
- <lib>endorsed/xercesImpl-2.1.0.jar</lib>
+ <lib>endorsed/xercesImpl-2.4.0.jar</lib>
<homepage>http://xml.apache.org/xerces-j/</homepage>
</file>
1.2 +2 -2 cocoon-2.1/src/blocks/woody/java/org/apache/cocoon/woody/util/DomHelper.java
Index: DomHelper.java
===================================================================
RCS file: /home/cvs/cocoon-2.1/src/blocks/woody/java/org/apache/cocoon/woody/util/DomHelper.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- DomHelper.java 22 Apr 2003 12:04:21 -0000 1.1
+++ DomHelper.java 24 Apr 2003 09:44:07 -0000 1.2
@@ -192,8 +192,8 @@
public static class LocationTrackingDOMParser extends DOMParser {
XMLLocator locator;
- public void startDocument(XMLLocator xmlLocator, String s, Augmentations augmentations)
throws XNIException {
- super.startDocument(xmlLocator, s, augmentations);
+ public void startDocument(XMLLocator xmlLocator, String s, NamespaceContext namespaceContext,
Augmentations augmentations) throws XNIException {
+ super.startDocument(xmlLocator, s, namespaceContext, augmentations);
this.locator = xmlLocator;
setLocation();
}
|