ChangeLog 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. 2003-02-16 Atsushi Enomoto <[email protected]>
  2. * XmlSerializer.cs : serializing now works for interface member.
  3. 2003-01-26 Atsushi Enomoto <[email protected]>
  4. * XmlSerializer.cs : some fix handling xml node object more correct.
  5. 2003-01-16 Ajay kumar Dwivedi <[email protected]>
  6. * XmlSerializer.cs: Array serialization for 1D arrays works
  7. * TypeTranslator: Added for translations`
  8. 2002-09-19 Gonzalo Paniagua Javier <[email protected]>
  9. * XmlCustomFormatter.cs: finished.
  10. * XmlSerializationReader.cs: implemented some more methods.
  11. 2002-09-18 Gonzalo Paniagua Javier <[email protected]>
  12. * XmlSerializationReader.cs: implemented a few methods.
  13. * XmlAnyElementAttribute.cs:
  14. * XmlArrayAttribute.cs:
  15. * XmlChoiceIdentifierAttribute.cs:
  16. * XmlElementAttribute.cs:
  17. * XmlMemberMapping.cs:
  18. * XmlMembersMapping.cs: class status based fixes.
  19. 2002-09-13 Gonzalo Paniagua Javier <[email protected]>
  20. * CodeIdentifiers.cs:
  21. * XmlSchemaExporter.cs:
  22. * XmlSchemaImporter.cs:
  23. * XmlSchemas.cs:
  24. * XmlSerializationWriteCallback.cs:
  25. * XmlSerializationWriter.cs:
  26. * XmlSerializer.cs:
  27. * XmlSerializerNamespaces.cs: some class status based fixed and
  28. implemented a couple of methods.
  29. * SoapSchemaExporter.cs: stubbed out.
  30. 2002-08-24 Tim Coleman <[email protected]>
  31. * SoapCodeExporter.cs:
  32. Fix return value of ExportTypeMapping.
  33. * XmlCustomFormatter.cs:
  34. Change methods to be internal instead of public.
  35. * XmlSerializationWriter.cs:
  36. Modify GetPrimitiveTypeName to build on linux.
  37. Modify GetQualifiedName to return an incrementing prefix
  38. instead of the same one all the time (still need to manage
  39. conflicts)
  40. Modify WriteElementString to only do special stuff is XsiType
  41. is not defined.
  42. Modify WriteTypedPrimitive to use FromXmlQualifiedName if it's
  43. an XmlQualifiedName.
  44. 2002-08-22 Tim Coleman <[email protected]>
  45. * XmlSerializationReader.cs:
  46. Some implementation
  47. * XmlSerializationWriter.cs:
  48. More implementation
  49. * XmlCustomFormatter.cs:
  50. Implemented this class.
  51. 2002-08-20 Tim Coleman <[email protected]>
  52. * XmlSerializationWriter.cs:
  53. Some implementation.
  54. 2002-08-19 Tim Coleman <[email protected]>
  55. * XmlSerializer.cs:
  56. New stubs added.
  57. * XmlSerializationWriter.cs:
  58. New stubs added.
  59. 2002-08-14 Tim Coleman <[email protected]>
  60. * XmlSerializer.cs:
  61. More reformatting of source code so I can
  62. better understand what it does.
  63. 2002-08-06 Tim Coleman <[email protected]>
  64. * XmlSerializer.cs:
  65. Some reformatting of code for readability.
  66. Modify to correctly serialize ICollection objects
  67. such as the BindingCollection of a ServiceDescription
  68. for example.
  69. 2002-08-03 Tim Coleman <[email protected]>
  70. * XmlSerializer.cs:
  71. Changed Implements() to check based on name rather
  72. than FullName. FullName was never working correctly.
  73. 2002-07-26 Tim Coleman <[email protected]>
  74. * XmlSerializer.cs:
  75. The constructor now looks for an XmlRootAttribute attribute
  76. if one is not passed in. Various changes to make it emit
  77. proper XML, such as handling an element without a namespace
  78. prefix, and using WriteEndDocument where it should be.
  79. 2002-07-24 Tim Coleman <[email protected]>
  80. * CodeIdentifier.cs:
  81. * IXmlSerializable.cs:
  82. * XmlSerializationCollectionFixupCallback.cs:
  83. * XmlSerializationFixupCallback.cs:
  84. * XmlSerializationReadCallback.cs:
  85. * XmlSerializationReader.cs:
  86. * XmlSerializationWriteCallback.cs:
  87. Add new classes.
  88. * XmlSchemas.cs
  89. * CodeIdentifiers.cs:
  90. Implement some of these classes
  91. * XmlCodeExporter.cs:
  92. Fix return type of a function
  93. 2002-07-24 Tim Coleman <[email protected]>
  94. * SoapReflectionImporter.cs:
  95. New class added to build
  96. System.Web.Services.Description.ServiceDescription.cs
  97. 2002-07-22 Tim Coleman <[email protected]>
  98. * CodeIdentifiers.cs:
  99. * SoapCodeExporter.cs:
  100. * SoapSchemaExporter.cs:
  101. * XmlCodeExporter.cs:
  102. * XmlMemberMapping.cs:
  103. * XmlMembersMapping.cs:
  104. * XmlReflectionImporter.cs:
  105. * XmlReflectionMember.cs:
  106. * XmlSchemaExporter.cs:
  107. * XmlSchemaImporter.cs:
  108. * XmlSchemas.cs:
  109. New stubbs added to aid in the linux build of
  110. System.Web.Services.
  111. 2002-07-05 Ajay kumar Dwivedi <[email protected]>
  112. * XmlSeriailizer: Serialize method can serialize XmlSchema perfectly.
  113. * XmlSerializerNamespaces: Reverted to use of a single Hashtable.
  114. 2002-07-02 Ajay kumar Dwivedi <[email protected]>
  115. * XmlSeriailizer: Updated Serialize() method.
  116. 2002-06-27 Ajay kumar Dwivedi <[email protected]>
  117. * XmlSerializer: Serialize() method Partially Implemented.
  118. 2002-06-20 Ajay kumar Dwivedi <[email protected]>
  119. * Soap & XmlOverrides: Implemented using TypeMember as key with
  120. suggestions from Rafael.