ChangeLog 59 KB

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