376c96b652Adding serialVersionUID to a serializable class.
mrglavas
2005-09-30 20:40:52 +00:00
005dd3d7d7Assure that filenames of the form c:/foo/bar and foo/bar don't get turned into inaccessible URIs of the form file://c:/foo/bar and file://foo/bar
ndw
2005-09-29 11:21:06 +00:00
3f0703188bUpdate the documentation about building the site. Now using Forrest-0.7 version.
crossley
2005-09-13 05:42:06 +00:00
e32f0461a4Better links to SVN and browse.
crossley
2005-09-13 05:28:03 +00:00
6a5cab32dfA copy of the license is linked from the docs.
crossley
2005-09-13 05:02:46 +00:00
5432c5290aForrest-0.7 now finds this file relative to xdocs directory.
crossley
2005-09-13 04:49:07 +00:00
dd0092a0dcUpdate references to ASF projects that use resolver.
crossley
2005-09-13 04:40:13 +00:00
e8bd3f5a97xml-commons moved to SVN.
crossley
2005-09-13 04:23:07 +00:00
32edb6bbe5Default location of docbook-xsl on linux and mac.
crossley
2005-09-13 04:21:07 +00:00
f3db158680XML-Commons started in 2001.
crossley
2005-09-13 03:29:16 +00:00
c35c82d716Woosh, another year has gone. Update ApacheCon link.
crossley
2005-09-13 03:24:50 +00:00
46b98b1e88Adding a new PGP key for myself to the KEYS file (and verifying that my SVN client works).
mrglavas
2005-08-04 13:33:00 +00:00
7d174c34ddTest commit. Updates repository information for XML Commons.
jeremias
2005-08-04 06:45:32 +00:00
2bfc7e85d8Incrementing the version number to 1.3.02. This should be the version of xml-commons-external which ships with Xerces-J 2.7.1 and Xalan-J 2.7.0.
mrglavas
2005-07-22 18:21:58 +00:00
96cbd4ae74The package.html files for javax.xml.validation and javax.xml.xpath were somehow missed in xml-commons-external-1.3.01. Adding these in from the jsr-206-src.zip under contrib/jaxp13.
mrglavas
2005-07-22 18:20:18 +00:00
b8b0610cd5Upgrade to forrest-0.7 ... will finish off at ApacheCon hackathon. Still need to tidy up and also update the "howto forrest" and readme.
crossley
2005-07-14 02:23:37 +00:00
952f4fe63dStart a section about "Debug" tips. Fix some old URLs for moved projects.
crossley
2005-07-14 02:18:00 +00:00
65a621a789Update old ApacheCon notice.
crossley
2005-07-14 02:12:36 +00:00
fe0e541d42Use SecuritySupport when looking up org.xml.sax.parser system property.
mrglavas
2005-06-22 02:20:47 +00:00
e37ca1b076Merging ClassLoader fixes from the tck-jaxp-1_2_0 branch. I had almost forgotten these. Will re-tag the main branch.
mrglavas
2005-06-22 02:13:56 +00:00
a8a58328ebSynching up XMLReaderFactory with the FactoryFinders.
mrglavas
2005-06-21 19:19:22 +00:00
43b5998999Get system property using SecuritySupport.
mrglavas
2005-06-21 19:05:20 +00:00
80124b43a8Merging in SecuritySupport code from the tck-jaxp-1_2_0 branch.
mrglavas
2005-06-21 19:03:16 +00:00
410062edf4Fix a bug in the factory finding algorithm for service files.
mkwan
2005-06-21 15:08:51 +00:00
2c61e0d811When processing META-INF/services SchemaFactoryFinder was calling loadFromProperty() which reads a META-INF/services file as if it were a properties file. In SchemaFactory [1] for the META-INF/services file it says to look at the "JAR file specification for file format and parsing rules". Looking at the JAR file specification [2] it says: "The file should contain a newline-separated list of unique concrete provider-class names".
mrglavas
2005-06-20 22:05:52 +00:00
db0802b6ceRemoving SAX docs. David Megginson removed them [1] from SAX CVS citing that they have fallen out of sync. They were not distributed with SAX 2.0.2.
mrglavas
2005-06-17 20:00:57 +00:00
01c6c51764Merge in a fix from the tck-jaxp-1_2_0 branch: Under some JDK's (notably both Sun and IBM 1.4.0), getClassLoader(), when invoked on the JAXP or SAX classes, it returns null. This means that the fallback mechanism in these APIs may not work correctly: in particular, when an attempt to invoke an unknown Parser/XMLReader implementation is made in SAX, a NullPointerException rather than the correct ClassNotFoundException results. This patch fixes this problem, by using Class.forName() in the event that the bootstrap classloader is not returned in this particular situation.
mrglavas
2005-06-17 19:50:14 +00:00
ea4dcf269cMerge in a fix from the tck-jaxp-1_2_0 branch: The reader used to read the service provider is never closed if an IOException is thrown while reading from it. Adding a finally block so that the reader will always be closed.
mrglavas
2005-06-17 19:32:50 +00:00
729661318dMerge in Performance Fix from the tck-jaxp-1_2_0 branch: When reading the service provider name from a jar a BufferedReader is used to read the first line from the file. BufferedReader's default buffer size is 8K chars. Since we're only reading one line (the name of a class) this is pretty excessive. Reducing this size significantly to 80 chars.
mrglavas
2005-06-17 19:26:53 +00:00
a11ee29779Javadoc fixes. End tags for <code> were missing. This caused the Javadoc for the methods following the missing end tag to be formatted entirely in the "code" format. Fixed a few instances where *s were inadverently included in the Javadoc text that should not have been.
mrglavas
2005-06-17 03:10:33 +00:00
cdcdeab0aeFix a bug in the XPathException(Throwable) constructor. Pass the message from the cause Throwable to the super constructor, so that the getMessage() method on this XPathException would return the message of the cause.
mkwan
2005-06-14 19:19:27 +00:00
e58a70e3eeFix compile time dependency on File.toURI() which is new to JDK 1.4. Use reflection instead of a direct method call.
mkwan
2005-06-14 19:17:19 +00:00
081cad56b4Change the default service provider back to org.apache.xalan.processor.TransformerFactoryImpl, which was the default before the JAXP 1.3 integration.
mkwan
2005-06-14 19:15:12 +00:00
57c5a282f3Migrate a bug fix for printStackTrace which was done before the JAXP 1.3 integration back to the head.
mkwan
2005-06-14 19:13:40 +00:00
65ed556c33Updates from SAX 2.0.2 (sax2r3) being applied to the head branch.
mcnamara
2005-06-09 20:49:47 +00:00
de9abff1b4Fixing a potential memory leak. The reader used to read the service provider is never closed if an IOException is thrown while reading from it. Adding a finally block so that the reader will always be closed.
mrglavas
2005-06-05 01:59:03 +00:00
ad5eac5eb9Adding a fallback DOMImplementationSource: the DOMXSImplemenationSourceImpl class from Xerces.
mrglavas
2005-06-04 04:23:42 +00:00
378334a0a8Make default schema factory the one that exists in Xerces CVS.
mrglavas
2005-06-04 03:50:04 +00:00
9a2f84485aChanged product name and version information so that they will be specified by build.xml, rather than being hard-coded here. Merging these changes in from the tck-jaxp-1_2_0 branch.
mrglavas
2005-06-04 03:45:36 +00:00
520b220df3Upgrade to Apache Software License Version 2.0
mrglavas
2005-06-04 03:43:59 +00:00
cfe461eefbJavadoc fix. Tag @version cannot be used in method documentation.
mrglavas
2005-06-04 03:36:56 +00:00
d77f57d180Applying a Javadoc fix which was overwritten by the previous commit. See version 1.5.
mrglavas
2005-06-04 03:33:57 +00:00
87899134c1Merging in naming conventions from the tck-jaxp-1_2_0 branch and a few other minor changes.
mrglavas
2005-06-04 03:20:07 +00:00
bd55e8fa25Source for META-INF/MANIFEST.MF should pick up implementation version and vendor and Java version and vendor from values specified in build.xml, rather than hard-coding. Merging these changes in from the tck-jaxp-1_2_0 branch.
mrglavas
2005-06-04 03:17:16 +00:00
daf0071761Merging in bin.distro target from the tck-jaxp-1_2_0 branch.
mrglavas
2005-06-04 02:43:39 +00:00
99f4b82a7aUpgrade to Apache Software License Version 2.0
mrglavas
2005-06-04 02:41:29 +00:00
f228b9bb7bUpgrade W3C license to the December 31, 2002 version.
mrglavas
2005-06-03 22:49:13 +00:00
dd41b5975dMerging in the KEYS, LICENSE and NOTICE files from the tck-jaxp-1_2_0 branch.
mrglavas
2005-06-03 22:27:52 +00:00
3d4a664fa1Applying the Apache 2.0 license.
mrglavas
2005-06-03 22:04:32 +00:00
dc53decaecJavadoc fix for QName(String,String,String). End tags for code were missing.
mrglavas
2005-06-03 21:58:15 +00:00
86e0999b73Update to javadoc target. Build docs for every class under javax.xml.* not just the parsers and transform packages.
mrglavas
2005-06-03 21:55:20 +00:00
73c3555309Fixing a compile and runtime dependency on JDK 1.4. Prior to JDK 1.4 the exception chaining mechanism didn't exist. If we're on JDK 1.4 we'll now call Throwable.initCause by reflection, otherwise we just keep a local copy of the chained exception. Added a readObject method so that instances of this class can be serialized/deserialized between JDK 1.4+ and JDK 1.3 (and below).
mrglavas
2005-06-03 18:51:21 +00:00