ChangeLog 16 KB

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