2
0

ChangeLog 10 KB

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