ChangeLog 40 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263
  1. 2003-01-08 Atsushi Enomoto <[email protected]>
  2. * XmlTextReader.cs : bugfix for attributes related to creation of
  3. XmlAttribute *node*.
  4. 2003-01-08 Atsushi Enomoto <[email protected]>
  5. * XmlTextReader.cs : bugfix for attribute values which have entity
  6. references.
  7. 2002-12-28 Ville Palo <[email protected]>
  8. * XmlDocument.cs: XmlTextWriter.Formatting == Indented when
  9. calling Save () -methods.
  10. 2002-12-28 Atsushi Enomoto <[email protected]>
  11. * XmlNodeReader.cs : primitive reading implementation.
  12. 2002-12-28 Atsushi Enomoto <[email protected]>
  13. * XmlElement.cs : quick fix for the incomplete patch of #35308 below.
  14. 2002-12-28 Atsushi Enomoto <[email protected]>
  15. * XmlDocument.cs : removed inconsistent line-feed output.
  16. * XmlElement.cs, XmlTextWriter.cs :
  17. fixed for bugzilla 35308 (default ns output)
  18. * XmlWhitespace.cs : limited output only when preserving whitespace.
  19. 2002-12-24 Atsushi Enomoto <[email protected]>
  20. * XmlAttribute.cs, XmlDocument.cs, XmlTextReader.cs:
  21. Implemented XmlTextReader.ReadAttributeValue().
  22. Added internal ReadAttributeNodeValue().
  23. Fixed XmlAttribute.InnerXml to use these methods.
  24. * XmlDocument.cs, XmlDocumentFragment.cs, XmlElement.cs, XmlNode.cs:
  25. Implemented XmlDocument.ReadNode() and removed ConstructDOM().
  26. Other changes are replacing them.
  27. 2002-12-24 Atsushi Enomoto <[email protected]>
  28. * XmlDocument.cs: patch by Ville (fixed default PreserveWhitespace)
  29. 2002-12-21 Atsushi Enomoto <[email protected]>
  30. * XmlElement.cs, XmlTextWriter.cs, XmlWriter.cs:
  31. patch by JD Conley <[email protected]>.
  32. (Fix for xmlns attribute output.)
  33. 2002-12-05 Ville Palo <[email protected]>
  34. * XmlQualifiedName.cs: Little fix to ToString () -method
  35. 2002-12-04 Tim Haynes <[email protected]>
  36. * class/System.XML/System.Xml/XmlElement.cs: Made more refined
  37. checks on attributeNode to fix 32262.
  38. 2002-12-03 Atsushi Enomoto <[email protected]>
  39. * XmlDocument.cs (CreateNavigator(XmlNode)) : reverted
  40. * XmlTextWriter.cs (WriteStartElementInternal):
  41. fixed when default namespace was specified, all descendants
  42. fail to omit the default namespace declarations.
  43. * XmlAttribute.cs,
  44. XmlDocument.cs,
  45. XmlNode.cs (internal XmlLang/XmlSpace) : implemented(defined)
  46. * XmlAttribute.cs,
  47. XmlDocumentFragment.cs,
  48. XmlElement.cs (set_InnerXml): now uses XmlLang/XmlSpace
  49. * XmlElement.cs (set_IsEmpty) : implemented
  50. (WriteTo) : removed my improper indenting (Writer already done)
  51. * XmlNode.cs (BaseURI) : fixed if ParentNode is null, NullPointerEx
  52. (ConstructDOM) : implemented when xmlReader isn't XmlTextReader
  53. ...and renamed XmlDocument.ConventionalParser to ReusableReader ;-)
  54. 2002-12-01 Atsushi Enomoto <[email protected]>
  55. * XmlNode.cs (RemoveChild):
  56. bugfixed when XmlNode is Document OwnerDocument is null
  57. * XmlDeclaration.cs (Value):
  58. bugfixed regular expression pattern.
  59. * XmlDocument.cs (CreateNavigator): bugfixed access modifier.
  60. 2002-11-24 Duncan Mak <[email protected]>
  61. * XmlImplementation.cs (HasFeature): Fixed a typo. Thanks for
  62. Fabricio Barros Cabral (fx) on #mono for spotting it. This is his
  63. first patch to Mono! ;-)
  64. 2002-11-19 Gonzalo Paniagua Javier <[email protected]>
  65. * XmlNode.cs:
  66. (AppendChild): readded refChild != null condition before throwing
  67. "cannot insert this node in this position" exception. There's probably
  68. a better solution. Fixes #34191.
  69. (RemoveAll): changed following Atsushi instructions.
  70. 2002-11-13 Duncan Mak <[email protected]>
  71. * XmlElement.cs (IsEmpty): A temporary check-in to keep gtk-sharp
  72. compiling.
  73. 2002-11-14 Atsushi Enomoto <[email protected]>
  74. * XmlDocument.cs : unified all constructors, added ConventionalParser,
  75. implemented CloneNode() and CreateEntityReference(),
  76. * XmlEntityReference.cs : set_Value, WriteContentTo, WriteTo
  77. set BaseURI to MonoTODO
  78. * XmlNode.cs : implemented PrependChild, modified ConstructDOM,
  79. bugfix InsertAfter (incorrect prepending) and InsertBefore
  80. (more than one DocumentElements hadn't caused errors)
  81. * XmlTextReader.cs : unified all constructors,
  82. added internal SetReaderContext(), SetReaderFragment()
  83. bugfix (syntax check of PUBLIC / getting internal subset)
  84. 2002-11-13 Atsushi Enomoto <[email protected]>
  85. XmlAttribute.cs : set_InnerText, set_InnerXml, some check for set_Prefix
  86. XmlAttributeCollection.cs : (indexer) this[localName, namespaceURI]
  87. XmlCharacterData.cs : exchanged Data and Value
  88. (for processing events and inheritance)
  89. XmlDocumentFragment.cs : set_InnerXml
  90. XmlSignificantWhitespace.cs : set_Value
  91. XmlTextReader.cs : ReadAttributeValue
  92. 2002-11-04 Atsushi Enomoto <[email protected]>
  93. XmlAttribute.cs: fixed missing internal 'OwnerElement''SetOwnerElement'
  94. 2002-11-03 Atsushi Enomoto <[email protected]>
  95. * XmlAttributeCollection.cs : checks owner element.
  96. implemented CopyTo, InsertAfter, InsertBefore, Prepend,
  97. Remove, RemoveAt, SetNamedItem.
  98. removed some logics that sets 'Parent' (that should be null)
  99. * XmlDocument.cs : set_InnerXml, [PreserveWhitespace(incomplete)]
  100. * XmlDocumentFragment.cs : get_InnerXml, WriteContentTo, WriteTo
  101. * XmlElement.cs : implemented WriteTo, set_InnerText.
  102. Fixed WriteTo() to add xmlns:* attributes when
  103. writer.LookupPrefix() returned mismatching.
  104. * XmlNamedNodeMap.cs : compare not only name but localname and nsuri.
  105. Removing different prefixes for the same uri now runs correct.
  106. added SetNamedItem(XmlNode node, int position_to_insert).
  107. * XmlNode.cs : ConstructDOM (logically) creates XmlEntityReference,
  108. XmlWhitespace, and XmlSignificantWhitespace
  109. 2002-10-31 Atsushi Enomoto <[email protected]>
  110. * XmlDocument.cs : implemented CreateDocumentFragment()
  111. * XmlElement.cs, XmlLinkedNode.cs :
  112. moved LastLinkedChild from XmlElement to XmlLinkedNode.
  113. * XmlEntityReference.cs : must throw NotImplementedException.
  114. * XmlNode.cs :
  115. + implemented InsertBefore() and then implemented InsertAfter()
  116. and modified AppendChild() to call it.
  117. + added logic to check ReadOnly, parent document equivalence,
  118. and inserting any 'content' before/after DocumentElement.
  119. + implemented Clone() [it is equals to CloneNode() by MS doc.]
  120. + added logic in RemoveChild() to check parent of oldChild.
  121. + fixed ConstructNamespaceManager() to internal only.
  122. 2002-10-29 Atsushi Enomoto <[email protected]>
  123. * XmlAttribute.cs : add internal 'IsDefault' property
  124. (equals to !Specified)
  125. * XmlImplementation.cs : added 'internalNameTable' property.
  126. * XmlDocument.cs :
  127. + now allows "" for 'standalone' in CreateXmlDeclaration.
  128. + implemented 'Implementation' property and constructor with it.
  129. + added logic for appending name table (but still no use)
  130. + implemented property 'DocumentType'
  131. (but without internalSubset parsing. wait for next update.)
  132. * XmlNode.cs :
  133. + modified AppendChild() and RemoveChild() to support fragment.
  134. + modified AppendChild() to remove newChild from its parent
  135. when newChild is already in the other place.
  136. + modified RemoveChild() to set parentNode null.
  137. + modified ConstructDOM() to create DocumentType,
  138. and fixed access modifier ('internal protected' to 'internal')
  139. * XmlLinkedNode.cs : fixed 'NextSibling' to return null
  140. when its parent is null.
  141. * XmlDocumentFragment.cs : added internal override 'LastLinkedChild'
  142. property to enable AppendChild() for this class.
  143. * XmlTextReader.cs : appended private publicId and systemId fields.
  144. 2002-10-28 Gonzalo Paniagua Javier <[email protected]>
  145. * XmlTextReader.cs: make it work when the underlying Stream is not
  146. 'seekable'.
  147. 2002-10-26 Piers Haken <[email protected]>
  148. * XmlNode.cs: add virtual property XPathNodeType
  149. * XmlAttribute.cs:
  150. * XmlComment.cs:
  151. * XmlDocument.cs:
  152. * XmlElement.cs::
  153. * XmlProcessingInstruction.cs:
  154. * XmlSignificantWhitespace.cs:
  155. * XmlText.cs:
  156. * XmlWhitespace.cs: implement XPathNodeType property
  157. * XmlDocumentNavigator.cs: use XPathNodeType property instead of switch
  158. 2002-10-26 Piers Haken <[email protected]>
  159. * XmlDocumentNavigator.cs: return invalid XPathNodeType (-1) for unknown node types.
  160. 2002-10-23 Gonzalo Paniagua Javier <[email protected]>
  161. * XmlTextReader.cs: don't increment depth for entity references.
  162. 2002-10-22 Tim Haynes <[email protected]>
  163. * - Fixed the duplication of xmlns:xx = yy when serializing the
  164. XML for serialization
  165. Fixed the unnecessary parsing/serializing when adding assemblies
  166. for serialization
  167. Avoided setting the XmlNode.InnerXml property
  168. (as it's not implemented)
  169. Fixed the usage/implementation of
  170. XmlElement.GetElementsByTagName()
  171. 2002-10-21 Duncan Mak <[email protected]>
  172. * XmlDocument.cs:
  173. * XmlElement.cs:
  174. * XmlNode.cs:
  175. * XmlTextReader.cs: Implementation for XmlNode.InnerXml from
  176. Atsushi Enomoto <[email protected]>.
  177. 2002-10-18 Duncan Mak <[email protected]>
  178. * XmlDocument.cs: Applied a patch by Atsushi Enomoto
  179. <[email protected]>.
  180. 2002-10-12 A.Enomoto <[email protected]>
  181. * XmlDocument.cs (ImportNode): Implemented
  182. 2002-10-06 Gonzalo Paniagua Javier <[email protected]>
  183. * XmlDocument.cs: one more Load method implemented.
  184. * XmlTextReader.cs: Depth now works.
  185. 2002-09-22 Gonzalo Paniagua Javier <[email protected]>
  186. * XmlConvert.cs: IsInvalid is now internal.
  187. * XmlNamespaceManager.cs: implemented RemoveNamespace
  188. * XmlTextReader.cs: return BaseURI and Encoding from the parser.
  189. * XmlTextWriter.cs: implemented WriteName and WriteNmToken.
  190. 2002-09-19 Matt Hunter <[email protected]>
  191. * XmlElement.cs: Implementing SetAttributeNode(localName,namespaceURI)
  192. * XmlAttributeCollection.cs: Implemented Append (XmlAttribute)
  193. 2002-09-19 Gonzalo Paniagua Javier <[email protected]>
  194. * XmlConvert.cs: finished implementation.
  195. * XmlTextReader.cs: fixed #30239.
  196. * XmlTextWriter.cs: fixed #30240.
  197. 2002-09-15 Gonzalo Paniagua Javier <[email protected]>
  198. * XmlTextReader.cs: line and position begin with 1.
  199. 2002-09-13 Gonzalo Paniagua Javier <[email protected]>
  200. * XmlException.cs: added a new internal constructor for IXmlLineInfo
  201. and output line and position info in Message.
  202. * XmlReader.cs: implemented missing bits.
  203. 2002-09-12 Piers Haken <[email protected]>
  204. * XmlDocumentNavigator.cs: implement MoveToId()
  205. 2002-09-05 Gonzalo Paniagua Javier <[email protected]>
  206. * XmlTextWriter.cs: fixed bug #29886.
  207. 2002-08-26 Ravi Pratap <[email protected]>
  208. * XmlAttribute.cs (InnerText): Implement getting this property.
  209. * XmlNode.cs (InnerText): Ensure that we append only values of
  210. text nodes.
  211. 2002-08-26 Gonzalo Paniagua Javier <[email protected]>
  212. * XmlWriter.cs: made ws and namespaceManager protected. mcs has a bug
  213. that allowed compiling this.
  214. [ FIXME: filed bug #29435. mcs should have failed on this ]
  215. 2002-08-25 Tim Coleman <[email protected]>
  216. * XmlNode.cs:
  217. Change CreateNavigator to not be virtual.
  218. * XmlElement.cs:
  219. Add set_Prefix and InnerText accessors.
  220. * XmlEntityReference.cs:
  221. Add set_Value accessor.
  222. * XmlTextWriter.cs:
  223. Make objects which should be private private.
  224. * XmlWriter.cs:
  225. Remove WriteStartElementInternal abstract definition.
  226. * XmlValidatingReader.cs:
  227. New stubs added.
  228. 2002-08-22 Jason Diamond <[email protected]>
  229. * XmlAttributeCollection.cs, XmlElement.cs: Implementation of RemoveAll
  230. and RemoveAllAttributes courtesy of Matt Hunter <[email protected]>.
  231. 2002-08-22 Jason Diamond <[email protected]>
  232. * XmlElement.cs: Correction to previous GetElementsByTagName patch
  233. courtesy of Matt Hunter <[email protected]>.
  234. 2002-08-22 Jason Diamond <[email protected]>
  235. * XmlDocument.cs, XmlElement.cs: Added implementation of namepsace
  236. qualified GetElementsByTagName courtesy of Matt Hunter
  237. <[email protected]>.
  238. 2002-08-19 Jason Diamond <[email protected]>
  239. * XmlDocument.cs, XmlElement.cs: Added implementation of
  240. GetElementsByTagName courtesy of Matt Hunter <[email protected]>.
  241. 2002-08-16 Jason Diamond <[email protected]>
  242. * XmlElement.cs: Fixed writing out qualified elements courtesy of
  243. Marcus Bürgel <[email protected]>.
  244. 2002-08-13 Tim Coleman <[email protected]>
  245. * XmlTextWriter.cs:
  246. Partial implementation of WriteQualifiedName ().
  247. 2002-08-07 Kral Ferch <[email protected]>
  248. * XmlCharacterData.cs: Implemented AppendData(), DeleteData(),
  249. InsertData(), and ReplaceData(). These methods fire the
  250. NodeChanging and NodeChanged events.
  251. * XmlDocument.cs: Fixed bugs in onNodeChanged() and onNodeChanging().
  252. * XmlNode.cs: AppendChild() fires NodeInserting and NodeInserted events.
  253. RemoveAll() and RemoveChild() fire NodeRemoving and NodeRemoved events.
  254. 2002-08-03 Tim Coleman <[email protected]>
  255. * XmlNamespaceManager.cs:
  256. .Net allows the empty namespace to be redefined
  257. at a later point, but the current implementation
  258. did not. This fixes a hashtable conflict.
  259. 2002-07-26 Tim Coleman <[email protected]>
  260. * XmlTextWriter.cs:
  261. When given a textwriter, check to see if it has a
  262. null encoding. This was being done for other inputs
  263. than a textwriter.
  264. Wed Jul 24 13:16:19 CEST 2002 Paolo Molaro <[email protected]>
  265. * XmlTextReader.cs: rough line/column support.
  266. 2002-07-23 Duncan Mak <[email protected]>
  267. * XmlConvert.cs: Implement the ToDateTime method. ToDateTime
  268. (string, string []) is particularly strange.
  269. * XmlException.cs: Remember to call the base serialization
  270. constructor.
  271. * XmlNodeReader.cs: Keep a new variable to store the Depth.
  272. 2002-07-14 Jason Diamond <[email protected]>
  273. * XmlAttribute.cs: Removed ownerElement field since we can reuse
  274. parentNode field.
  275. * XmlDocumentNavigator.cs: MoveToParent now moves to the OwnerElement
  276. if the current node is an attribute.
  277. * XmlElement.cs: SetAttributeNode now sets the new attribute's
  278. owner element.
  279. 2002-07-12 Jason Diamond <[email protected]>
  280. * XmlDocument.cs: If null was passed in for prefix or namespaceURI when
  281. creating an element, use String.Empty instead.
  282. 2002-07-12 Piers Haken <[email protected]>
  283. * XmlAttributeCollection.cs: implement some ItemOf indexers
  284. * XmlNamedNodeMap.cs: add internal 'Nodes' accessor for the nodeList field
  285. * XmlNode.cs: SelectNodes: return empty XmlNodeList, not null
  286. 2002-07-06 Ajay kumar Dwivedi <[email protected]>
  287. 2002-10-26 Piers Haken <[email protected]>
  288. * XmlDocumentNavigator.cs: return invalid XPathNodeType (-1) for unknown node types.
  289. 2002-10-23 Gonzalo Paniagua Javier <[email protected]>
  290. * XmlTextReader.cs: don't increment depth for entity references.
  291. 2002-10-22 Tim Haynes <[email protected]>
  292. * - Fixed the duplication of xmlns:xx = yy when serializing the
  293. XML for serialization
  294. Fixed the unnecessary parsing/serializing when adding assemblies
  295. for serialization
  296. Avoided setting the XmlNode.InnerXml property
  297. (as it's not implemented)
  298. Fixed the usage/implementation of
  299. XmlElement.GetElementsByTagName()
  300. 2002-10-21 Duncan Mak <[email protected]>
  301. * XmlDocument.cs:
  302. * XmlElement.cs:
  303. * XmlNode.cs:
  304. * XmlTextReader.cs: Implementation for XmlNode.InnerXml from
  305. Atsushi Enomoto <[email protected]>.
  306. 2002-10-18 Duncan Mak <[email protected]>
  307. * XmlDocument.cs: Applied a patch by Atsushi Enomoto
  308. <[email protected]>.
  309. 2002-10-12 A.Enomoto <[email protected]>
  310. * XmlDocument.cs (ImportNode): Implemented
  311. 2002-10-06 Gonzalo Paniagua Javier <[email protected]>
  312. * XmlDocument.cs: one more Load method implemented.
  313. * XmlTextReader.cs: Depth now works.
  314. 2002-09-22 Gonzalo Paniagua Javier <[email protected]>
  315. * XmlConvert.cs: IsInvalid is now internal.
  316. * XmlNamespaceManager.cs: implemented RemoveNamespace
  317. * XmlTextReader.cs: return BaseURI and Encoding from the parser.
  318. * XmlTextWriter.cs: implemented WriteName and WriteNmToken.
  319. 2002-09-19 Matt Hunter <[email protected]>
  320. * XmlElement.cs: Implementing SetAttributeNode(localName,namespaceURI)
  321. * XmlAttributeCollection.cs: Implemented Append (XmlAttribute)
  322. 2002-09-19 Gonzalo Paniagua Javier <[email protected]>
  323. * XmlConvert.cs: finished implementation.
  324. * XmlTextReader.cs: fixed #30239.
  325. * XmlTextWriter.cs: fixed #30240.
  326. 2002-09-15 Gonzalo Paniagua Javier <[email protected]>
  327. * XmlTextReader.cs: line and position begin with 1.
  328. 2002-09-13 Gonzalo Paniagua Javier <[email protected]>
  329. * XmlException.cs: added a new internal constructor for IXmlLineInfo
  330. and output line and position info in Message.
  331. * XmlReader.cs: implemented missing bits.
  332. 2002-09-12 Piers Haken <[email protected]>
  333. * XmlDocumentNavigator.cs: implement MoveToId()
  334. 2002-09-05 Gonzalo Paniagua Javier <[email protected]>
  335. * XmlTextWriter.cs: fixed bug #29886.
  336. 2002-08-26 Ravi Pratap <[email protected]>
  337. * XmlAttribute.cs (InnerText): Implement getting this property.
  338. * XmlNode.cs (InnerText): Ensure that we append only values of
  339. text nodes.
  340. 2002-08-26 Gonzalo Paniagua Javier <[email protected]>
  341. * XmlWriter.cs: made ws and namespaceManager protected. mcs has a bug
  342. that allowed compiling this.
  343. [ FIXME: filed bug #29435. mcs should have failed on this ]
  344. 2002-08-25 Tim Coleman <[email protected]>
  345. * XmlNode.cs:
  346. Change CreateNavigator to not be virtual.
  347. * XmlElement.cs:
  348. Add set_Prefix and InnerText accessors.
  349. * XmlEntityReference.cs:
  350. Add set_Value accessor.
  351. * XmlTextWriter.cs:
  352. Make objects which should be private private.
  353. * XmlWriter.cs:
  354. Remove WriteStartElementInternal abstract definition.
  355. * XmlValidatingReader.cs:
  356. New stubs added.
  357. 2002-08-22 Jason Diamond <[email protected]>
  358. * XmlAttributeCollection.cs, XmlElement.cs: Implementation of RemoveAll
  359. and RemoveAllAttributes courtesy of Matt Hunter <[email protected]>.
  360. 2002-08-22 Jason Diamond <[email protected]>
  361. * XmlElement.cs: Correction to previous GetElementsByTagName patch
  362. courtesy of Matt Hunter <[email protected]>.
  363. 2002-08-22 Jason Diamond <[email protected]>
  364. * XmlDocument.cs, XmlElement.cs: Added implementation of namepsace
  365. qualified GetElementsByTagName courtesy of Matt Hunter
  366. <[email protected]>.
  367. 2002-08-19 Jason Diamond <[email protected]>
  368. * XmlDocument.cs, XmlElement.cs: Added implementation of
  369. GetElementsByTagName courtesy of Matt Hunter <[email protected]>.
  370. 2002-08-16 Jason Diamond <[email protected]>
  371. * XmlElement.cs: Fixed writing out qualified elements courtesy of
  372. Marcus Bürgel <[email protected]>.
  373. 2002-08-13 Tim Coleman <[email protected]>
  374. * XmlTextWriter.cs:
  375. Partial implementation of WriteQualifiedName ().
  376. 2002-08-07 Kral Ferch <[email protected]>
  377. * XmlCharacterData.cs: Implemented AppendData(), DeleteData(),
  378. InsertData(), and ReplaceData(). These methods fire the
  379. NodeChanging and NodeChanged events.
  380. * XmlDocument.cs: Fixed bugs in onNodeChanged() and onNodeChanging().
  381. * XmlNode.cs: AppendChild() fires NodeInserting and NodeInserted events.
  382. RemoveAll() and RemoveChild() fire NodeRemoving and NodeRemoved events.
  383. 2002-08-03 Tim Coleman <[email protected]>
  384. * XmlNamespaceManager.cs:
  385. .Net allows the empty namespace to be redefined
  386. at a later point, but the current implementation
  387. did not. This fixes a hashtable conflict.
  388. 2002-07-26 Tim Coleman <[email protected]>
  389. * XmlTextWriter.cs:
  390. When given a textwriter, check to see if it has a
  391. null encoding. This was being done for other inputs
  392. than a textwriter.
  393. Wed Jul 24 13:16:19 CEST 2002 Paolo Molaro <[email protected]>
  394. * XmlTextReader.cs: rough line/column support.
  395. 2002-07-23 Duncan Mak <[email protected]>
  396. * XmlConvert.cs: Implement the ToDateTime method. ToDateTime
  397. (string, string []) is particularly strange.
  398. * XmlException.cs: Remember to call the base serialization
  399. constructor.
  400. * XmlNodeReader.cs: Keep a new variable to store the Depth.
  401. 2002-07-14 Jason Diamond <[email protected]>
  402. * XmlAttribute.cs: Removed ownerElement field since we can reuse
  403. parentNode field.
  404. * XmlDocumentNavigator.cs: MoveToParent now moves to the OwnerElement
  405. if the current node is an attribute.
  406. * XmlElement.cs: SetAttributeNode now sets the new attribute's
  407. owner element.
  408. 2002-07-12 Jason Diamond <[email protected]>
  409. * XmlDocument.cs: If null was passed in for prefix or namespaceURI when
  410. creating an element, use String.Empty instead.
  411. 2002-07-12 Piers Haken <[email protected]>
  412. * XmlAttributeCollection.cs: implement some ItemOf indexers
  413. * XmlNamedNodeMap.cs: add internal 'Nodes' accessor for the nodeList field
  414. * XmlNode.cs: SelectNodes: return empty XmlNodeList, not null
  415. 2002-07-06 Ajay kumar Dwivedi <[email protected]>
  416. * XmlTextWriter: Fixed Indentation. IndentationOverridden should
  417. not be set when inside a attribute.
  418. 2002-07-06 Ajay kumar Dwivedi <[email protected]>
  419. * XmlTextWriter: In WriteStartElement, if namespace is null and
  420. prefix is null|empty do not write out xmlns=""
  421. * XmlWriter: WriteStartElement calls the virtual method with null
  422. argument instead of empty string.
  423. 2002-07-05 Gonzalo Paniagua Javier <[email protected]>
  424. * XmlTextReader.cs: implemented .ctor (Stream).
  425. 2002-06-26 Duncan Mak <[email protected]>
  426. * XmlNodeReader.cs: Implementation of most of the properties, and
  427. some of the related methods.
  428. 2002-06-23 Piers Haken <[email protected]>
  429. * XmlDocumentNavigator.cs: implement Clone()
  430. * XmlElement.cs: remove bogus unimplemented override of InnerText
  431. * XmlNode.cs: implment SelectNodes/SelectSingleNode
  432. * XmlNodeArrayList.cs: new support class for SelectNodes
  433. 2002-06-21 Ajay kumar Dwivedi <[email protected]>
  434. * XmlQualifiedName: Name and Namespaces are never null. If null is passed
  435. to the constructor, set them to empty strings.
  436. Fixed the Operators.
  437. 2002-06-18 Ajay kumar Dwivedi <[email protected]>
  438. * XmlTextReader.cs: HasLineInfo returns false instead of throwing an
  439. Exception.
  440. 2002-06-14 Duncan Mak <[email protected]>
  441. * XmlConvert.cs: Added CLSCompliant attributes to methods.
  442. 2002-06-12 Duncan Mak <[email protected]>
  443. * XmlCharacterData.cs (Value): Throw an ArgumentException in the
  444. set block if the node is read-only.
  445. 2002-06-10 Ajay kumar Dwivedi <[email protected]>
  446. * XmlConstruct.cs : New Internal class with Helper methods for
  447. Checking XmlConstructs
  448. * XmlConvert.cs: Implemented most of the methods
  449. 2002-06-08 Duncan Mak <[email protected]>
  450. * XmlDocument.cs (Load):
  451. Added bits to Load (string) for BaseURI support.
  452. * XmlAttribute.cs (BaseURI):
  453. * XmlDocument.cs (BaseURI):
  454. * XmlEntity.cs (BaseURI): Implemented.
  455. 2002-05-27 Jason Diamond <[email protected]>
  456. * XmlDocumentNavigator.cs: Added file to directory.
  457. * XmlNode.cs (CreateNavigator): Implemented.
  458. (InnerText): Implemented.
  459. * XmlDocument.cs (NamespaceURI, Prefix): Return String.Empty instead of
  460. throwing exception.
  461. (Load(XmlReader)): Allow for namespace qualified attributes.
  462. * XmlElement.cs: Implemented GetAttribute(string, string) and both
  463. GetAttributeNode overloads.
  464. (SetAttributeNode(XmlAttribute)): Implemented.
  465. * XmlNamedNodeMap.cs: Fixed copy/paste bugs in GetNamedItem(string, string)
  466. and RemoveNamedItem(string, string).
  467. * XmlLinkedNode.cs (PreviousSibling): Implemented.
  468. * XmlTextReader.cs: Added code to maintain the order of attributes as
  469. they're parsed. XML doesn't require this but Microsoft's parser does it and
  470. matching them makes testing easier so now we have it, too.
  471. 2002-05-26 Miguel de Icaza <[email protected]>
  472. * XmlDocument.cs: Implement the Save methods.
  473. 2002-05-08 Mike Kestner <[email protected]>
  474. * XmlNamedNodeMap.cs (SetNamedItem): Fixed a copy/paste bug.
  475. 2002-04-28 Duncan Mak <[email protected]>
  476. * XmlSignificantWhitespace.cs (Value):
  477. * XmlWhitespace.cs (Value): Added MonoTODO to the 'set'
  478. block. Added new private method, IsValidWhitespaceChar, for
  479. checking.
  480. 2002-04-16 Duncan Mak <[email protected]>
  481. * XmlParserContext.cs (NameTable): Fixed a typo in the set block.
  482. 2002-04-12 Duncan Mak <[email protected]>
  483. * XmlAttribute.cs (Prefix): Added preliminary code for set block,
  484. added comment on work that needs to be done here. A new MonoTODO item.
  485. * XmlDocument.cs (ctor): Corrected constructor signature, changed
  486. parameter from 'NameTable' to 'XmlNameTable'.
  487. * XmlDocumentFragment.cs (InnerXml): Added missing set block.
  488. * XmlCaseOrder.cs: Moved to System.Xml.XPath.
  489. 2002-04-10 Duncan Mak <[email protected]>
  490. * XmlNodeReader.cs: Initial stubs for the class.
  491. 2002-04-08 Kral Ferch <[email protected]>
  492. * XmlAttributes.cs: InnerXml getter, WriteContentTo, and WriteTo
  493. implementations.
  494. * XmlDeclaration.cs: WriteTo implementation.
  495. * XmlDocument.cs: InnerXml getter implementation.
  496. * XmlElement.cs: InnerXml getter implementation.
  497. * XmlNode.cs: Removed MonoTODO attrib on OuterXml.
  498. * XmlSignificantWhitespace.cs: WriteTo implementation.
  499. * XmlText.cs: WriteContentTo and WriteTo implementation.
  500. * XmlTextWriter.cs: WriteRaw implementation.
  501. * XmlWhitespace.cs: WriteContentTo and WriteTo implementations.
  502. 2002-04-05 Kral Ferch <[email protected]>
  503. * XmlAttributes.cs: Added reminder MonoTODO to set NamespaceURI
  504. if prefix in constructor is one of the default ones.
  505. * XmlCharacterData.cs: Returns String.Empty for Value and Data
  506. even when constructed with null.
  507. * XmlDeclaration.cs: Value doesn't put encoding or standalone
  508. in if they are empty.
  509. * XmlDocument.cs: Implemented CreateNode methods and this caused
  510. the changes in the other files in this checkin.
  511. * XmlProcessingInstruction.cs: Returns String.Empty for Value and Data
  512. even when constructed with null.
  513. * XmlWhitespace.cs: Changed Value 'get' to return Data.
  514. 2002-04-01 Kral Ferch <[email protected]>
  515. * XmlTextWriter.cs: Impls for WriteEndDocument and WriteFullEndElement.
  516. 2002-03-31 Kral Ferch <[email protected]>
  517. * XmlTextWriter.cs: Impls for LookupPrefix, WriteBase64,
  518. and WriteCharEntity.
  519. * XmlWrite.cs: Fixed bug where attribute namespace decl
  520. was pushing a scope onto the namespace manager when it shouldn't
  521. have been.
  522. 2002-03-31 Kral Ferch <[email protected]>
  523. * XmlTextWriter.cs: Some tweaks for WriteAttibuteString
  524. in different states (no open start element, in WriteState.Content mode).
  525. 2002-03-29 Kral Ferch <[email protected]>
  526. * XmlTextWriter.cs: XmlLang and XmlSpace properties
  527. and WriteWhitespace.
  528. * XmlTextWriterOpenElement.cs: scope support for XmlLang
  529. and XmlSpace.
  530. 2002-03-29 Kral Ferch <[email protected]>
  531. * XmlTextWriter.cs: Working on Attribute methods.
  532. * XmlWriter.cs: Working on Attribute methods.
  533. 2002-03-28 Duncan Mak <[email protected]>
  534. * XmlDocument.cs (CreateWhitespace):
  535. (CreateSignificantWhitespace): Removed extraneous call to the ToCharArray
  536. method.
  537. * XmlSignificantWhitespace.cs (Value): Removed MonoTODO attribute.
  538. 2002-03-26 Duncan Mak <[email protected]>
  539. * XmlDocument.cs (CreateDocumentType): Implemented.
  540. * XmlNode.cs (Value): Implemented.
  541. * XmlProcessingInstruction.cs (InnerText): Implemented. It works just
  542. like XmlCharacterData.
  543. * XmlDeclaration.cs (CloneNode):
  544. * XmlDocument.cs (CreateXmlDeclaration): Added missing constructor
  545. arguments.
  546. * XmlCharacterData.cs (InnerText): Implemented. Funny that the
  547. docs say it is the "The concatenated values of the node and all
  548. the children of the node.". I wrote some test programs and
  549. couldn't get any of the derived nodes to AppendChild. For now,
  550. InnerText == Data == Value.
  551. (Substring): Fixed typo.
  552. * XmlDeclaration.cs (XmlDeclaration): Fixed the constructor parameter signature.
  553. * XmlImplementation.cs (CreateDocument): Implemented.
  554. 2002-03-25 Duncan Mak <[email protected]>
  555. * XmlDeclaration.cs: Rewrote the class, fixed formatting, added
  556. missing properties (InnerText, Value).
  557. * XmlDocument.cs (CreateXmlDeclaration): Implemented.
  558. 2002-03-23 Kral Ferch <[email protected]>
  559. * XmlTextWriter.cs: Impls for BaseStream and
  560. Namespaces and WriteState.
  561. * XmlWriter.cs: WriteState and WriteStartElementInternal.
  562. 2002-03-23 Kral Ferch <[email protected]>
  563. * XmlNodeListChildren.cs: made class internal
  564. instead of public. Shouldn't be visible outside
  565. of System.Xml.
  566. * XmlTextWriter.cs: Implementations for Formatting,
  567. IndentChar, Indenting, QuoteChar, WriteStartDocument(standalone).
  568. Suppresses encoding on xml declaration if null stream passed in.
  569. Formats output including suppressing indentation for elements in
  570. mixed content mode.
  571. * XmlTextWriterOpenElement.cs: Initial checkin.
  572. XmlTextWriter uses stack of these objects to track
  573. state.
  574. 2002-03-22 Mike Kestner <[email protected]>
  575. * XmlElement.cs: impl HasAttribute(string name).
  576. 2002-03-22 Duncan Mak <[email protected]>
  577. * XmlElement.cs: Reformatted.
  578. (CloneNode) Corrected.
  579. * XmlDocument.cs (CreateWhitespace):
  580. (CreateSignificantWhitespace): Implemented.
  581. * XmlAttribute.cs (CloneNode): Changed the child's CloneNode to
  582. true, because Attributes have ChildNodes.
  583. 2002-03-21 Kral Ferch <[email protected]>
  584. * XmlTextWriter.cs: WriteStartDocument tracks state, writes out
  585. xml declaration along with encoding. WriteEndElement throws
  586. exception if no WriteStartElement exists.
  587. 2002-03-20 Duncan Mak <[email protected]>
  588. * XmlEntityReference.cs (CloneNode): Implemented.
  589. * XmlException.cs (Message): Implemented. We need to cache the
  590. message string because SystemException doesn't expose 'message'
  591. from Exception.
  592. * XmlText.cs (Value): Added in the missing Value property.
  593. 2002-03-20 Duncan Mak <[email protected]>
  594. * XmlAttribute.cs (CloneNode): Implemented.
  595. * XmlDocumentFragment.cs (CloneNode): Implemented.
  596. * XmlElement.cs (CloneNode): Implemented.
  597. 2002-03-19 Duncan Mak <[email protected]>
  598. * XmlNotation.cs: Added to CVS.
  599. * XmlAttribute.cs (CloneNode): First crack at the CloneNode method.
  600. * XmlCDataSection.cs (CloneNode): Implemented.
  601. * XmlDocumentFragment.cs: Reformatted and added the missing properties
  602. (InnerXml, OwnerDocument, ParentNode).
  603. (CloneNode): Implemented.
  604. * XmlSignificantWhitespace.cs (CloneNode): Implemented.
  605. (Value) Implemented the 'get' property.
  606. * XmlWhitespace.cs (Module): implemented.
  607. 2002-03-19 Jason Diamond <[email protected]>
  608. * XmlDocument.cs: Fixed typo in Load that was duplicating the LocalName
  609. in the prefix.
  610. 2002-03-18 Jason Diamond <[email protected]>
  611. * XmlTextReader.cs: Don't restore properties after reading last
  612. attribute on an element.
  613. * XmlDocument.cs: Move back to element after reading attributes
  614. so that IsEmptyElement test succeeds.
  615. 2002-03-18 Kral Ferch <[email protected]>
  616. * XmlNamespaceManager.cs: Implemented LookupPrefix.
  617. * XmlTextWriter.cs: Implemented namespace and prefix support.
  618. 2002-03-18 Kral Ferch <[email protected]>
  619. * XmlTextReader.cs: Restores properties after
  620. reading last attribute on an element.
  621. * XmlNode.cs: AppendChild sets the parent
  622. on the child.
  623. 2002-03-17 Kral Ferch <[email protected]>
  624. * XmlCDataSection.cs: Formatting, Implementation for WriteTo.
  625. * XmlComment.cs: Implementations for WriteTo and WriteContentTo.
  626. * XmlElement.cs: Fixed bug in WriteTo.
  627. * XmlProcessingInstruction.cs: Formatting.
  628. * XmlTextWriter.cs: Implementations for Close, WriteCData, WriteComment,
  629. fixes for WriteEndElement, WriteProcessingInstruction.
  630. 2002-03-17 Kral Ferch <[email protected]>
  631. * XmlDocument.cs: Implementations for WriteTo() and WriteContentTo(),
  632. had Load() add PIs to the document, moved onXXX methods to alphabetical
  633. order in the file.
  634. * XmlElement.cs: Implementations for WriteTo() and WriteContentTo().
  635. * XmlNode.cs: Implementations for InnerXml Get and OuterXml.
  636. * XmlProcessingInstruction.cs: Implementations for WriteTo() and
  637. WriteContentTo().
  638. * XmlTextWriter.cs: Implementations for WriteEndElement,
  639. WriteProcessingInstruction, WriteStartElement, and WriteString.
  640. * XmlWriter.cs: Implemented WriteStartElement() methods.
  641. 2002-03-15 Duncan Mak <[email protected]>
  642. * XmlEntity.cs: Added to CVS. Need to implement BaseURI and
  643. InnerText once I know what they do.
  644. * XmlDocumentType.cs (XmlDocumentType): Fix the constructor now
  645. that we can properly chain constructors.
  646. (CloneNode): implemented.
  647. (WriteContentTo): Removed MonoTODO attribute as this method has no
  648. effect in this class.
  649. * XmlProcessingInstruction.cs (Value): Added the missing Set
  650. block.
  651. (InnerText): Added in, but not implemented.
  652. 2002-03-14 Kral Ferch <[email protected]>
  653. * XmlTextWriter.cs: implemented constructors and
  654. WriteCData and WriteComment.
  655. 2002-03-14 Duncan Mak <[email protected]>
  656. * XmlDocument.cs: Moved the NodeChanged EventHandler to its own
  657. file, and updated the callbacks to reflect the change.
  658. (XmlDocument): Added the NameTable constructor.
  659. (NameTable): Also the NameTable property.
  660. * XmlNodeChangedEventHandler.cs: Added, replacing the version that
  661. was in XmlDocument.cs. It has two arguments now (object,
  662. EventArgs) , instead of one (object).
  663. 2002-03-14 Kral Ferch <[email protected]>
  664. * XmlWriter.cs: Formatting.
  665. * XmlTextWriter.cs: Initial checkin.
  666. 2002-03-14 Duncan Mak <[email protected]>
  667. * Validation.cs: Removed, replaced by ValidationType.cs.
  668. * ValidationType.cs: Added.
  669. 2002-03-13 Duncan Mak <[email protected]>
  670. * XmlException.cs: Made it [Serializable], implemented good ol'
  671. GetObjectData, and the serialization constructor.
  672. * XmlNamedNodeMap.cs (SetNamedItem): Check for the Name property.
  673. (SetNamedItem): Reverted (added back in) the patch with the
  674. ReadOnly checks. "Don't doubt yourself, my son... you were right!"
  675. * XmlNamedNodeMap.cs (GetEnumerator): piggyback on the ArrayList implementation.
  676. (GetNamedItem (string, string)): implemented.
  677. (RemoveNamedItem): implemented.
  678. (SetNamedItem): implemented.
  679. 2002-03-12 Kral Ferch <[email protected]>
  680. * XmlAttribute.cs: Moved a method from amongst properties down to
  681. it's alphabetical position in the methods section.
  682. * XmlNode.cs: Passes in 'this' to XmlNodeList constructor instead of
  683. last linked child. Set XmlNode base class to return false for IsReadOnly().
  684. Implemented GetEnumerator() and RemoveChild().
  685. * XmlNodeListChildren.cs: Now stores the parent instead of the last child.
  686. This is to support the behavior that the Enumerator doesn't become invalid
  687. when changes to the children occur. Flushed out rest of implementation for
  688. MoveNext, Current, and Reset.
  689. 2002-03-12 Duncan Mak <[email protected]>
  690. * XmlCharacterData.cs: Reformatted the properties for better readability.
  691. * XmlLinkedNode.cs: Removed the awful boxy comments.
  692. * XmlNamedNodeMap.cs (Count):
  693. (Item): Implemented. Tests will be coming.
  694. * XmlEntityReference.cs:
  695. * XmlSignificantWhitespace.cs: Implemented these classes except for
  696. the Clone, WriteContentTo and WriteTo methods. Will have to
  697. investigate into these later.
  698. 2002-03-11 Duncan Mak <[email protected]>
  699. * IHasXmlNode.cs: Added to CVS.
  700. 2002-03-08 Jason Diamond <[email protected]>
  701. * XmlParserContext.cs: Added missing constructors and missing Encoding
  702. property.
  703. * XmlTextReader.cs: Start using the XmlParserContext class.
  704. 2002-03-08 Jason Diamond <[email protected]>
  705. * XmlTextReader.cs: Implemented MoveToElement and MoveToFirstAttribute.
  706. 2002-03-08 Mike Kestner <[email protected]>
  707. * XmlNode.cs (Item): Implemented both indexers.
  708. 2002-03-08 Jason Diamond <[email protected]>
  709. * DomEncodingType.cs, TreePosition.cs, XPathNodeType.cs, XmlDataType.cs,
  710. XmlExceptionCode.cs, XmlSortOrder.cs, XmlUtil.cs: Removed files.
  711. 2002-03-08 Jason Diamond <[email protected]>
  712. * XmlAttribute.cs: Attribute nodes are supposed to store their values
  713. as child nodes so updated to reflect that.
  714. * XmlDocument.cs, XmlElement.cs, XmlNode.cs: Moved code that was
  715. duplicated in XmlDocument and XmlElement into XmlNode so that it
  716. wouldn't have to be duplicated in XmlAttribute, too.
  717. 2002-03-08 Kral Ferch <[email protected]>
  718. * XmlNodeList.cs, XmlDocument.cs, XmlLinkedNode.cs,
  719. XmlNode.cs: Formatting.
  720. * XmlNodeListChildren.cs: Implementation of XmlNodeList
  721. for XmlNode.ChildNodes property.
  722. * XmlNodeListAsArrayList.cs: Removed file. Using different
  723. data structure (circular list) in XmlNode so this file
  724. is no longer valid.
  725. * XmlDocument.cs, XmlElement.cs: New ChildNodes tests found
  726. bug in setter property of LastLinkedChild so fixed it.
  727. 2002-03-06 Jason Diamond <[email protected]>
  728. * XmlInputSource.cs, XmlNames_1_0.cs, XmlParse.cs: Removed files.
  729. We already have a parser in XmlTextReader.
  730. * XmlException.cs: Removed constructor accepting XmlInputSource.
  731. 2002-03-06 Kral Ferch <[email protected]>
  732. * XmlNode.cs: Rewrote this class from scratch with
  733. MonoToDo attribs and NotImplementedExceptions. Now defines an
  734. internal LastLinkedNode property to aid the new implementation.
  735. XmlNodes only have ref to owner doc and parent nodes now.
  736. * XmlLinkedNode.cs: Added NextLinkedSibling internal property
  737. and ref to next sibling to support walking our circular child
  738. node list.
  739. * XmlDocument.cs: Added ref to last child node and overrides
  740. XmlNode's internal LastLinkedChild property to support walking
  741. our circular child node list.
  742. 2002-03-02 Kral Ferch <[email protected]>
  743. * XmlProcessingInstructions.cs: Class was empty. Implemented
  744. constructor, properties, and CloneNode() method. Put in
  745. MonoToDo attrib for remaining methods.
  746. * XmlComment.cs: Reformatted and put in MonoToDo attribs.
  747. Got rid of helper methods and fields since they were no
  748. longer needed.
  749. * XmlLinkedNode.cs: Reformatted and put in MonoToDo attribs.
  750. * XmlDocument.cs: Added code to Load(XmlReader) to create XmlComment,
  751. XmlCDataSection, and XmlProcessingInstruction nodes. Implemented
  752. Createxxx() methods for those three node types.
  753. 2002-03-02 Jason Diamond <[email protected]>
  754. * XmlDocument.cs: Implemented the remaining CreateElement and
  755. CreateAttribute methods.
  756. * XmlAttribute.cs: Re-implemented.
  757. * XmlElement.cs: Set owner element on attributes. Reformatted.
  758. 2002-03-02 Jason Diamond <[email protected]>
  759. * XmlTextReader.cs: Implemented MoveToNextAttribute().
  760. * XmlDocument.cs: Reformatted. Adding missing methods and MonoTODO
  761. attributes. Create attribute nodes while loading. Implemented
  762. Load(string) and CreateTextNode().
  763. * XmlCharacterData.cs, XmlText.cs: Re-implemented.
  764. * XmlCDataSection.cs, XmlComment.cs: Call correct constructor in
  765. XmlCharacterData.
  766. * XmlNamedNodeMap.cs, XmlAttributeCollection.cs: Stubbed out.
  767. 2002-03-02 Mike Kestner <[email protected]>
  768. * XmlAttribute.cs : Using fix.
  769. * XmlDocument.cs (CreateAttribute(String)): Implement.
  770. 2002-03-02 Jason Diamond <[email protected]>
  771. * XmlNamespaceManager.cs: Atomize prefixes and namespaces strings in
  772. the name table.
  773. 2002-02-28 Jason Diamond <[email protected]>
  774. * XmlDocument.cs, XmlNode.cs: Initial implementation of LoadXml
  775. courtesy of Kral Ferch <[email protected]>.
  776. 2002-02-28 Jason Diamond <[email protected]>
  777. * XmlException.cs, XmlReader.cs, XmlTextReader.cs: Reformatted,
  778. added missing members and MonoTODO attributes.
  779. * XmlTextReader.cs: Throw XmlException instead of System.Exception.
  780. 2002-02-27 Jason Diamond <[email protected]>
  781. * XmlElement.cs: Reformatted, added missing members and MonoTODO
  782. attributes.
  783. 2002-02-26 Duncan Mak <[email protected]>
  784. * XmlCDataSection.cs: Initial implementation.
  785. * NameTable.cs: Fixed the whole thing. Wrote a NUnit test to test
  786. it out. This should (hopefully) be correct.
  787. 2002-02-26 Jason Diamond <[email protected]>
  788. * XmlTextReader.cs: Apparently Microsoft's implementation treats
  789. namespace declarations as attributes so we do now, too.
  790. * XmlNamespaceManager.cs: HasNamespace fixed so that it only
  791. checks the current scope.
  792. 2002-02-26 Duncan Mak <[email protected]>
  793. * XmlDocumentType.cs: Added a few hacks here and there to
  794. temporarily fix the "I broke the build issue".
  795. 2002-02-25 Jason Diamond <[email protected]>
  796. * XmlDocument.cs, XmlElement.cs, XmlNode.xs, XmlNodeList.cs,
  797. XmlNodeListAsArrayList.cs: Multiple fixes necessary to get
  798. simple test to pass. The existing code is really shitty so I'll
  799. probably start writing tests and refactoring before much else
  800. can get done.
  801. 2002-02-25 Duncan Mak <[email protected]>
  802. * NameTable.cs: Implemented.
  803. * XmlDeclaration.cs: It should inherit from XmlLinkedNode, not XmlNode.
  804. 2002-02-24 Duncan Mak <[email protected]>
  805. * XmlNodeOrder.cs: Added to CVS.
  806. * XmlQualifiedName.cs: Fixed a warning from Equals ().
  807. * XmlTokenizedType.cs: Added to CVS.
  808. * XmlUrlResolver.cs: Added to CVS with one TODO task.
  809. 2002-02-23 Duncan Mak <[email protected]>
  810. * XmlQualifiedName.cs: Fixed ToString () and added the operators
  811. (== and !=).
  812. 2002-02-23 Jason Diamond <[email protected]>
  813. * XmlTextReader.cs: Added support for qualified attributes.
  814. 2002-02-23 Jason Diamond <[email protected]>
  815. * XmlNamespaceManager.cs: Initial implementation.
  816. * XmlTextReader.cs: Added support for NamespaceURI property on
  817. elements.
  818. 2002-02-23 Nick Drochak <[email protected]>
  819. * ChangeLog: Add the change log to this directory
  820. * XmlQualifiedName.cs: Fixed compile errors so it would build. Still has
  821. MonoTODO's