ChangeLog 47 KB

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