svn path=/branches/mono-1-1-9/mcs/; revision=51207
[mono.git] / mcs / class / System.XML / Mono.Xml.Schema / ChangeLog
index c8daec83e248ceb2e17b8087d4df88e8c5bebffd..9455b93d92d7b14663e12c2fc1ac6a378f6b4a70 100644 (file)
@@ -1,3 +1,89 @@
+2005-08-03  Gert Driesen <drieseng@users.sourceforge.net>
+
+       * XsdValidationReader.cs: GetNamespacesInScope returns generic
+       IDictionary in .NET 2.0 Beta 2.
+       * XmlSchemaValidatingReader.cs: GetNamespacesInScope returns generic
+       IDictionary in .NET 2.0 Beta 2.
+
+2005-07-28  Atsushi Enomoto <atsushi@ximian.com>
+
+       * XsdValidatingReader.cs : when xsi:schemaLocation could not be
+         resolved, it still does not raise error when corresponding schema
+         already exists.
+
+2005-05-05  Atsushi Enomoto <atsushi@ximian.com>
+
+       * XsdValidatingReader.cs :
+         removed atomicName related 2.0 members (deprecated in beta2).
+
+2005-03-22  Atsushi Enomoto <atsushi@ximian.com>
+
+       * XsdValidatingReader.cs : removed unused method which was warned.
+
+2004-12-22  Atsushi Enomoto <atsushi@ximian.com>
+
+       * XsdValidatingReader.cs : XmlResolver.ResolveUri() may return null.
+
+2004-12-16  Atsushi Enomoto <atsushi@ximian.com>
+
+       * XsdValidatingReader.cs : added ActualSchemaType to context type.
+       * XmlSchemaValidatingReader.cs : added SchemaInfo override.
+
+2004-12-16  Atsushi Enomoto <atsushi@ximian.com>
+
+       * XsdParticleValidationState.cs :
+         Removed some unused or unnecessary members. Readonlify some members.
+         Added GetExpectedParticles(ArrayList) and overriden in all state
+         types, which is used in XmlSchemaValidator.GetExpectedParticles().
+
+2004-12-15  Atsushi Enomoto <atsushi@ximian.com>
+
+       * XmlSchemaValidatingReader.cs : xsi:* attributes are now handled via
+         XmlSchemaValidator.ValidateElement().
+         Removed some obsolete overrides.
+
+2004-12-14  Atsushi Enomoto <atsushi@ximian.com>
+
+       * XmlSchemaValidatingReader.cs : new file; another XmlReader 
+         implementation that handles XSD validation. It is an reference
+         application for XmlSchemaValidator.
+       * XsdValidatingReader.cs : Use readerLineInfo for IXmlLineInfo.
+
+2004-12-14  Atsushi Enomoto <atsushi@ximian.com>
+
+       * XsdIdentityState.cs : use validation exception for 2.0.
+         ProcessMatch() does not have to return bool. Use break and continue
+         and reduced indentation.
+       * XsdValidatingReader.cs : use validation exception for 2.0.
+         Added new XsdIDManager class and id handling is delegated to it.
+         XmlQualifiedName -> QName. AssessElementLocallyValidElement() does
+         not need XmlSchemaElement (it is context). Moved some static
+         methods to XmlSchemaUtil.cs. Collected key constraints stuff to a
+         region.
+
+2004-12-13  Atsushi Enomoto <atsushi@ximian.com>
+
+       * XsdKeyTable.cs : eliminated XmlReader dependency.
+       * XsdValidatingReader.cs :
+         AssertIdentityConstraints() is now splited to selector validation
+         and field validation. Extracted EndKeyrefValidation() to process
+         keyref constraints.
+         Added ReadExternalSchema() and commonized xsi:schemaLocation
+         handling and xsi:noNamespaceSchemaLocation handling.
+       * XsdIdentityState.cs :
+         Eliminated XsdValidatingReader dependency.
+         In XsdKeyEntryField, renamed KeySequence to OwnerSequence.
+         XsdKeyEntryFieldCollection is now based on CollectionBase.
+         In XsdKeyEntry, FieldMatches() is renamed to ProcessMatch() and
+         modified to accept splited XsdValidatingReader members.
+       * XsdIdentityPath.cs : added default .ctor() and IsAttribute property.
+
+2004-12-13  Atsushi Enomoto <atsushi@ximian.com>
+
+       * XsdIdentityState.cs,
+         XsdIdentityPath.cs,
+         XsdKeyTable.cs : fixed mixed line ending.
+
 2004-12-11  Atsushi Enomoto <atsushi@ximian.com>
 
        * XsdValidatingReader.cs,