ChangeLog 4.3 KB

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