ChangeLog 43 KB

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