ChangeLog 57 KB

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