ChangeLog 40 KB

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