elena 2003/07/29 15:34:53 Modified: java/docs docs-book.xml faq-xni.xml features.xml releases.xml Log: Document updates for the new release Revision Changes Path 1.21 +2 -0 xml-xerces/java/docs/docs-book.xml Index: docs-book.xml =================================================================== RCS file: /home/cvs/xml-xerces/java/docs/docs-book.xml,v retrieving revision 1.20 retrieving revision 1.21 diff -u -r1.20 -r1.21 --- docs-book.xml 16 Jun 2003 00:14:40 -0000 1.20 +++ docs-book.xml 29 Jul 2003 22:34:53 -0000 1.21 @@ -46,6 +46,8 @@ id='faq-dom' source='faq-dom.xml'/> <faq title='Using XML Schemas' id='faq-xs' source='faq-xs.xml'/> + <faq title='Using XInclude' + id='faq-xinclude' source='faq-xinclude.xml'/> <faq title='Performance FAQs' id='faq-performance' source='faq-performance.xml'/> <faq title='FAQs for Contributors' id='faq-contributing' source='faq-contributing.xml'/> 1.4 +1 -0 xml-xerces/java/docs/faq-xni.xml Index: faq-xni.xml =================================================================== RCS file: /home/cvs/xml-xerces/java/docs/faq-xni.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- faq-xni.xml 7 Feb 2002 15:47:41 -0000 1.3 +++ faq-xni.xml 29 Jul 2003 22:34:53 -0000 1.4 @@ -21,6 +21,7 @@ <faq title='Overriding Default Parser Configuration'> <q>How do I change the default parser configuration?</q> <a> + <anchor name="override-default-config"/> <p> It is possible to override the default parser configuration used by the Xerces2 parsers without writing any code or changing the 1.34 +35 -1 xml-xerces/java/docs/features.xml Index: features.xml =================================================================== RCS file: /home/cvs/xml-xerces/java/docs/features.xml,v retrieving revision 1.33 retrieving revision 1.34 diff -u -r1.33 -r1.34 --- features.xml 16 Jan 2003 23:03:49 -0000 1.33 +++ features.xml 29 Jul 2003 22:34:53 -0000 1.34 @@ -322,8 +322,8 @@ application/documents to be truly portable across different XML processors. </note> </feature> - </fcategory> + <fcategory name='DOM Features'> <feature name='http://apache.org/xml/features/dom/defer-node-expansion' id="dom.defer-node-expansion"> @@ -418,6 +418,40 @@ &ParserName; always internalizes all strings mentioned above using the <code>String#intern()</code> method. This feature can only be set to true. + </note> + </feature> + </fcategory> + <fcategory name='XInclude Features (Experimental)'> + <feature name='http://xml.org/sax/features/allow-dtd-events-after-endDTD' + id='allow-dtd-events-after-endDTD'> + <true> + Allows <code>notationDecl</code> and <code>unparsedEntityDecl</code> events to + be sent in the XNI pipeline after the <code>endDTD</code> event has been sent. + </true> + <false> + Ensures that <code>notationDecl</code> and <code>unparsedEntityDecl</code> events + are not sent after the <code>endDTD</code> event has been sent (default SAX behaviour). + </false> + <default value='true**'/> + <note> + The default value for this feature is true, <emph>except</emph> when using SAX, + because SAX requires that no DTD events be sent after the <code>endDTD</code> + event. Thus, in order to maintain SAX compatibility, + this feature cannot be true by default for SAX. Setting this feature to false + can result in loss of information, if notations and unparsed entities were + needed to resolve references in the document. + </note> + <note> + This feature is only relevant when XInclude processing is being done. Due to the + nature of implementing XInclude in a stream-based API, it is not possible to know + the complete set of required unparsed entities and notations before the <code>endDTD</code> + event from the source document is sent. If an <code>XIncludeHandler</code> is + not present in your pipeline, the value of this feature is irrelevant. + </note> + <note> + This feature is currently experimental, and might be removed or changed in the + next release. If you have any concerns or suggestions about its use, please + contact the xerces-j-user mailing list. </note> </feature> </fcategory> 1.157 +46 -5 xml-xerces/java/docs/releases.xml Index: releases.xml =================================================================== RCS file: /home/cvs/xml-xerces/java/docs/releases.xml,v retrieving revision 1.156 retrieving revision 1.157 diff -u -r1.156 -r1.157 --- releases.xml 29 Jul 2003 05:29:04 -0000 1.156 +++ releases.xml 29 Jul 2003 22:34:53 -0000 1.157 @@ -1,10 +1,10 @@ -<?xml version='1.0' encoding='UTF-8'?> +<?xml version='1.0' encoding='UTF-8'?> <!-- $Id$ --> <!DOCTYPE releases SYSTEM 'dtd/releases.dtd'> <releases> <release version='&ParserName; 2.5.0'> <desc> - TBD + This release provides a partial implementation of W3C XInclude specification as well as adds annotation support for the XML Schema component API. In addition to fixing many bugs, this release also brings Xerces into compliance with the most recent work of the W3C DOM working group on DOM level 3 Core and Load/Save, and includes additional fixes related to the XML 1.1 specification. </desc> <changes> <fix> @@ -27,12 +27,53 @@ </note> <submitter name="Michael Glavassevich"/> </fix> + <fix> + <note> + Fixed performance issue for attributes with large value field. + </note> + <submitter name="Thomas DeWeese"/> + </fix> + <update> + <note> + Implemented the latest DOM Level 3 + <jump href="http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030609/">Core</jump> and + <jump href="http://www.w3.org/TR/2003/WD-DOM-Level-3-LS-20030619/">Load and Save</jump> drafts in Last Call. + </note> + <submitter name="Elena Litani, Gopal Sharma"/> + </update> + <update> + <note> + Added annotation support to the XML Schema component model API implementation. Modified the PSVI API to allow exposing facets as objects. + </note> + <submitter name="Neil Graham, Elena Litani"/> + </update> <update> <note> - Added annotation support to the XML Schema component model API implementation. + Added preliminary XInclude implementation, excluding support for XPointer and + XML Base specifications. </note> - <submitter name="Neil Graham"/> + <submitter name="Peter McCracken, Arun Yadav, Elena Litani"/> </update> + <update> + <note> + Modified PSVIWriter to output all PSVI information. Changed it to output to + an XNI event stream rather than a file. + </note> + <submitter name="Peter McCracken, Neil Graham"/> + </update> + <fix> + <note> + Modified error messages for Schema validation. + </note> + <submitter name="Peter McCracken, Sandy Gao"/> + </fix> + + <fix> + <note> + Fixed various bugs. + </note> + <submitter name='Neil Delima, Neil Graham, Elena Litani, Michael Glavassevich, K. Venugopal'/> + </fix> </changes> </release> <release version='&ParserName; 2.4.0'>
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]