2002-08-16  Steve Ball  <steve@localhost>

	* install.data: Removed 'Require tcllib'

	* install.tcl (Slave_Component): Minor typo in formal args.

2002-08-15  Steve Ball  <steve@localhost>

	* library/domimpl.tcl (dom::tcl::DOMImplementation): Fixed bug in createDocument: include document token in call to createElementNS.
	(dom::tcl::CreateDocType): Don't add doc type node to the document node's child list.
	(dom::tcl::Serialize:document): Bug fix #525505: serialize all children.  Bug fix #590914.

==============  Released version 2.2  11/08/2002  ==============

2002-08-09  Steve Ball  <steve@localhost>

	* library/domimpl.tcl (dom::tcl::DOMImplementation): Fixed memory leak in object destruction code
	* tests/doctype.test: Upgraded to tcltest 2.1, added dom::c constraint.
	* library/domimpl.tcl (dom::tcl::node): Fixed bug calling configure with one argument

2002-08-05  Steve Ball  <steve@zveno.com>
	* src-libxml2/tcldom-libxml2.c (TclDOMParseCommand): Fixed bug #590473, was freeing provate field after freeing context pointer.
	
2002-08-02  Steve Ball  <steve@zveno.com>
	* src-libxml2/tcldom-libxml2.c: Modified to store nodes tokens on a per-document basis.  Added support for destroying documents and nodes.
	* macosx: Added Project Builder files for building under Mac OS X

2002-06-19  Steve Ball  <steve@localhost>

	* docs/tcldom.xml: Updated incorrect description of 'dom::tcl::DOMImplementation destroy'.

2002-06-17  Steve Ball  <steve@localhost>

	* library/domimpl.tcl (dom::tcl::Serialize:attributeList): Fixed bug #512704, escaping of special characters.

2002-06-12  Steve Ball  <steve@localhost.webone.com.au>

	* src-libxml2/tcldom-libxml2.c (TclDOMValidateCommand): Allocate generic error handler for each use, instead of using global structure.

2002-06-11  Steve Ball  <steve@localhost.webone.com.au>

	* library/domimpl.tcl (dom::tcl::CreateDocType): Fixed bug #526468 by checking if parsed internal DTD is truly empty.

2002-06-03  Steve Ball  <steve@localhost>

	* src-libxml2/tcldom-libxml2.c (TclDOMXIncludeCommand): Added dom::libxml2::xinclude command.

2002-06-02  Steve Ball  <steve@localhost>

	* src-libxml2/tcldom-libxml2.c (TclDOMElementCommand): Implemented getAttributeNS and setAttributeNS.
	(TclDOMPrefix2NSCommand): Implemented as per Tcl API.

2002-05-30  Steve Ball  <steve@zveno.com>

	* domimpl.tcl (dom::tcl::Serialize:ExceedsThreshold): fixed bug in serialization.

--- Converted to ChangeLog format 2002-05-30 ---

November 1998

==============  Released version 1.4  ??/??/1998  ==============

6/12/1998	Implemented cloneNode method of node command
		Encode standard character entities when serializing
		textNodes ("<", ">", "&", """, "'").

15/1/1999	Added DocType and XML Declaration support

24/1/1999	Fixed serialization to emit XML declaration attributes
		in correct order.

25/1/1999	Fixed attribute list serialization to handle
		special characters.

27/1/1999	Made error handling more robust in parse method

31/1/1999	Parse function detects empty elements.  Element method has
		(non-standard) -empty attribute.  Serialisation emits shorthand
		empty elements.

24/2/1999	Included patch to fix 'dom::DOMImplemenation destroy'.
		Courtesy Gerald Lester, CPU.

==============  Released version 1.5  ??/??/1999  ==============

==============  Released version 1.6  14/03/1999  ==============

14/05/1999	Converted test suite to use new Tcl 8.1 framework.

		Bug reports by Jim Hollister <jhollister@objectspace.com>:
		dom::element get $node -tagName failed.
		GetByTagName didn't accept the special value '*'.
		Trim didn't handle some nodes having no child list.

27/05/1999	Made Element:GetByTagName search recursively, as specified
		in DOM spec.  Added -deep option to allow old behaviour.

08/06/1999	Fixed various bugs in test suite.

		dom::element command now checks that the node is an 
		element type node.

==============  Released version 1.7  ??/??/1999  ==============

27/08/1999	Fixed PI serialisation, added query method

		query method provides query/search functions

05/09/1999	Added entity reference support

31/08/1999	Added automatic CDATA Section support when serializing
		a document.

10/12/1999	Check for invalid element name fixed, added check for
		invalid attribute name

08/01/2000	Fixed serialization of null external identifiers in the
		document type declaration

20/04/2000	Added DOM Level 2 event subsystem

16/05/2000	Fixed node names as per DOM spec (bug report from Robert Karen)

11/10/2000	Fixed bug in posting DOMCharacterModified event when textNode's
		value is configured.

18/11/2000	Added (non-standard) 'isNode' feature in DOMImplementation

01/12/2000	Added (non-standard) createNode method to DOMImplementation
		and node commands

15/12/2000	Added -showxmldecl and -showdoctypedecl options to serialize method.
		Bug fix: Serializing '&' characters in attribute values.

18/12/2000	Added (get|set|remove)Attribute methods to element command.
		Namespace qualified attributes are stored in a dubious manner
		in the attribute list array element.  Must re-visit this later.

		Modified getAttribute(NS) to return an empty string if the
		specified attribute is not present.  This is for conformance with
		REC-DOM-L2-2000-11.

18/01/2001	Steve.Ball@zveno.com
		Added selectNode method to dom::DOMImplementation and
		dom::node.  Improved XPath:SelectNode to handle selecting
		elements with an attribute given in a predicate.

23/01/2001	Steve.Ball@zveno.com
		Fixed bug in dom::document createDocTypeDecl method
		(incorrect arguments).
		Bug reported by <Gordon.Davis@kla-tencor.com>

11/07/2001	Steve.Ball@zveno.com
		Fixed bug in CreateGeneric: attribute nodes are not
		added to the parent's child list.
		Fixed bug in stringValue: element string value.
		Fixed bug in XPath:SelectNode.

15/11/2001	Steve.Ball@zveno.com
		Added XML Namespace support to serialisation code.

14/01/2002	Steve.Ball@zveno.com
		INCOMPATIBILITY: Changed getElementsByTagName
		to return the name of the variable that contains
		a list of the matched nodes.  List is maintained
		via read trace, so that the list is live.

==============  Released version 2.0theta 14/01/2002  ==============

27/01/2002      Steve.Ball@zveno.com
		Fixed bug #453741.  'DOMImplementation destroy'
		when called for an element node no longer
		dispatches a DOMSubtreeModified event, since
		'node removeNode' has already dispatched the event.

07/02/2002	Steve.Ball@zveno.com
		Fixed bug when serializing elements where
		':' would be added with no prefix.
		Patch supplied by Dan Kuchler, dan@kuchler.net

28/02/2002	Steve.Ball@zveno.com
		Completed initial work on libxml2 wrapper, 
		see src-libxml2 directory.
		This includes exported functions for TclXSLT.

==============  Released version 2.1alpha1 01/03/2002  ==============

04/03/2002	Steve.Ball@zveno.com
		library/domimpl.tcl: Added -ownerDocument option
		to node command.  Modified XPath:CreateNode to
		be independent of implementation.
		src-libxml2/tcldom-libxml2.c: Added -ownerDocument
		option to node command.  Added children method.

26/04/2002	Steve.Ball@zveno.com
		tcldom.h, tcldom.c, src-libxml2/tcldom-libxml2.c:
		Added select field to TclDOM_Implementation,
		added 'dom::DOMImplementation selectNode' support.
		Added 'dom::libxml2::node stringValue'.
		Enabled dom::libxml2::element command.

08/05/2002	Steve.Ball@zveno.com
		src-libxml2/tcldom-libxml2.c:
		Added -method and -indent options to serialize command.

14/05/2002	Steve.Ball@zveno.com
		tcldom.c:
		Fallback to default implementation in generic layer.

21/05/2002	Steve.Ball@zveno.com
		src-libxml2/tcldom-libxml2.c:
		Added definitions for compiling on Windows.

27/05/2002:     andreas_kupries@users.sourceforge.net
		install.tcl (line 306): args needs no default
		value of empty. Is empty as per definition of 'args'
		when used as last argument.

		library/domimpl.tcl (line 654, dom::tcl::document,
		createElementNS branch): Added break to the [foreach],
		fixing a syntax error always causing the catch to,
		well catch and abort.
