ChangeLog 57 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675
  1. 2003-06-10 Lluis Sanchez Gual <[email protected]>
  2. * XmlTextWriter.cs: when adding an attribute with a namespace, a prefix must be automaticaly
  3. generated, and a namespace declaration must be added.
  4. * XmlWriter.cs: the namespace for the prefix xmlns must be http://www.w3.org/2000/xmlns/
  5. 2003-06-10 Zoltan Varga <[email protected]>
  6. * XmlAttribute.cs: Accept a null prefix or namespaceURI.
  7. 2003-06-10 Duncan Mak <[email protected]>
  8. * XmlDocumentNavigator.cs (GetNode): Make it implement
  9. IHasXmlNode.
  10. 2003-06-05 Lluis Sanchez Gual <[email protected]>
  11. * XmlTextWriter.cs : Fixed bug. After calling for example WriteStartElement ("pref","ln","ns");
  12. a call to LookupPrefix ("pref") when still writting attributes should
  13. return "ns", and it didn't.
  14. 2003-06-02 Atsushi Enomoto <[email protected]>
  15. * XmlDocumentNavigator.cs : quick fix for MoveToFirstChild().
  16. * XmlConvert.cs : fixed VerifyNCName() to check correctly.
  17. 2003-06-01 Atsushi Enomoto <[email protected]>
  18. * XmlDocumentNavigator.cs : Compute document node one time.
  19. MoveToFirstChild() should move to PIs and comments.
  20. 2003-05-30 Miguel de Icaza <[email protected]>
  21. * XmlReader.cs (ReadStartElement): Improve error message.
  22. 2003-05-28 Lluis Sanchez Gual <[email protected]>
  23. * XmlTextReader.cs : MoveToAttribute methods must set the enumerator to the right
  24. position, since MoveToNextAttribute may be called after it.
  25. SetProperties(): attributes do not "inherit" the namespace.
  26. * XmlDocument.cs: ReadNode(), ReadAttributeNode(): must keep the current reader position.
  27. 2003-05-27 Atsushi Enomoto <[email protected]>
  28. * NameTable.cs : Add() sets the given name string interned.
  29. * XmlParserContext.cs : added internal PushScope() and PopScope() to
  30. hold stacks of xml:base, xml:lang and xml:space.
  31. * XmlTextReader.cs : implemented XmlLang and XmlSpace (only as a
  32. property for stacked attributes). Renamed Initialize() to Initialize-
  33. Context(). Modified to use XmlParserContext.PushScope()/PopScope().
  34. 2003-05-26 Lluis Sanchez Gual <[email protected]>
  35. * XmlReader.cs: Little fix to WriteAttributeString()
  36. 2003-05-24 Atsushi Enomoto <[email protected]>
  37. * XmlAttribute.cs, XmlCharacterData.cs, XmlComment.cs, XmlDocument.cs,
  38. XmlDocumentFragment.cs, XmlElement.cs, XmlEntity.cs, XmlLinkedNode.cs,
  39. XmlNode.cs, XmlNotation.cs, XmlProcessingInstruction.cs, XmlReader.cs,
  40. XmlSignificantWhitespace.cs, XmlText.cs, XmlWhitespace.cs:
  41. Reverted the recent accessibility mistake (5/16).
  42. * XmlDocument.cs, XmlNode.cs : moved actual CreateNavigator() logic
  43. from XmlNode to XmlDocument.
  44. 2003-05-18 Lluis Sanchez Gual <[email protected]>
  45. * XmlQualifiedName.cs : Fixed bug in equality operator.
  46. 2003-05-18 Atsushi Enomoto <[email protected]>
  47. * XmlTextWriter.cs : patch by Jonathan Hogg. Flush() does not close
  48. any open attributes or elements. WriteWhitespace() checks state and
  49. closes start tag. Fixed WriteStringInternal() to replace CR/LF chars
  50. when it is called inside attribute value.
  51. * XmlException.cs : added .NET 1.1 .ctor.
  52. * added XmlSecureResolver.cs (only stubbing).
  53. * XmlAttribute.cs : set_InnerXml() should remove children.
  54. * XmlAttribute.cs,
  55. XmlElement.cs,
  56. XmlDocumentFragment.cs,
  57. XmlDocument.cs : removed XmlTextReader reuse (It was buggy stuff).
  58. * XmlNode.cs : RemoveAll() should also remove all attributes.
  59. * XmlTextRader.cs : .ctor() for attribute value reader should add
  60. quotations at initialization, since it requires quote chars.
  61. * XmlWriter.cs : WriteAttributeString() more correct xmlns check.
  62. 2003-05-16 Atsushi Enomoto <[email protected]>
  63. * changed XPathNodeType modifier to internal *protected* override.
  64. * XmlAttribute.cs : .ctor() now checks name validity e.g. xmlns.
  65. * XmlAttribute.cs, XmlElement.cs : set_Prefix checks NCName validity.
  66. * XmlAttributeCollection.cs : removed some incorrect TODO attributes.
  67. * XmlDocument.cs ; CreateAttribute(name) now auto-completes xmlns NSURI
  68. when the argument is "xmlns".
  69. * XmlElement.cs : more compliant IsEmpty support. See also WriteTo().
  70. * XmlNamespaceManager.cs : added initial "xml" and "xmlns" namespaces.
  71. * XmlNode.cs : ser_InnerXml() throws InvalidOperationException.
  72. * XmlNodeReader.cs : LookupNamespace() refactory. Fixed ReadInnerXml()
  73. not to set error state for non-started XmlNodeReader.
  74. * XmlTextReader.cs : fixed ReadAttributeValue() not to reset state.
  75. BaseURI support. Fixed Initialize() to handle Attribute correctly.
  76. SetProperty for attribute auto-completes xmlns NSURI.
  77. Attribute and whitespace handling became more correct.
  78. Don't parse external DTD if XmlResolver is null.
  79. * XmlTextWriter.cs : implemented WriteEntityRef().
  80. WriteStartAttribute() checks if ns does not equal to that of xmlns.
  81. * XmlWriter.cs : trivial refactoring (WriteNode() xmldecl output).
  82. 2003-05-05 Atsushi Enomoto <[email protected]>
  83. * XmlConvert.cs : IsInvalid() Now uses XmlConstructs.IsName(Start).
  84. EncodeName() now correctly encodes invalid names.
  85. Result string of ToString(DateTime) contains "fffffff".
  86. 2003-04-29 Atsushi Enomoto <[email protected]>
  87. * XmlElement.cs : fixed IsEmpty (removed private field isEmpty).
  88. * XmlNodeReader.cs : Fixed AttributeCount, each this[] (indexers),
  89. MoveTo*Attribute(),
  90. Fixed this[] to work correctly against XmlDeclarations.
  91. Fixed ReadInnerXml() and ReadOuterXml() to call Read() correctly.
  92. (which may prevent validations etc.)
  93. * XmlReader.cs,
  94. XmlNodeReader.cs,
  95. XmlTextReader.cs : Fixed ReadString() to be compliant with each
  96. other.
  97. * XmlTextReader.cs : ReadInnerXml() now moves to next node correctly.
  98. 2003-04-27 Pedro Martínez Juliá <[email protected]>
  99. * XmlNode.cs: ensure to get a valid Uri in BaseUri when loading the
  100. source document from a file.
  101. 2003-04-27 Atsushi Enomoto <[email protected]>
  102. * XmlAttribute.cs : fixed WriteTo() and WriteContentTo() to write
  103. content EntityReference correctly.
  104. * XmlNodeReader.cs : many fix for EndElement handling (AttributeCount,
  105. HasAttributes, indexers, MoveTo*Attribute() and Read() ).
  106. Modified Skip() to call Read () explicitly.
  107. * XmlTextReader.cs :
  108. Fixed ReadInnerXml() which ignored EndElement token in certain cases.
  109. Implemented MoveToAttribute (local, ns), and modified GetAttribute()
  110. in relation to this change.
  111. Attributes for XmlDeclaration are now correctly set.
  112. * XmlTextWriter.cs : WriteRaw() is now different from WriteString().
  113. Simplified WriteAttributes() for XmlDeclaration.
  114. 2003-04-26 Atsushi Enomoto <[email protected]>
  115. * XmlTextReader.cs : fixed ReadInnerXml(). it was inconsistent with
  116. Depth property fix.
  117. 2003-04-25 Atsushi Enomoto <[email protected]>
  118. * XmlDocument.cs : fixed Load() to set baseURI correctly.
  119. * XmlReader.cs : patch by Gonzalo. Fixed not to skip XmlDeclaration.
  120. * XmlTextReader.cs :
  121. fixed Depth. When it's on StartElement, Depth was already incremented.
  122. fixed private SaveProperty(), which moved away its saved properties
  123. when MoveToElement was called repeatedly.
  124. * XmlTextWriter.cs : fixed WriteQualifiedName() to close start tag.
  125. * XmlWriter.cs :
  126. WriteAttributes() refactory (for XMLDecl).
  127. WriteNode() don't Read() when the reader is Initial state, let other
  128. invokation to Read(). In case of Element, it should write entire
  129. element. In case of Attribute, it shouldn't Read().
  130. WriteStartDocument() should omit standalone decl. when there is no
  131. explicit value.
  132. 2003-04-23 Gonzalo Paniagua Javier <[email protected]>
  133. * XmlReader.cs: reverted last patch. It breaks System.Configuration
  134. because 1. it considers XmlDeclaration as content and 2. always
  135. returns XmlNodeType.None.
  136. 2003-04-23 Atsushi Enomoto <[email protected]>
  137. * Added missing ChangeLog of 4/4/2003.
  138. * XmlTextWriter.cs : patch by Erik. fixed WriteQualifiedName.
  139. (write prefix instead of ns.)
  140. * XmlInputStream.cs : file access mode fix (FileAccess.Read was missing)
  141. * XmlTextReader.cs : modified to call Read() instead of ReadContent().
  142. (It may be required for decorated reader such as XmlValidatingReader.)
  143. Changed Read() error message for mismatch end tag.
  144. * XmlDocument.cs : (ReadNode) friendly message for mismatch EndElement.
  145. * XmlReader.cs : Corrected misinterpreted MoveToContent() method.
  146. 2003-04-04 Atsushi Enomoto <[email protected]>
  147. * XmlDocument.cs : Load() now closes the given XmlReader.
  148. Don't allow creation of XmlTextReader for Doctype. (workaround.)
  149. * XmlInputStream.cs : It now closes its internal stream explicitly.
  150. * XmlNode.cs : RemoveChild() bugfix for removing LastLinkedChild.
  151. * XmlNodeReader.cs : GetAttribute() bugfix for not-present attribute.
  152. * XmlParserInput.cs : added Close() method.
  153. * XmlReader.cs : MoveToContent() should (1) not Read in case of empty
  154. element, and (2) MoveToElement() in case of attribute.
  155. * XmlTextReader.cs : Close() now actually closes source TextReaders.
  156. 2003-03-26 Duncan Mak <[email protected]>
  157. * XmlTextWriter.cs (Write): A patch from Atsushi to fix
  158. prematurely ending the write, or something like that. It was
  159. causing us to chop off the end of the document when we're trying
  160. to generate XML Schemas.
  161. 2003-03-23 Atsushi Enomoto <[email protected]>
  162. * XmlTextReader.cs : implemented ReadString().
  163. fixed ctor(string, XmlNodeType, XmlParserContext) - don't raise
  164. null reference exception when context is null.
  165. * XmlNodeReader.cs : fixed ReadString() - should ignore attributes etc.
  166. fixed Read() - when positioned at EndElement, it didn't progress.
  167. fixed HasAttribute - it didn't return false in all cases.
  168. fixed Name and LocalName - only limited type of nodes return names.
  169. fixed AttributeCount - in some cases it threw null ref exception.
  170. 2003-03-22 Atsushi Enomoto <[email protected]>
  171. * XmlTextWriter.cs : WriteStartDocument doesn't set hasRoot=true, then
  172. WriteEndDocument without root element now raises an error correctly.
  173. * XmlDocumentNavigator.cs : (MoveToFirstChild) fixed bugzilla #36672.
  174. implemented BaseURI, NameTable, XmlLang, GetAttributes, GetNamespace,
  175. MoveToAttribute.
  176. 2003-03-22 Atsushi Enomoto <[email protected]>
  177. * XmlElement.cs : RemoveAttribute now don't throws when specified
  178. attribute does not exist.
  179. 2003-03-21 Atsushi Enomoto <[email protected]>
  180. * XmlNode.cs : add descriptions for some node type error.
  181. 2003-03-21 Atsushi Enomoto <[email protected]>
  182. * XmlNodeArrayList.cs, XmlNodeListChildren.cs : bugzilla #39920 fix.
  183. 2003-03-19 Atsushi Enomoto <[email protected]>
  184. * XmlDeclaration.cs : quick fix, not to use regex for set_Value.
  185. 2003-03-19 Atsushi Enomoto <[email protected]>
  186. * XmlTextReader.cs : Fixed wrong notationdecl SYSTEM id read.
  187. * XmlInputStream.cs : Should allow versionless input stream entity.
  188. 2003-03-18 Atsushi Enomoto <[email protected]>
  189. * added XmlParserInput.cs for multi xml document sources.
  190. * added DTDObjectModel.cs (maybe temporary).
  191. * XmlTextReader.cs :
  192. + fixed ctor to use XmlStreamReader. Allowed null XmlParserContext.
  193. + Some members such as LineNumber, ReadChar now uses XmlParserInput.
  194. + added support for Namespaces (namespace-ignorant parse available).
  195. + added support for XmlResolver.
  196. + replace SetReaderContext()/SetReaderFragment() with Initialize().
  197. + use NameTable in CreateNameString.
  198. + fixed ReadCData(). Now reads "]]]>" correctly.
  199. + support for DTD parse.
  200. + Read() now throws an error when it reached EOF while Depth > 0.
  201. * XmlAttribute.cs,
  202. XmlDocumentFragment.cs,
  203. XmlElement.cs : fix related to the changes of XmlTextReader.Initialize
  204. * XmlDocument.cs : ReadNode() now reads DocumentType.
  205. * XmlDocumentType.cs : implemented Entities, Notations, WriteTo().
  206. * XmlEntity.cs,
  207. XmlNotation.cs : added override LastLinkedChild (for doctype node).
  208. * XmlNamedNodeMap.cs : Remove() raises an error if target is read only.
  209. * XmlElement.cs : bugfix for node removal of set_InnerXml.
  210. * XmlNode.cs : added insertBeforeIntern() derived from InsertBefore().
  211. (to append child XmlEntity into XmlDocumentType correctly.)
  212. * XmlInputStream.cs : fixed to access file with FileAccess.Read.
  213. 2003-03-15 Duncan Mak <[email protected]>
  214. * XmlElement.cs (Name): Only append prefix + ':' when prefix is
  215. neither String.Empty nor null. Thanks to Simon Guindon for
  216. reporting the bug and Jackson for fixing this bug with me.
  217. 2003-03-15 Atsushi Enomoto <[email protected]>
  218. * XmlConstructs.cs : fix "int IsXXX()" to reject negative value.
  219. * XmlDocument.cs : simplify Load(string url) to use XmlTextReader.
  220. fixed ReadNode(), it should call reader.Read() only on Initial state.
  221. * XmlInputStream.cs : Changed namespace. Added XmlStreamReader(stream)
  222. and XmlStreamReader (string). Fixed XmlInputStream(url) not to use
  223. System.Net.WebClient directly.
  224. * XmlParserContext.cs : baseURI never be null.
  225. * XmlTextWriter.cs : use WebName for Encoding instead of HeaderName.
  226. * XmlUrlResolver.cs : namespace change for XmlInputStream.
  227. 2003-03-12 Elan Feingold <[email protected]>
  228. * XmlTextReader.cs: When throwing a ReaderException, show what
  229. character was the culprit
  230. 2003-03-05 Atsushi Enomoto <[email protected]>
  231. * XmlDocumentFragment.cs, XmlElement.cs :
  232. modified InnerXml (fragment type from Element to DocumentFragment).
  233. * XmlElement.cs : fixed WriteTo() ns check.
  234. * XmlNamespaceManager.cs : MS.NET allows Add() used two or more times.
  235. * XmlNode.cs : fixed ConstructNamespaceManager().
  236. * XmlConstructs.cs : added IsSpace, IsName, IsNameStart, IsNCName,
  237. IsPubid with an int arg.
  238. * XmlReader.cs : changed to use XmlChar.cs (its role is as same as
  239. XmlConstructs.cs).
  240. * XmlTextReader.cs :
  241. improved error messages with line info.
  242. / checking matching start and end tags.
  243. / prevents the apperance of multiple root elements. (patch by Erik)
  244. fixed and refactored ReadInnerXml() and ReadOuterXml()
  245. changed to use XmlChar.cs.
  246. * XmlTextWriter.cs : changed to put element's xmlns at CloseStartTag ()
  247. (It will help c14n implementation.)
  248. / blocks multiple attribute output with element node.
  249. 2003-02-28 Alan Tam <[email protected]>
  250. * XmlConvert.cs: fixed the most ToXXX(string) and ToString(XXX)
  251. methods to make them compatible with the XML Schema Spec from W3C
  252. ToString(TimeSpan) is still outstanding
  253. 2003-02-18 Gonzalo Paniagua Javier <[email protected]>
  254. * XmlDocument.cs:
  255. (Load (string)): hack to workaround some issues with Uri.Parse. Once
  256. Parse is fixed, remove the hack.
  257. 2003-02-16 Atsushi Enomoto <[email protected]>
  258. * XmlQualifiedName.cs : fixed GetHashCode() to avoid null reference
  259. * XmlTextReader.cs : fixed ReadAttributeValue() to handle
  260. entity reference, and some refactory.
  261. 2003-02-16 Atsushi Enomoto <[email protected]>
  262. * XmlUrlResolver.cs : WebClient.Credentials was not implemented yet.
  263. 2003-02-16 Atsushi Enomoto <[email protected]>
  264. * XmlInputStream.cs : added (also contains internal XmlStreamReader).
  265. * XmlDocument.cs : Load () now can specify URL using XmlUrlResolver,
  266. and can read non-UTF-8 stream.
  267. * XmlTextReader.cs : related to above stream fix.
  268. * XmlUrlResolver.cs : implemented GetEntity ().
  269. 2003-02-03 Gonzalo Paniagua Javier <[email protected]>
  270. * XmlTextWriter.cs: implemented WriteRaw (char[], int, int).
  271. 2003-02-02 Atsushi Enomoto <[email protected]>
  272. * XmlTextReader.cs : implemented QuoteChar.
  273. 2003-01-26 Atsushi Enomoto <[email protected]>
  274. * XmlNode.cs : implemented ReplaceChild.
  275. removed DocElem checking at InsertBefore.
  276. * XmlNodeReader.cs : fixed ReadString and Read for correct node info.
  277. * XmlText.cs : implemented CloneNode and SplitText.
  278. 2003-01-24 Gonzalo Paniagua Javier <[email protected]>
  279. * XmlCharacterData.cs: added XPathNodeType property.
  280. 2003-01-22 Gonzalo Paniagua Javier <[email protected]>
  281. * XmlTextWriter.cs: throw an exception if WriteEndDocument is
  282. called without a prior call to WriteStartDocument.
  283. 2003-01-21 Atsushi Enomoto <[email protected]>
  284. * XmlNodeReader.cs : several fix to get more compatible with MS.NET.
  285. 2003-01-19 Atsushi Enomoto <[email protected]>
  286. * XmlNamespaceManager.cs : fundamental change of LookupPrefix to return
  287. null when no matching uri.
  288. * XmlElement.cs : removed unnecessary xmlns output.
  289. * XmlNode.cs : GetPrefixOfNamespace fix along with the change above.
  290. * XmlTextWriter.cs : LookupPrefix and WriteStartElementInternal fix
  291. along with the change above, and moved timing of 'xmlns' output
  292. to CloseStartElement.
  293. * XmlWriter.cs: modified WriteStartAttribute, same as yesterday.
  294. 2003-01-18 Atsushi Enomoto <[email protected]>
  295. * XmlWriter.cs: modified WriteStartElement (see test for detail).
  296. Added WriteNode.
  297. 2003-01-13 Ville Palo <[email protected]>
  298. * XmlDocument.cs: Added CheckName () method to check names validity.
  299. 2003-01-11 Gonzalo Paniagua Javier <[email protected]>
  300. * XmlTextReader.cs:
  301. (ReadOuterXml): use Depth property which return elementDepth, not depth.
  302. 2003-01-11 Atsushi Enomoto <[email protected]>
  303. * XmlElement.cs : (by ville) XmlElement.set_InnerText event bugfix.
  304. * XmlTextReader.cs : some fix for ReadOuterXml().
  305. 2003-01-08 Atsushi Enomoto <[email protected]>
  306. * XmlTextReader.cs : bugfix for attributes related to creation of
  307. XmlAttribute *node*.
  308. 2003-01-08 Atsushi Enomoto <[email protected]>
  309. * XmlTextReader.cs : bugfix for attribute values which have entity
  310. references.
  311. 2002-12-28 Ville Palo <[email protected]>
  312. * XmlDocument.cs: XmlTextWriter.Formatting == Indented when
  313. calling Save () -methods.
  314. 2002-12-28 Atsushi Enomoto <[email protected]>
  315. * XmlNodeReader.cs : primitive reading implementation.
  316. 2002-12-28 Atsushi Enomoto <[email protected]>
  317. * XmlElement.cs : quick fix for the incomplete patch of #35308 below.
  318. 2002-12-28 Atsushi Enomoto <[email protected]>
  319. * XmlDocument.cs : removed inconsistent line-feed output.
  320. * XmlElement.cs, XmlTextWriter.cs :
  321. fixed for bugzilla 35308 (default ns output)
  322. * XmlWhitespace.cs : limited output only when preserving whitespace.
  323. 2002-12-24 Atsushi Enomoto <[email protected]>
  324. * XmlAttribute.cs, XmlDocument.cs, XmlTextReader.cs:
  325. Implemented XmlTextReader.ReadAttributeValue().
  326. Added internal ReadAttributeNodeValue().
  327. Fixed XmlAttribute.InnerXml to use these methods.
  328. * XmlDocument.cs, XmlDocumentFragment.cs, XmlElement.cs, XmlNode.cs:
  329. Implemented XmlDocument.ReadNode() and removed ConstructDOM().
  330. Other changes are replacing them.
  331. 2002-12-24 Atsushi Enomoto <[email protected]>
  332. * XmlDocument.cs: patch by Ville (fixed default PreserveWhitespace)
  333. 2002-12-21 Atsushi Enomoto <[email protected]>
  334. * XmlElement.cs, XmlTextWriter.cs, XmlWriter.cs:
  335. patch by JD Conley <[email protected]>.
  336. (Fix for xmlns attribute output.)
  337. 2002-12-05 Ville Palo <[email protected]>
  338. * XmlQualifiedName.cs: Little fix to ToString () -method
  339. 2002-12-04 Tim Haynes <[email protected]>
  340. * class/System.XML/System.Xml/XmlElement.cs: Made more refined
  341. checks on attributeNode to fix 32262.
  342. 2002-12-03 Atsushi Enomoto <[email protected]>
  343. * XmlDocument.cs (CreateNavigator(XmlNode)) : reverted
  344. * XmlTextWriter.cs (WriteStartElementInternal):
  345. fixed when default namespace was specified, all descendants
  346. fail to omit the default namespace declarations.
  347. * XmlAttribute.cs,
  348. XmlDocument.cs,
  349. XmlNode.cs (internal XmlLang/XmlSpace) : implemented(defined)
  350. * XmlAttribute.cs,
  351. XmlDocumentFragment.cs,
  352. XmlElement.cs (set_InnerXml): now uses XmlLang/XmlSpace
  353. * XmlElement.cs (set_IsEmpty) : implemented
  354. (WriteTo) : removed my improper indenting (Writer already done)
  355. * XmlNode.cs (BaseURI) : fixed if ParentNode is null, NullPointerEx
  356. (ConstructDOM) : implemented when xmlReader isn't XmlTextReader
  357. ...and renamed XmlDocument.ConventionalParser to ReusableReader ;-)
  358. 2002-12-01 Atsushi Enomoto <[email protected]>
  359. * XmlNode.cs (RemoveChild):
  360. bugfixed when XmlNode is Document OwnerDocument is null
  361. * XmlDeclaration.cs (Value):
  362. bugfixed regular expression pattern.
  363. * XmlDocument.cs (CreateNavigator): bugfixed access modifier.
  364. 2002-11-24 Duncan Mak <[email protected]>
  365. * XmlImplementation.cs (HasFeature): Fixed a typo. Thanks for
  366. Fabricio Barros Cabral (fx) on #mono for spotting it. This is his
  367. first patch to Mono! ;-)
  368. 2002-11-19 Gonzalo Paniagua Javier <[email protected]>
  369. * XmlNode.cs:
  370. (AppendChild): readded refChild != null condition before throwing
  371. "cannot insert this node in this position" exception. There's probably
  372. a better solution. Fixes #34191.
  373. (RemoveAll): changed following Atsushi instructions.
  374. 2002-11-13 Duncan Mak <[email protected]>
  375. * XmlElement.cs (IsEmpty): A temporary check-in to keep gtk-sharp
  376. compiling.
  377. 2002-11-14 Atsushi Enomoto <[email protected]>
  378. * XmlDocument.cs : unified all constructors, added ConventionalParser,
  379. implemented CloneNode() and CreateEntityReference(),
  380. * XmlEntityReference.cs : set_Value, WriteContentTo, WriteTo
  381. set BaseURI to MonoTODO
  382. * XmlNode.cs : implemented PrependChild, modified ConstructDOM,
  383. bugfix InsertAfter (incorrect prepending) and InsertBefore
  384. (more than one DocumentElements hadn't caused errors)
  385. * XmlTextReader.cs : unified all constructors,
  386. added internal SetReaderContext(), SetReaderFragment()
  387. bugfix (syntax check of PUBLIC / getting internal subset)
  388. 2002-11-13 Atsushi Enomoto <[email protected]>
  389. XmlAttribute.cs : set_InnerText, set_InnerXml, some check for set_Prefix
  390. XmlAttributeCollection.cs : (indexer) this[localName, namespaceURI]
  391. XmlCharacterData.cs : exchanged Data and Value
  392. (for processing events and inheritance)
  393. XmlDocumentFragment.cs : set_InnerXml
  394. XmlSignificantWhitespace.cs : set_Value
  395. XmlTextReader.cs : ReadAttributeValue
  396. 2002-11-04 Atsushi Enomoto <[email protected]>
  397. XmlAttribute.cs: fixed missing internal 'OwnerElement''SetOwnerElement'
  398. 2002-11-03 Atsushi Enomoto <[email protected]>
  399. * XmlAttributeCollection.cs : checks owner element.
  400. implemented CopyTo, InsertAfter, InsertBefore, Prepend,
  401. Remove, RemoveAt, SetNamedItem.
  402. removed some logics that sets 'Parent' (that should be null)
  403. * XmlDocument.cs : set_InnerXml, [PreserveWhitespace(incomplete)]
  404. * XmlDocumentFragment.cs : get_InnerXml, WriteContentTo, WriteTo
  405. * XmlElement.cs : implemented WriteTo, set_InnerText.
  406. Fixed WriteTo() to add xmlns:* attributes when
  407. writer.LookupPrefix() returned mismatching.
  408. * XmlNamedNodeMap.cs : compare not only name but localname and nsuri.
  409. Removing different prefixes for the same uri now runs correct.
  410. added SetNamedItem(XmlNode node, int position_to_insert).
  411. * XmlNode.cs : ConstructDOM (logically) creates XmlEntityReference,
  412. XmlWhitespace, and XmlSignificantWhitespace
  413. 2002-10-31 Atsushi Enomoto <[email protected]>
  414. * XmlDocument.cs : implemented CreateDocumentFragment()
  415. * XmlElement.cs, XmlLinkedNode.cs :
  416. moved LastLinkedChild from XmlElement to XmlLinkedNode.
  417. * XmlEntityReference.cs : must throw NotImplementedException.
  418. * XmlNode.cs :
  419. + implemented InsertBefore() and then implemented InsertAfter()
  420. and modified AppendChild() to call it.
  421. + added logic to check ReadOnly, parent document equivalence,
  422. and inserting any 'content' before/after DocumentElement.
  423. + implemented Clone() [it is equals to CloneNode() by MS doc.]
  424. + added logic in RemoveChild() to check parent of oldChild.
  425. + fixed ConstructNamespaceManager() to internal only.
  426. 2002-10-29 Atsushi Enomoto <[email protected]>
  427. * XmlAttribute.cs : add internal 'IsDefault' property
  428. (equals to !Specified)
  429. * XmlImplementation.cs : added 'internalNameTable' property.
  430. * XmlDocument.cs :
  431. + now allows "" for 'standalone' in CreateXmlDeclaration.
  432. + implemented 'Implementation' property and constructor with it.
  433. + added logic for appending name table (but still no use)
  434. + implemented property 'DocumentType'
  435. (but without internalSubset parsing. wait for next update.)
  436. * XmlNode.cs :
  437. + modified AppendChild() and RemoveChild() to support fragment.
  438. + modified AppendChild() to remove newChild from its parent
  439. when newChild is already in the other place.
  440. + modified RemoveChild() to set parentNode null.
  441. + modified ConstructDOM() to create DocumentType,
  442. and fixed access modifier ('internal protected' to 'internal')
  443. * XmlLinkedNode.cs : fixed 'NextSibling' to return null
  444. when its parent is null.
  445. * XmlDocumentFragment.cs : added internal override 'LastLinkedChild'
  446. property to enable AppendChild() for this class.
  447. * XmlTextReader.cs : appended private publicId and systemId fields.
  448. 2002-10-28 Gonzalo Paniagua Javier <[email protected]>
  449. * XmlTextReader.cs: make it work when the underlying Stream is not
  450. 'seekable'.
  451. 2002-10-26 Piers Haken <[email protected]>
  452. * XmlNode.cs: add virtual property XPathNodeType
  453. * XmlAttribute.cs:
  454. * XmlComment.cs:
  455. * XmlDocument.cs:
  456. * XmlElement.cs::
  457. * XmlProcessingInstruction.cs:
  458. * XmlSignificantWhitespace.cs:
  459. * XmlText.cs:
  460. * XmlWhitespace.cs: implement XPathNodeType property
  461. * XmlDocumentNavigator.cs: use XPathNodeType property instead of switch
  462. 2002-10-26 Piers Haken <[email protected]>
  463. * XmlDocumentNavigator.cs: return invalid XPathNodeType (-1) for unknown node types.
  464. 2002-10-23 Gonzalo Paniagua Javier <[email protected]>
  465. * XmlTextReader.cs: don't increment depth for entity references.
  466. 2002-10-22 Tim Haynes <[email protected]>
  467. * - Fixed the duplication of xmlns:xx = yy when serializing the
  468. XML for serialization
  469. Fixed the unnecessary parsing/serializing when adding assemblies
  470. for serialization
  471. Avoided setting the XmlNode.InnerXml property
  472. (as it's not implemented)
  473. Fixed the usage/implementation of
  474. XmlElement.GetElementsByTagName()
  475. 2002-10-21 Duncan Mak <[email protected]>
  476. * XmlDocument.cs:
  477. * XmlElement.cs:
  478. * XmlNode.cs:
  479. * XmlTextReader.cs: Implementation for XmlNode.InnerXml from
  480. Atsushi Enomoto <[email protected]>.
  481. 2002-10-18 Duncan Mak <[email protected]>
  482. * XmlDocument.cs: Applied a patch by Atsushi Enomoto
  483. <[email protected]>.
  484. 2002-10-12 A.Enomoto <[email protected]>
  485. * XmlDocument.cs (ImportNode): Implemented
  486. 2002-10-06 Gonzalo Paniagua Javier <[email protected]>
  487. * XmlDocument.cs: one more Load method implemented.
  488. * XmlTextReader.cs: Depth now works.
  489. 2002-09-22 Gonzalo Paniagua Javier <[email protected]>
  490. * XmlConvert.cs: IsInvalid is now internal.
  491. * XmlNamespaceManager.cs: implemented RemoveNamespace
  492. * XmlTextReader.cs: return BaseURI and Encoding from the parser.
  493. * XmlTextWriter.cs: implemented WriteName and WriteNmToken.
  494. 2002-09-19 Matt Hunter <[email protected]>
  495. * XmlElement.cs: Implementing SetAttributeNode(localName,namespaceURI)
  496. * XmlAttributeCollection.cs: Implemented Append (XmlAttribute)
  497. 2002-09-19 Gonzalo Paniagua Javier <[email protected]>
  498. * XmlConvert.cs: finished implementation.
  499. * XmlTextReader.cs: fixed #30239.
  500. * XmlTextWriter.cs: fixed #30240.
  501. 2002-09-15 Gonzalo Paniagua Javier <[email protected]>
  502. * XmlTextReader.cs: line and position begin with 1.
  503. 2002-09-13 Gonzalo Paniagua Javier <[email protected]>
  504. * XmlException.cs: added a new internal constructor for IXmlLineInfo
  505. and output line and position info in Message.
  506. * XmlReader.cs: implemented missing bits.
  507. 2002-09-12 Piers Haken <[email protected]>
  508. * XmlDocumentNavigator.cs: implement MoveToId()
  509. 2002-09-05 Gonzalo Paniagua Javier <[email protected]>
  510. * XmlTextWriter.cs: fixed bug #29886.
  511. 2002-08-26 Ravi Pratap <[email protected]>
  512. * XmlAttribute.cs (InnerText): Implement getting this property.
  513. * XmlNode.cs (InnerText): Ensure that we append only values of
  514. text nodes.
  515. 2002-08-26 Gonzalo Paniagua Javier <[email protected]>
  516. * XmlWriter.cs: made ws and namespaceManager protected. mcs has a bug
  517. that allowed compiling this.
  518. [ FIXME: filed bug #29435. mcs should have failed on this ]
  519. 2002-08-25 Tim Coleman <[email protected]>
  520. * XmlNode.cs:
  521. Change CreateNavigator to not be virtual.
  522. * XmlElement.cs:
  523. Add set_Prefix and InnerText accessors.
  524. * XmlEntityReference.cs:
  525. Add set_Value accessor.
  526. * XmlTextWriter.cs:
  527. Make objects which should be private private.
  528. * XmlWriter.cs:
  529. Remove WriteStartElementInternal abstract definition.
  530. * XmlValidatingReader.cs:
  531. New stubs added.
  532. 2002-08-22 Jason Diamond <[email protected]>
  533. * XmlAttributeCollection.cs, XmlElement.cs: Implementation of RemoveAll
  534. and RemoveAllAttributes courtesy of Matt Hunter <[email protected]>.
  535. 2002-08-22 Jason Diamond <[email protected]>
  536. * XmlElement.cs: Correction to previous GetElementsByTagName patch
  537. courtesy of Matt Hunter <[email protected]>.
  538. 2002-08-22 Jason Diamond <[email protected]>
  539. * XmlDocument.cs, XmlElement.cs: Added implementation of namepsace
  540. qualified GetElementsByTagName courtesy of Matt Hunter
  541. <[email protected]>.
  542. 2002-08-19 Jason Diamond <[email protected]>
  543. * XmlDocument.cs, XmlElement.cs: Added implementation of
  544. GetElementsByTagName courtesy of Matt Hunter <[email protected]>.
  545. 2002-08-16 Jason Diamond <[email protected]>
  546. * XmlElement.cs: Fixed writing out qualified elements courtesy of
  547. Marcus Bürgel <[email protected]>.
  548. 2002-08-13 Tim Coleman <[email protected]>
  549. * XmlTextWriter.cs:
  550. Partial implementation of WriteQualifiedName ().
  551. 2002-08-07 Kral Ferch <[email protected]>
  552. * XmlCharacterData.cs: Implemented AppendData(), DeleteData(),
  553. InsertData(), and ReplaceData(). These methods fire the
  554. NodeChanging and NodeChanged events.
  555. * XmlDocument.cs: Fixed bugs in onNodeChanged() and onNodeChanging().
  556. * XmlNode.cs: AppendChild() fires NodeInserting and NodeInserted events.
  557. RemoveAll() and RemoveChild() fire NodeRemoving and NodeRemoved events.
  558. 2002-08-03 Tim Coleman <[email protected]>
  559. * XmlNamespaceManager.cs:
  560. .Net allows the empty namespace to be redefined
  561. at a later point, but the current implementation
  562. did not. This fixes a hashtable conflict.
  563. 2002-07-26 Tim Coleman <[email protected]>
  564. * XmlTextWriter.cs:
  565. When given a textwriter, check to see if it has a
  566. null encoding. This was being done for other inputs
  567. than a textwriter.
  568. Wed Jul 24 13:16:19 CEST 2002 Paolo Molaro <[email protected]>
  569. * XmlTextReader.cs: rough line/column support.
  570. 2002-07-23 Duncan Mak <[email protected]>
  571. * XmlConvert.cs: Implement the ToDateTime method. ToDateTime
  572. (string, string []) is particularly strange.
  573. * XmlException.cs: Remember to call the base serialization
  574. constructor.
  575. * XmlNodeReader.cs: Keep a new variable to store the Depth.
  576. 2002-07-14 Jason Diamond <[email protected]>
  577. * XmlAttribute.cs: Removed ownerElement field since we can reuse
  578. parentNode field.
  579. * XmlDocumentNavigator.cs: MoveToParent now moves to the OwnerElement
  580. if the current node is an attribute.
  581. * XmlElement.cs: SetAttributeNode now sets the new attribute's
  582. owner element.
  583. 2002-07-12 Jason Diamond <[email protected]>
  584. * XmlDocument.cs: If null was passed in for prefix or namespaceURI when
  585. creating an element, use String.Empty instead.
  586. 2002-07-12 Piers Haken <[email protected]>
  587. * XmlAttributeCollection.cs: implement some ItemOf indexers
  588. * XmlNamedNodeMap.cs: add internal 'Nodes' accessor for the nodeList field
  589. * XmlNode.cs: SelectNodes: return empty XmlNodeList, not null
  590. 2002-07-06 Ajay kumar Dwivedi <[email protected]>
  591. 2002-10-26 Piers Haken <[email protected]>
  592. * XmlDocumentNavigator.cs: return invalid XPathNodeType (-1) for unknown node types.
  593. 2002-10-23 Gonzalo Paniagua Javier <[email protected]>
  594. * XmlTextReader.cs: don't increment depth for entity references.
  595. 2002-10-22 Tim Haynes <[email protected]>
  596. * - Fixed the duplication of xmlns:xx = yy when serializing the
  597. XML for serialization
  598. Fixed the unnecessary parsing/serializing when adding assemblies
  599. for serialization
  600. Avoided setting the XmlNode.InnerXml property
  601. (as it's not implemented)
  602. Fixed the usage/implementation of
  603. XmlElement.GetElementsByTagName()
  604. 2002-10-21 Duncan Mak <[email protected]>
  605. * XmlDocument.cs:
  606. * XmlElement.cs:
  607. * XmlNode.cs:
  608. * XmlTextReader.cs: Implementation for XmlNode.InnerXml from
  609. Atsushi Enomoto <[email protected]>.
  610. 2002-10-18 Duncan Mak <[email protected]>
  611. * XmlDocument.cs: Applied a patch by Atsushi Enomoto
  612. <[email protected]>.
  613. 2002-10-12 A.Enomoto <[email protected]>
  614. * XmlDocument.cs (ImportNode): Implemented
  615. 2002-10-06 Gonzalo Paniagua Javier <[email protected]>
  616. * XmlDocument.cs: one more Load method implemented.
  617. * XmlTextReader.cs: Depth now works.
  618. 2002-09-22 Gonzalo Paniagua Javier <[email protected]>
  619. * XmlConvert.cs: IsInvalid is now internal.
  620. * XmlNamespaceManager.cs: implemented RemoveNamespace
  621. * XmlTextReader.cs: return BaseURI and Encoding from the parser.
  622. * XmlTextWriter.cs: implemented WriteName and WriteNmToken.
  623. 2002-09-19 Matt Hunter <[email protected]>
  624. * XmlElement.cs: Implementing SetAttributeNode(localName,namespaceURI)
  625. * XmlAttributeCollection.cs: Implemented Append (XmlAttribute)
  626. 2002-09-19 Gonzalo Paniagua Javier <[email protected]>
  627. * XmlConvert.cs: finished implementation.
  628. * XmlTextReader.cs: fixed #30239.
  629. * XmlTextWriter.cs: fixed #30240.
  630. 2002-09-15 Gonzalo Paniagua Javier <[email protected]>
  631. * XmlTextReader.cs: line and position begin with 1.
  632. 2002-09-13 Gonzalo Paniagua Javier <[email protected]>
  633. * XmlException.cs: added a new internal constructor for IXmlLineInfo
  634. and output line and position info in Message.
  635. * XmlReader.cs: implemented missing bits.
  636. 2002-09-12 Piers Haken <[email protected]>
  637. * XmlDocumentNavigator.cs: implement MoveToId()
  638. 2002-09-05 Gonzalo Paniagua Javier <[email protected]>
  639. * XmlTextWriter.cs: fixed bug #29886.
  640. 2002-08-26 Ravi Pratap <[email protected]>
  641. * XmlAttribute.cs (InnerText): Implement getting this property.
  642. * XmlNode.cs (InnerText): Ensure that we append only values of
  643. text nodes.
  644. 2002-08-26 Gonzalo Paniagua Javier <[email protected]>
  645. * XmlWriter.cs: made ws and namespaceManager protected. mcs has a bug
  646. that allowed compiling this.
  647. [ FIXME: filed bug #29435. mcs should have failed on this ]
  648. 2002-08-25 Tim Coleman <[email protected]>
  649. * XmlNode.cs:
  650. Change CreateNavigator to not be virtual.
  651. * XmlElement.cs:
  652. Add set_Prefix and InnerText accessors.
  653. * XmlEntityReference.cs:
  654. Add set_Value accessor.
  655. * XmlTextWriter.cs:
  656. Make objects which should be private private.
  657. * XmlWriter.cs:
  658. Remove WriteStartElementInternal abstract definition.
  659. * XmlValidatingReader.cs:
  660. New stubs added.
  661. 2002-08-22 Jason Diamond <[email protected]>
  662. * XmlAttributeCollection.cs, XmlElement.cs: Implementation of RemoveAll
  663. and RemoveAllAttributes courtesy of Matt Hunter <[email protected]>.
  664. 2002-08-22 Jason Diamond <[email protected]>
  665. * XmlElement.cs: Correction to previous GetElementsByTagName patch
  666. courtesy of Matt Hunter <[email protected]>.
  667. 2002-08-22 Jason Diamond <[email protected]>
  668. * XmlDocument.cs, XmlElement.cs: Added implementation of namepsace
  669. qualified GetElementsByTagName courtesy of Matt Hunter
  670. <[email protected]>.
  671. 2002-08-19 Jason Diamond <[email protected]>
  672. * XmlDocument.cs, XmlElement.cs: Added implementation of
  673. GetElementsByTagName courtesy of Matt Hunter <[email protected]>.
  674. 2002-08-16 Jason Diamond <[email protected]>
  675. * XmlElement.cs: Fixed writing out qualified elements courtesy of
  676. Marcus Bürgel <[email protected]>.
  677. 2002-08-13 Tim Coleman <[email protected]>
  678. * XmlTextWriter.cs:
  679. Partial implementation of WriteQualifiedName ().
  680. 2002-08-07 Kral Ferch <[email protected]>
  681. * XmlCharacterData.cs: Implemented AppendData(), DeleteData(),
  682. InsertData(), and ReplaceData(). These methods fire the
  683. NodeChanging and NodeChanged events.
  684. * XmlDocument.cs: Fixed bugs in onNodeChanged() and onNodeChanging().
  685. * XmlNode.cs: AppendChild() fires NodeInserting and NodeInserted events.
  686. RemoveAll() and RemoveChild() fire NodeRemoving and NodeRemoved events.
  687. 2002-08-03 Tim Coleman <[email protected]>
  688. * XmlNamespaceManager.cs:
  689. .Net allows the empty namespace to be redefined
  690. at a later point, but the current implementation
  691. did not. This fixes a hashtable conflict.
  692. 2002-07-26 Tim Coleman <[email protected]>
  693. * XmlTextWriter.cs:
  694. When given a textwriter, check to see if it has a
  695. null encoding. This was being done for other inputs
  696. than a textwriter.
  697. Wed Jul 24 13:16:19 CEST 2002 Paolo Molaro <[email protected]>
  698. * XmlTextReader.cs: rough line/column support.
  699. 2002-07-23 Duncan Mak <[email protected]>
  700. * XmlConvert.cs: Implement the ToDateTime method. ToDateTime
  701. (string, string []) is particularly strange.
  702. * XmlException.cs: Remember to call the base serialization
  703. constructor.
  704. * XmlNodeReader.cs: Keep a new variable to store the Depth.
  705. 2002-07-14 Jason Diamond <[email protected]>
  706. * XmlAttribute.cs: Removed ownerElement field since we can reuse
  707. parentNode field.
  708. * XmlDocumentNavigator.cs: MoveToParent now moves to the OwnerElement
  709. if the current node is an attribute.
  710. * XmlElement.cs: SetAttributeNode now sets the new attribute's
  711. owner element.
  712. 2002-07-12 Jason Diamond <[email protected]>
  713. * XmlDocument.cs: If null was passed in for prefix or namespaceURI when
  714. creating an element, use String.Empty instead.
  715. 2002-07-12 Piers Haken <[email protected]>
  716. * XmlAttributeCollection.cs: implement some ItemOf indexers
  717. * XmlNamedNodeMap.cs: add internal 'Nodes' accessor for the nodeList field
  718. * XmlNode.cs: SelectNodes: return empty XmlNodeList, not null
  719. 2002-07-06 Ajay kumar Dwivedi <[email protected]>
  720. * XmlTextWriter: Fixed Indentation. IndentationOverridden should
  721. not be set when inside a attribute.
  722. 2002-07-06 Ajay kumar Dwivedi <[email protected]>
  723. * XmlTextWriter: In WriteStartElement, if namespace is null and
  724. prefix is null|empty do not write out xmlns=""
  725. * XmlWriter: WriteStartElement calls the virtual method with null
  726. argument instead of empty string.
  727. 2002-07-05 Gonzalo Paniagua Javier <[email protected]>
  728. * XmlTextReader.cs: implemented .ctor (Stream).
  729. 2002-06-26 Duncan Mak <[email protected]>
  730. * XmlNodeReader.cs: Implementation of most of the properties, and
  731. some of the related methods.
  732. 2002-06-23 Piers Haken <[email protected]>
  733. * XmlDocumentNavigator.cs: implement Clone()
  734. * XmlElement.cs: remove bogus unimplemented override of InnerText
  735. * XmlNode.cs: implment SelectNodes/SelectSingleNode
  736. * XmlNodeArrayList.cs: new support class for SelectNodes
  737. 2002-06-21 Ajay kumar Dwivedi <[email protected]>
  738. * XmlQualifiedName: Name and Namespaces are never null. If null is passed
  739. to the constructor, set them to empty strings.
  740. Fixed the Operators.
  741. 2002-06-18 Ajay kumar Dwivedi <[email protected]>
  742. * XmlTextReader.cs: HasLineInfo returns false instead of throwing an
  743. Exception.
  744. 2002-06-14 Duncan Mak <[email protected]>
  745. * XmlConvert.cs: Added CLSCompliant attributes to methods.
  746. 2002-06-12 Duncan Mak <[email protected]>
  747. * XmlCharacterData.cs (Value): Throw an ArgumentException in the
  748. set block if the node is read-only.
  749. 2002-06-10 Ajay kumar Dwivedi <[email protected]>
  750. * XmlConstruct.cs : New Internal class with Helper methods for
  751. Checking XmlConstructs
  752. * XmlConvert.cs: Implemented most of the methods
  753. 2002-06-08 Duncan Mak <[email protected]>
  754. * XmlDocument.cs (Load):
  755. Added bits to Load (string) for BaseURI support.
  756. * XmlAttribute.cs (BaseURI):
  757. * XmlDocument.cs (BaseURI):
  758. * XmlEntity.cs (BaseURI): Implemented.
  759. 2002-05-27 Jason Diamond <[email protected]>
  760. * XmlDocumentNavigator.cs: Added file to directory.
  761. * XmlNode.cs (CreateNavigator): Implemented.
  762. (InnerText): Implemented.
  763. * XmlDocument.cs (NamespaceURI, Prefix): Return String.Empty instead of
  764. throwing exception.
  765. (Load(XmlReader)): Allow for namespace qualified attributes.
  766. * XmlElement.cs: Implemented GetAttribute(string, string) and both
  767. GetAttributeNode overloads.
  768. (SetAttributeNode(XmlAttribute)): Implemented.
  769. * XmlNamedNodeMap.cs: Fixed copy/paste bugs in GetNamedItem(string, string)
  770. and RemoveNamedItem(string, string).
  771. * XmlLinkedNode.cs (PreviousSibling): Implemented.
  772. * XmlTextReader.cs: Added code to maintain the order of attributes as
  773. they're parsed. XML doesn't require this but Microsoft's parser does it and
  774. matching them makes testing easier so now we have it, too.
  775. 2002-05-26 Miguel de Icaza <[email protected]>
  776. * XmlDocument.cs: Implement the Save methods.
  777. 2002-05-08 Mike Kestner <[email protected]>
  778. * XmlNamedNodeMap.cs (SetNamedItem): Fixed a copy/paste bug.
  779. 2002-04-28 Duncan Mak <[email protected]>
  780. * XmlSignificantWhitespace.cs (Value):
  781. * XmlWhitespace.cs (Value): Added MonoTODO to the 'set'
  782. block. Added new private method, IsValidWhitespaceChar, for
  783. checking.
  784. 2002-04-16 Duncan Mak <[email protected]>
  785. * XmlParserContext.cs (NameTable): Fixed a typo in the set block.
  786. 2002-04-12 Duncan Mak <[email protected]>
  787. * XmlAttribute.cs (Prefix): Added preliminary code for set block,
  788. added comment on work that needs to be done here. A new MonoTODO item.
  789. * XmlDocument.cs (ctor): Corrected constructor signature, changed
  790. parameter from 'NameTable' to 'XmlNameTable'.
  791. * XmlDocumentFragment.cs (InnerXml): Added missing set block.
  792. * XmlCaseOrder.cs: Moved to System.Xml.XPath.
  793. 2002-04-10 Duncan Mak <[email protected]>
  794. * XmlNodeReader.cs: Initial stubs for the class.
  795. 2002-04-08 Kral Ferch <[email protected]>
  796. * XmlAttributes.cs: InnerXml getter, WriteContentTo, and WriteTo
  797. implementations.
  798. * XmlDeclaration.cs: WriteTo implementation.
  799. * XmlDocument.cs: InnerXml getter implementation.
  800. * XmlElement.cs: InnerXml getter implementation.
  801. * XmlNode.cs: Removed MonoTODO attrib on OuterXml.
  802. * XmlSignificantWhitespace.cs: WriteTo implementation.
  803. * XmlText.cs: WriteContentTo and WriteTo implementation.
  804. * XmlTextWriter.cs: WriteRaw implementation.
  805. * XmlWhitespace.cs: WriteContentTo and WriteTo implementations.
  806. 2002-04-05 Kral Ferch <[email protected]>
  807. * XmlAttributes.cs: Added reminder MonoTODO to set NamespaceURI
  808. if prefix in constructor is one of the default ones.
  809. * XmlCharacterData.cs: Returns String.Empty for Value and Data
  810. even when constructed with null.
  811. * XmlDeclaration.cs: Value doesn't put encoding or standalone
  812. in if they are empty.
  813. * XmlDocument.cs: Implemented CreateNode methods and this caused
  814. the changes in the other files in this checkin.
  815. * XmlProcessingInstruction.cs: Returns String.Empty for Value and Data
  816. even when constructed with null.
  817. * XmlWhitespace.cs: Changed Value 'get' to return Data.
  818. 2002-04-01 Kral Ferch <[email protected]>
  819. * XmlTextWriter.cs: Impls for WriteEndDocument and WriteFullEndElement.
  820. 2002-03-31 Kral Ferch <[email protected]>
  821. * XmlTextWriter.cs: Impls for LookupPrefix, WriteBase64,
  822. and WriteCharEntity.
  823. * XmlWrite.cs: Fixed bug where attribute namespace decl
  824. was pushing a scope onto the namespace manager when it shouldn't
  825. have been.
  826. 2002-03-31 Kral Ferch <[email protected]>
  827. * XmlTextWriter.cs: Some tweaks for WriteAttibuteString
  828. in different states (no open start element, in WriteState.Content mode).
  829. 2002-03-29 Kral Ferch <[email protected]>
  830. * XmlTextWriter.cs: XmlLang and XmlSpace properties
  831. and WriteWhitespace.
  832. * XmlTextWriterOpenElement.cs: scope support for XmlLang
  833. and XmlSpace.
  834. 2002-03-29 Kral Ferch <[email protected]>
  835. * XmlTextWriter.cs: Working on Attribute methods.
  836. * XmlWriter.cs: Working on Attribute methods.
  837. 2002-03-28 Duncan Mak <[email protected]>
  838. * XmlDocument.cs (CreateWhitespace):
  839. (CreateSignificantWhitespace): Removed extraneous call to the ToCharArray
  840. method.
  841. * XmlSignificantWhitespace.cs (Value): Removed MonoTODO attribute.
  842. 2002-03-26 Duncan Mak <[email protected]>
  843. * XmlDocument.cs (CreateDocumentType): Implemented.
  844. * XmlNode.cs (Value): Implemented.
  845. * XmlProcessingInstruction.cs (InnerText): Implemented. It works just
  846. like XmlCharacterData.
  847. * XmlDeclaration.cs (CloneNode):
  848. * XmlDocument.cs (CreateXmlDeclaration): Added missing constructor
  849. arguments.
  850. * XmlCharacterData.cs (InnerText): Implemented. Funny that the
  851. docs say it is the "The concatenated values of the node and all
  852. the children of the node.". I wrote some test programs and
  853. couldn't get any of the derived nodes to AppendChild. For now,
  854. InnerText == Data == Value.
  855. (Substring): Fixed typo.
  856. * XmlDeclaration.cs (XmlDeclaration): Fixed the constructor parameter signature.
  857. * XmlImplementation.cs (CreateDocument): Implemented.
  858. 2002-03-25 Duncan Mak <[email protected]>
  859. * XmlDeclaration.cs: Rewrote the class, fixed formatting, added
  860. missing properties (InnerText, Value).
  861. * XmlDocument.cs (CreateXmlDeclaration): Implemented.
  862. 2002-03-23 Kral Ferch <[email protected]>
  863. * XmlTextWriter.cs: Impls for BaseStream and
  864. Namespaces and WriteState.
  865. * XmlWriter.cs: WriteState and WriteStartElementInternal.
  866. 2002-03-23 Kral Ferch <[email protected]>
  867. * XmlNodeListChildren.cs: made class internal
  868. instead of public. Shouldn't be visible outside
  869. of System.Xml.
  870. * XmlTextWriter.cs: Implementations for Formatting,
  871. IndentChar, Indenting, QuoteChar, WriteStartDocument(standalone).
  872. Suppresses encoding on xml declaration if null stream passed in.
  873. Formats output including suppressing indentation for elements in
  874. mixed content mode.
  875. * XmlTextWriterOpenElement.cs: Initial checkin.
  876. XmlTextWriter uses stack of these objects to track
  877. state.
  878. 2002-03-22 Mike Kestner <[email protected]>
  879. * XmlElement.cs: impl HasAttribute(string name).
  880. 2002-03-22 Duncan Mak <[email protected]>
  881. * XmlElement.cs: Reformatted.
  882. (CloneNode) Corrected.
  883. * XmlDocument.cs (CreateWhitespace):
  884. (CreateSignificantWhitespace): Implemented.
  885. * XmlAttribute.cs (CloneNode): Changed the child's CloneNode to
  886. true, because Attributes have ChildNodes.
  887. 2002-03-21 Kral Ferch <[email protected]>
  888. * XmlTextWriter.cs: WriteStartDocument tracks state, writes out
  889. xml declaration along with encoding. WriteEndElement throws
  890. exception if no WriteStartElement exists.
  891. 2002-03-20 Duncan Mak <[email protected]>
  892. * XmlEntityReference.cs (CloneNode): Implemented.
  893. * XmlException.cs (Message): Implemented. We need to cache the
  894. message string because SystemException doesn't expose 'message'
  895. from Exception.
  896. * XmlText.cs (Value): Added in the missing Value property.
  897. 2002-03-20 Duncan Mak <[email protected]>
  898. * XmlAttribute.cs (CloneNode): Implemented.
  899. * XmlDocumentFragment.cs (CloneNode): Implemented.
  900. * XmlElement.cs (CloneNode): Implemented.
  901. 2002-03-19 Duncan Mak <[email protected]>
  902. * XmlNotation.cs: Added to CVS.
  903. * XmlAttribute.cs (CloneNode): First crack at the CloneNode method.
  904. * XmlCDataSection.cs (CloneNode): Implemented.
  905. * XmlDocumentFragment.cs: Reformatted and added the missing properties
  906. (InnerXml, OwnerDocument, ParentNode).
  907. (CloneNode): Implemented.
  908. * XmlSignificantWhitespace.cs (CloneNode): Implemented.
  909. (Value) Implemented the 'get' property.
  910. * XmlWhitespace.cs (Module): implemented.
  911. 2002-03-19 Jason Diamond <[email protected]>
  912. * XmlDocument.cs: Fixed typo in Load that was duplicating the LocalName
  913. in the prefix.
  914. 2002-03-18 Jason Diamond <[email protected]>
  915. * XmlTextReader.cs: Don't restore properties after reading last
  916. attribute on an element.
  917. * XmlDocument.cs: Move back to element after reading attributes
  918. so that IsEmptyElement test succeeds.
  919. 2002-03-18 Kral Ferch <[email protected]>
  920. * XmlNamespaceManager.cs: Implemented LookupPrefix.
  921. * XmlTextWriter.cs: Implemented namespace and prefix support.
  922. 2002-03-18 Kral Ferch <[email protected]>
  923. * XmlTextReader.cs: Restores properties after
  924. reading last attribute on an element.
  925. * XmlNode.cs: AppendChild sets the parent
  926. on the child.
  927. 2002-03-17 Kral Ferch <[email protected]>
  928. * XmlCDataSection.cs: Formatting, Implementation for WriteTo.
  929. * XmlComment.cs: Implementations for WriteTo and WriteContentTo.
  930. * XmlElement.cs: Fixed bug in WriteTo.
  931. * XmlProcessingInstruction.cs: Formatting.
  932. * XmlTextWriter.cs: Implementations for Close, WriteCData, WriteComment,
  933. fixes for WriteEndElement, WriteProcessingInstruction.
  934. 2002-03-17 Kral Ferch <[email protected]>
  935. * XmlDocument.cs: Implementations for WriteTo() and WriteContentTo(),
  936. had Load() add PIs to the document, moved onXXX methods to alphabetical
  937. order in the file.
  938. * XmlElement.cs: Implementations for WriteTo() and WriteContentTo().
  939. * XmlNode.cs: Implementations for InnerXml Get and OuterXml.
  940. * XmlProcessingInstruction.cs: Implementations for WriteTo() and
  941. WriteContentTo().
  942. * XmlTextWriter.cs: Implementations for WriteEndElement,
  943. WriteProcessingInstruction, WriteStartElement, and WriteString.
  944. * XmlWriter.cs: Implemented WriteStartElement() methods.
  945. 2002-03-15 Duncan Mak <[email protected]>
  946. * XmlEntity.cs: Added to CVS. Need to implement BaseURI and
  947. InnerText once I know what they do.
  948. * XmlDocumentType.cs (XmlDocumentType): Fix the constructor now
  949. that we can properly chain constructors.
  950. (CloneNode): implemented.
  951. (WriteContentTo): Removed MonoTODO attribute as this method has no
  952. effect in this class.
  953. * XmlProcessingInstruction.cs (Value): Added the missing Set
  954. block.
  955. (InnerText): Added in, but not implemented.
  956. 2002-03-14 Kral Ferch <[email protected]>
  957. * XmlTextWriter.cs: implemented constructors and
  958. WriteCData and WriteComment.
  959. 2002-03-14 Duncan Mak <[email protected]>
  960. * XmlDocument.cs: Moved the NodeChanged EventHandler to its own
  961. file, and updated the callbacks to reflect the change.
  962. (XmlDocument): Added the NameTable constructor.
  963. (NameTable): Also the NameTable property.
  964. * XmlNodeChangedEventHandler.cs: Added, replacing the version that
  965. was in XmlDocument.cs. It has two arguments now (object,
  966. EventArgs) , instead of one (object).
  967. 2002-03-14 Kral Ferch <[email protected]>
  968. * XmlWriter.cs: Formatting.
  969. * XmlTextWriter.cs: Initial checkin.
  970. 2002-03-14 Duncan Mak <[email protected]>
  971. * Validation.cs: Removed, replaced by ValidationType.cs.
  972. * ValidationType.cs: Added.
  973. 2002-03-13 Duncan Mak <[email protected]>
  974. * XmlException.cs: Made it [Serializable], implemented good ol'
  975. GetObjectData, and the serialization constructor.
  976. * XmlNamedNodeMap.cs (SetNamedItem): Check for the Name property.
  977. (SetNamedItem): Reverted (added back in) the patch with the
  978. ReadOnly checks. "Don't doubt yourself, my son... you were right!"
  979. * XmlNamedNodeMap.cs (GetEnumerator): piggyback on the ArrayList implementation.
  980. (GetNamedItem (string, string)): implemented.
  981. (RemoveNamedItem): implemented.
  982. (SetNamedItem): implemented.
  983. 2002-03-12 Kral Ferch <[email protected]>
  984. * XmlAttribute.cs: Moved a method from amongst properties down to
  985. it's alphabetical position in the methods section.
  986. * XmlNode.cs: Passes in 'this' to XmlNodeList constructor instead of
  987. last linked child. Set XmlNode base class to return false for IsReadOnly().
  988. Implemented GetEnumerator() and RemoveChild().
  989. * XmlNodeListChildren.cs: Now stores the parent instead of the last child.
  990. This is to support the behavior that the Enumerator doesn't become invalid
  991. when changes to the children occur. Flushed out rest of implementation for
  992. MoveNext, Current, and Reset.
  993. 2002-03-12 Duncan Mak <[email protected]>
  994. * XmlCharacterData.cs: Reformatted the properties for better readability.
  995. * XmlLinkedNode.cs: Removed the awful boxy comments.
  996. * XmlNamedNodeMap.cs (Count):
  997. (Item): Implemented. Tests will be coming.
  998. * XmlEntityReference.cs:
  999. * XmlSignificantWhitespace.cs: Implemented these classes except for
  1000. the Clone, WriteContentTo and WriteTo methods. Will have to
  1001. investigate into these later.
  1002. 2002-03-11 Duncan Mak <[email protected]>
  1003. * IHasXmlNode.cs: Added to CVS.
  1004. 2002-03-08 Jason Diamond <[email protected]>
  1005. * XmlParserContext.cs: Added missing constructors and missing Encoding
  1006. property.
  1007. * XmlTextReader.cs: Start using the XmlParserContext class.
  1008. 2002-03-08 Jason Diamond <[email protected]>
  1009. * XmlTextReader.cs: Implemented MoveToElement and MoveToFirstAttribute.
  1010. 2002-03-08 Mike Kestner <[email protected]>
  1011. * XmlNode.cs (Item): Implemented both indexers.
  1012. 2002-03-08 Jason Diamond <[email protected]>
  1013. * DomEncodingType.cs, TreePosition.cs, XPathNodeType.cs, XmlDataType.cs,
  1014. XmlExceptionCode.cs, XmlSortOrder.cs, XmlUtil.cs: Removed files.
  1015. 2002-03-08 Jason Diamond <[email protected]>
  1016. * XmlAttribute.cs: Attribute nodes are supposed to store their values
  1017. as child nodes so updated to reflect that.
  1018. * XmlDocument.cs, XmlElement.cs, XmlNode.cs: Moved code that was
  1019. duplicated in XmlDocument and XmlElement into XmlNode so that it
  1020. wouldn't have to be duplicated in XmlAttribute, too.
  1021. 2002-03-08 Kral Ferch <[email protected]>
  1022. * XmlNodeList.cs, XmlDocument.cs, XmlLinkedNode.cs,
  1023. XmlNode.cs: Formatting.
  1024. * XmlNodeListChildren.cs: Implementation of XmlNodeList
  1025. for XmlNode.ChildNodes property.
  1026. * XmlNodeListAsArrayList.cs: Removed file. Using different
  1027. data structure (circular list) in XmlNode so this file
  1028. is no longer valid.
  1029. * XmlDocument.cs, XmlElement.cs: New ChildNodes tests found
  1030. bug in setter property of LastLinkedChild so fixed it.
  1031. 2002-03-06 Jason Diamond <[email protected]>
  1032. * XmlInputSource.cs, XmlNames_1_0.cs, XmlParse.cs: Removed files.
  1033. We already have a parser in XmlTextReader.
  1034. * XmlException.cs: Removed constructor accepting XmlInputSource.
  1035. 2002-03-06 Kral Ferch <[email protected]>
  1036. * XmlNode.cs: Rewrote this class from scratch with
  1037. MonoToDo attribs and NotImplementedExceptions. Now defines an
  1038. internal LastLinkedNode property to aid the new implementation.
  1039. XmlNodes only have ref to owner doc and parent nodes now.
  1040. * XmlLinkedNode.cs: Added NextLinkedSibling internal property
  1041. and ref to next sibling to support walking our circular child
  1042. node list.
  1043. * XmlDocument.cs: Added ref to last child node and overrides
  1044. XmlNode's internal LastLinkedChild property to support walking
  1045. our circular child node list.
  1046. 2002-03-02 Kral Ferch <[email protected]>
  1047. * XmlProcessingInstructions.cs: Class was empty. Implemented
  1048. constructor, properties, and CloneNode() method. Put in
  1049. MonoToDo attrib for remaining methods.
  1050. * XmlComment.cs: Reformatted and put in MonoToDo attribs.
  1051. Got rid of helper methods and fields since they were no
  1052. longer needed.
  1053. * XmlLinkedNode.cs: Reformatted and put in MonoToDo attribs.
  1054. * XmlDocument.cs: Added code to Load(XmlReader) to create XmlComment,
  1055. XmlCDataSection, and XmlProcessingInstruction nodes. Implemented
  1056. Createxxx() methods for those three node types.
  1057. 2002-03-02 Jason Diamond <[email protected]>
  1058. * XmlDocument.cs: Implemented the remaining CreateElement and
  1059. CreateAttribute methods.
  1060. * XmlAttribute.cs: Re-implemented.
  1061. * XmlElement.cs: Set owner element on attributes. Reformatted.
  1062. 2002-03-02 Jason Diamond <[email protected]>
  1063. * XmlTextReader.cs: Implemented MoveToNextAttribute().
  1064. * XmlDocument.cs: Reformatted. Adding missing methods and MonoTODO
  1065. attributes. Create attribute nodes while loading. Implemented
  1066. Load(string) and CreateTextNode().
  1067. * XmlCharacterData.cs, XmlText.cs: Re-implemented.
  1068. * XmlCDataSection.cs, XmlComment.cs: Call correct constructor in
  1069. XmlCharacterData.
  1070. * XmlNamedNodeMap.cs, XmlAttributeCollection.cs: Stubbed out.
  1071. 2002-03-02 Mike Kestner <[email protected]>
  1072. * XmlAttribute.cs : Using fix.
  1073. * XmlDocument.cs (CreateAttribute(String)): Implement.
  1074. 2002-03-02 Jason Diamond <[email protected]>
  1075. * XmlNamespaceManager.cs: Atomize prefixes and namespaces strings in
  1076. the name table.
  1077. 2002-02-28 Jason Diamond <[email protected]>
  1078. * XmlDocument.cs, XmlNode.cs: Initial implementation of LoadXml
  1079. courtesy of Kral Ferch <[email protected]>.
  1080. 2002-02-28 Jason Diamond <[email protected]>
  1081. * XmlException.cs, XmlReader.cs, XmlTextReader.cs: Reformatted,
  1082. added missing members and MonoTODO attributes.
  1083. * XmlTextReader.cs: Throw XmlException instead of System.Exception.
  1084. 2002-02-27 Jason Diamond <[email protected]>
  1085. * XmlElement.cs: Reformatted, added missing members and MonoTODO
  1086. attributes.
  1087. 2002-02-26 Duncan Mak <[email protected]>
  1088. * XmlCDataSection.cs: Initial implementation.
  1089. * NameTable.cs: Fixed the whole thing. Wrote a NUnit test to test
  1090. it out. This should (hopefully) be correct.
  1091. 2002-02-26 Jason Diamond <[email protected]>
  1092. * XmlTextReader.cs: Apparently Microsoft's implementation treats
  1093. namespace declarations as attributes so we do now, too.
  1094. * XmlNamespaceManager.cs: HasNamespace fixed so that it only
  1095. checks the current scope.
  1096. 2002-02-26 Duncan Mak <[email protected]>
  1097. * XmlDocumentType.cs: Added a few hacks here and there to
  1098. temporarily fix the "I broke the build issue".
  1099. 2002-02-25 Jason Diamond <[email protected]>
  1100. * XmlDocument.cs, XmlElement.cs, XmlNode.xs, XmlNodeList.cs,
  1101. XmlNodeListAsArrayList.cs: Multiple fixes necessary to get
  1102. simple test to pass. The existing code is really shitty so I'll
  1103. probably start writing tests and refactoring before much else
  1104. can get done.
  1105. 2002-02-25 Duncan Mak <[email protected]>
  1106. * NameTable.cs: Implemented.
  1107. * XmlDeclaration.cs: It should inherit from XmlLinkedNode, not XmlNode.
  1108. 2002-02-24 Duncan Mak <[email protected]>
  1109. * XmlNodeOrder.cs: Added to CVS.
  1110. * XmlQualifiedName.cs: Fixed a warning from Equals ().
  1111. * XmlTokenizedType.cs: Added to CVS.
  1112. * XmlUrlResolver.cs: Added to CVS with one TODO task.
  1113. 2002-02-23 Duncan Mak <[email protected]>
  1114. * XmlQualifiedName.cs: Fixed ToString () and added the operators
  1115. (== and !=).
  1116. 2002-02-23 Jason Diamond <[email protected]>
  1117. * XmlTextReader.cs: Added support for qualified attributes.
  1118. 2002-02-23 Jason Diamond <[email protected]>
  1119. * XmlNamespaceManager.cs: Initial implementation.
  1120. * XmlTextReader.cs: Added support for NamespaceURI property on
  1121. elements.
  1122. 2002-02-23 Nick Drochak <[email protected]>
  1123. * ChangeLog: Add the change log to this directory
  1124. * XmlQualifiedName.cs: Fixed compile errors so it would build. Still has
  1125. MonoTODO's