X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fclass%2FSystem.XML%2FMono.Xml.Schema%2FChangeLog;h=331a22d42dccb5a6c48d87d48e4945c1f35b6033;hb=b57a0e5bcf22b59c044ce92b1fee7abd735c0dec;hp=5bda822810615a4a8f27c946a0a226430b775090;hpb=12b7f166b639343c0b87773e7e4af58738f19937;p=mono.git diff --git a/mcs/class/System.XML/Mono.Xml.Schema/ChangeLog b/mcs/class/System.XML/Mono.Xml.Schema/ChangeLog index 5bda8228106..331a22d42dc 100644 --- a/mcs/class/System.XML/Mono.Xml.Schema/ChangeLog +++ b/mcs/class/System.XML/Mono.Xml.Schema/ChangeLog @@ -1,3 +1,78 @@ +2008-02-19 Atsushi Enomoto + + * XsdWildcard.cs : block extra compilation and made compilation reset. + This somehow fixed bug #360541. + +2007-10-31 Atsushi Enomoto + + * XsdValidatingReader.cs : r68046 didn't really fix the issue. + Enabled the actual fix. and fixed bug #336625. + +2007-07-25 Atsushi Enomoto + + * XsdValidatingReader.cs : reject more whitespaces in empty model + element. + +2007-07-17 Atsushi Enomoto + + * XsdValidatingReader.cs : Process empty and element-only contents + differently along with the spec 3.4.4 Element Locally Valid (Complex + Type) 2.3 (and 2.1 respectively). Itchy specification indeed. + This demanded not a few internal changes. Fixed bug #82099. + +2007-04-27 Atsushi Enomoto + + * XmlSchemaValidatingReader.cs : nsResolver field must be initialized. + Fixed bug #81460. + +2006-11-17 Atsushi Enomoto + + * XsdValidatingReader.cs : when ValidationType is None, it does not + load external schemas. Fixed bug #79924. + +2006-11-14 Atsushi Enomoto + + * XmlSchemaValidatingReader.cs : dispatch validation events from + XmlReaderSettings. Turned out that outside System.Xml.dll + XmlReaderSettings.ValidationEventHandler is useless. + +2006-10-27 Atsushi Enomoto + + * XsdValidatingReader.cs : Fixed bug #79650. Enumeration facet was + not validated for attributes. Also, simple type restriction should + require namespace manager to resolve QNames. + +2006-08-04 Atsushi Enomoto + + * XsdIdentityState.cs : Fixed bug #78985. If there are two identical + field path "@key" in two different keys where one is in scope + within another, it incorrectly matched the attribute whose name + is same but in different element hierarchy (depth). + +2006-04-12 Atsushi Enomoto + + * XmlSchemaValidatingReader.cs : don't reject such XmlReader that + does not implement IXmlNamespaceResolver. + +2006-02-20 Atsushi Enomoto + + * XsdValidatingReader.cs : when DTD did not appear in + DTDValidatingReader, it almost makes no sense to use it, so just + use its internal EntityResolvingXmlReader (it is required to + detect "undeclared entity in use" well-formedness violation). + It could double processing speed (or more). + +2006-01-13 Atsushi Enomoto + + * XsdValidatingReader.cs : whitespace nodes should be allowed inside + empty or element-only content types. Fixed bug #77241. + +2006-01-11 Atsushi Enomoto + + * XmlSchemaValidatingReader.cs : removed unused constructors. + Now it implements IXmlSchemaInfo. Use XmlSchemaType instead of + Object to represent schema types. + 2006-01-06 Atsushi Enomoto * XsdValidatingReader.cs :