ChangeLog 37 KB

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