ChangeLog 12 KB

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