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