ChangeLog 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294
  1. 2003-06-05 Lluis Sanchez Gual <[email protected]>
  2. * SoapReflectionImporter.cs: implemented.
  3. * TypeTranslator.cs: added IsPrimitive() method
  4. * TypeMapping.cs: Added RelatedMaps property that returns all maps directly or indirectly
  5. used by that one. Also added Format property, that can be literal or encoded.
  6. * XmlReflectionImporter.cs: little fixes. Moved some methods to ReflectionHelper.
  7. * XmlReflectionMember.cs: added constructor that accepts SoapAttributes
  8. * XmlSerializationReader.cs: implemented many methods needed to support encoded format.
  9. * XmlSerializationReaderInterpreter.cs: added support for encoded format.
  10. * XmlSerializationWriter.cs: added support for encoded format.
  11. * XmlSerializationWriterInterpreter.cs: added support for encoded format.
  12. * XmlTypeMapElementInfo.cs: added some properties needed to support encoded format
  13. * XmlTypeMapMemberAttribute.cs: added MappedType property (enum values can be attributes,
  14. and a map is needed for them).
  15. * XmlTypeMapMemberElement.cs: small fixes.
  16. * XmlTypeMapping.cs: added some properties and methods needed to support encoded format
  17. * ReflectionHelper.cs: added. Has some methods shared by the reflection importers.
  18. 2003-06-01 Miguel de Icaza <[email protected]>
  19. * XmlSerializationReader.cs (UnknownAttribute, UnknownNode,
  20. UnknownElement): Add line number information.
  21. 2003-05-29 Lluis Sanchez Gual <[email protected]>
  22. * TypeData.cs, TypeTranslator.cs: Renamed some properties.
  23. * XmlCustomFormatter.cs: Fixed bug in serialization of chars. Support for byte[].
  24. * XmlMapping.cs: Added internal property.
  25. * XmlMemberMapping.cs, XmlMembersMapping.cs: Implemented.
  26. * XmlReflectionImporter.cs: Implemented importing of XmlMembersMapping. Several fixes.
  27. * XmlReflectionMember.cs: XmlAttributes are now created by default
  28. * XmlSerializationReader.cs, XmlSerializationWriter.cs: Several fixes.
  29. * XmlSerializationReaderInterpreter.cs, XmlSerializationWriterInterpreter.cs, XmlSerializer.cs:
  30. Implemented support for XmlMembersMapping.
  31. * XmlTypeMapping.cs: Property ObjectMap moved to XmlMapping.
  32. 2003-05-28 Lluis Sanchez Gual <[email protected]>
  33. * TypeData.cs, TypeTranslator.cs: Added support for enums. Added method for translating
  34. from xml type to clr type.
  35. * XmlCustomFormatter.cs: Fixed bug in serialization of chars. Support for byte[].
  36. * XmlReflectionMember.cs: Added default constructor.
  37. * XmlSerializationReader.cs: Implemented ReadTypedPrimitive(), ToByteArrayBase64().
  38. * XmlSerializationWriter.cs: Several fixes.
  39. * XmlSerializationReaderInterpreter.cs, XmlReflectionImporter.cs, XmlSerializationWriterInterpreter.cs
  40. XmlTypeMapMember.cs, XmlTypeMapMemberElement.cs, XmlTypeMapping.cs:
  41. Added support for enums. Added support for XmlElement and XmlNode.
  42. Support for XmlAnyAttributeAttribute and XmlAnyElementAttribute. Many fixes.
  43. 2003-05-26 Lluis Sanchez Gual <[email protected]>
  44. * TypeData.cs, TypeTranslator.cs: Implemented some methods.
  45. * XmlCustomFormatter.cs: Added formatting methods.
  46. * XmlReflectionImporter.cs, XmlSerializer.cs: New implementation.
  47. * XmlReflectionMember.cs: Added new constructor.
  48. * XmlSerializationReader.cs, XmlSerializationWriter.cs: Implemented some methods.
  49. * XmlSerializationWriterInterpreter.cs, XmlSerializationReaderInterpreter.cs
  50. XmlTypeMapElementInfo.cs, XmlTypeMapMember.cs, XmlTypeMapMemberAttribute.cs
  51. XmlTypeMapMemberElement.cs, XmlTypeMapping.cs: Added
  52. 2003-05-10 Atsushi Enomoto <[email protected]>
  53. * Added TypeTableEntry.cs.
  54. * TypeTranslator.cs : changed for non-static use.
  55. * XmlAttributes.cs : XmlType attribute support for GetAttributeName()
  56. and GetElementName(). Bugfix so that if any XmlElementAttribute
  57. exists after non-typed XmlElementAttribute then it might be ignored.
  58. Added GetElementIsNullable().
  59. * XmlSerializer.cs :
  60. Introduced TypeTablePool and TypeTableEntry and erased ambiguous
  61. Object memberObj[4].
  62. Deserialize() now uses XmlReader.Depth to check its depth.
  63. Serialize() for non-XmlReader arguments now always write xmldecl.
  64. SerializeBuiltin() now explicitly requires Type to support xsi:nil,
  65. and handles XmlQualifiedName.
  66. Separated SerializeType () from Serialize().
  67. Separated WriteCollectionElementMember(), IsFieldTypeSerializable(),
  68. IsPropertyTypeSerializable() from SerializeMembers().
  69. SerializeMembers() is now capable of null value and actual type,
  70. which should be included by XmlIncludeAttribute and so on.
  71. Renamed SerializeArray() to SerializeArrayContent(), and added
  72. SerializeCollectionContent().
  73. SerializeMembers() now requries XmlSerializerNamespaces (not used yet).
  74. FillTypeTable() is now aware of XmlInclude attributes.
  75. FillEnum() should not have different type table content from others.
  76. 2003-05-09 Atsushi Enomoto <[email protected]>
  77. * XmlSerializer.cs : this time, only replaced spaces with tabs.
  78. 2003-05-05 Atsushi Enomoto <[email protected]>
  79. * ChangeLog : Added missing ChangeLog of 2003-04-25.
  80. * XmlCustomFormatter.cs : Fixed FromXmlNmTokens() to contain
  81. separators. Added experimental method ToEnum().
  82. * XmlSerializationReader.cs : unconfirmed implementation of
  83. ReadSerializable() and ToEnum().
  84. * XmlSerializationWriter.cs : fixed WriteAttribute() so that if value
  85. is null then no output will be written.
  86. Fixed WriteStartElement(), WriteElement*() and WriteEmptyTag()
  87. to use custom formatted name.
  88. 2003-05-02 Miguel de Icaza <[email protected]>
  89. * XmlReflectionImporter.cs: one of theImportTypeMapping mappings
  90. had a void return value.
  91. 2003-04-26 Miguel de Icaza <[email protected]>
  92. * XmlIncludeAttribute.cs: Make XmlIncludeAttribute have the
  93. `AllowMultiple' flags.
  94. 2003-04-25 Atsushi Enomoto <[email protected]>
  95. * TypeTranslator.cs : patch by Erik LeBel. Array consideration.
  96. * XmlReflectionImporter.cs : patch by Erik LeBel.
  97. Now uses XmlRootAttribute to determine element name.
  98. 2003-03-17 Miguel de Icaza <[email protected]>
  99. * XmlSerializer.cs: Do not use Bubblesort, use ArrayList.Sort.
  100. Kill Bublesort.
  101. 2003-03-22 Atsushi Enomoto <[email protected]>
  102. * XmlSerializer.cs : patch by Sean Cier. Serialize() other than
  103. XmlWriter argument should call WriteEndDocument.
  104. 2003-03-19 Atsushi Enomoto <[email protected]>
  105. * XmlSerializer.cs : Serialize() don't write xmldecl when WriteState is
  106. not WriteState.Start, and never call WriteEndDocument().
  107. 2003-03-12 Elan Feingold <[email protected]>
  108. * XmlCustomFormatter.cs: Correct signature, Implement
  109. ToByteArrayBase64
  110. * XmlSerializationWriter.cs: Fix prototype.
  111. * XmlSerializer.cs: Implements Deserialize().
  112. 2003-02-16 Atsushi Enomoto <[email protected]>
  113. * XmlSerializer.cs : serializing now works for interface member.
  114. 2003-01-26 Atsushi Enomoto <[email protected]>
  115. * XmlSerializer.cs : some fix handling xml node object more correct.
  116. 2003-01-16 Ajay kumar Dwivedi <[email protected]>
  117. * XmlSerializer.cs: Array serialization for 1D arrays works
  118. * TypeTranslator: Added for translations`
  119. 2002-09-19 Gonzalo Paniagua Javier <[email protected]>
  120. * XmlCustomFormatter.cs: finished.
  121. * XmlSerializationReader.cs: implemented some more methods.
  122. 2002-09-18 Gonzalo Paniagua Javier <[email protected]>
  123. * XmlSerializationReader.cs: implemented a few methods.
  124. * XmlAnyElementAttribute.cs:
  125. * XmlArrayAttribute.cs:
  126. * XmlChoiceIdentifierAttribute.cs:
  127. * XmlElementAttribute.cs:
  128. * XmlMemberMapping.cs:
  129. * XmlMembersMapping.cs: class status based fixes.
  130. 2002-09-13 Gonzalo Paniagua Javier <[email protected]>
  131. * CodeIdentifiers.cs:
  132. * XmlSchemaExporter.cs:
  133. * XmlSchemaImporter.cs:
  134. * XmlSchemas.cs:
  135. * XmlSerializationWriteCallback.cs:
  136. * XmlSerializationWriter.cs:
  137. * XmlSerializer.cs:
  138. * XmlSerializerNamespaces.cs: some class status based fixed and
  139. implemented a couple of methods.
  140. * SoapSchemaExporter.cs: stubbed out.
  141. 2002-08-24 Tim Coleman <[email protected]>
  142. * SoapCodeExporter.cs:
  143. Fix return value of ExportTypeMapping.
  144. * XmlCustomFormatter.cs:
  145. Change methods to be internal instead of public.
  146. * XmlSerializationWriter.cs:
  147. Modify GetPrimitiveTypeName to build on linux.
  148. Modify GetQualifiedName to return an incrementing prefix
  149. instead of the same one all the time (still need to manage
  150. conflicts)
  151. Modify WriteElementString to only do special stuff is XsiType
  152. is not defined.
  153. Modify WriteTypedPrimitive to use FromXmlQualifiedName if it's
  154. an XmlQualifiedName.
  155. 2002-08-22 Tim Coleman <[email protected]>
  156. * XmlSerializationReader.cs:
  157. Some implementation
  158. * XmlSerializationWriter.cs:
  159. More implementation
  160. * XmlCustomFormatter.cs:
  161. Implemented this class.
  162. 2002-08-20 Tim Coleman <[email protected]>
  163. * XmlSerializationWriter.cs:
  164. Some implementation.
  165. 2002-08-19 Tim Coleman <[email protected]>
  166. * XmlSerializer.cs:
  167. New stubs added.
  168. * XmlSerializationWriter.cs:
  169. New stubs added.
  170. 2002-08-14 Tim Coleman <[email protected]>
  171. * XmlSerializer.cs:
  172. More reformatting of source code so I can
  173. better understand what it does.
  174. 2002-08-06 Tim Coleman <[email protected]>
  175. * XmlSerializer.cs:
  176. Some reformatting of code for readability.
  177. Modify to correctly serialize ICollection objects
  178. such as the BindingCollection of a ServiceDescription
  179. for example.
  180. 2002-08-03 Tim Coleman <[email protected]>
  181. * XmlSerializer.cs:
  182. Changed Implements() to check based on name rather
  183. than FullName. FullName was never working correctly.
  184. 2002-07-26 Tim Coleman <[email protected]>
  185. * XmlSerializer.cs:
  186. The constructor now looks for an XmlRootAttribute attribute
  187. if one is not passed in. Various changes to make it emit
  188. proper XML, such as handling an element without a namespace
  189. prefix, and using WriteEndDocument where it should be.
  190. 2002-07-24 Tim Coleman <[email protected]>
  191. * CodeIdentifier.cs:
  192. * IXmlSerializable.cs:
  193. * XmlSerializationCollectionFixupCallback.cs:
  194. * XmlSerializationFixupCallback.cs:
  195. * XmlSerializationReadCallback.cs:
  196. * XmlSerializationReader.cs:
  197. * XmlSerializationWriteCallback.cs:
  198. Add new classes.
  199. * XmlSchemas.cs
  200. * CodeIdentifiers.cs:
  201. Implement some of these classes
  202. * XmlCodeExporter.cs:
  203. Fix return type of a function
  204. 2002-07-24 Tim Coleman <[email protected]>
  205. * SoapReflectionImporter.cs:
  206. New class added to build
  207. System.Web.Services.Description.ServiceDescription.cs
  208. 2002-07-22 Tim Coleman <[email protected]>
  209. * CodeIdentifiers.cs:
  210. * SoapCodeExporter.cs:
  211. * SoapSchemaExporter.cs:
  212. * XmlCodeExporter.cs:
  213. * XmlMemberMapping.cs:
  214. * XmlMembersMapping.cs:
  215. * XmlReflectionImporter.cs:
  216. * XmlReflectionMember.cs:
  217. * XmlSchemaExporter.cs:
  218. * XmlSchemaImporter.cs:
  219. * XmlSchemas.cs:
  220. New stubbs added to aid in the linux build of
  221. System.Web.Services.
  222. 2002-07-05 Ajay kumar Dwivedi <[email protected]>
  223. * XmlSeriailizer: Serialize method can serialize XmlSchema perfectly.
  224. * XmlSerializerNamespaces: Reverted to use of a single Hashtable.
  225. 2002-07-02 Ajay kumar Dwivedi <[email protected]>
  226. * XmlSeriailizer: Updated Serialize() method.
  227. 2002-06-27 Ajay kumar Dwivedi <[email protected]>
  228. * XmlSerializer: Serialize() method Partially Implemented.
  229. 2002-06-20 Ajay kumar Dwivedi <[email protected]>
  230. * Soap & XmlOverrides: Implemented using TypeMember as key with
  231. suggestions from Rafael.