2
0

ChangeLog 9.8 KB

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