ChangeLog 42 KB

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