ChangeLog 43 KB

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