[corlib] Improve CancellationTokenSource test
[mono.git] / mcs / class / System.Security / Mono.Xml / ChangeLog
1 2007-03-22  Atsushi Enomoto <atsushi@ximian.com>
2
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).
6
7 2007-01-23  Atsushi Enomoto <atsushi@ximian.com>
8
9         * XmlCanonicalizer.cs : in Canonicalize(XmlNodeList), nodes [0] could
10           be XmlDocument and thus it could cause NullReferenceException.
11
12 2007-01-23  Atsushi Enomoto <atsushi@ximian.com>
13
14         * XmlCanonicalizer.cs : it should be reset before being reused.
15
16 2007-01-22  Atsushi Enomoto <atsushi@ximian.com>
17
18         * XmlCanonicalizer.cs : Fixed incorect is-visibly-utilized check. Got
19           Phaos tests passed.
20
21 2007-01-17  Atsushi Enomoto <atsushi@ximian.com>
22
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).
27
28 2005-04-04  Atsushi Enomoto <atsushi@ximian.com>
29
30         * XmlCanonicalizer.cs : don't rip &#xD; off here.
31
32 2004-05-14  Atsushi Enomoto <atsushi@ximian.com>
33
34         * XmlCanonicalizer.cs :
35           Reverted xmlns change that seems my misinterpretation.
36
37 2004-05-13  Atsushi Enomoto <atsushi@ximian.com>
38
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.
43
44 2004-03-26  Atsushi Enomoto <atsushi@ximian.com>
45
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.
50
51 2004-02-14  Atsushi Enomoto <atsushi@ximian.com>
52
53         * XmlCanonicalizer.cs: Use child nodes of entity reference nodes (it
54           is now correctly supported in XmlEntityReference).
55
56 2003-07-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
57
58         * XmlCanonicalizer.cs: fixed to make it build for 1.0 and 1.1.
59
60 2003-07-24  Sebastien Pouliot <spouliot@motus.com>
61
62         * XmlCanonicalizer.cs: New. C14N class from Aleksey Sanin.