2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git] / class / System.Security / Mono.Xml / ChangeLog
blobe98d93b933645dbf44cbd0be427f3604ece2e03c
1 2007-03-22  Atsushi Enomoto <atsushi@ximian.com>
3         * XmlCanonicalizer.cs : fill prefixes which should be actually
4           written. It must be actually done before canonicalization (so
5           that node list filtering still takes spec-conformant effect).
7 2007-01-23  Atsushi Enomoto <atsushi@ximian.com>
9         * XmlCanonicalizer.cs : in Canonicalize(XmlNodeList), nodes [0] could
10           be XmlDocument and thus it could cause NullReferenceException.
12 2007-01-23  Atsushi Enomoto <atsushi@ximian.com>
14         * XmlCanonicalizer.cs : it should be reset before being reused.
16 2007-01-22  Atsushi Enomoto <atsushi@ximian.com>
18         * XmlCanonicalizer.cs : Fixed incorect is-visibly-utilized check. Got
19           Phaos tests passed.
21 2007-01-17  Atsushi Enomoto <atsushi@ximian.com>
23         * XmlCanonicalizer.cs : don't output default namespace when the node's
24           namespace is not empty. Check "visibly utilized" namespace nodes in
25           exc-c14n. Also, in exc-c14n, rendered namespaces are not written.
26           Added InclusiveNamespaces PrefixList field (not in use yet).
28 2005-04-04  Atsushi Enomoto <atsushi@ximian.com>
30         * XmlCanonicalizer.cs : don't rip &#xD; off here.
32 2004-05-14  Atsushi Enomoto <atsushi@ximian.com>
34         * XmlCanonicalizer.cs :
35           Reverted xmlns change that seems my misinterpretation.
37 2004-05-13  Atsushi Enomoto <atsushi@ximian.com>
39         * XmlCanonicalizer.cs :
40           Element namespace is not XPath-selected(selectable) namespace nodes
41           and that should be outputted.
42           Don't return null for empty output.
44 2004-03-26  Atsushi Enomoto <atsushi@ximian.com>
46         * XmlCanonicalizer.cs :
47           Don't output &#xD; for Whitespace node.
48           To filter every kind of nodes, make sure node.Attributes isnot null.
49           This makes some phaos tests passed.
51 2004-02-14  Atsushi Enomoto <atsushi@ximian.com>
53         * XmlCanonicalizer.cs: Use child nodes of entity reference nodes (it
54           is now correctly supported in XmlEntityReference).
56 2003-07-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
58         * XmlCanonicalizer.cs: fixed to make it build for 1.0 and 1.1.
60 2003-07-24  Sebastien Pouliot <spouliot@motus.com>
62         * XmlCanonicalizer.cs: New. C14N class from Aleksey Sanin.