ChangeLog 9.9 KB

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