ChangeLog 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. 2008-04-10 Eyal Alaluf <[email protected]>
  2. * SyndicationElementExtension.cs: XmlObjectSerializer.ReadObject now
  3. verifies by default. Disabled explicitly the verification in GetObject.
  4. 2007-12-18 Atsushi Enomoto <[email protected]>
  5. * SyndicationElementExtensionCollection.cs, Atom10FeedFormatter.cs,
  6. Atom10ItemFormatter.cs, Rss20FeedFormatter.cs : warning cleanup.
  7. * SyndicationItem.cs : implemented TryParseContent().
  8. * Atom10ItemFormatter.cs : read Content.
  9. * Rss20ItemFormatter.cs : Handle Atom 1.0 extension elements.
  10. Fixed ReadSourceFeed() that should read <source> in its own way.
  11. 2007-12-18 Atsushi Enomoto <[email protected]>
  12. * Atom10ItemFormatter.cs : changes in extension attribute handling:
  13. TryParseAttribute() should be called regardless of
  14. PreserveExtensionAttributes.
  15. * SyndicationFeedFormatter.cs, SyndicationItemFormatter.cs :
  16. implemented ToString().
  17. * Rss20FeedFormatter.cs : strictly require <channel> under <rss>.
  18. 2007-12-18 Atsushi Enomoto <[email protected]>
  19. * Atom10ItemFormatter.cs : implemented read methods and GetSchema().
  20. 2007-12-18 Atsushi Enomoto <[email protected]>
  21. * SyndicationFeedFormatter.cs : implemented LoadElementExtensions().
  22. * Rss20FeedFormatter.cs : implemented read methods and GetSchema().
  23. PreserveElementExtensions and PreserveAttributeExtensions are
  24. true by default.
  25. * Rss20ItemFormatter.cs : filter xmlns attributes out.
  26. 2007-12-18 Atsushi Enomoto <[email protected]>
  27. * SyndicationElementExtensionCollection.cs :
  28. every Add() caused infinite loop.
  29. * SyndicationFeed.cs, SyndicationItem.cs : Implemented Load() and [*1]
  30. * SyndicationLink.cs : int set_Length() argument check was wrong. [*1]
  31. * SyndicationCategory.cs, SyndicationPerson.cs : [*1]
  32. * SyndicationItemFormatter.cs : Implemented LoadElementExtensions().
  33. * SyndicationVersions.cs : added SyndicationItem.Load<T>() and
  34. SyndicationFeed<T>() implementation.
  35. * Atom10ItemFormatter.cs : [*2]
  36. * Rss20ItemFormatter.cs : implemented read methods. [*2]
  37. [*1] Implemented TryParseElement and TryParseAttribute.
  38. [*2] PreserveElementExtensions and PreserveAttributeExtensions are
  39. true by default.
  40. 2007-12-17 Atsushi Enomoto <[email protected]>
  41. * Atom10FeedFormatter_1.cs, Atom10ItemFormatter_1.cs,
  42. Rss20FeedFormatter_1.cs, Rss20ItemFormatter_1.cs : implemented.
  43. * Atom10FeedFormatter.cs, Atom10ItemFormatter.cs,
  44. Rss20FeedFormatter.cs, Rss20ItemFormatter.cs :
  45. implemented instance creation. Some parameter renaming.
  46. 2007-12-17 Atsushi Enomoto <[email protected]>
  47. * Rss20FeedFormatter.cs : s:/item/feed/ in the error message.
  48. * Atom10FeedFormatter.cs : implemented WriteTo() and WriteXml().
  49. 2007-12-17 Atsushi Enomoto <[email protected]>
  50. * Atom10ItemFormatter.cs : some more notes on its spec violation.
  51. 2007-12-17 Atsushi Enomoto <[email protected]>
  52. * Rss20ItemFormatter.cs : enclose SourceFeed with <source>.
  53. * Atom10ItemFormatter.cs : implemented WriteTo() and WriteXml().
  54. 2007-12-15 Atsushi Enomoto <[email protected]>
  55. * Rss20ItemFormatter.cs : some parameter renaming.
  56. * SyndicationFeedFormatter.cs, Rss20FeedFormatter.cs : implemented,
  57. based on item formatter.
  58. * SyndicationItemFormatter.cs : implemented syndication element
  59. creation methods. Added null argument checks.
  60. 2007-12-15 Atsushi Enomoto <[email protected]>
  61. * Rss20ItemFormatter.cs : write remaining properties in item.
  62. * UrlSyndicationContent.cs : implemented.
  63. * XmlSyndicationContent.cs, SyndicationContent.cs,
  64. SyndicationElementExtensionCollection.cs : mostly implemented; now
  65. I mostly found that those unimplemented stuff were bound to
  66. SyndicationElementExtension constructors.
  67. 2007-12-15 Atsushi Enomoto <[email protected]>
  68. * SyndicationFeed.cs : do not try to set null items in .ctor() (null
  69. items are allowed in .ctor, while not allowed in set_Items()).
  70. Remove extra NotImplementedException.
  71. Implemented WriteAttributeExtensions and WriteElementExtensions.
  72. * SyndicationElementExtension.cs : implemented.
  73. * SyndicationExtensions.cs,
  74. SyndicationItem.cs, SyndicationLink.cs, SyndicationCategory.cs,
  75. SyndicationPerson.cs : Implemented WriteAttributeExtensions() and
  76. WriteElementExtensions() in each syndication element to call
  77. corresponding method in SyndicationExtensions.
  78. * SyndicationItemFormatter.cs :
  79. implemented Write[Element/Attribute]Extensions() and
  80. TryParse[Element/Attribute]().
  81. * Rss20ItemFormatter.cs : write extensions on writing to xml.
  82. Null check in Contributors on writing to xml.
  83. 2007-12-11 Atsushi Enomoto <[email protected]>
  84. * Rss20ItemFormatter.cs, SyndicationContent.cs,
  85. TextSyndicationContent.cs : flush some more implementation.
  86. 2007-12-10 Atsushi Enomoto <[email protected]>
  87. * Atom10ItemFormatter.cs, Rss20ItemFormatter.cs,
  88. SyndicationCategory.cs, SyndicationContent.cs, SyndicationFeed.cs,
  89. SyndicationItem.cs, SyndicationItemFormatter.cs,
  90. SyndicationPerson.cs : a bunch of implementation.
  91. 2007-12-10 Atsushi Enomoto <[email protected]>
  92. * SyndicationElementExtensionCollection.cs : added copy .ctor().
  93. * SyndicationLink.cs : implemented everything but read/write part.
  94. 2007-12-10 Atsushi Enomoto <[email protected]>
  95. * Atom10FeedFormatter.cs Atom10FeedFormatter_1.cs
  96. Atom10ItemFormatter.cs Atom10ItemFormatter_1.cs
  97. Rss20FeedFormatter.cs Rss20FeedFormatter_1.cs
  98. Rss20ItemFormatter.cs Rss20ItemFormatter_1.cs
  99. SyndicationCategory.cs SyndicationElementExtension.cs
  100. SyndicationElementExtensionCollection.cs SyndicationFeed.cs
  101. SyndicationItem.cs SyndicationLink.cs SyndicationPerson.cs:
  102. finished stubs.
  103. * ISyndicationElement.cs : internal interface, introduced to reduce
  104. corcompare obstacles.
  105. 2007-12-07 Atsushi Enomoto <[email protected]>
  106. * Atom10ItemFormatter.cs, Atom10ItemFormatter_1.cs,
  107. Rss20ItemFormatter.cs, Rss20ItemFormatter_1.cs,
  108. SyndicationItemFormatter.cs : more new stubs.
  109. * SyndicationFeedFormatter.cs, SyndicationItem.cs,
  110. SyndicationLink.cs, SyndicationPerson.cs : more stub fixes.
  111. 2007-12-07 Atsushi Enomoto <[email protected]>
  112. * TextSyndicationContent.cs, XmlSyndicationContent.cs,
  113. UrlSyndicationContent.cs : new stubs.
  114. * SyndicationContent.cs, TextSyndicationContentKind.cs,
  115. SyndicationFeedFormatter.cs, SyndicationFeed.cs :
  116. ongoing stub fixes.
  117. 2007-12-07 Atsushi Enomoto <[email protected]>
  118. * Ato10FeedFormatter.cs Atom10FeedFormatter.cs :
  119. oops, wrong file name. renamed former to latter.
  120. 2007-12-05 Atsushi Enomoto <[email protected]>
  121. * Ato10FeedFormatter.cs Atom10FeedFormatter_1.cs
  122. Rss20FeedFormatter.cs Rss20FeedFormatter_1.cs
  123. SyndicationCategory.cs SyndicationContent.cs
  124. SyndicationElementExtension.cs
  125. SyndicationElementExtensionCollection.cs
  126. SyndicationFeed.cs SyndicationFeedFormatter.cs
  127. SyndicationItem.cs SyndicationLink.cs SyndicationPerson.cs
  128. SyndicationVersions.cs TextSyndicationContentKind.cs :
  129. new stubs.