ChangeLog 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257
  1. 2009-10-07 Atsushi Enomoto <[email protected]>
  2. * SyndicationVersions.cs :
  3. Handle atom feed as well. Patch by David Mitchell.
  4. 2009-10-07 Atsushi Enomoto <[email protected]>
  5. * SyndicationElementExtension.cs : give OuterName and OuterNamespace
  6. for extensions with .ctor(XmlReader).
  7. 2009-10-05 Atsushi Enomoto <[email protected]>
  8. * Atom10FeedFormatter.cs : do not use Atom10ItemFormatter(item)
  9. at ReadItem(). It is only for writing. Patch by David Mitchell.
  10. 2009-10-05 Atsushi Enomoto <[email protected]>
  11. * Atom10ItemFormatter.cs : enable XmlConvert.ToDateTimeOffset(),
  12. patch by David Mitchell.
  13. 2009-09-15 Atsushi Enomoto <[email protected]>
  14. * SyndicationElementExtension.cs : make it ready for 2.1 build.
  15. 2009-09-07 Atsushi Enomoto <[email protected]>
  16. * Rss20FeedFormatter.cs, CategoriesDocument.cs,
  17. AtomPub10ServiceDocumentFormatter_1.cs,
  18. AtomPub10CategoriesDocumentFormatter.cs,
  19. AtomPub10ServiceDocumentFormatter.cs : a couple of corcompare fixes.
  20. 2009-04-15 Atsushi Enomoto <[email protected]>
  21. * ServiceDocument.cs : remove Utility class. It is not precise
  22. implementation to write extensions.
  23. * ServiceDocumentFormatter.cs : virtual extension writer methods
  24. should call possibly overriden Write[Element/Attribute]Extensions()
  25. in possibly derived document item classes.
  26. Implemented LoadElementExtensions().
  27. * AtomPub10CategoriesDocumentFormatter.cs,
  28. AtomPub10ServiceDocumentFormatter.cs : Implemented GetSchema().
  29. 2009-04-06 Atsushi Enomoto <[email protected]>
  30. * ServiceDocumentFormatter.cs
  31. Workspace.cs
  32. Atom10FeedFormatter.cs
  33. AtomPub10ServiceDocumentFormatter.cs
  34. ResourceCollectionInfo.cs
  35. CategoriesDocument.cs
  36. ServiceDocument.cs : implemented most of reader parts.
  37. 2009-04-06 Atsushi Enomoto <[email protected]>
  38. * Workspace.cs, ResourceCollectionInfo.cs,
  39. CategoriesDocument.cs, ServiceDocument.cs : use common internal
  40. SyndicationExtension class for extensions.
  41. 2009-04-06 Atsushi Enomoto <[email protected]>
  42. * AtomPub10CategoriesDocumentFormatter.cs, Atom10FeedFormatter.cs,
  43. CategoriesDocument.cs : ongoing implementation (handle categories).
  44. 2009-04-03 Atsushi Enomoto <[email protected]>
  45. * ServiceDocumentFormatter.cs
  46. Workspace.cs
  47. AtomPub10ServiceDocumentFormatter.cs
  48. ResourceCollectionInfo.cs
  49. CategoriesDocument.cs
  50. ServiceDocument.cs : ongoing implementation.
  51. 2009-04-03 Atsushi Enomoto <[email protected]>
  52. * ServiceDocumentFormatter.cs
  53. InlineCategoriesDocument.cs
  54. AtomPub10ServiceDocumentFormatter_1.cs
  55. Workspace.cs
  56. AtomPub10CategoriesDocumentFormatter.cs
  57. ReferencedCategoriesDocument.cs
  58. CategoriesDocumentFormatter.cs
  59. AtomPub10ServiceDocumentFormatter.cs
  60. ResourceCollectionInfo.cs
  61. CategoriesDocument.cs
  62. ServiceDocument.cs : stubs (new in 3.5 SP1).
  63. 2008-04-10 Eyal Alaluf <[email protected]>
  64. * SyndicationElementExtension.cs: XmlObjectSerializer.ReadObject now
  65. verifies by default. Disabled explicitly the verification in GetObject.
  66. 2007-12-18 Atsushi Enomoto <[email protected]>
  67. * SyndicationElementExtensionCollection.cs, Atom10FeedFormatter.cs,
  68. Atom10ItemFormatter.cs, Rss20FeedFormatter.cs : warning cleanup.
  69. * SyndicationItem.cs : implemented TryParseContent().
  70. * Atom10ItemFormatter.cs : read Content.
  71. * Rss20ItemFormatter.cs : Handle Atom 1.0 extension elements.
  72. Fixed ReadSourceFeed() that should read <source> in its own way.
  73. 2007-12-18 Atsushi Enomoto <[email protected]>
  74. * Atom10ItemFormatter.cs : changes in extension attribute handling:
  75. TryParseAttribute() should be called regardless of
  76. PreserveExtensionAttributes.
  77. * SyndicationFeedFormatter.cs, SyndicationItemFormatter.cs :
  78. implemented ToString().
  79. * Rss20FeedFormatter.cs : strictly require <channel> under <rss>.
  80. 2007-12-18 Atsushi Enomoto <[email protected]>
  81. * Atom10ItemFormatter.cs : implemented read methods and GetSchema().
  82. 2007-12-18 Atsushi Enomoto <[email protected]>
  83. * SyndicationFeedFormatter.cs : implemented LoadElementExtensions().
  84. * Rss20FeedFormatter.cs : implemented read methods and GetSchema().
  85. PreserveElementExtensions and PreserveAttributeExtensions are
  86. true by default.
  87. * Rss20ItemFormatter.cs : filter xmlns attributes out.
  88. 2007-12-18 Atsushi Enomoto <[email protected]>
  89. * SyndicationElementExtensionCollection.cs :
  90. every Add() caused infinite loop.
  91. * SyndicationFeed.cs, SyndicationItem.cs : Implemented Load() and [*1]
  92. * SyndicationLink.cs : int set_Length() argument check was wrong. [*1]
  93. * SyndicationCategory.cs, SyndicationPerson.cs : [*1]
  94. * SyndicationItemFormatter.cs : Implemented LoadElementExtensions().
  95. * SyndicationVersions.cs : added SyndicationItem.Load<T>() and
  96. SyndicationFeed<T>() implementation.
  97. * Atom10ItemFormatter.cs : [*2]
  98. * Rss20ItemFormatter.cs : implemented read methods. [*2]
  99. [*1] Implemented TryParseElement and TryParseAttribute.
  100. [*2] PreserveElementExtensions and PreserveAttributeExtensions are
  101. true by default.
  102. 2007-12-17 Atsushi Enomoto <[email protected]>
  103. * Atom10FeedFormatter_1.cs, Atom10ItemFormatter_1.cs,
  104. Rss20FeedFormatter_1.cs, Rss20ItemFormatter_1.cs : implemented.
  105. * Atom10FeedFormatter.cs, Atom10ItemFormatter.cs,
  106. Rss20FeedFormatter.cs, Rss20ItemFormatter.cs :
  107. implemented instance creation. Some parameter renaming.
  108. 2007-12-17 Atsushi Enomoto <[email protected]>
  109. * Rss20FeedFormatter.cs : s:/item/feed/ in the error message.
  110. * Atom10FeedFormatter.cs : implemented WriteTo() and WriteXml().
  111. 2007-12-17 Atsushi Enomoto <[email protected]>
  112. * Atom10ItemFormatter.cs : some more notes on its spec violation.
  113. 2007-12-17 Atsushi Enomoto <[email protected]>
  114. * Rss20ItemFormatter.cs : enclose SourceFeed with <source>.
  115. * Atom10ItemFormatter.cs : implemented WriteTo() and WriteXml().
  116. 2007-12-15 Atsushi Enomoto <[email protected]>
  117. * Rss20ItemFormatter.cs : some parameter renaming.
  118. * SyndicationFeedFormatter.cs, Rss20FeedFormatter.cs : implemented,
  119. based on item formatter.
  120. * SyndicationItemFormatter.cs : implemented syndication element
  121. creation methods. Added null argument checks.
  122. 2007-12-15 Atsushi Enomoto <[email protected]>
  123. * Rss20ItemFormatter.cs : write remaining properties in item.
  124. * UrlSyndicationContent.cs : implemented.
  125. * XmlSyndicationContent.cs, SyndicationContent.cs,
  126. SyndicationElementExtensionCollection.cs : mostly implemented; now
  127. I mostly found that those unimplemented stuff were bound to
  128. SyndicationElementExtension constructors.
  129. 2007-12-15 Atsushi Enomoto <[email protected]>
  130. * SyndicationFeed.cs : do not try to set null items in .ctor() (null
  131. items are allowed in .ctor, while not allowed in set_Items()).
  132. Remove extra NotImplementedException.
  133. Implemented WriteAttributeExtensions and WriteElementExtensions.
  134. * SyndicationElementExtension.cs : implemented.
  135. * SyndicationExtensions.cs,
  136. SyndicationItem.cs, SyndicationLink.cs, SyndicationCategory.cs,
  137. SyndicationPerson.cs : Implemented WriteAttributeExtensions() and
  138. WriteElementExtensions() in each syndication element to call
  139. corresponding method in SyndicationExtensions.
  140. * SyndicationItemFormatter.cs :
  141. implemented Write[Element/Attribute]Extensions() and
  142. TryParse[Element/Attribute]().
  143. * Rss20ItemFormatter.cs : write extensions on writing to xml.
  144. Null check in Contributors on writing to xml.
  145. 2007-12-11 Atsushi Enomoto <[email protected]>
  146. * Rss20ItemFormatter.cs, SyndicationContent.cs,
  147. TextSyndicationContent.cs : flush some more implementation.
  148. 2007-12-10 Atsushi Enomoto <[email protected]>
  149. * Atom10ItemFormatter.cs, Rss20ItemFormatter.cs,
  150. SyndicationCategory.cs, SyndicationContent.cs, SyndicationFeed.cs,
  151. SyndicationItem.cs, SyndicationItemFormatter.cs,
  152. SyndicationPerson.cs : a bunch of implementation.
  153. 2007-12-10 Atsushi Enomoto <[email protected]>
  154. * SyndicationElementExtensionCollection.cs : added copy .ctor().
  155. * SyndicationLink.cs : implemented everything but read/write part.
  156. 2007-12-10 Atsushi Enomoto <[email protected]>
  157. * Atom10FeedFormatter.cs Atom10FeedFormatter_1.cs
  158. Atom10ItemFormatter.cs Atom10ItemFormatter_1.cs
  159. Rss20FeedFormatter.cs Rss20FeedFormatter_1.cs
  160. Rss20ItemFormatter.cs Rss20ItemFormatter_1.cs
  161. SyndicationCategory.cs SyndicationElementExtension.cs
  162. SyndicationElementExtensionCollection.cs SyndicationFeed.cs
  163. SyndicationItem.cs SyndicationLink.cs SyndicationPerson.cs:
  164. finished stubs.
  165. * ISyndicationElement.cs : internal interface, introduced to reduce
  166. corcompare obstacles.
  167. 2007-12-07 Atsushi Enomoto <[email protected]>
  168. * Atom10ItemFormatter.cs, Atom10ItemFormatter_1.cs,
  169. Rss20ItemFormatter.cs, Rss20ItemFormatter_1.cs,
  170. SyndicationItemFormatter.cs : more new stubs.
  171. * SyndicationFeedFormatter.cs, SyndicationItem.cs,
  172. SyndicationLink.cs, SyndicationPerson.cs : more stub fixes.
  173. 2007-12-07 Atsushi Enomoto <[email protected]>
  174. * TextSyndicationContent.cs, XmlSyndicationContent.cs,
  175. UrlSyndicationContent.cs : new stubs.
  176. * SyndicationContent.cs, TextSyndicationContentKind.cs,
  177. SyndicationFeedFormatter.cs, SyndicationFeed.cs :
  178. ongoing stub fixes.
  179. 2007-12-07 Atsushi Enomoto <[email protected]>
  180. * Ato10FeedFormatter.cs Atom10FeedFormatter.cs :
  181. oops, wrong file name. renamed former to latter.
  182. 2007-12-05 Atsushi Enomoto <[email protected]>
  183. * Ato10FeedFormatter.cs Atom10FeedFormatter_1.cs
  184. Rss20FeedFormatter.cs Rss20FeedFormatter_1.cs
  185. SyndicationCategory.cs SyndicationContent.cs
  186. SyndicationElementExtension.cs
  187. SyndicationElementExtensionCollection.cs
  188. SyndicationFeed.cs SyndicationFeedFormatter.cs
  189. SyndicationItem.cs SyndicationLink.cs SyndicationPerson.cs
  190. SyndicationVersions.cs TextSyndicationContentKind.cs :
  191. new stubs.