ChangeLog 26 KB

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