ChangeLog 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. 2007-01-23 Atsushi Enomoto <[email protected]>
  2. * XmlCanonicalizer.cs : in Canonicalize(XmlNodeList), nodes [0] could
  3. be XmlDocument and thus it could cause NullReferenceException.
  4. 2007-01-23 Atsushi Enomoto <[email protected]>
  5. * XmlCanonicalizer.cs : it should be reset before being reused.
  6. 2007-01-22 Atsushi Enomoto <[email protected]>
  7. * XmlCanonicalizer.cs : Fixed incorect is-visibly-utilized check. Got
  8. Phaos tests passed.
  9. 2007-01-17 Atsushi Enomoto <[email protected]>
  10. * XmlCanonicalizer.cs : don't output default namespace when the node's
  11. namespace is not empty. Check "visibly utilized" namespace nodes in
  12. exc-c14n. Also, in exc-c14n, rendered namespaces are not written.
  13. Added InclusiveNamespaces PrefixList field (not in use yet).
  14. 2005-04-04 Atsushi Enomoto <[email protected]>
  15. * XmlCanonicalizer.cs : don't rip &#xD; off here.
  16. 2004-05-14 Atsushi Enomoto <[email protected]>
  17. * XmlCanonicalizer.cs :
  18. Reverted xmlns change that seems my misinterpretation.
  19. 2004-05-13 Atsushi Enomoto <[email protected]>
  20. * XmlCanonicalizer.cs :
  21. Element namespace is not XPath-selected(selectable) namespace nodes
  22. and that should be outputted.
  23. Don't return null for empty output.
  24. 2004-03-26 Atsushi Enomoto <[email protected]>
  25. * XmlCanonicalizer.cs :
  26. Don't output &#xD; for Whitespace node.
  27. To filter every kind of nodes, make sure node.Attributes isnot null.
  28. This makes some phaos tests passed.
  29. 2004-02-14 Atsushi Enomoto <[email protected]>
  30. * XmlCanonicalizer.cs: Use child nodes of entity reference nodes (it
  31. is now correctly supported in XmlEntityReference).
  32. 2003-07-24 Gonzalo Paniagua Javier <[email protected]>
  33. * XmlCanonicalizer.cs: fixed to make it build for 1.0 and 1.1.
  34. 2003-07-24 Sebastien Pouliot <[email protected]>
  35. * XmlCanonicalizer.cs: New. C14N class from Aleksey Sanin.