ChangeLog 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790
  1. 2002-09-13 Gonzalo Paniagua Javier <[email protected]>
  2. * XmlException.cs: added a new internal constructor for IXmlLineInfo
  3. and output line and position info in Message.
  4. * XmlReader.cs: implemented missing bits.
  5. 2002-09-12 Piers Haken <[email protected]>
  6. * XmlDocumentNavigator.cs: implement MoveToId()
  7. 2002-09-05 Gonzalo Paniagua Javier <[email protected]>
  8. * XmlTextWriter.cs: fixed bug #29886.
  9. 2002-08-26 Ravi Pratap <[email protected]>
  10. * XmlAttribute.cs (InnerText): Implement getting this property.
  11. * XmlNode.cs (InnerText): Ensure that we append only values of
  12. text nodes.
  13. 2002-08-26 Gonzalo Paniagua Javier <[email protected]>
  14. * XmlWriter.cs: made ws and namespaceManager protected. mcs has a bug
  15. that allowed compiling this.
  16. [ FIXME: filed bug #29435. mcs should have failed on this ]
  17. 2002-08-25 Tim Coleman <[email protected]>
  18. * XmlNode.cs:
  19. Change CreateNavigator to not be virtual.
  20. * XmlElement.cs:
  21. Add set_Prefix and InnerText accessors.
  22. * XmlEntityReference.cs:
  23. Add set_Value accessor.
  24. * XmlTextWriter.cs:
  25. Make objects which should be private private.
  26. * XmlWriter.cs:
  27. Remove WriteStartElementInternal abstract definition.
  28. * XmlValidatingReader.cs:
  29. New stubs added.
  30. 2002-08-22 Jason Diamond <[email protected]>
  31. * XmlAttributeCollection.cs, XmlElement.cs: Implementation of RemoveAll
  32. and RemoveAllAttributes courtesy of Matt Hunter <[email protected]>.
  33. 2002-08-22 Jason Diamond <[email protected]>
  34. * XmlElement.cs: Correction to previous GetElementsByTagName patch
  35. courtesy of Matt Hunter <[email protected]>.
  36. 2002-08-22 Jason Diamond <[email protected]>
  37. * XmlDocument.cs, XmlElement.cs: Added implementation of namepsace
  38. qualified GetElementsByTagName courtesy of Matt Hunter
  39. <[email protected]>.
  40. 2002-08-19 Jason Diamond <[email protected]>
  41. * XmlDocument.cs, XmlElement.cs: Added implementation of
  42. GetElementsByTagName courtesy of Matt Hunter <[email protected]>.
  43. 2002-08-16 Jason Diamond <[email protected]>
  44. * XmlElement.cs: Fixed writing out qualified elements courtesy of
  45. Marcus Bürgel <[email protected]>.
  46. 2002-08-13 Tim Coleman <[email protected]>
  47. * XmlTextWriter.cs:
  48. Partial implementation of WriteQualifiedName ().
  49. 2002-08-07 Kral Ferch <[email protected]>
  50. * XmlCharacterData.cs: Implemented AppendData(), DeleteData(),
  51. InsertData(), and ReplaceData(). These methods fire the
  52. NodeChanging and NodeChanged events.
  53. * XmlDocument.cs: Fixed bugs in onNodeChanged() and onNodeChanging().
  54. * XmlNode.cs: AppendChild() fires NodeInserting and NodeInserted events.
  55. RemoveAll() and RemoveChild() fire NodeRemoving and NodeRemoved events.
  56. 2002-08-03 Tim Coleman <[email protected]>
  57. * XmlNamespaceManager.cs:
  58. .Net allows the empty namespace to be redefined
  59. at a later point, but the current implementation
  60. did not. This fixes a hashtable conflict.
  61. 2002-07-26 Tim Coleman <[email protected]>
  62. * XmlTextWriter.cs:
  63. When given a textwriter, check to see if it has a
  64. null encoding. This was being done for other inputs
  65. than a textwriter.
  66. Wed Jul 24 13:16:19 CEST 2002 Paolo Molaro <[email protected]>
  67. * XmlTextReader.cs: rough line/column support.
  68. 2002-07-23 Duncan Mak <[email protected]>
  69. * XmlConvert.cs: Implement the ToDateTime method. ToDateTime
  70. (string, string []) is particularly strange.
  71. * XmlException.cs: Remember to call the base serialization
  72. constructor.
  73. * XmlNodeReader.cs: Keep a new variable to store the Depth.
  74. 2002-07-14 Jason Diamond <[email protected]>
  75. * XmlAttribute.cs: Removed ownerElement field since we can reuse
  76. parentNode field.
  77. * XmlDocumentNavigator.cs: MoveToParent now moves to the OwnerElement
  78. if the current node is an attribute.
  79. * XmlElement.cs: SetAttributeNode now sets the new attribute's
  80. owner element.
  81. 2002-07-12 Jason Diamond <[email protected]>
  82. * XmlDocument.cs: If null was passed in for prefix or namespaceURI when
  83. creating an element, use String.Empty instead.
  84. 2002-07-12 Piers Haken <[email protected]>
  85. * XmlAttributeCollection.cs: implement some ItemOf indexers
  86. * XmlNamedNodeMap.cs: add internal 'Nodes' accessor for the nodeList field
  87. * XmlNode.cs: SelectNodes: return empty XmlNodeList, not null
  88. 2002-07-06 Ajay kumar Dwivedi <[email protected]>
  89. * XmlTextWriter: Fixed Indentation. IndentationOverridden should
  90. not be set when inside a attribute.
  91. 2002-07-06 Ajay kumar Dwivedi <[email protected]>
  92. * XmlTextWriter: In WriteStartElement, if namespace is null and
  93. prefix is null|empty do not write out xmlns=""
  94. * XmlWriter: WriteStartElement calls the virtual method with null
  95. argument instead of empty string.
  96. 2002-07-05 Gonzalo Paniagua Javier <[email protected]>
  97. * XmlTextReader.cs: implemented .ctor (Stream).
  98. 2002-06-26 Duncan Mak <[email protected]>
  99. * XmlNodeReader.cs: Implementation of most of the properties, and
  100. some of the related methods.
  101. 2002-06-23 Piers Haken <[email protected]>
  102. * XmlDocumentNavigator.cs: implement Clone()
  103. * XmlElement.cs: remove bogus unimplemented override of InnerText
  104. * XmlNode.cs: implment SelectNodes/SelectSingleNode
  105. * XmlNodeArrayList.cs: new support class for SelectNodes
  106. 2002-06-21 Ajay kumar Dwivedi <[email protected]>
  107. * XmlQualifiedName: Name and Namespaces are never null. If null is passed
  108. to the constructor, set them to empty strings.
  109. Fixed the Operators.
  110. 2002-06-18 Ajay kumar Dwivedi <[email protected]>
  111. * XmlTextReader.cs: HasLineInfo returns false instead of throwing an
  112. Exception.
  113. 2002-06-14 Duncan Mak <[email protected]>
  114. * XmlConvert.cs: Added CLSCompliant attributes to methods.
  115. 2002-06-12 Duncan Mak <[email protected]>
  116. * XmlCharacterData.cs (Value): Throw an ArgumentException in the
  117. set block if the node is read-only.
  118. 2002-06-10 Ajay kumar Dwivedi <[email protected]>
  119. * XmlConstruct.cs : New Internal class with Helper methods for
  120. Checking XmlConstructs
  121. * XmlConvert.cs: Implemented most of the methods
  122. 2002-06-08 Duncan Mak <[email protected]>
  123. * XmlDocument.cs (Load):
  124. Added bits to Load (string) for BaseURI support.
  125. * XmlAttribute.cs (BaseURI):
  126. * XmlDocument.cs (BaseURI):
  127. * XmlEntity.cs (BaseURI): Implemented.
  128. 2002-05-27 Jason Diamond <[email protected]>
  129. * XmlDocumentNavigator.cs: Added file to directory.
  130. * XmlNode.cs (CreateNavigator): Implemented.
  131. (InnerText): Implemented.
  132. * XmlDocument.cs (NamespaceURI, Prefix): Return String.Empty instead of
  133. throwing exception.
  134. (Load(XmlReader)): Allow for namespace qualified attributes.
  135. * XmlElement.cs: Implemented GetAttribute(string, string) and both
  136. GetAttributeNode overloads.
  137. (SetAttributeNode(XmlAttribute)): Implemented.
  138. * XmlNamedNodeMap.cs: Fixed copy/paste bugs in GetNamedItem(string, string)
  139. and RemoveNamedItem(string, string).
  140. * XmlLinkedNode.cs (PreviousSibling): Implemented.
  141. * XmlTextReader.cs: Added code to maintain the order of attributes as
  142. they're parsed. XML doesn't require this but Microsoft's parser does it and
  143. matching them makes testing easier so now we have it, too.
  144. 2002-05-26 Miguel de Icaza <[email protected]>
  145. * XmlDocument.cs: Implement the Save methods.
  146. 2002-05-08 Mike Kestner <[email protected]>
  147. * XmlNamedNodeMap.cs (SetNamedItem): Fixed a copy/paste bug.
  148. 2002-04-28 Duncan Mak <[email protected]>
  149. * XmlSignificantWhitespace.cs (Value):
  150. * XmlWhitespace.cs (Value): Added MonoTODO to the 'set'
  151. block. Added new private method, IsValidWhitespaceChar, for
  152. checking.
  153. 2002-04-16 Duncan Mak <[email protected]>
  154. * XmlParserContext.cs (NameTable): Fixed a typo in the set block.
  155. 2002-04-12 Duncan Mak <[email protected]>
  156. * XmlAttribute.cs (Prefix): Added preliminary code for set block,
  157. added comment on work that needs to be done here. A new MonoTODO item.
  158. * XmlDocument.cs (ctor): Corrected constructor signature, changed
  159. parameter from 'NameTable' to 'XmlNameTable'.
  160. * XmlDocumentFragment.cs (InnerXml): Added missing set block.
  161. * XmlCaseOrder.cs: Moved to System.Xml.XPath.
  162. 2002-04-10 Duncan Mak <[email protected]>
  163. * XmlNodeReader.cs: Initial stubs for the class.
  164. 2002-04-08 Kral Ferch <[email protected]>
  165. * XmlAttributes.cs: InnerXml getter, WriteContentTo, and WriteTo
  166. implementations.
  167. * XmlDeclaration.cs: WriteTo implementation.
  168. * XmlDocument.cs: InnerXml getter implementation.
  169. * XmlElement.cs: InnerXml getter implementation.
  170. * XmlNode.cs: Removed MonoTODO attrib on OuterXml.
  171. * XmlSignificantWhitespace.cs: WriteTo implementation.
  172. * XmlText.cs: WriteContentTo and WriteTo implementation.
  173. * XmlTextWriter.cs: WriteRaw implementation.
  174. * XmlWhitespace.cs: WriteContentTo and WriteTo implementations.
  175. 2002-04-05 Kral Ferch <[email protected]>
  176. * XmlAttributes.cs: Added reminder MonoTODO to set NamespaceURI
  177. if prefix in constructor is one of the default ones.
  178. * XmlCharacterData.cs: Returns String.Empty for Value and Data
  179. even when constructed with null.
  180. * XmlDeclaration.cs: Value doesn't put encoding or standalone
  181. in if they are empty.
  182. * XmlDocument.cs: Implemented CreateNode methods and this caused
  183. the changes in the other files in this checkin.
  184. * XmlProcessingInstruction.cs: Returns String.Empty for Value and Data
  185. even when constructed with null.
  186. * XmlWhitespace.cs: Changed Value 'get' to return Data.
  187. 2002-04-01 Kral Ferch <[email protected]>
  188. * XmlTextWriter.cs: Impls for WriteEndDocument and WriteFullEndElement.
  189. 2002-03-31 Kral Ferch <[email protected]>
  190. * XmlTextWriter.cs: Impls for LookupPrefix, WriteBase64,
  191. and WriteCharEntity.
  192. * XmlWrite.cs: Fixed bug where attribute namespace decl
  193. was pushing a scope onto the namespace manager when it shouldn't
  194. have been.
  195. 2002-03-31 Kral Ferch <[email protected]>
  196. * XmlTextWriter.cs: Some tweaks for WriteAttibuteString
  197. in different states (no open start element, in WriteState.Content mode).
  198. 2002-03-29 Kral Ferch <[email protected]>
  199. * XmlTextWriter.cs: XmlLang and XmlSpace properties
  200. and WriteWhitespace.
  201. * XmlTextWriterOpenElement.cs: scope support for XmlLang
  202. and XmlSpace.
  203. 2002-03-29 Kral Ferch <[email protected]>
  204. * XmlTextWriter.cs: Working on Attribute methods.
  205. * XmlWriter.cs: Working on Attribute methods.
  206. 2002-03-28 Duncan Mak <[email protected]>
  207. * XmlDocument.cs (CreateWhitespace):
  208. (CreateSignificantWhitespace): Removed extraneous call to the ToCharArray
  209. method.
  210. * XmlSignificantWhitespace.cs (Value): Removed MonoTODO attribute.
  211. 2002-03-26 Duncan Mak <[email protected]>
  212. * XmlDocument.cs (CreateDocumentType): Implemented.
  213. * XmlNode.cs (Value): Implemented.
  214. * XmlProcessingInstruction.cs (InnerText): Implemented. It works just
  215. like XmlCharacterData.
  216. * XmlDeclaration.cs (CloneNode):
  217. * XmlDocument.cs (CreateXmlDeclaration): Added missing constructor
  218. arguments.
  219. * XmlCharacterData.cs (InnerText): Implemented. Funny that the
  220. docs say it is the "The concatenated values of the node and all
  221. the children of the node.". I wrote some test programs and
  222. couldn't get any of the derived nodes to AppendChild. For now,
  223. InnerText == Data == Value.
  224. (Substring): Fixed typo.
  225. * XmlDeclaration.cs (XmlDeclaration): Fixed the constructor parameter signature.
  226. * XmlImplementation.cs (CreateDocument): Implemented.
  227. 2002-03-25 Duncan Mak <[email protected]>
  228. * XmlDeclaration.cs: Rewrote the class, fixed formatting, added
  229. missing properties (InnerText, Value).
  230. * XmlDocument.cs (CreateXmlDeclaration): Implemented.
  231. 2002-03-23 Kral Ferch <[email protected]>
  232. * XmlTextWriter.cs: Impls for BaseStream and
  233. Namespaces and WriteState.
  234. * XmlWriter.cs: WriteState and WriteStartElementInternal.
  235. 2002-03-23 Kral Ferch <[email protected]>
  236. * XmlNodeListChildren.cs: made class internal
  237. instead of public. Shouldn't be visible outside
  238. of System.Xml.
  239. * XmlTextWriter.cs: Implementations for Formatting,
  240. IndentChar, Indenting, QuoteChar, WriteStartDocument(standalone).
  241. Suppresses encoding on xml declaration if null stream passed in.
  242. Formats output including suppressing indentation for elements in
  243. mixed content mode.
  244. * XmlTextWriterOpenElement.cs: Initial checkin.
  245. XmlTextWriter uses stack of these objects to track
  246. state.
  247. 2002-03-22 Mike Kestner <[email protected]>
  248. * XmlElement.cs: impl HasAttribute(string name).
  249. 2002-03-22 Duncan Mak <[email protected]>
  250. * XmlElement.cs: Reformatted.
  251. (CloneNode) Corrected.
  252. * XmlDocument.cs (CreateWhitespace):
  253. (CreateSignificantWhitespace): Implemented.
  254. * XmlAttribute.cs (CloneNode): Changed the child's CloneNode to
  255. true, because Attributes have ChildNodes.
  256. 2002-03-21 Kral Ferch <[email protected]>
  257. * XmlTextWriter.cs: WriteStartDocument tracks state, writes out
  258. xml declaration along with encoding. WriteEndElement throws
  259. exception if no WriteStartElement exists.
  260. 2002-03-20 Duncan Mak <[email protected]>
  261. * XmlEntityReference.cs (CloneNode): Implemented.
  262. * XmlException.cs (Message): Implemented. We need to cache the
  263. message string because SystemException doesn't expose 'message'
  264. from Exception.
  265. * XmlText.cs (Value): Added in the missing Value property.
  266. 2002-03-20 Duncan Mak <[email protected]>
  267. * XmlAttribute.cs (CloneNode): Implemented.
  268. * XmlDocumentFragment.cs (CloneNode): Implemented.
  269. * XmlElement.cs (CloneNode): Implemented.
  270. 2002-03-19 Duncan Mak <[email protected]>
  271. * XmlNotation.cs: Added to CVS.
  272. * XmlAttribute.cs (CloneNode): First crack at the CloneNode method.
  273. * XmlCDataSection.cs (CloneNode): Implemented.
  274. * XmlDocumentFragment.cs: Reformatted and added the missing properties
  275. (InnerXml, OwnerDocument, ParentNode).
  276. (CloneNode): Implemented.
  277. * XmlSignificantWhitespace.cs (CloneNode): Implemented.
  278. (Value) Implemented the 'get' property.
  279. * XmlWhitespace.cs (Module): implemented.
  280. 2002-03-19 Jason Diamond <[email protected]>
  281. * XmlDocument.cs: Fixed typo in Load that was duplicating the LocalName
  282. in the prefix.
  283. 2002-03-18 Jason Diamond <[email protected]>
  284. * XmlTextReader.cs: Don't restore properties after reading last
  285. attribute on an element.
  286. * XmlDocument.cs: Move back to element after reading attributes
  287. so that IsEmptyElement test succeeds.
  288. 2002-03-18 Kral Ferch <[email protected]>
  289. * XmlNamespaceManager.cs: Implemented LookupPrefix.
  290. * XmlTextWriter.cs: Implemented namespace and prefix support.
  291. 2002-03-18 Kral Ferch <[email protected]>
  292. * XmlTextReader.cs: Restores properties after
  293. reading last attribute on an element.
  294. * XmlNode.cs: AppendChild sets the parent
  295. on the child.
  296. 2002-03-17 Kral Ferch <[email protected]>
  297. * XmlCDataSection.cs: Formatting, Implementation for WriteTo.
  298. * XmlComment.cs: Implementations for WriteTo and WriteContentTo.
  299. * XmlElement.cs: Fixed bug in WriteTo.
  300. * XmlProcessingInstruction.cs: Formatting.
  301. * XmlTextWriter.cs: Implementations for Close, WriteCData, WriteComment,
  302. fixes for WriteEndElement, WriteProcessingInstruction.
  303. 2002-03-17 Kral Ferch <[email protected]>
  304. * XmlDocument.cs: Implementations for WriteTo() and WriteContentTo(),
  305. had Load() add PIs to the document, moved onXXX methods to alphabetical
  306. order in the file.
  307. * XmlElement.cs: Implementations for WriteTo() and WriteContentTo().
  308. * XmlNode.cs: Implementations for InnerXml Get and OuterXml.
  309. * XmlProcessingInstruction.cs: Implementations for WriteTo() and
  310. WriteContentTo().
  311. * XmlTextWriter.cs: Implementations for WriteEndElement,
  312. WriteProcessingInstruction, WriteStartElement, and WriteString.
  313. * XmlWriter.cs: Implemented WriteStartElement() methods.
  314. 2002-03-15 Duncan Mak <[email protected]>
  315. * XmlEntity.cs: Added to CVS. Need to implement BaseURI and
  316. InnerText once I know what they do.
  317. * XmlDocumentType.cs (XmlDocumentType): Fix the constructor now
  318. that we can properly chain constructors.
  319. (CloneNode): implemented.
  320. (WriteContentTo): Removed MonoTODO attribute as this method has no
  321. effect in this class.
  322. * XmlProcessingInstruction.cs (Value): Added the missing Set
  323. block.
  324. (InnerText): Added in, but not implemented.
  325. 2002-03-14 Kral Ferch <[email protected]>
  326. * XmlTextWriter.cs: implemented constructors and
  327. WriteCData and WriteComment.
  328. 2002-03-14 Duncan Mak <[email protected]>
  329. * XmlDocument.cs: Moved the NodeChanged EventHandler to its own
  330. file, and updated the callbacks to reflect the change.
  331. (XmlDocument): Added the NameTable constructor.
  332. (NameTable): Also the NameTable property.
  333. * XmlNodeChangedEventHandler.cs: Added, replacing the version that
  334. was in XmlDocument.cs. It has two arguments now (object,
  335. EventArgs) , instead of one (object).
  336. 2002-03-14 Kral Ferch <[email protected]>
  337. * XmlWriter.cs: Formatting.
  338. * XmlTextWriter.cs: Initial checkin.
  339. 2002-03-14 Duncan Mak <[email protected]>
  340. * Validation.cs: Removed, replaced by ValidationType.cs.
  341. * ValidationType.cs: Added.
  342. 2002-03-13 Duncan Mak <[email protected]>
  343. * XmlException.cs: Made it [Serializable], implemented good ol'
  344. GetObjectData, and the serialization constructor.
  345. * XmlNamedNodeMap.cs (SetNamedItem): Check for the Name property.
  346. (SetNamedItem): Reverted (added back in) the patch with the
  347. ReadOnly checks. "Don't doubt yourself, my son... you were right!"
  348. * XmlNamedNodeMap.cs (GetEnumerator): piggyback on the ArrayList implementation.
  349. (GetNamedItem (string, string)): implemented.
  350. (RemoveNamedItem): implemented.
  351. (SetNamedItem): implemented.
  352. 2002-03-12 Kral Ferch <[email protected]>
  353. * XmlAttribute.cs: Moved a method from amongst properties down to
  354. it's alphabetical position in the methods section.
  355. * XmlNode.cs: Passes in 'this' to XmlNodeList constructor instead of
  356. last linked child. Set XmlNode base class to return false for IsReadOnly().
  357. Implemented GetEnumerator() and RemoveChild().
  358. * XmlNodeListChildren.cs: Now stores the parent instead of the last child.
  359. This is to support the behavior that the Enumerator doesn't become invalid
  360. when changes to the children occur. Flushed out rest of implementation for
  361. MoveNext, Current, and Reset.
  362. 2002-03-12 Duncan Mak <[email protected]>
  363. * XmlCharacterData.cs: Reformatted the properties for better readability.
  364. * XmlLinkedNode.cs: Removed the awful boxy comments.
  365. * XmlNamedNodeMap.cs (Count):
  366. (Item): Implemented. Tests will be coming.
  367. * XmlEntityReference.cs:
  368. * XmlSignificantWhitespace.cs: Implemented these classes except for
  369. the Clone, WriteContentTo and WriteTo methods. Will have to
  370. investigate into these later.
  371. 2002-03-11 Duncan Mak <[email protected]>
  372. * IHasXmlNode.cs: Added to CVS.
  373. 2002-03-08 Jason Diamond <[email protected]>
  374. * XmlParserContext.cs: Added missing constructors and missing Encoding
  375. property.
  376. * XmlTextReader.cs: Start using the XmlParserContext class.
  377. 2002-03-08 Jason Diamond <[email protected]>
  378. * XmlTextReader.cs: Implemented MoveToElement and MoveToFirstAttribute.
  379. 2002-03-08 Mike Kestner <[email protected]>
  380. * XmlNode.cs (Item): Implemented both indexers.
  381. 2002-03-08 Jason Diamond <[email protected]>
  382. * DomEncodingType.cs, TreePosition.cs, XPathNodeType.cs, XmlDataType.cs,
  383. XmlExceptionCode.cs, XmlSortOrder.cs, XmlUtil.cs: Removed files.
  384. 2002-03-08 Jason Diamond <[email protected]>
  385. * XmlAttribute.cs: Attribute nodes are supposed to store their values
  386. as child nodes so updated to reflect that.
  387. * XmlDocument.cs, XmlElement.cs, XmlNode.cs: Moved code that was
  388. duplicated in XmlDocument and XmlElement into XmlNode so that it
  389. wouldn't have to be duplicated in XmlAttribute, too.
  390. 2002-03-08 Kral Ferch <[email protected]>
  391. * XmlNodeList.cs, XmlDocument.cs, XmlLinkedNode.cs,
  392. XmlNode.cs: Formatting.
  393. * XmlNodeListChildren.cs: Implementation of XmlNodeList
  394. for XmlNode.ChildNodes property.
  395. * XmlNodeListAsArrayList.cs: Removed file. Using different
  396. data structure (circular list) in XmlNode so this file
  397. is no longer valid.
  398. * XmlDocument.cs, XmlElement.cs: New ChildNodes tests found
  399. bug in setter property of LastLinkedChild so fixed it.
  400. 2002-03-06 Jason Diamond <[email protected]>
  401. * XmlInputSource.cs, XmlNames_1_0.cs, XmlParse.cs: Removed files.
  402. We already have a parser in XmlTextReader.
  403. * XmlException.cs: Removed constructor accepting XmlInputSource.
  404. 2002-03-06 Kral Ferch <[email protected]>
  405. * XmlNode.cs: Rewrote this class from scratch with
  406. MonoToDo attribs and NotImplementedExceptions. Now defines an
  407. internal LastLinkedNode property to aid the new implementation.
  408. XmlNodes only have ref to owner doc and parent nodes now.
  409. * XmlLinkedNode.cs: Added NextLinkedSibling internal property
  410. and ref to next sibling to support walking our circular child
  411. node list.
  412. * XmlDocument.cs: Added ref to last child node and overrides
  413. XmlNode's internal LastLinkedChild property to support walking
  414. our circular child node list.
  415. 2002-03-02 Kral Ferch <[email protected]>
  416. * XmlProcessingInstructions.cs: Class was empty. Implemented
  417. constructor, properties, and CloneNode() method. Put in
  418. MonoToDo attrib for remaining methods.
  419. * XmlComment.cs: Reformatted and put in MonoToDo attribs.
  420. Got rid of helper methods and fields since they were no
  421. longer needed.
  422. * XmlLinkedNode.cs: Reformatted and put in MonoToDo attribs.
  423. * XmlDocument.cs: Added code to Load(XmlReader) to create XmlComment,
  424. XmlCDataSection, and XmlProcessingInstruction nodes. Implemented
  425. Createxxx() methods for those three node types.
  426. 2002-03-02 Jason Diamond <[email protected]>
  427. * XmlDocument.cs: Implemented the remaining CreateElement and
  428. CreateAttribute methods.
  429. * XmlAttribute.cs: Re-implemented.
  430. * XmlElement.cs: Set owner element on attributes. Reformatted.
  431. 2002-03-02 Jason Diamond <[email protected]>
  432. * XmlTextReader.cs: Implemented MoveToNextAttribute().
  433. * XmlDocument.cs: Reformatted. Adding missing methods and MonoTODO
  434. attributes. Create attribute nodes while loading. Implemented
  435. Load(string) and CreateTextNode().
  436. * XmlCharacterData.cs, XmlText.cs: Re-implemented.
  437. * XmlCDataSection.cs, XmlComment.cs: Call correct constructor in
  438. XmlCharacterData.
  439. * XmlNamedNodeMap.cs, XmlAttributeCollection.cs: Stubbed out.
  440. 2002-03-02 Mike Kestner <[email protected]>
  441. * XmlAttribute.cs : Using fix.
  442. * XmlDocument.cs (CreateAttribute(String)): Implement.
  443. 2002-03-02 Jason Diamond <[email protected]>
  444. * XmlNamespaceManager.cs: Atomize prefixes and namespaces strings in
  445. the name table.
  446. 2002-02-28 Jason Diamond <[email protected]>
  447. * XmlDocument.cs, XmlNode.cs: Initial implementation of LoadXml
  448. courtesy of Kral Ferch <[email protected]>.
  449. 2002-02-28 Jason Diamond <[email protected]>
  450. * XmlException.cs, XmlReader.cs, XmlTextReader.cs: Reformatted,
  451. added missing members and MonoTODO attributes.
  452. * XmlTextReader.cs: Throw XmlException instead of System.Exception.
  453. 2002-02-27 Jason Diamond <[email protected]>
  454. * XmlElement.cs: Reformatted, added missing members and MonoTODO
  455. attributes.
  456. 2002-02-26 Duncan Mak <[email protected]>
  457. * XmlCDataSection.cs: Initial implementation.
  458. * NameTable.cs: Fixed the whole thing. Wrote a NUnit test to test
  459. it out. This should (hopefully) be correct.
  460. 2002-02-26 Jason Diamond <[email protected]>
  461. * XmlTextReader.cs: Apparently Microsoft's implementation treats
  462. namespace declarations as attributes so we do now, too.
  463. * XmlNamespaceManager.cs: HasNamespace fixed so that it only
  464. checks the current scope.
  465. 2002-02-26 Duncan Mak <[email protected]>
  466. * XmlDocumentType.cs: Added a few hacks here and there to
  467. temporarily fix the "I broke the build issue".
  468. 2002-02-25 Jason Diamond <[email protected]>
  469. * XmlDocument.cs, XmlElement.cs, XmlNode.xs, XmlNodeList.cs,
  470. XmlNodeListAsArrayList.cs: Multiple fixes necessary to get
  471. simple test to pass. The existing code is really shitty so I'll
  472. probably start writing tests and refactoring before much else
  473. can get done.
  474. 2002-02-25 Duncan Mak <[email protected]>
  475. * NameTable.cs: Implemented.
  476. * XmlDeclaration.cs: It should inherit from XmlLinkedNode, not XmlNode.
  477. 2002-02-24 Duncan Mak <[email protected]>
  478. * XmlNodeOrder.cs: Added to CVS.
  479. * XmlQualifiedName.cs: Fixed a warning from Equals ().
  480. * XmlTokenizedType.cs: Added to CVS.
  481. * XmlUrlResolver.cs: Added to CVS with one TODO task.
  482. 2002-02-23 Duncan Mak <[email protected]>
  483. * XmlQualifiedName.cs: Fixed ToString () and added the operators
  484. (== and !=).
  485. 2002-02-23 Jason Diamond <[email protected]>
  486. * XmlTextReader.cs: Added support for qualified attributes.
  487. 2002-02-23 Jason Diamond <[email protected]>
  488. * XmlNamespaceManager.cs: Initial implementation.
  489. * XmlTextReader.cs: Added support for NamespaceURI property on
  490. elements.
  491. 2002-02-23 Nick Drochak <[email protected]>
  492. * ChangeLog: Add the change log to this directory
  493. * XmlQualifiedName.cs: Fixed compile errors so it would build. Still has
  494. MonoTODO's