ChangeLog 42 KB

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