You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commons-cvs@xml.apache.org by mc...@apache.org on 2005/06/09 22:49:48 UTC

cvs commit: xml-commons/java/external README-sax ChangeLog-sax

mcnamara    2005/06/09 13:49:48

  Modified:    java/external README-sax ChangeLog-sax
  Log:
  Updates from SAX 2.0.2 (sax2r3) being applied to the head branch.
  
  Revision  Changes    Path
  1.3       +23 -0     xml-commons/java/external/README-sax
  
  Index: README-sax
  ===================================================================
  RCS file: /home/cvs/xml-commons/java/external/README-sax,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- README-sax	27 Feb 2002 16:04:17 -0000	1.2
  +++ README-sax	9 Jun 2005 20:49:47 -0000	1.3
  @@ -1,3 +1,26 @@
  +SAX 2.0.2 (sax2r3)
  +2004-04-27
  +
  +This is another bugfix release for SAX2.  It makes minimal changes
  +(mostly in features and properties) to make SAX2 compliant with the
  +new XML 1.1 and Namespaces 1.1 recommendations, including Unicode
  +normalization.  The changes are minor and should not affect most
  +applications.
  +
  +One significant point is that this release flags a conflict (which
  +already existed) between the JavaDoc for fatalError() and the JavaDoc
  +for endDocument().  It is not currently clear whether a SAX
  +implementation must invoke the endDocument() callback after reporting
  +a fatal error, and the documentation simply mentions this fact and
  +advises application writers not to rely on either behaviour until the
  +ambiguity is resolved in the next major release.
  +
  +See CHANGES and ChangeLog for more details.
  +
  +
  +- David Megginson (temporarily filling in for David Brownell)
  +
  +
   SAX 2.0.1 (sax2r2)
   29-January-2002
   
  
  
  
  1.3       +633 -443  xml-commons/java/external/ChangeLog-sax
  
  Index: ChangeLog-sax
  ===================================================================
  RCS file: /home/cvs/xml-commons/java/external/ChangeLog-sax,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- ChangeLog-sax	27 Feb 2002 16:04:17 -0000	1.2
  +++ ChangeLog-sax	9 Jun 2005 20:49:47 -0000	1.3
  @@ -1,476 +1,666 @@
  -2002-Jan-29 David Brownell <db...@users.sourceforge.net>
  +2004-04-26  dmegginson  <dm...@dobby>
   
  -	* SAX2 r2 (SAX 2.0.1) release
  +	* .cvsignore: Added another ignorable file.
   
  -2002-Jan-12 David Brownell <db...@users.sourceforge.net>
  +	* src/org/xml/sax/ContentHandler.java:
  +	Patch from Elliotte Rusty Harold:
   
  -	* Doc clarifications
  -	  - skippedEntity() within markup constructs isn't done,
  -	    matching startEntity()/endEntity()
  -
  -2002-Jan-11 David Brownell <db...@users.sourceforge.net>
  -
  -	* Doc clarifications
  -	  - Locator I18N issue for column/line numbers
  -	  - Locator getSystemId() absolutization examples
  -	  - SAXParseException relationship to Locator
  -
  -2002-Jan-10 David Brownell <db...@users.sourceforge.net>
  -
  -	* Doc clarifications
  -	  - reword empty string for startPrefixMapping() [501777]
  -	  - inconsistent parameter naming [501901]
  -	  - add missing @see in XMLFilterImpl [501915],
  -	    remove duplicates [501919], fix typo [501927]
  -	  - mention multi-char character issues in ContentHandler
  -	* Mention JDK 1.4 update procedure in README
  -
  -2001-Dec-04 David Brownell <db...@users.sourceforge.net>
  -
  -	* Doc clarifications
  -	  - ContentHandler.skippedEntity() reported once per skip,
  -	    not once to cover all times it's skipped! 
  -
  -2001-Nov-29 David Brownell <db...@users.sourceforge.net>
  -
  -	* Doc clarifications
  -	  - Attributes: remind that namespace decls have no namespace
  -	  - ContentHandler: empty prefix means default namespace, and
  -	    startDocument() also precedes extension callbacks
  -	  - InputStream: with Reader, encoding not necessarily ignored;
  -	    it might hold Infoset [character encoding scheme]
  -
  -2001-Nov-20 David Brownell <db...@users.sourceforge.net>
  -	
  -	* SAX2 r2pre3 release
  -	  - marked files in "sax2r2" branch using @version
  -	  - javadoc disclaimers point to 'www.saxproject.org'
  -	    (but 'sax.sourceforge.net' is still hosting SAX)
  -
  -2001-Nov-12 David Brownell <db...@users.sourceforge.net>
  -	* LexicalHandler, DeclHandler
  -	  - Clarify recognize != support
  -	  - setProperty() text matches current implementations
  -	* LexicalHandler.startDTD()
  -	  - Clarify systemId:  do NOT absolutize this URI
  -	    (matches current implementations)
  -	* Patch (from Edwin Goei) to factory support class
  -	  - helpers/NewInstance.java (internal) compiles on JDK 1.1
  -	* DTDHandler
  -	  - Revert change from Aug-01, not all implementations agree
  -	    the spec is wrong.  A new "resolve-dtd-entities" feature
  -	    flag addresses the behavior (extension defined separately)
  -	* Locator
  -	  - Clarify when this object may be used
  -
  -2001-Nov-05 David Brownell <db...@users.sourceforge.net>
  -
  -	* XmlReader, XmlFilterImpl, ParserAdapter:
  -	  - Clarify that SAXNotRecognizedException means the
  -	    feature/property isn't gettable/settable
  -	  - Set-to-null isn't an error for handlers.  Most parsers
  -	    (and now XMLFilterImpl, ParserAdapter) treat it as
  -	    restoring the default setting.
  -	  - fixed [476507], javadoc param names wrong
  -
  -2001-Oct-23 David Brownell <db...@users.sourceforge.net>
  -
  -	* NamespaceSupport now enforces declare-before-use constraint.
  -
  -2001-Oct-14 David Brownell <db...@users.sourceforge.net>
  -
  -	* Doc updates:
  -	    - NamespaceSupport, identifying different usage modes
  -	      (application vs SAX driver) and minor bugfixes
  -	    - DeclHandler, attributeDecl() doesn't leave anything
  -	      unexpanded (or process PEs)
  -
  -2001-Sep-28 David Brownell <db...@users.sourceforge.net>
  -
  -	* Fix minor error path bug on ParserAdapter, path[0,1] null
  -	* XMLReaderFactory updates
  -	    - Better robustness by expecting distro-specific fallback
  -	    - Merge more correct ClassLoader support from Crimson
  -		(contributed by Edwin Goei, edwingo@apache.org)
  -	    - More configurability by META-INF/services support
  -	* ParserFactory update for more correct ClassLoader usage
  -
  -2001-Sep-26 David Brownell <db...@users.sourceforge.net>
  -
  -	* Removed refs to sax@megginson.com email (by request :)
  -	* Doc clarifications
  -	    - InputSource
  -	    - NamespaceSupport
  -
  -2001-Aug-03 David Brownell <db...@users.sourceforge.net>
  -
  -	* ParserAdapter
  -	    - process declarations before references
  -	    - only process "xmlns:foo" and "xmlns", not "xmlnsf:oo"
  -	* Doc updates (mostly @see to SAX2 not SAX1) to:
  -	    - DTDHandler
  -	    - EntityResolver
  -	    - ErrorHandler
  -
  -2001-Aug-01 David Brownell <db...@users.sourceforge.net>
  -	
  -	* AttributesImpl
  -	    - remove array bounds bug
  -	    - removeAttribute() frees memory
  -	* DTDHandler
  -	    - clarify relationship with LexicalHandler.endDTD()
  -	    - notationDecl(), parser doesn't guess whether systemId
  -	      is a URL or not; matches current implementations.
  -	* NamespaceSupport
  -	    - be explicit about declarations preceding references
  -	    - clear state on popContext(); less memory usage
  -
  -2001-July-30 David Brownell <db...@users.sourceforge.net>
  -	
  -	This list includes some changes done earlier, but not added
  -	at that time to the ChangeLog.  Full details are in CVS in
  -	the "sax" project at SourceForge.
  -
  -	* Re-merged SAX2 "extensions" 1.0 into main distribution,
  -	  including ChangeLog entries.
  -	
  -	* Doc bugs fixed:
  -	    - add "package.html" entries
  -	    - filters.html, typo
  -	    - DeclHandler, fix omission w.r.t. attribute default value
  -	    - DefaultHandler, params needed documentation
  -	    - EntityResolver, clarify
  -	    - Locator, remove duplication
  -	    - ParserAdapter, workaround javadoc tool issue
  -	    - XMLReaderAdapter, exceptions needed documentation
  -	
  -	* Fixed behavioral bugs/problems:
  -	    - AttributesImpl, clear() frees all memory
  -	    - ParserAdapter, remove JDK 1.2 dependency
  -	    - XMLReaderFactory, synch not needed
  -
  -2000-July  David Megginson  <da...@megginson.com>
  -
  -	* Created http://sourceforge.net/projects/sax and
  -	  imported CVS history
  -
  -2000-12-28  David Megginson  <da...@megginson.com>
  -
  -	* SAX2 r2 prerelease
  -
  -2000-12-27  David Megginson  <da...@megginson.com>
  -
  -	* src/SAXTest.java: 
  -	- added simple test program
  -
  -	* src/org/xml/sax/helpers/XMLReaderFactory.java: 
  -	- synchronized both methods for thread safety
  -
  -	* src/org/xml/sax/helpers/ParserAdapter.java: 
  -	- added makeException method to build parse exception
  -	- queue up exceptions during first attribute pass, in case there
  -	is no second pass (and we have to throw them)
  -	- modified processName to take an extra argument for throwing an
  -	exception rather than reporting an error
  -
  -	* src/org/xml/sax/helpers/AttributesImpl.java: 
  -	- added rewritten ensureCapacity and setAttributes from Andrew
  -	Pittsley (APittsley@InfoHealthNet.com) to fix bug and make
  -	setAttributes more efficient for empty attribute list
  -	- removed buggy statement that in removeAttribute
  -
  -	* src/org/xml/sax/InputSource.java: 
  -	- specified that getSystemId() returns null when no system ID is
  -	available
  -
  -2000-10-04  David Megginson  <da...@megginson.com>
  -
  -	[extensions]
  -
  -	* RELEASED VERSION 1.0
  -
  -	* updated version numbers
  -
  -2000-09-26  David Megginson  <da...@megginson.com>
  -
  -	[extensions]
  -
  -	* RELEASED VERSION 1.0pre
  -
  -2000-09-25  David Megginson  <da...@megginson.com>
  -	
  -	[extensions]
  -
  -	* src/org/xml/sax/ext/DeclHandler.java: 
  -	- doc: bumped version to 1.0pre
  -
  -	* src/org/xml/sax/ext/LexicalHandler.java: 
  -	- doc: bumped version to 1.0pre
  -	- doc: typo fixed (corrected org.xml.sax.DeclHandler to
  -	org.xml.sax.ext.DeclHandler)
  -	- doc: explicitly mention order of comment/PI events in
  -	DOCTYPE
  -	- doc: explicitly mention that comment/PI are not required to
  -	appear in correct positions relative to DTDHandler or DeclHandler
  -	events.
  -
  -2000-09-12  David Megginson  <da...@megginson.com>
  -
  -	* src/org/xml/sax/Attributes.java: 
  -	- [docs only] renamed localPart parameter to localName
  -
  -	* src/org/xml/sax/helpers/DefaultHandler.java: 
  -	- modified resolveEntity to throw IOException, as in the interface
  -	specification
  -
  -	* src/org/xml/sax/SAXNotRecognizedException.java: 
  -	- added default constructor
  -
  -	* src/org/xml/sax/SAXNotSupportedException.java: 
  -	- added default constructor
  -
  -	* src/org/xml/sax/SAXException.java: 
  -	- added default constructor
  -
  -2000-05-05  David Megginson  <da...@megginson.com>
  -
  -	- all versions bumped to 2.0
  -
  -	* src/org/xml/sax/XMLReader.java: 
  -	- documented fact that parse() and event handlers are synchronous
  -
  -	* src/org/xml/sax/ContentHandler.java: 
  -	- documented that xml: prefix never has start/endPrefixMapping
  -	events
  -
  -2000-04-19  David Megginson  <da...@megginson.com>
  -
  -	SAX2pre RELEASED!!!
  -
  -	* src/org/xml/sax/helpers/XMLReaderFactory.java: 
  -	- bumped version to 2.0pre
  -	- added note that implementors may replace this class
  -
  -	* src/org/xml/sax/helpers/XMLReaderAdapter.java: 
  -	- bumped version to 2.0pre
  -	- minor documentation clean-ups
  -
  -	* src/org/xml/sax/helpers/XMLFilterImpl.java: 
  -	- bumped version to 2.0pre
  -	- minor documentation clean-ups
  -
  -	* src/org/xml/sax/helpers/ParserFactory.java: 
  -	- bumped version to 2.0pre
  -	- minor documentation clean-ups
  -
  -	* src/org/xml/sax/helpers/ParserAdapter.java: 
  -	- bumped version to 2.0pre
  -	- minor documentation clean-ups
  +	This patch to one file (ContentHandler) fixes a broken @link to
  +	java.net.ContentHandler by removing it. For various obscure
  +	reasons it doesn't seem possible for this to be referenced without
  +	importing java.net.ContentHandler
   
  -	* src/org/xml/sax/helpers/NamespaceSupport.java: 
  -	- bumped version to 2.0pre
  -	- minor documentation clean-ups
  -	- added more clarifications about getPrefix asymmetry
  -	- fixed typos in JavaDoc
  -
  -	* src/org/xml/sax/helpers/LocatorImpl.java: 
  -	- bumped version to 2.0pre
  -
  -2000-04-18  David Megginson  <da...@megginson.com>
  -
  -	* src/org/xml/sax/helpers/DefaultHandler.java: 
  -	- bumped version to 2.0pre
  -	- minor documentation clean-ups
  -
  -	* src/org/xml/sax/helpers/AttributesImpl.java: 
  -	- added setAttributes method to simplify
  -	- bumped version to 2.0pre
  -	- minor documentation clean-ups
  -
  -	* src/org/xml/sax/helpers/AttributeListImpl.java: 
  -	- bumped version to 2.0pre
  -	- minor documentation cleanup
  -	- added extra information about deprecation
  -
  -	* src/org/xml/sax/XMLReader.java: 
  -	- bumped version to 2.0pre
  -	- minor documentation clean-ups
  -	- removed statement in JavaDoc that XMLReader extends Parser
  -	- added note that this does not extend java.io.Reader
  -
  -	* src/org/xml/sax/XMLFilter.java: 
  -	- bumped version to 2.0pre
  -	- minor documentation clean-ups
  -
  -	* src/org/xml/sax/SAXParseException.java: 
  -	- bumped version to 2.0pre
  -	- minor documentation clean-ups
  -	- allow a null locator argument in the constructors
  -	- use an internal init() to avoid code duplication
  -	
  -2000-04-17  David Megginson  <da...@megginson.com>
  -
  -	* src/org/xml/sax/SAXNotSupportedException.java: 
  -	- bumped version to 2.0pre
  -	- minor documentation cleanups
  -
  -	* src/org/xml/sax/SAXNotRecognizedException.java: 
  -	- bumped the version to 2.0pre
  -
  -	* src/org/xml/sax/SAXException.java: 
  -	- bumped version to 2.0pre
  -	- minor documentation cleanup
  -
  -	* src/org/xml/sax/Parser.java: 
  -	- bumped version to 2.0pre
  -
  -	* src/org/xml/sax/Locator.java: 
  -	- bumped version to 2.0pre
  -	- documentation cleanups and clarifications
  -	- changed references from DocumentHandler to ContentHandler
  -	- added warnings to getLineNumber and getColumnNumber
  -	- clarified that first line is line 1
  -
  -	* src/org/xml/sax/InputSource.java: 
  -	- bumped version to 2.0pre
  -	- minor documentation cleanups
  -
  -	* src/org/xml/sax/HandlerBase.java: 
  -	- bumped version to 2.0pre
  -	- minor documentation cleanups
  -
  -	* src/org/xml/sax/ErrorHandler.java: 
  -	- bumped version to 2.0pre
  -	- removed outdate references to HandlerBase
  -	- added explicit warning about unreported errors when an
  -	ErrorHandler isn't set
  -	- minor documentation cleanups
  -
  -	* src/org/xml/sax/EntityResolver.java: 
  -	- bumped version to 2.0pre
  -	- removed outdated reference to HandlerBase in docs
  -	- minor documentation cleanups
  -
  -	* src/org/xml/sax/DocumentHandler.java: 
  -	-bumped version to 2.0pre
  -
  -2000-04-14  David Megginson  <da...@megginson.com>
  -
  -	* src/org/xml/sax/DTDHandler.java: 
  -	- bumped version to 2.0pre
  -	- minor documentation cleanups (not done)
  -	- added documentation that notation will not necessarily be reported
  -	before unparsed entities that use it
  -	- added documentation that at least one of publicId and systemId
  -	must be non-null for notationDecl
  -
  -	* src/org/xml/sax/ContentHandler.java: 
  -	- for skippedEntity, added documentation that "[dtd]" represents the
  -	external DTD subset
  -	- documented possible confusion with java.net.ContentHandler
  -	- changed doc for processingInstruction to state that space between
  -	the target and data is excluded
  -	- fixed outdated references to DocumentHandler
  -	- minor documentation cleanups
  -	- bumped version to 2.0pre
  -
  -	* src/org/xml/sax/Attributes.java: 
  -	- bumped version to 2.0pre
  -	- minor documentation cleanups
  -	- clarified attribute types and tokenized values
  -
  -2000-04-14  David Megginson  <da...@megginson.com>
  -
  -	* RELEASED extensions VERSION 1.0beta
  -
  -	* src/org/xml/sax/ext/DeclHandler.java: 
  -	- doc: specified that content models may be normalized
  -	- doc: specified that NOTATION attributes also have token group
  -	- doc: specified that parameter entities are expanded in content 
  -	models, attribute value literals, and entity values
  -	- doc: specified that general entities are not expanded in 
  -	attribute value literals and entity values
  +	(Also some punctuation and JavaDoc cleanups: dpm)
  +
  +	* src/org/xml/sax/ext/Locator2Impl.java, src/org/xml/sax/helpers/DefaultHandler.java, src/org/xml/sax/helpers/NamespaceSupport.java, src/org/xml/sax/helpers/ParserAdapter.java, src/org/xml/sax/helpers/XMLFilterImpl.java, src/org/xml/sax/helpers/XMLReaderAdapter.java, src/org/xml/sax/AttributeList.java, src/org/xml/sax/HandlerBase.java, src/org/xml/sax/XMLReader.java:
  +	From Elliotte Rusty Harold:
   
  -2000-04-10  David Megginson  <da...@megginson.com>
  +	I've attached a patch for the current CVS that fixes a number of
  +	mismatched @param tags in the JavaDoc. Yell if you have any
  +	troubles with this.
  +
  +2004-04-23  dmegginson  <dm...@dobby>
   
   	* src/org/xml/sax/helpers/NamespaceSupport.java: 
  -	- removed spurious comment
  -	- setting "" prefix to "" removes any default mapping
  -	- modified getPrefix to be more efficient (accepting that people 
  -	will use this class in reverse); getPrefix will not work
  -	with the default prefix
  -	- getPrefixes no longer returns the default prefix
  -	- getDeclaredPrefixes does return the default prefix
  +	From Norman Walsh:
   
  -2000-03-30  David Megginson  <da...@megginson.com>
  +	It turns out there's some existing code that relies on the fact that
  +	this exception isn't thrown. So while I prefer to do the right thing,
  +	there's a school of thought that says breaking existing code isn't the
  +	right thing. Especially if you're trying to get things past the folks
  +	that test for compatibility.
   
  -	* src/org/xml/sax/helpers/AttributesImpl.java: 
  -	- fixed bug preventing last attribute from being removed
  +	Given that the user can, if they care, test the result, I'd like
  +	to suggest the patch above That is, to remove the JavaDoc that
  +	says the exception is thrown since historically it has never
  +	actually been thrown.
   
  -	* src/org/xml/sax/helpers/DefaultHandler.java: 
  -	- throw SAXException for notationDecl and unparsedEntityDecl to
  -	allow proper subclassing
  +	* CHANGES, ChangeLog, README, build.xml: Updated for SAX2r3 pre 1.
   
  -2000-03-28  David Megginson  <da...@megginson.com>
  +2004-04-22  dmegginson  <dm...@dobby>
   
  -	* src/org/xml/sax/helpers/AttributesImpl.java: 
  -	- renamed setRawName to setQName
  -	- renamed getRawName to getQName
  +	* CHANGES:
  +	Move high-level changes from docs/changes.html to this text file, and
  +	add changes for SAX2 r2 pre2.
   
  -	* src/org/xml/sax/Attributes.java: 
  -	- renamed getRawName to getQName
  +	* src/org/xml/sax/ext/DeclHandler.java:
  +	Patch from Michael Glavassevich:
   
  -2000-03-27  David Megginson  <da...@megginson.com>
  +	Align the description of DeclHandler.externalEntityDecl with DTDHandler.unparsedEntityDecl, requiring that the parser absolutize the system identifier, though this is backwards incompatible and may affect some real world users who expect the declared system identifier even if it was always intended that the system id passed to DeclHandler.externalEntityDecl be fully resolved.
   
  -	- renamed rawName to qName and rawAtts to qAtts throughout
  +2004-04-22  dmegginson  <dm...@dobby>
   
  -2000-03-27  David Megginson  <da...@megginson.com>
  +	* src/org/xml/sax/ext/DeclHandler.java:
  +	Patch from Michael Glavassevich:
   
  -	* src/org/xml/sax/ext/LexicalHandler.java: 
  -	- separated from main SAX2 distribution
  -	- added documentation to clarify relationship between 
  -	start/endEntity, start/endDTD, DeclHandler, and DTDHandler
  +	Align the description of DeclHandler.externalEntityDecl with
  +	DTDHandler.unparsedEntityDecl, requiring that the parser
  +	absolutize the system identifier, though this is backwards
  +	incompatible and may affect some real world users who expect the
  +	declared system identifier even if it was always intended that the
  +	system id passed to DeclHandler.externalEntityDecl be fully
  +	resolved.
   
  -2000-03-25  David Megginson  <da...@megginson.com>
  +2004-04-21  dmegginson  <dm...@dobby>
   
  -	* src/org/xml/sax/ext/LexicalHandler.java
  -	- removed to separate distribution
  +	* src/org/xml/sax/package.html: Patch from Michael Glavassevich:
   
  -	* src/org/xml/sax/ext/DeclHandler.java
  -	- removed to separate distribution
  +	A couple fixes to org/xml/sax/package.html.
   
  -	* src/org/xml/sax/helpers/XMLReaderFactory.java: 
  -	- for createXMLReader(), if org.xml.sax.driver is not specified,
  -	try ParserFactory.makeParser() and return it wrapped if successful
  +	1) Improve description of is-standalone feature as suggested by
  +	Elliotte [1].
   
  -2000-03-25  David Megginson  <da...@megginson.com>
  +	2) Specify that the use-entity-resolver2 is read-write with a
  +	default value of true, instead of read-only with no default
  +	value. The description of EntityResolver2 in CVS says: "If a SAX
  +	application requires the customized handling which this interface
  +	defines for external entities, it must ensure that it uses an
  +	XMLReader with the
  +	http://xml.org/sax/features/use-entity-resolver2 feature flag set
  +	to true (which is its default value when the feature is
  +	recognized). If that flag is unrecognized, or its value is false,
  +	or the resolver does not implement this interface, then only the
  +	EntityResolver method will be used." Therefore this feature has a
  +	default value of true (when it is recognized). Since the default
  +	value is true, the value of the feature could only ever be false
  +	if it were read-write. Parsers which do not support setting this
  +	feature to false would throw a SAXNotSupportedException.
   
  -	* src/org/xml/sax/ext/LexicalHandler.java: 
  -	- corrected property name in JavaDoc
  -	- added
  -	http://xml.org/sax/features/lexical-handler/parameter-entities
  -	feature to JavaDoc
  +	[1] http://article.gmane.org/gmane.text.xml.sax.devel/277/
   
  -	* src/org/xml/sax/ext/DeclHandler.java: 
  -	- corrected property name in JavaDoc
  +	* src/org/xml/sax/SAXParseException.java:
  +	Patch from Michael Glavassevich:
   
  -2000-03-24  David Megginson  <da...@megginson.com>
  +	The version of SAXParseException in CVS still has methods for
  +	getting and setting exception ids. This patch removes these
  +	methods and the private field: exceptionId.
   
  -	- added docs/quick-start.html
  +2004-04-15  dmegginson  <dm...@dobby>
   
  -	* src/org/xml/sax/helpers/XMLReaderAdapter.java: 
  -	- have parse(String) actually invoke parse(InputSource)
  +	* src/org/xml/sax/package.html: From Karl Waclawek:
   
  -	* src/org/xml/sax/helpers/ParserAdapter.java: 
  -	- have parse(String) actually invoke parse(InputSource)
  +	I tried to come up with some modifications for package.html
  +	regarding read-only access for certain features.
   
  -	* src/org/xml/sax/helpers/XMLFilterImpl.java: 
  -	- have parse(String) actually invoke parse(InputSource)
  +	There is also a docs directory with some discussion of features.
  +	Where on the web is this exposed? Seems somehow incomplete.
   
  -	* src/org/xml/sax/helpers/NamespaceSupport.java: 
  -	- Added getPrefix(String) and getPrefixes(String) to look up
  -	prefixes currently mapped.
  +	I added a column called "Access". For read-only access
  +	I changed the Default entry from "unspecified" to "not applicable".
  +	I made a few other changes, like adding punctuation, consistently
  +	indicating a boolean value of true as "true" (except in one case).
  +
  +	I am not entirely sure what the purpose of italics is.
  +
  +	Maybe the second paragraph after the end of the main table needs
  +	to be somehow changed to reflect that read/write access
  +	has already been indicated further up.
  +
  +2004-04-06  dmegginson  <dm...@dobby>
  +
  +	* src/org/xml/sax/package.html:
  +	Updated package description from Michael Glavassevich at the IBM
  +	Toronto Lab.
  +
  +2004-04-04  dmegginson  <dm...@dobby>
  +
  +	* .cvsignore: Add generated Eclipse files to .cvsignore.
  +
  +2004-03-19  dbrownell  <db...@dobby>
  +
  +	* src/org/xml/sax/ContentHandler.java:
  +	Fix bugid 911507:  longstanding restriction on startElement()
  +		attribute handling needs to be in the javadoc.
  +
  +2004-03-18  dmegginson  <dm...@dobby>
  +
  +	* src/org/xml/sax/Attributes.java:
  +	Specify that the xmlns-uris feature will use "xmlns" for the local
  +	part of the attribute declaring a default Namespace.
  +
  +2004-03-17  dmegginson  <dm...@dobby>
  +
  +	* README: Updated the release notes.
  +
  +	* src/org/xml/sax/ext/Locator2.java:
  +	Delete obsolete paragraph about future XML versions.
  +
  +	* src/org/xml/sax/package.html:
  +	Roll out most of the new documentation that was intended for SAX 2.1.
  +
  +2004-03-08  dmegginson  <dm...@dobby>
  +
  +	* src/org/xml/sax/ext/Attributes2Impl.java, src/org/xml/sax/ext/Locator2.java, src/org/xml/sax/helpers/NamespaceSupport.java, src/org/xml/sax/helpers/ParserAdapter.java, src/org/xml/sax/Attributes.java, src/org/xml/sax/ContentHandler.java, src/org/xml/sax/ErrorHandler.java, src/org/xml/sax/SAXParseException.java, src/org/xml/sax/ext/Attributes2.java, src/org/xml/sax/package.html, docs/features.html, docs/quick-start.html, docs/changes.html:
  +	* 2004-0001: beta status
  +
  +	- changed docs for all beta features to released status
  +	[dpm: automatic upon release?]
  +
  +
  +	* 2004-0002: XML 1.1 support
  +
  +	- add a read-only feature to check for XML 1.1 support
  +	[added to docs/features.html]
  +
  +	- add a read-only string property to return the version number of the
  +	  document being parsed
  +	[added to docs/features.html]
  +
  +	- remove all unnecessary references to XML 1.0 from the docs
  +	[kept references to specific sections in the XML 1.0 REC and to error
  +	codes based on 1.0; removed things like "raw XML 1.0 names"]
  +
  +
  +	* 2004-0003: Unicode normalization
  +
  +	- add a feature to request Unicode normalization checking (false by
  +	  default)
  +	[added to docs/features.html]
  +
  +	- use error() to report all normalization problems
  +	[added to docs/features.html]
  +
  +	- add a new exception subclass for normalization errors
  +	[not this time]
  +
  +
  +	* 2004-0004: xmlns Namespace
  +
  +	- commit paragraph from CVS Attributes.java about xmlns-uris feature
  +	[added to docs/features.html]
  +
  +	- document interaction between xmlns-uris and namespace-prefixes
  +	  features
  +	[added to docs/features.html]
  +
  +
  +	* 2004-0005: endDocument
  +
  +	- note that a parser might not invoke endDocument after reporting a
  +	  fatal error (this produces the fewest incompatibilities)
  +	[added JavaDocs to endDocument() and fatalError()]
  +
  +
  +	* 2004-0006: Locator2
  +
  +	- allow getEncoding() and getXMLVersion() to return null if the
  +	  information is not yet available
  +	[added to Locator2.java]
  +
  +2003-05-29  dbrownell  <db...@dobby>
  +
  +	* src/org/xml/sax/helpers/ParserAdapter.java:
  +	workspace cleanup: test catches illegal/nonsense state
  +
  +2002-07-29  dbrownell  <db...@dobby>
  +
  +	* src/SAXDump.java: another from Phil Hanna
  +
  +2002-07-27  dbrownell  <db...@dobby>
  +
  +	* build.xml: update, from Phil Hanna <ph...@ipass.net>
  +
  +2002-05-25  dbrownell  <db...@dobby>
  +
  +	* src/org/xml/sax/Attributes.java, src/org/xml/sax/helpers/NamespaceSupport.java, src/org/xml/sax/helpers/ParserAdapter.java, src/org/xml/sax/package.html, ChangeLog:
  +	add "xmlns-uris" support, for
  +	backwards-incompatble change in namespace REC
  +
  +2002-05-07  dbrownell  <db...@dobby>
  +
  +	* ChangeLog: describe
  +
  +	* src/org/xml/sax/package.html:
  +	clarify rule-* issue and application-oriented messages
  +
  +	* src/org/xml/sax/helpers/NamespaceSupport.java:
  +	clarifications, typo fix
  +
  +	* src/org/xml/sax/Attributes.java, src/org/xml/sax/ErrorHandler.java:
  +	fix typos
  +
  +	* src/org/xml/sax/SAXParseException.java:
  +	correct sense if ID test; fix old typos
  +
  +2002-04-22  dbrownell  <db...@dobby>
  +
  +	* ChangeLog: mention one other putback
  +
  +	* src/org/xml/sax/package.html:
  +	fix a few html errors that IE cares about
  +
  +	* src/org/xml/sax/helpers/XMLReaderFactory.java:
  +	[521200] some compilers whine about very inclusive exception specs
  +
  +	* ChangeLog: describe latest updates
  +
  +	* src/org/xml/sax/package.html:
  +	Initial definitions of exception IDs; minor clarifications.
  +
  +	* src/org/xml/sax/SAXParseException.java:
  +	[486006] add exception ID support.
  +
  +	* src/org/xml/sax/ext/Attributes2.java, src/org/xml/sax/ext/Attributes2Impl.java:
  +	add Attributes2.isDeclared() methods (mostly for CDATA)
  +
  +2002-04-21  dbrownell  <db...@dobby>
  +
  +	* src/org/xml/sax/ContentHandler.java, src/org/xml/sax/ErrorHandler.java, src/org/xml/sax/XMLReader.java:
  +	sync with updates to sax2.0.1
  +
  +	* ChangeLog: summarize latest doc clarifications
  +
  +	* src/org/xml/sax/XMLReader.java:
  +	clarify parser reuse: configuration is unchanged
  +
  +	* src/org/xml/sax/ErrorHandler.java:
  +	clarify behavior of parser with/without ErrorHandler
  +
  +	* src/org/xml/sax/ContentHandler.java:
  +	clarify: Locator usable only between starDocument()/endDocument()
  +
  +2002-01-30  dbrownell  <db...@dobby>
  +
  +	* ChangeLog, src/org/xml/sax/XMLReader.java, src/org/xml/sax/package.html, src/org/xml/sax/SAXException.java, src/org/xml/sax/SAXNotRecognizedException.java, src/org/xml/sax/SAXNotSupportedException.java, src/org/xml/sax/SAXParseException.java, src/org/xml/sax/XMLFilter.java, src/org/xml/sax/Locator.java, src/org/xml/sax/Parser.java, src/org/xml/sax/InputSource.java, src/org/xml/sax/EntityResolver.java, src/org/xml/sax/ErrorHandler.java, src/org/xml/sax/HandlerBase.java, src/org/xml/sax/DTDHandler.java, src/org/xml/sax/DocumentHandler.java, src/org/xml/sax/AttributeList.java, src/org/xml/sax/Attributes.java, src/org/xml/sax/ContentHandler.java, src/org/xml/sax/ext/LexicalHandler.java, src/org/xml/sax/ext/package.html, src/org/xml/sax/ext/DeclHandler.java, src/org/xml/sax/helpers/XMLReaderAdapter.java, src/org/xml/sax/helpers/XMLReaderFactory.java, src/org/xml/sax/helpers/package.html, src/org/xml/sax/helpers/XMLFilterImpl.java, src/org/xml/sax/helpers/ParserFactory.java, src/org/xml/sax/helpers/ParserAdapter.java, src/org/xml/sax/helpers/LocatorImpl.java, src/org/xml/sax/helpers/NamespaceSupport.java, src/org/xml/sax/helpers/NewInstance.java, src/org/xml/sax/helpers/DefaultHandler.java, src/org/xml/sax/helpers/AttributesImpl.java, src/org/xml/sax/helpers/AttributeListImpl.java:
  +	sync with SAX 2.0.1
  +
  +2002-01-29  dbrownell  <db...@dobby>
  +
  +	* README: sync with sax 2.0.1
  +
  +	* README: update for 2.0.1 release
  +
  +	* src/org/xml/sax/helpers/XMLReaderAdapter.java, src/org/xml/sax/helpers/XMLReaderFactory.java, ChangeLog, src/org/xml/sax/AttributeList.java, src/org/xml/sax/Attributes.java, src/org/xml/sax/ContentHandler.java, src/org/xml/sax/DTDHandler.java, src/org/xml/sax/DocumentHandler.java, src/org/xml/sax/EntityResolver.java, src/org/xml/sax/ErrorHandler.java, src/org/xml/sax/HandlerBase.java, src/org/xml/sax/InputSource.java, src/org/xml/sax/Locator.java, src/org/xml/sax/Parser.java, src/org/xml/sax/SAXException.java, src/org/xml/sax/SAXNotRecognizedException.java, src/org/xml/sax/SAXNotSupportedException.java, src/org/xml/sax/SAXParseException.java, src/org/xml/sax/XMLFilter.java, src/org/xml/sax/XMLReader.java, src/org/xml/sax/ext/DeclHandler.java, src/org/xml/sax/ext/LexicalHandler.java, src/org/xml/sax/helpers/AttributeListImpl.java, src/org/xml/sax/helpers/AttributesImpl.java, src/org/xml/sax/helpers/DefaultHandler.java, src/org/xml/sax/helpers/LocatorImpl.java, src/org/xml/sax/helpers/NamespaceSupport.java, src/org/xml/sax/helpers/NewInstance.java, src/org/xml/sax/helpers/ParserAdapter.java, src/org/xml/sax/helpers/ParserFactory.java, src/org/xml/sax/helpers/XMLFilterImpl.java:
  +	2.0.1 (sax2r2) release
  +
  +2002-01-12  dbrownell  <db...@dobby>
  +
  +	* src/org/xml/sax/ContentHandler.java: sync with sax2r2 branch
  +
  +	* ChangeLog: merge sax2r2 changes
  +
  +	* ChangeLog: update
  +
  +	* src/org/xml/sax/ContentHandler.java:
  +	clarify skipping w/in markup constructs
  +
  +	* src/org/xml/sax/Attributes.java, src/org/xml/sax/ContentHandler.java, src/org/xml/sax/InputSource.java, src/org/xml/sax/Locator.java, src/org/xml/sax/SAXParseException.java, src/org/xml/sax/package.html:
  +	sync with sax2r2 branch
  +
  +	* src/org/xml/sax/package.html: describe property value constraints
  +
  +	* src/org/xml/sax/helpers/XMLFilterImpl.java: sync with sax2r2pre3+
  +
  +	* ChangeLog: update
  +
  +	* src/org/xml/sax/ext/EntityResolver2.java: clarify null params, etc
  +
  +	* src/org/xml/sax/ext/Attributes2.java, src/org/xml/sax/ext/Attributes2Impl.java, src/org/xml/sax/ext/Locator2.java, src/org/xml/sax/ext/Locator2Impl.java:
  +	comment cleanup
  +
  +	* src/org/xml/sax/ext/DefaultHandler2.java:
  +	teach about EntityResolver2; [502043] misc cleanup
  +
  +2002-01-11  dbrownell  <db...@dobby>
  +
  +	* ChangeLog: update
  +
  +	* src/org/xml/sax/SAXParseException.java:
  +	clarify Locator interrelationship
  +
  +	* src/org/xml/sax/Locator.java:
  +	clarify I18N line/col, and sysid absolutization
  +
  +	* src/org/xml/sax/ContentHandler.java: warn about multi-char characters
  +
  +2002-01-10  dbrownell  <db...@dobby>
  +
  +	* ChangeLog: describe updates
  +
  +	* README: mention JDK 1.4 update procedure
  +
  +	* src/org/xml/sax/ext/Attributes2.java, src/org/xml/sax/ext/Attributes2Impl.java:
  +	[501968] paramter names match doc
  +
  +	* src/org/xml/sax/helpers/XMLFilterImpl.java: [501927] fix typo
  +
  +	* src/org/xml/sax/helpers/XMLFilterImpl.java:
  +	[501919] remove duplicate @see; [501915] add missing @see
  +
  +	* src/org/xml/sax/ContentHandler.java:
  +	[501901] inconsistent parameter naming
  +
  +	* src/org/xml/sax/ContentHandler.java:
  +	[501777] clarify declaration of default element NS
  +
  +2001-12-04  dbrownell  <db...@dobby>
  +
  +	* src/org/xml/sax/ContentHandler.java:
  +	clarify skippedEntity: once per skip
  +
  +2001-11-29  dbrownell  <db...@dobby>
  +
  +	* ChangeLog: updates
  +
  +	* src/org/xml/sax/Attributes.java: namespace decls have no namespace
  +
  +	* src/org/xml/sax/ContentHandler.java: clarifications
  +
  +	* src/org/xml/sax/InputSource.java: clarify reader w/encoding behavior
  +
  +2001-11-21  dbrownell  <db...@dobby>
  +
  +	* src/org/xml/sax/AttributeList.java, src/org/xml/sax/Attributes.java, src/org/xml/sax/ContentHandler.java, src/org/xml/sax/DTDHandler.java, src/org/xml/sax/DocumentHandler.java, src/org/xml/sax/EntityResolver.java, src/org/xml/sax/ErrorHandler.java, src/org/xml/sax/HandlerBase.java, src/org/xml/sax/InputSource.java, src/org/xml/sax/Locator.java, src/org/xml/sax/Parser.java, src/org/xml/sax/SAXException.java, src/org/xml/sax/SAXNotRecognizedException.java, src/org/xml/sax/SAXNotSupportedException.java, src/org/xml/sax/SAXParseException.java, src/org/xml/sax/XMLFilter.java, src/org/xml/sax/XMLReader.java, src/org/xml/sax/package.html, src/org/xml/sax/helpers/AttributeListImpl.java, src/org/xml/sax/helpers/AttributesImpl.java, src/org/xml/sax/helpers/DefaultHandler.java, src/org/xml/sax/helpers/LocatorImpl.java, src/org/xml/sax/helpers/NamespaceSupport.java, src/org/xml/sax/helpers/NewInstance.java, src/org/xml/sax/helpers/ParserAdapter.java, src/org/xml/sax/helpers/ParserFactory.java, src/org/xml/sax/helpers/XMLFilterImpl.java, src/org/xml/sax/helpers/XMLReaderAdapter.java, src/org/xml/sax/helpers/XMLReaderFactory.java, src/org/xml/sax/helpers/package.html, src/org/xml/sax/ext/LexicalHandler.java, src/org/xml/sax/ext/package.html, src/org/xml/sax/ext/DeclHandler.java, ChangeLog, Makefile, README:
  +	sync w/sax2r2pre3
  +
  +2001-11-20  dbrownell  <db...@dobby>
  +
  +	* README: update
  +
  +	* Makefile: use zip, not jar, to create distribution
  +
  +	* ChangeLog: describe updates; sax2 r2pre3
  +
  +	* src/org/xml/sax/ext/DeclHandler.java, src/org/xml/sax/ext/LexicalHandler.java, src/org/xml/sax/helpers/AttributeListImpl.java, src/org/xml/sax/helpers/AttributesImpl.java, src/org/xml/sax/helpers/DefaultHandler.java, src/org/xml/sax/helpers/LocatorImpl.java, src/org/xml/sax/helpers/NamespaceSupport.java, src/org/xml/sax/helpers/NewInstance.java, src/org/xml/sax/helpers/ParserAdapter.java, src/org/xml/sax/helpers/ParserFactory.java, src/org/xml/sax/helpers/XMLFilterImpl.java, src/org/xml/sax/helpers/XMLReaderAdapter.java, src/org/xml/sax/helpers/XMLReaderFactory.java, src/org/xml/sax/AttributeList.java, src/org/xml/sax/Attributes.java, src/org/xml/sax/ContentHandler.java, src/org/xml/sax/DTDHandler.java, src/org/xml/sax/DocumentHandler.java, src/org/xml/sax/EntityResolver.java, src/org/xml/sax/ErrorHandler.java, src/org/xml/sax/HandlerBase.java, src/org/xml/sax/InputSource.java, src/org/xml/sax/Locator.java, src/org/xml/sax/Parser.java, src/org/xml/sax/SAXException.java, src/org/xml/sax/SAXNotRecognizedException.java, src/org/xml/sax/SAXNotSupportedException.java, src/org/xml/sax/SAXParseException.java, src/org/xml/sax/XMLFilter.java, src/org/xml/sax/XMLReader.java:
  +	label as sax2 r2pre3; add "more info" links
  +
  +2001-11-13  dbrownell  <db...@dobby>
  +
  +	* src/org/xml/sax/package.html:
  +	startDTD() didn't absolutize; describe resolver2 control
  +
  +2001-11-12  dbrownell  <db...@dobby>
  +
  +	* src/org/xml/sax/ext/DefaultHandler2.java: add Resolver2 support
  +
  +	* src/org/xml/sax/ext/EntityResolver2.java: create
  +
  +2001-11-11  dbrownell  <db...@dobby>
  +
  +	* src/org/xml/sax/DTDHandler.java:
  +	revert absolutization change for 446280; that behavior needs
  +	to be an option flag.
  +
  +	* src/org/xml/sax/ext/package.html: clarify recognize vs support
  +
  +	* src/org/xml/sax/ext/LexicalHandler.java:
  +	clarify "set" description; clarify support != recognize;
  +	clarify startDTD() so systemId matches all implementations
  +
  +	* src/org/xml/sax/ext/DeclHandler.java:
  +	update "set" description; clarify support != recognize
  +
  +	* src/org/xml/sax/Locator.java: clarify
  +
  +	* src/org/xml/sax/helpers/NewInstance.java:
  +	patch from Edwin Goei: compile on jdk 1.1
  +
  +2001-11-09  dbrownell  <db...@dobby>
  +
  +	* Makefile, README: use www.saxproject.org
  +
  +	* src/org/xml/sax/ext/package.html, src/org/xml/sax/helpers/package.html, src/org/xml/sax/package.html:
  +	from sax2r2: use www.saxproject.org
  +
  +	* Makefile, README, src/org/xml/sax/ext/package.html, src/org/xml/sax/helpers/package.html, src/org/xml/sax/package.html:
  +	use www.saxproject.org
  +
  +2001-11-07  dbrownell  <db...@dobby>
  +
  +	* src/SAXDump.java: add XP, resolve-dtd-uris
  +
  +	* src/org/xml/sax/package.html: add resolve-did-uris flag
  +
  +2001-11-06  dbrownell  <db...@dobby>
  +
  +	* src/SAXDump.java: create
  +
  +	* src/org/xml/sax/ext/DefaultHandler2.java: add [472323]
  +
  +	* ChangeLog, src/org/xml/sax/XMLReader.java, src/org/xml/sax/helpers/NamespaceSupport.java, src/org/xml/sax/helpers/ParserAdapter.java, src/org/xml/sax/helpers/XMLFilterImpl.java:
  +	sync with sax2r2
  +
  +	* src/org/xml/sax/ext/Locator2.java: speling fixx
  +
  +	* ChangeLog: summarize recent updates
  +
  +	* src/org/xml/sax/helpers/XMLFilterImpl.java:
  +	null handlers are no error (restore default)
  +
  +	* src/org/xml/sax/XMLReader.java: use the right param names [476507]
  +
  +	* src/org/xml/sax/helpers/ParserAdapter.java:
  +	clarify docs.  NotSupported != NotRecognized.
  +	setting null handlers restores default.
  +
  +	* src/org/xml/sax/helpers/XMLFilterImpl.java:
  +	clarify get/set feature/property
  +
  +	* src/org/xml/sax/XMLReader.java:
  +	Clarify what a 'recognized' feature/property is (gettable/settable).
  +	Setting handler to null doesn't require an exception.
  +
  +2001-10-23  dbrownell  <db...@dobby>
  +
  +	* src/org/xml/sax/helpers/NamespaceSupport.java:
  +	enforce declare-before-use constraint; fix minor typo
  +
  +2001-10-18  dbrownell  <db...@dobby>
  +
  +	* src/org/xml/sax/ext/Attributes2.java: fix typo for id
  +
  +	* src/org/xml/sax/package.html: ids for new extension
  +
  +	* src/org/xml/sax/ext/package.html: update to reflect RFE fixes
  +
  +	* src/org/xml/sax/ext/Locator2.java, src/org/xml/sax/ext/Locator2Impl.java:
  +	RFE 449377 -- expose entity encoding and version
  +
  +	* src/org/xml/sax/ext/Attributes2.java, src/org/xml/sax/ext/Attributes2Impl.java:
  +	RFE 446713 - expose isStandalone
  +
  +	* ChangeLog, README: sync with sax2r2 branch, pre2 release
  +
  +2001-10-17  dbrownell  <db...@dobby>
  +
  +	* src/org/xml/sax/AttributeList.java, src/org/xml/sax/Attributes.java, src/org/xml/sax/ContentHandler.java, src/org/xml/sax/DTDHandler.java, src/org/xml/sax/DocumentHandler.java, src/org/xml/sax/EntityResolver.java, src/org/xml/sax/ErrorHandler.java, src/org/xml/sax/HandlerBase.java, src/org/xml/sax/InputSource.java, src/org/xml/sax/Locator.java, src/org/xml/sax/Parser.java, src/org/xml/sax/SAXException.java, src/org/xml/sax/SAXNotRecognizedException.java, src/org/xml/sax/SAXNotSupportedException.java, src/org/xml/sax/SAXParseException.java, src/org/xml/sax/XMLFilter.java, src/org/xml/sax/XMLReader.java, src/org/xml/sax/ext/DeclHandler.java, src/org/xml/sax/ext/LexicalHandler.java, src/org/xml/sax/helpers/AttributeListImpl.java, src/org/xml/sax/helpers/AttributesImpl.java, src/org/xml/sax/helpers/DefaultHandler.java, src/org/xml/sax/helpers/LocatorImpl.java, src/org/xml/sax/helpers/NamespaceSupport.java, src/org/xml/sax/helpers/NewInstance.java, src/org/xml/sax/helpers/ParserAdapter.java, src/org/xml/sax/helpers/ParserFactory.java, src/org/xml/sax/helpers/XMLFilterImpl.java, src/org/xml/sax/helpers/XMLReaderAdapter.java, src/org/xml/sax/helpers/XMLReaderFactory.java:
  +	sync with sax2r2 branch, pre2 release
  +
  +	* src/org/xml/sax/helpers/AttributeListImpl.java, src/org/xml/sax/helpers/AttributesImpl.java, src/org/xml/sax/helpers/DefaultHandler.java, src/org/xml/sax/helpers/LocatorImpl.java, src/org/xml/sax/helpers/NamespaceSupport.java, src/org/xml/sax/helpers/NewInstance.java, src/org/xml/sax/helpers/ParserAdapter.java, src/org/xml/sax/helpers/ParserFactory.java, src/org/xml/sax/helpers/XMLFilterImpl.java, src/org/xml/sax/helpers/XMLReaderAdapter.java, src/org/xml/sax/helpers/XMLReaderFactory.java, README, src/org/xml/sax/AttributeList.java, src/org/xml/sax/Attributes.java, src/org/xml/sax/ContentHandler.java, src/org/xml/sax/DTDHandler.java, src/org/xml/sax/DocumentHandler.java, src/org/xml/sax/EntityResolver.java, src/org/xml/sax/ErrorHandler.java, src/org/xml/sax/HandlerBase.java, src/org/xml/sax/InputSource.java, src/org/xml/sax/Locator.java, src/org/xml/sax/Parser.java, src/org/xml/sax/SAXException.java, src/org/xml/sax/SAXNotRecognizedException.java, src/org/xml/sax/SAXNotSupportedException.java, src/org/xml/sax/SAXParseException.java, src/org/xml/sax/XMLFilter.java, src/org/xml/sax/XMLReader.java, src/org/xml/sax/ext/DeclHandler.java, src/org/xml/sax/ext/LexicalHandler.java:
  +	label as sax2r2 pre2
  +
  +2001-10-15  dbrownell  <db...@dobby>
  +
  +	* src/org/xml/sax/SAXException.java, src/org/xml/sax/SAXParseException.java:
  +	remove @see setLocale
  +
  +	* ChangeLog: describe latest 2 changes
  +
  +	* src/org/xml/sax/ext/DeclHandler.java: doc fix
  +
  +	* src/org/xml/sax/helpers/NamespaceSupport.java: doc updates
  +
  +2001-10-08  dbrownell  <db...@dobby>
  +
  +	* src/org/xml/sax/helpers/XMLReaderFactory.java: merge fix from sax2r2
  +
  +	* src/org/xml/sax/helpers/XMLReaderFactory.java:
  +	fix: use value of property!
  +
  +2001-09-29  dbrownell  <db...@dobby>
  +
  +	* .cvsignore: add
  +
  +	* Makefile: add a Makefile for building
  +
  +	* ChangeLog: mention latest fixes
  +
  +	* src/org/xml/sax/ext/package.html, src/org/xml/sax/helpers/package.html, src/org/xml/sax/package.html:
  +	make http://sax.sourceforge.net url visible
  +
  +	* src/org/xml/sax/helpers/ParserFactory.java:
  +	use correct/secure class loader
  +
  +	* src/org/xml/sax/helpers/XMLReaderFactory.java:
  +	be more robust [449378], use META-INF/services [449664],
  +	use correct/secure class loader
  +
  +	* src/org/xml/sax/helpers/NewInstance.java:
  +	Support for using correct/secure class loader.
  +
  +2001-09-28  dbrownell  <db...@dobby>
  +
  +	* src/org/xml/sax/helpers/ParserAdapter.java:
  +	error path fix for undeclared prefix
  +
  +2001-09-26  dbrownell  <db...@dobby>
  +
  +	* ChangeLog: describe recent changes
  +
  +	* src/org/xml/sax/ext/package.html, src/org/xml/sax/helpers/package.html:
  +	add xref to http://sax.sourceforge.net/
  +
  +	* docs/filters.html, docs/namespaces.html: minor updates
  +
  +	* src/org/xml/sax/helpers/NamespaceSupport.java:
  +	remove sax@megginson.com email; clarify default prefix doc
  +
  +	* src/org/xml/sax/InputSource.java:
  +	remove sax@megginson.com email; clarify stream close() rule
  +
  +	* src/org/xml/sax/ContentHandler.java, src/org/xml/sax/Attributes.java, src/org/xml/sax/DTDHandler.java, src/org/xml/sax/DocumentHandler.java, src/org/xml/sax/EntityResolver.java, src/org/xml/sax/ErrorHandler.java, src/org/xml/sax/HandlerBase.java, src/org/xml/sax/Locator.java, src/org/xml/sax/Parser.java, src/org/xml/sax/SAXException.java, src/org/xml/sax/SAXNotRecognizedException.java, src/org/xml/sax/SAXNotSupportedException.java, src/org/xml/sax/SAXParseException.java, src/org/xml/sax/XMLFilter.java, src/org/xml/sax/XMLReader.java, src/org/xml/sax/ext/DeclHandler.java, src/org/xml/sax/ext/LexicalHandler.java, src/org/xml/sax/helpers/AttributeListImpl.java, src/org/xml/sax/helpers/AttributesImpl.java, src/org/xml/sax/helpers/DefaultHandler.java, src/org/xml/sax/helpers/LocatorImpl.java, src/org/xml/sax/helpers/ParserAdapter.java, src/org/xml/sax/helpers/ParserFactory.java, src/org/xml/sax/helpers/XMLFilterImpl.java, src/org/xml/sax/helpers/XMLReaderAdapter.java, src/org/xml/sax/AttributeList.java:
  +	remove sax@megginson.com email
  +
  +2001-08-21  dbrownell  <db...@dobby>
  +
  +	* src/org/xml/sax/ContentHandler.java:
  +	clarify:  start/end mapping immediately before/after element
  +
  +2001-08-08  dbrownell  <db...@dobby>
  +
  +	* src/org/xml/sax/Attributes.java: fix wrong @see
  +
  +2001-08-07  dbrownell  <db...@dobby>
  +
  +	* src/org/xml/sax/InputSource.java: doc fix (448847)
  +
  +2001-08-03  dbrownell  <db...@dobby>
  +
  +	* ChangeLog: describe recent changes
  +
  +	* src/org/xml/sax/DTDHandler.java, src/org/xml/sax/EntityResolver.java, src/org/xml/sax/ErrorHandler.java:
  +	doc tweaks (447371)
  +
  +	* src/org/xml/sax/helpers/ParserAdapter.java:
  +	namespace handling probs (441055, 441060)
  +
  +2001-08-01  dbrownell  <db...@dobby>
  +
  +	* ChangeLog: summarize last set of changes
  +
  +	* src/org/xml/sax/helpers/NamespaceSupport.java:
  +	update doc (441056); popContext() frees most memory
  +
  +	* src/org/xml/sax/helpers/AttributesImpl.java:
  +	fix array bounds bug, make strings gc-able (446875)
  +
  +2001-07-31  dbrownell  <db...@dobby>
  +
  +	* src/org/xml/sax/DTDHandler.java:
  +	clarify endDTD(); don't absolutize notationDecl() sysID (446280)
  +
  +	* ChangeLog: merge extensions changelog; list recent updates
  +
  +	* src/org/xml/sax/ext/package.html: merge more package overview doc
  +
  +2001-07-30  dbrownell  <db...@dobby>
  +
  +	* src/org/xml/sax/ext/DeclHandler.java, src/org/xml/sax/ext/LexicalHandler.java, src/org/xml/sax/ext/package.html:
  +	re-merge "extensions".
  +
  +	* docs/filters.html: fix typo
  +
  +	* src/org/xml/sax/EntityResolver.java: fix @see tag
  +
  +	* src/org/xml/sax/Locator.java: remove duplicated text
  +
  +2001-07-29  dbrownell  <db...@dobby>
  +
  +	* src/org/xml/sax/helpers/NamespaceSupport.java: doc tweak (445058)
  +
  +	* src/org/xml/sax/helpers/XMLReaderAdapter.java: tweak javadoc (445064)
  +
  +	* src/org/xml/sax/helpers/ParserAdapter.java:
  +	workaround javadoc tool bug (445062)
  +
  +2001-07-14  dbrownell  <db...@dobby>
  +
  +	* src/org/xml/sax/package.html, src/org/xml/sax/helpers/package.html:
  +	import
  +
  +	* src/org/xml/sax/EntityResolver.java: clarify javadoc
  +
  +	* src/org/xml/sax/helpers/DefaultHandler.java:
  +	fix javadoc bug (wrong params)
  +
  +	* src/org/xml/sax/helpers/XMLReaderFactory.java:
  +	no point in synchronizing (no state to protect)
  +
  +2001-07-12  dbrownell  <db...@dobby>
  +
  +	* src/org/xml/sax/helpers/AttributesImpl.java:
  +	clear() now really clears
  +
  +	* src/org/xml/sax/helpers/ParserAdapter.java:
  +	remove jdk 1.2 dependency, unused variable
  +
  +2000-12-28  David Megginson  <dm...@attglobal.net>
  +
  +	* src/org/xml/sax/helpers/AttributesImpl.java, src/org/xml/sax/helpers/DefaultHandler.java, src/org/xml/sax/helpers/LocatorImpl.java, src/org/xml/sax/helpers/NamespaceSupport.java, src/org/xml/sax/helpers/ParserAdapter.java, src/org/xml/sax/helpers/ParserFactory.java, src/org/xml/sax/helpers/XMLFilterImpl.java, src/org/xml/sax/helpers/XMLReaderAdapter.java, src/org/xml/sax/helpers/XMLReaderFactory.java, src/org/xml/sax/helpers/AttributeListImpl.java, src/org/xml/sax/AttributeList.java, src/org/xml/sax/Attributes.java, src/org/xml/sax/ContentHandler.java, src/org/xml/sax/DTDHandler.java, src/org/xml/sax/DocumentHandler.java, src/org/xml/sax/EntityResolver.java, src/org/xml/sax/ErrorHandler.java, src/org/xml/sax/HandlerBase.java, src/org/xml/sax/InputSource.java, src/org/xml/sax/Locator.java, src/org/xml/sax/Parser.java, src/org/xml/sax/SAXException.java, src/org/xml/sax/SAXNotRecognizedException.java, src/org/xml/sax/SAXNotSupportedException.java, src/org/xml/sax/SAXParseException.java, src/org/xml/sax/XMLFilter.java, src/org/xml/sax/XMLReader.java, ChangeLog, README, build.xml:
  +	SAX2 r2 prerelease
  +
  +	* docs/changes.html, docs/sax.html: SAX 2 r2 prerelease
  +
  +2000-12-27  David Megginson  <dm...@attglobal.net>
  +
  +	* src/org/xml/sax/helpers/AttributesImpl.java, src/org/xml/sax/helpers/ParserAdapter.java, src/org/xml/sax/helpers/XMLReaderAdapter.java, src/org/xml/sax/helpers/XMLReaderFactory.java, src/org/xml/sax/EntityResolver.java, src/org/xml/sax/InputSource.java, src/SAXTest.java:
  +	*** empty log message ***
  +
  +2000-09-16  David Megginson  <dm...@attglobal.net>
  +
  +	* src/org/xml/sax/helpers/DefaultHandler.java, src/org/xml/sax/Attributes.java, src/org/xml/sax/SAXException.java, src/org/xml/sax/SAXNotRecognizedException.java, src/org/xml/sax/SAXNotSupportedException.java, ChangeLog:
  +	*** empty log message ***
  +
  +2000-09-08  David Megginson  <dm...@attglobal.net>
  +
  +	* build.xml: *** empty log message ***
  +
  +	* docs/changes.html, docs/features.html, docs/filters.html, docs/namespaces.html, docs/quick-start.html, docs/sax-style.css, docs/sax.html, src/org/xml/sax/AttributeList.java, src/org/xml/sax/Attributes.java, src/org/xml/sax/ContentHandler.java, src/org/xml/sax/DTDHandler.java, src/org/xml/sax/DocumentHandler.java, src/org/xml/sax/EntityResolver.java, src/org/xml/sax/ErrorHandler.java, src/org/xml/sax/HandlerBase.java, src/org/xml/sax/InputSource.java, src/org/xml/sax/Locator.java, src/org/xml/sax/Parser.java, src/org/xml/sax/SAXException.java, src/org/xml/sax/SAXNotRecognizedException.java, src/org/xml/sax/SAXNotSupportedException.java, src/org/xml/sax/SAXParseException.java, src/org/xml/sax/XMLFilter.java, src/org/xml/sax/XMLReader.java, src/org/xml/sax/helpers/AttributeListImpl.java, src/org/xml/sax/helpers/AttributesImpl.java, src/org/xml/sax/helpers/DefaultHandler.java, src/org/xml/sax/helpers/LocatorImpl.java, src/org/xml/sax/helpers/NamespaceSupport.java, src/org/xml/sax/helpers/ParserAdapter.java, src/org/xml/sax/helpers/ParserFactory.java, src/org/xml/sax/helpers/XMLFilterImpl.java, src/org/xml/sax/helpers/XMLReaderAdapter.java, src/org/xml/sax/helpers/XMLReaderFactory.java:
   
  +	* docs/changes.html, docs/features.html, docs/filters.html, docs/namespaces.html, docs/quick-start.html, docs/sax-style.css, docs/sax.html, src/org/xml/sax/AttributeList.java, src/org/xml/sax/Attributes.java, src/org/xml/sax/ContentHandler.java, src/org/xml/sax/DTDHandler.java, src/org/xml/sax/DocumentHandler.java, src/org/xml/sax/EntityResolver.java, src/org/xml/sax/ErrorHandler.java, src/org/xml/sax/HandlerBase.java, src/org/xml/sax/InputSource.java, src/org/xml/sax/Locator.java, src/org/xml/sax/Parser.java, src/org/xml/sax/SAXException.java, src/org/xml/sax/SAXNotRecognizedException.java, src/org/xml/sax/SAXNotSupportedException.java, src/org/xml/sax/SAXParseException.java, src/org/xml/sax/XMLFilter.java, src/org/xml/sax/XMLReader.java, src/org/xml/sax/helpers/AttributeListImpl.java, src/org/xml/sax/helpers/AttributesImpl.java, src/org/xml/sax/helpers/DefaultHandler.java, src/org/xml/sax/helpers/LocatorImpl.java, src/org/xml/sax/helpers/NamespaceSupport.java, src/org/xml/sax/helpers/ParserAdapter.java, src/org/xml/sax/helpers/ParserFactory.java, src/org/xml/sax/helpers/XMLFilterImpl.java, src/org/xml/sax/helpers/XMLReaderAdapter.java, src/org/xml/sax/helpers/XMLReaderFactory.java:
  +	New file.
   
  -	SAX2beta2 RELEASED
  +	* COPYING, ChangeLog, README:
   
  +	* COPYING, ChangeLog, README: New file.
  +	
  \ No newline at end of file