ChangeLog 22 KB

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