ChangeLog 21 KB

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