2
0

ChangeLog 25 KB

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