ChangeLog 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529
  1. 2009-04-15 Atsushi Enomoto <[email protected]>
  2. * XmlMtomDictionaryReader.cs : new.
  3. * XmlDictionaryReader.cs : implemented CreateMtomReader().
  4. 2009-04-02 Atsushi Enomoto <[email protected]>
  5. * XmlMtomDictionaryWriter.cs : new.
  6. * XmlDictionaryWriter.cs : implement CreateMtomWriter().
  7. 2009-04-01 Atsushi Enomoto <[email protected]>
  8. * XmlDictionaryReader.cs : add ReadStartElement() overload.
  9. 2009-04-01 Atsushi Enomoto <[email protected]>
  10. * UniqueId.cs : add missing security attributes.
  11. * XmlDictionaryReader.cs : cleanup extra TODOs.
  12. * XmlBinaryDictionaryReader.cs : iplement IsArray.
  13. 2009-03-31 Atsushi Enomoto <[email protected]>
  14. * XmlBinaryDictionaryReader.cs, XmlDictionaryWriter.cs :
  15. a couple of fixes to reflect correct values for node properties
  16. on each read step.
  17. 2009-03-31 Atsushi Enomoto <[email protected]>
  18. * XmlBinaryDictionaryReader.cs, XmlBinaryFormat.cs :
  19. support array operation (0x03) on reader too.
  20. 2009-03-31 Atsushi Enomoto <[email protected]>
  21. * XmlBinaryDictionaryReader.cs : removed lots of unused part.
  22. 2009-03-31 Atsushi Enomoto <[email protected]>
  23. * XmlBinaryDictionaryWriterAutoGen.cs : generated code.
  24. * XmlBinaryFormat.cs, XmlBinaryDictionaryWriter.cs :
  25. support array operation (0x03) and a bunch of WriteArray() methods.
  26. 2009-03-31 Atsushi Enomoto <[email protected]>
  27. * XmlBinaryDictionaryReader.cs, XmlBinaryDictionaryWriter.cs
  28. XmlBinaryFormat.cs : implemented element with short prefix.
  29. 2009-03-27 Atsushi Enomoto <[email protected]>
  30. * XmlBinaryFormat.cs, XmlBinaryDictionaryWriter.cs :
  31. resolved all namespace and QName issues.
  32. 2009-03-27 Atsushi Enomoto <[email protected]>
  33. * XmlBinaryDictionaryWriter.cs : further namespace refactory.
  34. namespaces are managed by its own (to work fine for both string
  35. and dictionary string).
  36. 2009-03-27 Atsushi Enomoto <[email protected]>
  37. * XmlBinaryFormat.cs, XmlBinaryDictionaryReader.cs,
  38. XmlBinaryDictionaryWriter.cs : improved shorthanded prefix
  39. support. Not only autocreated prefixes but also explicitly-
  40. specified 'a' .. 'z' prefixes are mapped as shorthand.
  41. Some significant (and ongoing) namespace support changes.
  42. 2009-03-26 Atsushi Enomoto <[email protected]>
  43. * XmlBinaryFormat.cs, XmlBinaryDictionaryWriter.cs :
  44. added some incomplete code for QName support.
  45. 2009-03-26 Atsushi Enomoto <[email protected]>
  46. * XmlBinaryDictionaryReader.cs, XmlBinaryFormat.cs :
  47. handle utf16 typed nodes. (not sure if it is used in writer.)
  48. 2009-03-26 Atsushi Enomoto <[email protected]>
  49. * XmlBinaryDictionaryWriter.cs : oops, fix build.
  50. 2009-03-26 Atsushi Enomoto <[email protected]>
  51. * XmlBinaryDictionaryWriter.cs, XmlBinaryDictionaryReader.cs,
  52. XmlBinaryFormat.cs, : reverted Uuid change (UniqueId is different).
  53. Updated TODO status. Removed extra BinaryReader type.
  54. 2009-03-26 Atsushi Enomoto <[email protected]>
  55. * XmlBinaryDictionaryReader.cs, XmlBinaryDictionaryWriter.cs,
  56. XmlBinaryFormat.cs : fixed couple of issues regarding text and
  57. base64 fixed-length buffers (their sizes are not variant).
  58. Some ongoing changes on reading dummy-prefixed attributes.
  59. 2009-03-25 Atsushi Enomoto <[email protected]>
  60. * XmlBinaryDictionaryReader.cs, XmlBinaryFormat.cs,
  61. XmlBinaryDictionaryWriter.cs : couple of enhancements to support
  62. missing types, Dictionary string lookups and indexing fixes.
  63. Also reflect some correction by [MC-NBFX] (MS OSPed document).
  64. * XmlBinaryReaderSession.cs : implemented.
  65. 2009-03-18 Atsushi Enomoto <[email protected]>
  66. * XmlDictionaryReader.cs : more not-understandable bits.
  67. 2009-03-18 Atsushi Enomoto <[email protected]>
  68. * XmlDictionaryReader.cs : implemented ReadFullStartElement (full??).
  69. 2009-03-18 Atsushi Enomoto <[email protected]>
  70. * XmlDictionaryReader.cs : implemented missing && understandable
  71. members.
  72. 2009-03-02 Chris Toshok <[email protected]>
  73. * XmlBinaryDictionaryReader.cs, XmlSimpleDictionaryReader.cs: 2.1
  74. has HasValue.
  75. 2009-02-13 Jonathan Pryor <[email protected]>
  76. * UniqueId.cs: Remove most [MonoTODO]s and NotImplementedExceptions.
  77. Revert the 2009-02-12 UniqueId.IsGuid "fix", as .NET says that
  78. new UniqueId(new Guid()).IsGuid==false (which makes no sense, as
  79. .ToString() on the same instance includes the "urn:uuid:" prefix,
  80. which is used by Guids...).
  81. 2009-02-13 Jonathan Pryor <[email protected]>
  82. * XmlDictionaryWriter.cs: Implement WriteValue(IStreamProvider).
  83. 2009-02-13 Jonathan Pryor <[email protected]>
  84. * XmlDictionaryWriter.cs: Implement
  85. WriteTextNode(XmlDictionaryReader,bool). This requires changes to
  86. WriteNode(), as testing had determined that WriteTextNode() is used
  87. instead of WriteString() for Text nodes and attribute values when
  88. called via WriteNode().
  89. 2009-02-12 Jonathan Pryor <[email protected]>
  90. * XmlDictionaryWriter.cs: Implement WriteValue(Guid),
  91. WriteValue(TimeSpan), WriteValue(UniqueId).
  92. * UniqueId.cs: Fix UniqueId.IsGuid, as `new UniqueId(new Guid())` was
  93. previously being detected as a string value, not a Guid value.
  94. 2009-02-12 Jonathan Pryor <[email protected]>
  95. * XmlDictionaryWriter.cs (WriteStartElement): Add parameter checking
  96. and default arguments to avoid NullReferenceExceptions.
  97. 2009-02-11 Jonathan Pryor <[email protected]>
  98. * XmlDictionaryString.cs: Add constructor argument checking.
  99. 2009-02-10 Jonathan Pryor <[email protected]>
  100. * IFragmentCapableXmlDictionaryWriter.cs: Added.
  101. 2008-09-09 Atsushi Enomoto <[email protected]>
  102. Jb Evain <[email protected]>
  103. * XmlBinaryDictionaryReader.cs, XmlSimpleDictionaryReader.cs:
  104. add support to build on the net_2_1 profile.
  105. 2008-04-10 Eyal Alaluf <[email protected]>
  106. * XmlBinaryDictionaryWriter.cs: WriteXmlnsAttribute generates a prefix
  107. when given a null prefix.
  108. 2008-03-22 Atsushi Enomoto <[email protected]>
  109. * XmlBinaryDictionaryReader.cs :
  110. - It didn't clean namespaces up during Read().
  111. - Non-typed attribute nodes should be allowed in get_Value().
  112. - Fixed wrong namespace scope push.
  113. 2008-02-27 Eyal Alaluf <[email protected]>
  114. * XmlBinaryDictionaryReader.cs: Handle compilation warnings.
  115. * XmlSimpleDictionaryReader.cs: Added onClose handling.
  116. * XmlDictionaryReader.cs: Simple implementation of CreateTextReader.
  117. 2008-02-08 Atsushi Enomoto <[email protected]>
  118. * XmlDictionaryWriter.cs : Even with UTF8 (marked) .net does not
  119. output BOMs, so use always unmarked utf8 for any UTF8 encodings.
  120. 2008-02-08 Atsushi Enomoto <[email protected]>
  121. * XmlDictionaryWriter.cs : Since it does not support XML declaration
  122. its encoding is limited to utf16 and utf8. Null argument check.
  123. 2007-11-27 Atsushi Enomoto <[email protected]>
  124. * XmlDictionaryWriter.cs : WriteNode() is override, not new.
  125. 2007-07-27 Atsushi Enomoto <[email protected]>
  126. * XmlDictionaryWriter.cs : store Depth for dummy prefix output.
  127. WriteXmlnsAttribute() writes dummy prefix when null prefix is given.
  128. * XmlSimpleDictionaryWriter.cs, XmlBinaryDictionaryWriter.cs :
  129. increment Depth on WriteStartElement() and decrement it on
  130. WriteEndElement(). They don't have to be complete, just fine as
  131. long as it correctly creates a dummy.
  132. 2007-04-02 Atsushi Enomoto <[email protected]>
  133. * XmlBinaryFormat.cs : added Base64Fixed (0xA0).
  134. * XmlBinaryDictionaryReader.cs : support 0xA0 type above.
  135. ReadInt() refactoring. Handle float and double value types.
  136. 2007-03-30 Atsushi Enomoto <[email protected]>
  137. * XmlBinaryDictionaryReader.cs :
  138. implemented some ReadContentAs[Type]() methods.
  139. * XmlDictionaryReader.cs :
  140. Added Read[[Element]ContentAs]String() implementations.
  141. * XmlDictionaryReaderAutoGen.cs : regenerated
  142. 2007-03-20 Atsushi Enomoto <[email protected]>
  143. * XmlDictionaryReader.cs : simply return false for
  144. TryGet[Base64|Array]Length().
  145. * XmlBinaryDictionaryReader.cs : Value string should be pupulated
  146. for typed value nodes.
  147. 2007-03-19 Atsushi Enomoto <[email protected]>
  148. * XmlDictionaryReader.cs : more ongoing updates (valuetype support,
  149. key support updates, ReadElementContentAsBase64).
  150. 2007-03-19 Atsushi Enomoto <[email protected]>
  151. * XmlBinaryFormat.cs, XmlBinaryDictionaryWriter.cs :
  152. support following operators; 0x80 (integer 0), 0x82 (integer 1) and
  153. 0xAE (UniqueId which is created from Guid).
  154. Little fix for length output.
  155. 2007-03-16 Atsushi Enomoto <[email protected]>
  156. * XmlDictionaryReader.cs : fix infinite loop.
  157. 2007-03-16 Atsushi Enomoto <[email protected]>
  158. * XmlDictionaryReader.cs : added couple of missing methods.
  159. 2007-03-16 Atsushi Enomoto <[email protected]>
  160. * XmlDictionaryReaderAutoGen.cs : regenerated.
  161. 2007-03-16 Atsushi Enomoto <[email protected]>
  162. * XmlBinaryDictionaryReader.cs : ongoing updates to the 3.0 RTM
  163. format.
  164. 2007-03-16 Atsushi Enomoto <[email protected]>
  165. * XmlBinaryDictionaryWriter.cs : for XmlWriterBinarySession lookup,
  166. internal dictionary lookup should be string-based, since otherwise
  167. it will never return correct dictionary string stored when the
  168. dictionary string is from another dictionary.
  169. * XmlBinaryWriterSession.cs :
  170. TryLookup() is now based on string value comparison.
  171. Reverted internal dictionary to int->XmlDictionaryString form,
  172. as I don't use TryGetValue() anymore.
  173. 2007-03-16 Atsushi Enomoto <[email protected]>
  174. * XmlBinaryDictionaryWriter.cs : WriteValue(Decimal) is working now.
  175. 2007-03-15 Atsushi Enomoto <[email protected]>
  176. * XmlBinaryFormat.cs : new file, collection of constants.
  177. * XmlBinaryDictionaryWriter.cs :
  178. Stream->BinaryWriter. Support for WriteValue() for almost all
  179. types.
  180. 2007-03-15 Atsushi Enomoto <[email protected]>
  181. * XmlDictionaryWriter.cs : removed couple of MonoTODOs.
  182. 2007-03-15 Atsushi Enomoto <[email protected]>
  183. * XmlBinaryDictionaryWriter.cs : more couple of fixes (typed value
  184. support and fixes, more element/attribute namespace fixes etc.).
  185. 2007-03-15 Atsushi Enomoto <[email protected]>
  186. * XmlBinaryDictionaryWriter.cs : fixed Base64 operation byte.
  187. For comment node there is no corresponding combined EndElement
  188. operation, so don't try to combine it.
  189. Don't output xmlns and xml namespaces.
  190. 2007-03-15 Atsushi Enomoto <[email protected]>
  191. * XmlBinaryDictionaryWriter.cs : fixed couple of dictionary string
  192. issues (on lookup and index output).
  193. * XmlBinaryWriterSession.cs : added internal TryLookup(). Changed
  194. internal structure to have dictionary string as a key.
  195. 2007-03-15 Atsushi Enomoto <[email protected]>
  196. * XmlBinaryDictionaryWriter.cs : new prefix population is needed
  197. in this class too.
  198. 2007-03-15 Atsushi Enomoto <[email protected]>
  199. * XmlBinaryDictionaryWriter.cs : more WriteEndAttribute() is needed.
  200. Remove wrong namespaceUri index output. Fixed attribute operation.
  201. 2007-03-15 Atsushi Enomoto <[email protected]>
  202. * XmlBinaryDictionaryWriter.cs : output attribute value.
  203. 2007-03-15 Atsushi Enomoto <[email protected]>
  204. * XmlBinaryDictionaryWriter.cs : for binary output format requirement,
  205. every content must be buffered once and wait for next operation so
  206. that if the content is one of the content sequence or not. This is
  207. almost silly, but that is what Microsoft wanted to do.
  208. 2007-03-15 Atsushi Enomoto <[email protected]>
  209. * XmlBinaryDictionaryWriter.cs : couple of namespaces processing fix.
  210. 2007-03-15 Atsushi Enomoto <[email protected]>
  211. * XmlDictionaryWriter.cs : WriteAttributeString and WriteStartElement
  212. should also delegate to dictionary-string based methods.
  213. * XmlBinaryDictionaryWriter.cs : ongoing reimplementation as it was
  214. based on pretty old design as well as pretty old XmlTextWriter.
  215. 2007-03-14 Atsushi Enomoto <[email protected]>
  216. * XmlBinaryWriterSession.cs : implemented.
  217. * XmlBinaryDictionaryWriter.cs : a bunch of updates.
  218. 2007-03-14 Atsushi Enomoto <[email protected]>
  219. * UniqueId.cs : hacky Equals() implementation.
  220. * XmlDictionaryReaderQuotas.cs : removed Default and fixed Max.
  221. * XmlSimpleDictionaryWriter.cs : in .NET 3.0 RTM, it is supported.
  222. * XmlDictionaryWriter.cs : WriteStartElement(XmlDictionaryString,
  223. XmlDictionaryString) should call WriteStartElement(string,
  224. XmlDictionaryString,XmlDictionaryString) since because only the
  225. latter is overridable and possible to provide dictionary string.
  226. 2007-03-09 Atsushi Enomoto <[email protected]>
  227. * XmlDictionaryReader.cs : make it partial. Fill Quotas when requested.
  228. * XmlDictionaryReaderAutoGen.cs : added autogenerated array reader
  229. methods.
  230. * XmlDictionaryWriter.cs : make it partial.
  231. * XmlDictionaryWruterAutoGen.cs : added autogenerated array writer
  232. methods.
  233. 2006-10-05 Atsushi Enomoto <[email protected]>
  234. * XmlBinaryDictionaryReader.cs, XmlSimpleDictionaryReader.cs :
  235. implement IXmlNamespaceResolver.
  236. 2006-07-31 Ankit Jain <[email protected]>
  237. * UniqueId.cs (.ctor): (string overload) Implement.
  238. (ToString): Prepend "urn:uuid:" instead of "uuid-".
  239. 2006-07-31 Atsushi Enomoto <[email protected]>
  240. * UniqueId.cs : some implementation.
  241. 2006-07-04 Atsushi Enomoto <[email protected]>
  242. * XmlDictionaryWriter.cs, XmlSimpleDictionaryWriter.cs,
  243. XmlDictionaryReaderQuotas.cs : June CTP API update.
  244. 2006-07-04 Atsushi Enomoto <[email protected]>
  245. * XmlBinaryDictionaryReader.cs, IStreamProvider.cs,
  246. XmlSimpleDictionaryReader.cs, IXmlMtomReaderInitializer.cs,
  247. XmlBinaryWriterSession.cs, IXmlUTF8ReaderInitializer.cs,
  248. IXmlMtomWriterInitializer.cs, XmlDictionaryReader.cs :
  249. June CTP API updates.
  250. 2006-01-17 Atsushi Enomoto <[email protected]>
  251. * XmlShimWriter.cs : deleted.
  252. * XmlBinaryDictionaryWriter.cs, XmlSimpleDictionaryWriter.cs :
  253. WriteProcessingInstruction() throws InvalidOperationException.
  254. 2005-11-28 Atsushi Enomoto <[email protected]>
  255. * XmlDictionaryReader.cs, XmlBinaryDictionaryWriter.cs,
  256. XmlDictionary.cs, XmlDictionaryWriter.cs, XmlC14NWriter.cs :
  257. several API fixes to Nov. CTP.
  258. 2005-11-03 Atsushi Enomoto <[email protected]>
  259. * XmlDictionaryReader.cs : CreateMtomReader() stubs.
  260. 2005-10-24 Atsushi Enomoto <[email protected]>
  261. * XmlBinaryDictionaryWriter.cs : use saved xml_lang and xml_space for
  262. those corresponding properties (they bork at the declaring element).
  263. 2005-10-24 Atsushi Enomoto <[email protected]>
  264. * UniqueId.cs : it does not compile.
  265. 2005-10-23 Duncan Mak <[email protected]>
  266. * UniqueId.cs (.ctor): Implement some overloads by chaining it to
  267. other Unimplemented ones.
  268. (operator ==, operator !=): Implemented using the Equals method.
  269. (Equals, TryGetGuid): Well, at least figure the false case....
  270. 2005-10-23 Atsushi Enomoto <[email protected]>
  271. * XmlDictionary.cs : fixed type of Empty.
  272. * XmlDictionaryReaderQuotas.cs : Default and Max were not readonly.
  273. 2005-10-05 Atsushi Enomoto <[email protected]>
  274. * XmlBinaryDictionaryReader.cs : and it can GetContext().
  275. 2005-10-05 Atsushi Enomoto <[email protected]>
  276. * XmlBinaryDictionaryWriter.cs :
  277. Fixed index for room-reserved attributes (0x22-0x3B).
  278. Added note on 0x9D.
  279. * XmlBinaryDictionaryReader.cs :
  280. Several fixes to get it work fine.
  281. 2005-10-05 Atsushi Enomoto <[email protected]>
  282. * XmlDictionary.cs : TryLookup() should use TryGetValue().
  283. Fixed incorrect upper bound check for TryLookup(int, out dictstr).
  284. * XmlBinaryDictionaryWriter.cs : Use 0x8B for empty string everywhere
  285. we use 0x83.
  286. 2005-10-04 Atsushi Enomoto <[email protected]>
  287. * XmlBinaryDictionaryReader.cs : new file for CreateBinaryReader().
  288. * XmlDictionaryReader.cs : use above.
  289. * XmlBinaryDictionaryWriter.cs : several fixes (renamed private
  290. fields, added more notes, and much more).
  291. 2005-10-04 Atsushi Enomoto <[email protected]>
  292. * XmlBinaryDictionaryWriter.cs :
  293. Added notes on dictionary string support inference. Fixed filename.
  294. 2005-10-04 Atsushi Enomoto <[email protected]>
  295. * XmlBinaryDictionaryWriter.cs : new file for CreateBinaryWriter().
  296. * XmlDictionaryWriter.cs : use above.
  297. 2005-10-03 Atsushi Enomoto <[email protected]>
  298. * XmlDictionaryWriter.cs : stubby WriteNode() impl.
  299. * XmlBinaryWriterSession.cs : tiny notes.
  300. 2005-10-03 Atsushi Enomoto <[email protected]>
  301. * XmlSimpleDictionaryWriter.cs : new file for CreateDictionaryWriter().
  302. Implemented simple XmlWriter functionality.
  303. * XmlDictionaryWriter.cs : use above.
  304. 2005-10-03 Atsushi Enomoto <[email protected]>
  305. * XmlDictionaryWriter.cs : implemented some members. Added more stubs.
  306. 2005-09-29 Duncan Mak <[email protected]>
  307. * XmlDictionaryWriter.cs (CreateBinaryWriter): Added stub.
  308. 2005-09-28 Duncan Mak <[email protected]>
  309. * XmlDictionaryWriter.cs (CreateDictionaryWriter): Added stub.
  310. 2005-09-27 Atsushi Enomoto <[email protected]>
  311. * XmlDictionaryReader.cs :
  312. Some member signature fixes.
  313. implemented CreateDictionaryReader().
  314. TryGetLocalNameAsDictionaryString() seems always returning false.
  315. IsLocalName() is not likely to use TryGet...() above.
  316. * XmlSimpleDictionaryReader.cs : for CreateDictionaryReader().
  317. 2005-09-26 Atsushi Enomoto <[email protected]>
  318. * XmlDictionaryString.cs, XmlDictionary.cs,
  319. XmlDictionaryReaderQuotas.cs, XmlDictionaryReader.cs:
  320. added some implementations.
  321. 2005-09-22 Atsushi Enomoto <[email protected]>
  322. * XmlDictionaryString.cs, XmlShimWriter.cs,
  323. IXmlBinaryWriterInitializer.cs, IXmlUTF8WriterInitializer.cs,
  324. XmlDictionaryWriter.cs, UniqueId.cs, XmlC14NWriter.cs,
  325. XmlDictionary.cs, OnXmlDictionaryReaderClose.cs,
  326. XmlBinaryReaderSession.cs, IXmlMtomReaderInitializer.cs,
  327. IXmlDictionary.cs, IXmlBinaryReaderInitializer.cs,
  328. XmlCanonicalWriter.cs, XmlBinaryWriterSession.cs,
  329. XmlDictionaryReaderQuotas.cs, IXmlUTF8ReaderInitializer.cs,
  330. IXmlMtomWriterInitializer.cs, XmlDictionaryReader.cs :
  331. #if NET_2_0. coding style was updated.
  332. 2005-09-22 Atsushi Enomoto <[email protected]>
  333. * IXmlBinaryReaderInitializer.cs
  334. IXmlBinaryWriterInitializer.cs
  335. IXmlDictionary.cs
  336. IXmlMtomReaderInitializer.cs
  337. IXmlMtomWriterInitializer.cs
  338. IXmlUTF8ReaderInitializer.cs
  339. IXmlUTF8WriterInitializer.cs
  340. OnXmlDictionaryReaderClose.cs
  341. UniqueId.cs
  342. XmlBinaryReaderSession.cs
  343. XmlBinaryWriterSession.cs
  344. XmlC14NWriter.cs
  345. XmlCanonicalWriter.cs
  346. XmlDictionary.cs
  347. XmlDictionaryReader.cs
  348. XmlDictionaryReaderQuotas.cs
  349. XmlDictionaryString.cs
  350. XmlDictionaryWriter.cs
  351. XmlShimWriter.cs : new files.