ChangeLog 40 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253
  1. 2002-12-28 Ville Palo <[email protected]>
  2. * XmlDocument.cs: XmlTextWriter.Formatting == Indented when
  3. calling Save () -methods.
  4. 2002-12-28 Atsushi Enomoto <[email protected]>
  5. * XmlNodeReader.cs : primitive reading implementation.
  6. 2002-12-28 Atsushi Enomoto <[email protected]>
  7. * XmlElement.cs : quick fix for the incomplete patch of #35308 below.
  8. 2002-12-28 Atsushi Enomoto <[email protected]>
  9. * XmlDocument.cs : removed inconsistent line-feed output.
  10. * XmlElement.cs, XmlTextWriter.cs :
  11. fixed for bugzilla 35308 (default ns output)
  12. * XmlWhitespace.cs : limited output only when preserving whitespace.
  13. 2002-12-24 Atsushi Enomoto <[email protected]>
  14. * XmlAttribute.cs, XmlDocument.cs, XmlTextReader.cs:
  15. Implemented XmlTextReader.ReadAttributeValue().
  16. Added internal ReadAttributeNodeValue().
  17. Fixed XmlAttribute.InnerXml to use these methods.
  18. * XmlDocument.cs, XmlDocumentFragment.cs, XmlElement.cs, XmlNode.cs:
  19. Implemented XmlDocument.ReadNode() and removed ConstructDOM().
  20. Other changes are replacing them.
  21. 2002-12-24 Atsushi Enomoto <[email protected]>
  22. * XmlDocument.cs: patch by Ville (fixed default PreserveWhitespace)
  23. 2002-12-21 Atsushi Enomoto <[email protected]>
  24. * XmlElement.cs, XmlTextWriter.cs, XmlWriter.cs:
  25. patch by JD Conley <[email protected]>.
  26. (Fix for xmlns attribute output.)
  27. 2002-12-05 Ville Palo <[email protected]>
  28. * XmlQualifiedName.cs: Little fix to ToString () -method
  29. 2002-12-04 Tim Haynes <[email protected]>
  30. * class/System.XML/System.Xml/XmlElement.cs: Made more refined
  31. checks on attributeNode to fix 32262.
  32. 2002-12-03 Atsushi Enomoto <[email protected]>
  33. * XmlDocument.cs (CreateNavigator(XmlNode)) : reverted
  34. * XmlTextWriter.cs (WriteStartElementInternal):
  35. fixed when default namespace was specified, all descendants
  36. fail to omit the default namespace declarations.
  37. * XmlAttribute.cs,
  38. XmlDocument.cs,
  39. XmlNode.cs (internal XmlLang/XmlSpace) : implemented(defined)
  40. * XmlAttribute.cs,
  41. XmlDocumentFragment.cs,
  42. XmlElement.cs (set_InnerXml): now uses XmlLang/XmlSpace
  43. * XmlElement.cs (set_IsEmpty) : implemented
  44. (WriteTo) : removed my improper indenting (Writer already done)
  45. * XmlNode.cs (BaseURI) : fixed if ParentNode is null, NullPointerEx
  46. (ConstructDOM) : implemented when xmlReader isn't XmlTextReader
  47. ...and renamed XmlDocument.ConventionalParser to ReusableReader ;-)
  48. 2002-12-01 Atsushi Enomoto <[email protected]>
  49. * XmlNode.cs (RemoveChild):
  50. bugfixed when XmlNode is Document OwnerDocument is null
  51. * XmlDeclaration.cs (Value):
  52. bugfixed regular expression pattern.
  53. * XmlDocument.cs (CreateNavigator): bugfixed access modifier.
  54. 2002-11-24 Duncan Mak <[email protected]>
  55. * XmlImplementation.cs (HasFeature): Fixed a typo. Thanks for
  56. Fabricio Barros Cabral (fx) on #mono for spotting it. This is his
  57. first patch to Mono! ;-)
  58. 2002-11-19 Gonzalo Paniagua Javier <[email protected]>
  59. * XmlNode.cs:
  60. (AppendChild): readded refChild != null condition before throwing
  61. "cannot insert this node in this position" exception. There's probably
  62. a better solution. Fixes #34191.
  63. (RemoveAll): changed following Atsushi instructions.
  64. 2002-11-13 Duncan Mak <[email protected]>
  65. * XmlElement.cs (IsEmpty): A temporary check-in to keep gtk-sharp
  66. compiling.
  67. 2002-11-14 Atsushi Enomoto <[email protected]>
  68. * XmlDocument.cs : unified all constructors, added ConventionalParser,
  69. implemented CloneNode() and CreateEntityReference(),
  70. * XmlEntityReference.cs : set_Value, WriteContentTo, WriteTo
  71. set BaseURI to MonoTODO
  72. * XmlNode.cs : implemented PrependChild, modified ConstructDOM,
  73. bugfix InsertAfter (incorrect prepending) and InsertBefore
  74. (more than one DocumentElements hadn't caused errors)
  75. * XmlTextReader.cs : unified all constructors,
  76. added internal SetReaderContext(), SetReaderFragment()
  77. bugfix (syntax check of PUBLIC / getting internal subset)
  78. 2002-11-13 Atsushi Enomoto <[email protected]>
  79. XmlAttribute.cs : set_InnerText, set_InnerXml, some check for set_Prefix
  80. XmlAttributeCollection.cs : (indexer) this[localName, namespaceURI]
  81. XmlCharacterData.cs : exchanged Data and Value
  82. (for processing events and inheritance)
  83. XmlDocumentFragment.cs : set_InnerXml
  84. XmlSignificantWhitespace.cs : set_Value
  85. XmlTextReader.cs : ReadAttributeValue
  86. 2002-11-04 Atsushi Enomoto <[email protected]>
  87. XmlAttribute.cs: fixed missing internal 'OwnerElement''SetOwnerElement'
  88. 2002-11-03 Atsushi Enomoto <[email protected]>
  89. * XmlAttributeCollection.cs : checks owner element.
  90. implemented CopyTo, InsertAfter, InsertBefore, Prepend,
  91. Remove, RemoveAt, SetNamedItem.
  92. removed some logics that sets 'Parent' (that should be null)
  93. * XmlDocument.cs : set_InnerXml, [PreserveWhitespace(incomplete)]
  94. * XmlDocumentFragment.cs : get_InnerXml, WriteContentTo, WriteTo
  95. * XmlElement.cs : implemented WriteTo, set_InnerText.
  96. Fixed WriteTo() to add xmlns:* attributes when
  97. writer.LookupPrefix() returned mismatching.
  98. * XmlNamedNodeMap.cs : compare not only name but localname and nsuri.
  99. Removing different prefixes for the same uri now runs correct.
  100. added SetNamedItem(XmlNode node, int position_to_insert).
  101. * XmlNode.cs : ConstructDOM (logically) creates XmlEntityReference,
  102. XmlWhitespace, and XmlSignificantWhitespace
  103. 2002-10-31 Atsushi Enomoto <[email protected]>
  104. * XmlDocument.cs : implemented CreateDocumentFragment()
  105. * XmlElement.cs, XmlLinkedNode.cs :
  106. moved LastLinkedChild from XmlElement to XmlLinkedNode.
  107. * XmlEntityReference.cs : must throw NotImplementedException.
  108. * XmlNode.cs :
  109. + implemented InsertBefore() and then implemented InsertAfter()
  110. and modified AppendChild() to call it.
  111. + added logic to check ReadOnly, parent document equivalence,
  112. and inserting any 'content' before/after DocumentElement.
  113. + implemented Clone() [it is equals to CloneNode() by MS doc.]
  114. + added logic in RemoveChild() to check parent of oldChild.
  115. + fixed ConstructNamespaceManager() to internal only.
  116. 2002-10-29 Atsushi Enomoto <[email protected]>
  117. * XmlAttribute.cs : add internal 'IsDefault' property
  118. (equals to !Specified)
  119. * XmlImplementation.cs : added 'internalNameTable' property.
  120. * XmlDocument.cs :
  121. + now allows "" for 'standalone' in CreateXmlDeclaration.
  122. + implemented 'Implementation' property and constructor with it.
  123. + added logic for appending name table (but still no use)
  124. + implemented property 'DocumentType'
  125. (but without internalSubset parsing. wait for next update.)
  126. * XmlNode.cs :
  127. + modified AppendChild() and RemoveChild() to support fragment.
  128. + modified AppendChild() to remove newChild from its parent
  129. when newChild is already in the other place.
  130. + modified RemoveChild() to set parentNode null.
  131. + modified ConstructDOM() to create DocumentType,
  132. and fixed access modifier ('internal protected' to 'internal')
  133. * XmlLinkedNode.cs : fixed 'NextSibling' to return null
  134. when its parent is null.
  135. * XmlDocumentFragment.cs : added internal override 'LastLinkedChild'
  136. property to enable AppendChild() for this class.
  137. * XmlTextReader.cs : appended private publicId and systemId fields.
  138. 2002-10-28 Gonzalo Paniagua Javier <[email protected]>
  139. * XmlTextReader.cs: make it work when the underlying Stream is not
  140. 'seekable'.
  141. 2002-10-26 Piers Haken <[email protected]>
  142. * XmlNode.cs: add virtual property XPathNodeType
  143. * XmlAttribute.cs:
  144. * XmlComment.cs:
  145. * XmlDocument.cs:
  146. * XmlElement.cs::
  147. * XmlProcessingInstruction.cs:
  148. * XmlSignificantWhitespace.cs:
  149. * XmlText.cs:
  150. * XmlWhitespace.cs: implement XPathNodeType property
  151. * XmlDocumentNavigator.cs: use XPathNodeType property instead of switch
  152. 2002-10-26 Piers Haken <[email protected]>
  153. * XmlDocumentNavigator.cs: return invalid XPathNodeType (-1) for unknown node types.
  154. 2002-10-23 Gonzalo Paniagua Javier <[email protected]>
  155. * XmlTextReader.cs: don't increment depth for entity references.
  156. 2002-10-22 Tim Haynes <[email protected]>
  157. * - Fixed the duplication of xmlns:xx = yy when serializing the
  158. XML for serialization
  159. Fixed the unnecessary parsing/serializing when adding assemblies
  160. for serialization
  161. Avoided setting the XmlNode.InnerXml property
  162. (as it's not implemented)
  163. Fixed the usage/implementation of
  164. XmlElement.GetElementsByTagName()
  165. 2002-10-21 Duncan Mak <[email protected]>
  166. * XmlDocument.cs:
  167. * XmlElement.cs:
  168. * XmlNode.cs:
  169. * XmlTextReader.cs: Implementation for XmlNode.InnerXml from
  170. Atsushi Enomoto <[email protected]>.
  171. 2002-10-18 Duncan Mak <[email protected]>
  172. * XmlDocument.cs: Applied a patch by Atsushi Enomoto
  173. <[email protected]>.
  174. 2002-10-12 A.Enomoto <[email protected]>
  175. * XmlDocument.cs (ImportNode): Implemented
  176. 2002-10-06 Gonzalo Paniagua Javier <[email protected]>
  177. * XmlDocument.cs: one more Load method implemented.
  178. * XmlTextReader.cs: Depth now works.
  179. 2002-09-22 Gonzalo Paniagua Javier <[email protected]>
  180. * XmlConvert.cs: IsInvalid is now internal.
  181. * XmlNamespaceManager.cs: implemented RemoveNamespace
  182. * XmlTextReader.cs: return BaseURI and Encoding from the parser.
  183. * XmlTextWriter.cs: implemented WriteName and WriteNmToken.
  184. 2002-09-19 Matt Hunter <[email protected]>
  185. * XmlElement.cs: Implementing SetAttributeNode(localName,namespaceURI)
  186. * XmlAttributeCollection.cs: Implemented Append (XmlAttribute)
  187. 2002-09-19 Gonzalo Paniagua Javier <[email protected]>
  188. * XmlConvert.cs: finished implementation.
  189. * XmlTextReader.cs: fixed #30239.
  190. * XmlTextWriter.cs: fixed #30240.
  191. 2002-09-15 Gonzalo Paniagua Javier <[email protected]>
  192. * XmlTextReader.cs: line and position begin with 1.
  193. 2002-09-13 Gonzalo Paniagua Javier <[email protected]>
  194. * XmlException.cs: added a new internal constructor for IXmlLineInfo
  195. and output line and position info in Message.
  196. * XmlReader.cs: implemented missing bits.
  197. 2002-09-12 Piers Haken <[email protected]>
  198. * XmlDocumentNavigator.cs: implement MoveToId()
  199. 2002-09-05 Gonzalo Paniagua Javier <[email protected]>
  200. * XmlTextWriter.cs: fixed bug #29886.
  201. 2002-08-26 Ravi Pratap <[email protected]>
  202. * XmlAttribute.cs (InnerText): Implement getting this property.
  203. * XmlNode.cs (InnerText): Ensure that we append only values of
  204. text nodes.
  205. 2002-08-26 Gonzalo Paniagua Javier <[email protected]>
  206. * XmlWriter.cs: made ws and namespaceManager protected. mcs has a bug
  207. that allowed compiling this.
  208. [ FIXME: filed bug #29435. mcs should have failed on this ]
  209. 2002-08-25 Tim Coleman <[email protected]>
  210. * XmlNode.cs:
  211. Change CreateNavigator to not be virtual.
  212. * XmlElement.cs:
  213. Add set_Prefix and InnerText accessors.
  214. * XmlEntityReference.cs:
  215. Add set_Value accessor.
  216. * XmlTextWriter.cs:
  217. Make objects which should be private private.
  218. * XmlWriter.cs:
  219. Remove WriteStartElementInternal abstract definition.
  220. * XmlValidatingReader.cs:
  221. New stubs added.
  222. 2002-08-22 Jason Diamond <[email protected]>
  223. * XmlAttributeCollection.cs, XmlElement.cs: Implementation of RemoveAll
  224. and RemoveAllAttributes courtesy of Matt Hunter <[email protected]>.
  225. 2002-08-22 Jason Diamond <[email protected]>
  226. * XmlElement.cs: Correction to previous GetElementsByTagName patch
  227. courtesy of Matt Hunter <[email protected]>.
  228. 2002-08-22 Jason Diamond <[email protected]>
  229. * XmlDocument.cs, XmlElement.cs: Added implementation of namepsace
  230. qualified GetElementsByTagName courtesy of Matt Hunter
  231. <[email protected]>.
  232. 2002-08-19 Jason Diamond <[email protected]>
  233. * XmlDocument.cs, XmlElement.cs: Added implementation of
  234. GetElementsByTagName courtesy of Matt Hunter <[email protected]>.
  235. 2002-08-16 Jason Diamond <[email protected]>
  236. * XmlElement.cs: Fixed writing out qualified elements courtesy of
  237. Marcus Bürgel <[email protected]>.
  238. 2002-08-13 Tim Coleman <[email protected]>
  239. * XmlTextWriter.cs:
  240. Partial implementation of WriteQualifiedName ().
  241. 2002-08-07 Kral Ferch <[email protected]>
  242. * XmlCharacterData.cs: Implemented AppendData(), DeleteData(),
  243. InsertData(), and ReplaceData(). These methods fire the
  244. NodeChanging and NodeChanged events.
  245. * XmlDocument.cs: Fixed bugs in onNodeChanged() and onNodeChanging().
  246. * XmlNode.cs: AppendChild() fires NodeInserting and NodeInserted events.
  247. RemoveAll() and RemoveChild() fire NodeRemoving and NodeRemoved events.
  248. 2002-08-03 Tim Coleman <[email protected]>
  249. * XmlNamespaceManager.cs:
  250. .Net allows the empty namespace to be redefined
  251. at a later point, but the current implementation
  252. did not. This fixes a hashtable conflict.
  253. 2002-07-26 Tim Coleman <[email protected]>
  254. * XmlTextWriter.cs:
  255. When given a textwriter, check to see if it has a
  256. null encoding. This was being done for other inputs
  257. than a textwriter.
  258. Wed Jul 24 13:16:19 CEST 2002 Paolo Molaro <[email protected]>
  259. * XmlTextReader.cs: rough line/column support.
  260. 2002-07-23 Duncan Mak <[email protected]>
  261. * XmlConvert.cs: Implement the ToDateTime method. ToDateTime
  262. (string, string []) is particularly strange.
  263. * XmlException.cs: Remember to call the base serialization
  264. constructor.
  265. * XmlNodeReader.cs: Keep a new variable to store the Depth.
  266. 2002-07-14 Jason Diamond <[email protected]>
  267. * XmlAttribute.cs: Removed ownerElement field since we can reuse
  268. parentNode field.
  269. * XmlDocumentNavigator.cs: MoveToParent now moves to the OwnerElement
  270. if the current node is an attribute.
  271. * XmlElement.cs: SetAttributeNode now sets the new attribute's
  272. owner element.
  273. 2002-07-12 Jason Diamond <[email protected]>
  274. * XmlDocument.cs: If null was passed in for prefix or namespaceURI when
  275. creating an element, use String.Empty instead.
  276. 2002-07-12 Piers Haken <[email protected]>
  277. * XmlAttributeCollection.cs: implement some ItemOf indexers
  278. * XmlNamedNodeMap.cs: add internal 'Nodes' accessor for the nodeList field
  279. * XmlNode.cs: SelectNodes: return empty XmlNodeList, not null
  280. 2002-07-06 Ajay kumar Dwivedi <[email protected]>
  281. 2002-10-26 Piers Haken <[email protected]>
  282. * XmlDocumentNavigator.cs: return invalid XPathNodeType (-1) for unknown node types.
  283. 2002-10-23 Gonzalo Paniagua Javier <[email protected]>
  284. * XmlTextReader.cs: don't increment depth for entity references.
  285. 2002-10-22 Tim Haynes <[email protected]>
  286. * - Fixed the duplication of xmlns:xx = yy when serializing the
  287. XML for serialization
  288. Fixed the unnecessary parsing/serializing when adding assemblies
  289. for serialization
  290. Avoided setting the XmlNode.InnerXml property
  291. (as it's not implemented)
  292. Fixed the usage/implementation of
  293. XmlElement.GetElementsByTagName()
  294. 2002-10-21 Duncan Mak <[email protected]>
  295. * XmlDocument.cs:
  296. * XmlElement.cs:
  297. * XmlNode.cs:
  298. * XmlTextReader.cs: Implementation for XmlNode.InnerXml from
  299. Atsushi Enomoto <[email protected]>.
  300. 2002-10-18 Duncan Mak <[email protected]>
  301. * XmlDocument.cs: Applied a patch by Atsushi Enomoto
  302. <[email protected]>.
  303. 2002-10-12 A.Enomoto <[email protected]>
  304. * XmlDocument.cs (ImportNode): Implemented
  305. 2002-10-06 Gonzalo Paniagua Javier <[email protected]>
  306. * XmlDocument.cs: one more Load method implemented.
  307. * XmlTextReader.cs: Depth now works.
  308. 2002-09-22 Gonzalo Paniagua Javier <[email protected]>
  309. * XmlConvert.cs: IsInvalid is now internal.
  310. * XmlNamespaceManager.cs: implemented RemoveNamespace
  311. * XmlTextReader.cs: return BaseURI and Encoding from the parser.
  312. * XmlTextWriter.cs: implemented WriteName and WriteNmToken.
  313. 2002-09-19 Matt Hunter <[email protected]>
  314. * XmlElement.cs: Implementing SetAttributeNode(localName,namespaceURI)
  315. * XmlAttributeCollection.cs: Implemented Append (XmlAttribute)
  316. 2002-09-19 Gonzalo Paniagua Javier <[email protected]>
  317. * XmlConvert.cs: finished implementation.
  318. * XmlTextReader.cs: fixed #30239.
  319. * XmlTextWriter.cs: fixed #30240.
  320. 2002-09-15 Gonzalo Paniagua Javier <[email protected]>
  321. * XmlTextReader.cs: line and position begin with 1.
  322. 2002-09-13 Gonzalo Paniagua Javier <[email protected]>
  323. * XmlException.cs: added a new internal constructor for IXmlLineInfo
  324. and output line and position info in Message.
  325. * XmlReader.cs: implemented missing bits.
  326. 2002-09-12 Piers Haken <[email protected]>
  327. * XmlDocumentNavigator.cs: implement MoveToId()
  328. 2002-09-05 Gonzalo Paniagua Javier <[email protected]>
  329. * XmlTextWriter.cs: fixed bug #29886.
  330. 2002-08-26 Ravi Pratap <[email protected]>
  331. * XmlAttribute.cs (InnerText): Implement getting this property.
  332. * XmlNode.cs (InnerText): Ensure that we append only values of
  333. text nodes.
  334. 2002-08-26 Gonzalo Paniagua Javier <[email protected]>
  335. * XmlWriter.cs: made ws and namespaceManager protected. mcs has a bug
  336. that allowed compiling this.
  337. [ FIXME: filed bug #29435. mcs should have failed on this ]
  338. 2002-08-25 Tim Coleman <[email protected]>
  339. * XmlNode.cs:
  340. Change CreateNavigator to not be virtual.
  341. * XmlElement.cs:
  342. Add set_Prefix and InnerText accessors.
  343. * XmlEntityReference.cs:
  344. Add set_Value accessor.
  345. * XmlTextWriter.cs:
  346. Make objects which should be private private.
  347. * XmlWriter.cs:
  348. Remove WriteStartElementInternal abstract definition.
  349. * XmlValidatingReader.cs:
  350. New stubs added.
  351. 2002-08-22 Jason Diamond <[email protected]>
  352. * XmlAttributeCollection.cs, XmlElement.cs: Implementation of RemoveAll
  353. and RemoveAllAttributes courtesy of Matt Hunter <[email protected]>.
  354. 2002-08-22 Jason Diamond <[email protected]>
  355. * XmlElement.cs: Correction to previous GetElementsByTagName patch
  356. courtesy of Matt Hunter <[email protected]>.
  357. 2002-08-22 Jason Diamond <[email protected]>
  358. * XmlDocument.cs, XmlElement.cs: Added implementation of namepsace
  359. qualified GetElementsByTagName courtesy of Matt Hunter
  360. <[email protected]>.
  361. 2002-08-19 Jason Diamond <[email protected]>
  362. * XmlDocument.cs, XmlElement.cs: Added implementation of
  363. GetElementsByTagName courtesy of Matt Hunter <[email protected]>.
  364. 2002-08-16 Jason Diamond <[email protected]>
  365. * XmlElement.cs: Fixed writing out qualified elements courtesy of
  366. Marcus Bürgel <[email protected]>.
  367. 2002-08-13 Tim Coleman <[email protected]>
  368. * XmlTextWriter.cs:
  369. Partial implementation of WriteQualifiedName ().
  370. 2002-08-07 Kral Ferch <[email protected]>
  371. * XmlCharacterData.cs: Implemented AppendData(), DeleteData(),
  372. InsertData(), and ReplaceData(). These methods fire the
  373. NodeChanging and NodeChanged events.
  374. * XmlDocument.cs: Fixed bugs in onNodeChanged() and onNodeChanging().
  375. * XmlNode.cs: AppendChild() fires NodeInserting and NodeInserted events.
  376. RemoveAll() and RemoveChild() fire NodeRemoving and NodeRemoved events.
  377. 2002-08-03 Tim Coleman <[email protected]>
  378. * XmlNamespaceManager.cs:
  379. .Net allows the empty namespace to be redefined
  380. at a later point, but the current implementation
  381. did not. This fixes a hashtable conflict.
  382. 2002-07-26 Tim Coleman <[email protected]>
  383. * XmlTextWriter.cs:
  384. When given a textwriter, check to see if it has a
  385. null encoding. This was being done for other inputs
  386. than a textwriter.
  387. Wed Jul 24 13:16:19 CEST 2002 Paolo Molaro <[email protected]>
  388. * XmlTextReader.cs: rough line/column support.
  389. 2002-07-23 Duncan Mak <[email protected]>
  390. * XmlConvert.cs: Implement the ToDateTime method. ToDateTime
  391. (string, string []) is particularly strange.
  392. * XmlException.cs: Remember to call the base serialization
  393. constructor.
  394. * XmlNodeReader.cs: Keep a new variable to store the Depth.
  395. 2002-07-14 Jason Diamond <[email protected]>
  396. * XmlAttribute.cs: Removed ownerElement field since we can reuse
  397. parentNode field.
  398. * XmlDocumentNavigator.cs: MoveToParent now moves to the OwnerElement
  399. if the current node is an attribute.
  400. * XmlElement.cs: SetAttributeNode now sets the new attribute's
  401. owner element.
  402. 2002-07-12 Jason Diamond <[email protected]>
  403. * XmlDocument.cs: If null was passed in for prefix or namespaceURI when
  404. creating an element, use String.Empty instead.
  405. 2002-07-12 Piers Haken <[email protected]>
  406. * XmlAttributeCollection.cs: implement some ItemOf indexers
  407. * XmlNamedNodeMap.cs: add internal 'Nodes' accessor for the nodeList field
  408. * XmlNode.cs: SelectNodes: return empty XmlNodeList, not null
  409. 2002-07-06 Ajay kumar Dwivedi <[email protected]>
  410. * XmlTextWriter: Fixed Indentation. IndentationOverridden should
  411. not be set when inside a attribute.
  412. 2002-07-06 Ajay kumar Dwivedi <[email protected]>
  413. * XmlTextWriter: In WriteStartElement, if namespace is null and
  414. prefix is null|empty do not write out xmlns=""
  415. * XmlWriter: WriteStartElement calls the virtual method with null
  416. argument instead of empty string.
  417. 2002-07-05 Gonzalo Paniagua Javier <[email protected]>
  418. * XmlTextReader.cs: implemented .ctor (Stream).
  419. 2002-06-26 Duncan Mak <[email protected]>
  420. * XmlNodeReader.cs: Implementation of most of the properties, and
  421. some of the related methods.
  422. 2002-06-23 Piers Haken <[email protected]>
  423. * XmlDocumentNavigator.cs: implement Clone()
  424. * XmlElement.cs: remove bogus unimplemented override of InnerText
  425. * XmlNode.cs: implment SelectNodes/SelectSingleNode
  426. * XmlNodeArrayList.cs: new support class for SelectNodes
  427. 2002-06-21 Ajay kumar Dwivedi <[email protected]>
  428. * XmlQualifiedName: Name and Namespaces are never null. If null is passed
  429. to the constructor, set them to empty strings.
  430. Fixed the Operators.
  431. 2002-06-18 Ajay kumar Dwivedi <[email protected]>
  432. * XmlTextReader.cs: HasLineInfo returns false instead of throwing an
  433. Exception.
  434. 2002-06-14 Duncan Mak <[email protected]>
  435. * XmlConvert.cs: Added CLSCompliant attributes to methods.
  436. 2002-06-12 Duncan Mak <[email protected]>
  437. * XmlCharacterData.cs (Value): Throw an ArgumentException in the
  438. set block if the node is read-only.
  439. 2002-06-10 Ajay kumar Dwivedi <[email protected]>
  440. * XmlConstruct.cs : New Internal class with Helper methods for
  441. Checking XmlConstructs
  442. * XmlConvert.cs: Implemented most of the methods
  443. 2002-06-08 Duncan Mak <[email protected]>
  444. * XmlDocument.cs (Load):
  445. Added bits to Load (string) for BaseURI support.
  446. * XmlAttribute.cs (BaseURI):
  447. * XmlDocument.cs (BaseURI):
  448. * XmlEntity.cs (BaseURI): Implemented.
  449. 2002-05-27 Jason Diamond <[email protected]>
  450. * XmlDocumentNavigator.cs: Added file to directory.
  451. * XmlNode.cs (CreateNavigator): Implemented.
  452. (InnerText): Implemented.
  453. * XmlDocument.cs (NamespaceURI, Prefix): Return String.Empty instead of
  454. throwing exception.
  455. (Load(XmlReader)): Allow for namespace qualified attributes.
  456. * XmlElement.cs: Implemented GetAttribute(string, string) and both
  457. GetAttributeNode overloads.
  458. (SetAttributeNode(XmlAttribute)): Implemented.
  459. * XmlNamedNodeMap.cs: Fixed copy/paste bugs in GetNamedItem(string, string)
  460. and RemoveNamedItem(string, string).
  461. * XmlLinkedNode.cs (PreviousSibling): Implemented.
  462. * XmlTextReader.cs: Added code to maintain the order of attributes as
  463. they're parsed. XML doesn't require this but Microsoft's parser does it and
  464. matching them makes testing easier so now we have it, too.
  465. 2002-05-26 Miguel de Icaza <[email protected]>
  466. * XmlDocument.cs: Implement the Save methods.
  467. 2002-05-08 Mike Kestner <[email protected]>
  468. * XmlNamedNodeMap.cs (SetNamedItem): Fixed a copy/paste bug.
  469. 2002-04-28 Duncan Mak <[email protected]>
  470. * XmlSignificantWhitespace.cs (Value):
  471. * XmlWhitespace.cs (Value): Added MonoTODO to the 'set'
  472. block. Added new private method, IsValidWhitespaceChar, for
  473. checking.
  474. 2002-04-16 Duncan Mak <[email protected]>
  475. * XmlParserContext.cs (NameTable): Fixed a typo in the set block.
  476. 2002-04-12 Duncan Mak <[email protected]>
  477. * XmlAttribute.cs (Prefix): Added preliminary code for set block,
  478. added comment on work that needs to be done here. A new MonoTODO item.
  479. * XmlDocument.cs (ctor): Corrected constructor signature, changed
  480. parameter from 'NameTable' to 'XmlNameTable'.
  481. * XmlDocumentFragment.cs (InnerXml): Added missing set block.
  482. * XmlCaseOrder.cs: Moved to System.Xml.XPath.
  483. 2002-04-10 Duncan Mak <[email protected]>
  484. * XmlNodeReader.cs: Initial stubs for the class.
  485. 2002-04-08 Kral Ferch <[email protected]>
  486. * XmlAttributes.cs: InnerXml getter, WriteContentTo, and WriteTo
  487. implementations.
  488. * XmlDeclaration.cs: WriteTo implementation.
  489. * XmlDocument.cs: InnerXml getter implementation.
  490. * XmlElement.cs: InnerXml getter implementation.
  491. * XmlNode.cs: Removed MonoTODO attrib on OuterXml.
  492. * XmlSignificantWhitespace.cs: WriteTo implementation.
  493. * XmlText.cs: WriteContentTo and WriteTo implementation.
  494. * XmlTextWriter.cs: WriteRaw implementation.
  495. * XmlWhitespace.cs: WriteContentTo and WriteTo implementations.
  496. 2002-04-05 Kral Ferch <[email protected]>
  497. * XmlAttributes.cs: Added reminder MonoTODO to set NamespaceURI
  498. if prefix in constructor is one of the default ones.
  499. * XmlCharacterData.cs: Returns String.Empty for Value and Data
  500. even when constructed with null.
  501. * XmlDeclaration.cs: Value doesn't put encoding or standalone
  502. in if they are empty.
  503. * XmlDocument.cs: Implemented CreateNode methods and this caused
  504. the changes in the other files in this checkin.
  505. * XmlProcessingInstruction.cs: Returns String.Empty for Value and Data
  506. even when constructed with null.
  507. * XmlWhitespace.cs: Changed Value 'get' to return Data.
  508. 2002-04-01 Kral Ferch <[email protected]>
  509. * XmlTextWriter.cs: Impls for WriteEndDocument and WriteFullEndElement.
  510. 2002-03-31 Kral Ferch <[email protected]>
  511. * XmlTextWriter.cs: Impls for LookupPrefix, WriteBase64,
  512. and WriteCharEntity.
  513. * XmlWrite.cs: Fixed bug where attribute namespace decl
  514. was pushing a scope onto the namespace manager when it shouldn't
  515. have been.
  516. 2002-03-31 Kral Ferch <[email protected]>
  517. * XmlTextWriter.cs: Some tweaks for WriteAttibuteString
  518. in different states (no open start element, in WriteState.Content mode).
  519. 2002-03-29 Kral Ferch <[email protected]>
  520. * XmlTextWriter.cs: XmlLang and XmlSpace properties
  521. and WriteWhitespace.
  522. * XmlTextWriterOpenElement.cs: scope support for XmlLang
  523. and XmlSpace.
  524. 2002-03-29 Kral Ferch <[email protected]>
  525. * XmlTextWriter.cs: Working on Attribute methods.
  526. * XmlWriter.cs: Working on Attribute methods.
  527. 2002-03-28 Duncan Mak <[email protected]>
  528. * XmlDocument.cs (CreateWhitespace):
  529. (CreateSignificantWhitespace): Removed extraneous call to the ToCharArray
  530. method.
  531. * XmlSignificantWhitespace.cs (Value): Removed MonoTODO attribute.
  532. 2002-03-26 Duncan Mak <[email protected]>
  533. * XmlDocument.cs (CreateDocumentType): Implemented.
  534. * XmlNode.cs (Value): Implemented.
  535. * XmlProcessingInstruction.cs (InnerText): Implemented. It works just
  536. like XmlCharacterData.
  537. * XmlDeclaration.cs (CloneNode):
  538. * XmlDocument.cs (CreateXmlDeclaration): Added missing constructor
  539. arguments.
  540. * XmlCharacterData.cs (InnerText): Implemented. Funny that the
  541. docs say it is the "The concatenated values of the node and all
  542. the children of the node.". I wrote some test programs and
  543. couldn't get any of the derived nodes to AppendChild. For now,
  544. InnerText == Data == Value.
  545. (Substring): Fixed typo.
  546. * XmlDeclaration.cs (XmlDeclaration): Fixed the constructor parameter signature.
  547. * XmlImplementation.cs (CreateDocument): Implemented.
  548. 2002-03-25 Duncan Mak <[email protected]>
  549. * XmlDeclaration.cs: Rewrote the class, fixed formatting, added
  550. missing properties (InnerText, Value).
  551. * XmlDocument.cs (CreateXmlDeclaration): Implemented.
  552. 2002-03-23 Kral Ferch <[email protected]>
  553. * XmlTextWriter.cs: Impls for BaseStream and
  554. Namespaces and WriteState.
  555. * XmlWriter.cs: WriteState and WriteStartElementInternal.
  556. 2002-03-23 Kral Ferch <[email protected]>
  557. * XmlNodeListChildren.cs: made class internal
  558. instead of public. Shouldn't be visible outside
  559. of System.Xml.
  560. * XmlTextWriter.cs: Implementations for Formatting,
  561. IndentChar, Indenting, QuoteChar, WriteStartDocument(standalone).
  562. Suppresses encoding on xml declaration if null stream passed in.
  563. Formats output including suppressing indentation for elements in
  564. mixed content mode.
  565. * XmlTextWriterOpenElement.cs: Initial checkin.
  566. XmlTextWriter uses stack of these objects to track
  567. state.
  568. 2002-03-22 Mike Kestner <[email protected]>
  569. * XmlElement.cs: impl HasAttribute(string name).
  570. 2002-03-22 Duncan Mak <[email protected]>
  571. * XmlElement.cs: Reformatted.
  572. (CloneNode) Corrected.
  573. * XmlDocument.cs (CreateWhitespace):
  574. (CreateSignificantWhitespace): Implemented.
  575. * XmlAttribute.cs (CloneNode): Changed the child's CloneNode to
  576. true, because Attributes have ChildNodes.
  577. 2002-03-21 Kral Ferch <[email protected]>
  578. * XmlTextWriter.cs: WriteStartDocument tracks state, writes out
  579. xml declaration along with encoding. WriteEndElement throws
  580. exception if no WriteStartElement exists.
  581. 2002-03-20 Duncan Mak <[email protected]>
  582. * XmlEntityReference.cs (CloneNode): Implemented.
  583. * XmlException.cs (Message): Implemented. We need to cache the
  584. message string because SystemException doesn't expose 'message'
  585. from Exception.
  586. * XmlText.cs (Value): Added in the missing Value property.
  587. 2002-03-20 Duncan Mak <[email protected]>
  588. * XmlAttribute.cs (CloneNode): Implemented.
  589. * XmlDocumentFragment.cs (CloneNode): Implemented.
  590. * XmlElement.cs (CloneNode): Implemented.
  591. 2002-03-19 Duncan Mak <[email protected]>
  592. * XmlNotation.cs: Added to CVS.
  593. * XmlAttribute.cs (CloneNode): First crack at the CloneNode method.
  594. * XmlCDataSection.cs (CloneNode): Implemented.
  595. * XmlDocumentFragment.cs: Reformatted and added the missing properties
  596. (InnerXml, OwnerDocument, ParentNode).
  597. (CloneNode): Implemented.
  598. * XmlSignificantWhitespace.cs (CloneNode): Implemented.
  599. (Value) Implemented the 'get' property.
  600. * XmlWhitespace.cs (Module): implemented.
  601. 2002-03-19 Jason Diamond <[email protected]>
  602. * XmlDocument.cs: Fixed typo in Load that was duplicating the LocalName
  603. in the prefix.
  604. 2002-03-18 Jason Diamond <[email protected]>
  605. * XmlTextReader.cs: Don't restore properties after reading last
  606. attribute on an element.
  607. * XmlDocument.cs: Move back to element after reading attributes
  608. so that IsEmptyElement test succeeds.
  609. 2002-03-18 Kral Ferch <[email protected]>
  610. * XmlNamespaceManager.cs: Implemented LookupPrefix.
  611. * XmlTextWriter.cs: Implemented namespace and prefix support.
  612. 2002-03-18 Kral Ferch <[email protected]>
  613. * XmlTextReader.cs: Restores properties after
  614. reading last attribute on an element.
  615. * XmlNode.cs: AppendChild sets the parent
  616. on the child.
  617. 2002-03-17 Kral Ferch <[email protected]>
  618. * XmlCDataSection.cs: Formatting, Implementation for WriteTo.
  619. * XmlComment.cs: Implementations for WriteTo and WriteContentTo.
  620. * XmlElement.cs: Fixed bug in WriteTo.
  621. * XmlProcessingInstruction.cs: Formatting.
  622. * XmlTextWriter.cs: Implementations for Close, WriteCData, WriteComment,
  623. fixes for WriteEndElement, WriteProcessingInstruction.
  624. 2002-03-17 Kral Ferch <[email protected]>
  625. * XmlDocument.cs: Implementations for WriteTo() and WriteContentTo(),
  626. had Load() add PIs to the document, moved onXXX methods to alphabetical
  627. order in the file.
  628. * XmlElement.cs: Implementations for WriteTo() and WriteContentTo().
  629. * XmlNode.cs: Implementations for InnerXml Get and OuterXml.
  630. * XmlProcessingInstruction.cs: Implementations for WriteTo() and
  631. WriteContentTo().
  632. * XmlTextWriter.cs: Implementations for WriteEndElement,
  633. WriteProcessingInstruction, WriteStartElement, and WriteString.
  634. * XmlWriter.cs: Implemented WriteStartElement() methods.
  635. 2002-03-15 Duncan Mak <[email protected]>
  636. * XmlEntity.cs: Added to CVS. Need to implement BaseURI and
  637. InnerText once I know what they do.
  638. * XmlDocumentType.cs (XmlDocumentType): Fix the constructor now
  639. that we can properly chain constructors.
  640. (CloneNode): implemented.
  641. (WriteContentTo): Removed MonoTODO attribute as this method has no
  642. effect in this class.
  643. * XmlProcessingInstruction.cs (Value): Added the missing Set
  644. block.
  645. (InnerText): Added in, but not implemented.
  646. 2002-03-14 Kral Ferch <[email protected]>
  647. * XmlTextWriter.cs: implemented constructors and
  648. WriteCData and WriteComment.
  649. 2002-03-14 Duncan Mak <[email protected]>
  650. * XmlDocument.cs: Moved the NodeChanged EventHandler to its own
  651. file, and updated the callbacks to reflect the change.
  652. (XmlDocument): Added the NameTable constructor.
  653. (NameTable): Also the NameTable property.
  654. * XmlNodeChangedEventHandler.cs: Added, replacing the version that
  655. was in XmlDocument.cs. It has two arguments now (object,
  656. EventArgs) , instead of one (object).
  657. 2002-03-14 Kral Ferch <[email protected]>
  658. * XmlWriter.cs: Formatting.
  659. * XmlTextWriter.cs: Initial checkin.
  660. 2002-03-14 Duncan Mak <[email protected]>
  661. * Validation.cs: Removed, replaced by ValidationType.cs.
  662. * ValidationType.cs: Added.
  663. 2002-03-13 Duncan Mak <[email protected]>
  664. * XmlException.cs: Made it [Serializable], implemented good ol'
  665. GetObjectData, and the serialization constructor.
  666. * XmlNamedNodeMap.cs (SetNamedItem): Check for the Name property.
  667. (SetNamedItem): Reverted (added back in) the patch with the
  668. ReadOnly checks. "Don't doubt yourself, my son... you were right!"
  669. * XmlNamedNodeMap.cs (GetEnumerator): piggyback on the ArrayList implementation.
  670. (GetNamedItem (string, string)): implemented.
  671. (RemoveNamedItem): implemented.
  672. (SetNamedItem): implemented.
  673. 2002-03-12 Kral Ferch <[email protected]>
  674. * XmlAttribute.cs: Moved a method from amongst properties down to
  675. it's alphabetical position in the methods section.
  676. * XmlNode.cs: Passes in 'this' to XmlNodeList constructor instead of
  677. last linked child. Set XmlNode base class to return false for IsReadOnly().
  678. Implemented GetEnumerator() and RemoveChild().
  679. * XmlNodeListChildren.cs: Now stores the parent instead of the last child.
  680. This is to support the behavior that the Enumerator doesn't become invalid
  681. when changes to the children occur. Flushed out rest of implementation for
  682. MoveNext, Current, and Reset.
  683. 2002-03-12 Duncan Mak <[email protected]>
  684. * XmlCharacterData.cs: Reformatted the properties for better readability.
  685. * XmlLinkedNode.cs: Removed the awful boxy comments.
  686. * XmlNamedNodeMap.cs (Count):
  687. (Item): Implemented. Tests will be coming.
  688. * XmlEntityReference.cs:
  689. * XmlSignificantWhitespace.cs: Implemented these classes except for
  690. the Clone, WriteContentTo and WriteTo methods. Will have to
  691. investigate into these later.
  692. 2002-03-11 Duncan Mak <[email protected]>
  693. * IHasXmlNode.cs: Added to CVS.
  694. 2002-03-08 Jason Diamond <[email protected]>
  695. * XmlParserContext.cs: Added missing constructors and missing Encoding
  696. property.
  697. * XmlTextReader.cs: Start using the XmlParserContext class.
  698. 2002-03-08 Jason Diamond <[email protected]>
  699. * XmlTextReader.cs: Implemented MoveToElement and MoveToFirstAttribute.
  700. 2002-03-08 Mike Kestner <[email protected]>
  701. * XmlNode.cs (Item): Implemented both indexers.
  702. 2002-03-08 Jason Diamond <[email protected]>
  703. * DomEncodingType.cs, TreePosition.cs, XPathNodeType.cs, XmlDataType.cs,
  704. XmlExceptionCode.cs, XmlSortOrder.cs, XmlUtil.cs: Removed files.
  705. 2002-03-08 Jason Diamond <[email protected]>
  706. * XmlAttribute.cs: Attribute nodes are supposed to store their values
  707. as child nodes so updated to reflect that.
  708. * XmlDocument.cs, XmlElement.cs, XmlNode.cs: Moved code that was
  709. duplicated in XmlDocument and XmlElement into XmlNode so that it
  710. wouldn't have to be duplicated in XmlAttribute, too.
  711. 2002-03-08 Kral Ferch <[email protected]>
  712. * XmlNodeList.cs, XmlDocument.cs, XmlLinkedNode.cs,
  713. XmlNode.cs: Formatting.
  714. * XmlNodeListChildren.cs: Implementation of XmlNodeList
  715. for XmlNode.ChildNodes property.
  716. * XmlNodeListAsArrayList.cs: Removed file. Using different
  717. data structure (circular list) in XmlNode so this file
  718. is no longer valid.
  719. * XmlDocument.cs, XmlElement.cs: New ChildNodes tests found
  720. bug in setter property of LastLinkedChild so fixed it.
  721. 2002-03-06 Jason Diamond <[email protected]>
  722. * XmlInputSource.cs, XmlNames_1_0.cs, XmlParse.cs: Removed files.
  723. We already have a parser in XmlTextReader.
  724. * XmlException.cs: Removed constructor accepting XmlInputSource.
  725. 2002-03-06 Kral Ferch <[email protected]>
  726. * XmlNode.cs: Rewrote this class from scratch with
  727. MonoToDo attribs and NotImplementedExceptions. Now defines an
  728. internal LastLinkedNode property to aid the new implementation.
  729. XmlNodes only have ref to owner doc and parent nodes now.
  730. * XmlLinkedNode.cs: Added NextLinkedSibling internal property
  731. and ref to next sibling to support walking our circular child
  732. node list.
  733. * XmlDocument.cs: Added ref to last child node and overrides
  734. XmlNode's internal LastLinkedChild property to support walking
  735. our circular child node list.
  736. 2002-03-02 Kral Ferch <[email protected]>
  737. * XmlProcessingInstructions.cs: Class was empty. Implemented
  738. constructor, properties, and CloneNode() method. Put in
  739. MonoToDo attrib for remaining methods.
  740. * XmlComment.cs: Reformatted and put in MonoToDo attribs.
  741. Got rid of helper methods and fields since they were no
  742. longer needed.
  743. * XmlLinkedNode.cs: Reformatted and put in MonoToDo attribs.
  744. * XmlDocument.cs: Added code to Load(XmlReader) to create XmlComment,
  745. XmlCDataSection, and XmlProcessingInstruction nodes. Implemented
  746. Createxxx() methods for those three node types.
  747. 2002-03-02 Jason Diamond <[email protected]>
  748. * XmlDocument.cs: Implemented the remaining CreateElement and
  749. CreateAttribute methods.
  750. * XmlAttribute.cs: Re-implemented.
  751. * XmlElement.cs: Set owner element on attributes. Reformatted.
  752. 2002-03-02 Jason Diamond <[email protected]>
  753. * XmlTextReader.cs: Implemented MoveToNextAttribute().
  754. * XmlDocument.cs: Reformatted. Adding missing methods and MonoTODO
  755. attributes. Create attribute nodes while loading. Implemented
  756. Load(string) and CreateTextNode().
  757. * XmlCharacterData.cs, XmlText.cs: Re-implemented.
  758. * XmlCDataSection.cs, XmlComment.cs: Call correct constructor in
  759. XmlCharacterData.
  760. * XmlNamedNodeMap.cs, XmlAttributeCollection.cs: Stubbed out.
  761. 2002-03-02 Mike Kestner <[email protected]>
  762. * XmlAttribute.cs : Using fix.
  763. * XmlDocument.cs (CreateAttribute(String)): Implement.
  764. 2002-03-02 Jason Diamond <[email protected]>
  765. * XmlNamespaceManager.cs: Atomize prefixes and namespaces strings in
  766. the name table.
  767. 2002-02-28 Jason Diamond <[email protected]>
  768. * XmlDocument.cs, XmlNode.cs: Initial implementation of LoadXml
  769. courtesy of Kral Ferch <[email protected]>.
  770. 2002-02-28 Jason Diamond <[email protected]>
  771. * XmlException.cs, XmlReader.cs, XmlTextReader.cs: Reformatted,
  772. added missing members and MonoTODO attributes.
  773. * XmlTextReader.cs: Throw XmlException instead of System.Exception.
  774. 2002-02-27 Jason Diamond <[email protected]>
  775. * XmlElement.cs: Reformatted, added missing members and MonoTODO
  776. attributes.
  777. 2002-02-26 Duncan Mak <[email protected]>
  778. * XmlCDataSection.cs: Initial implementation.
  779. * NameTable.cs: Fixed the whole thing. Wrote a NUnit test to test
  780. it out. This should (hopefully) be correct.
  781. 2002-02-26 Jason Diamond <[email protected]>
  782. * XmlTextReader.cs: Apparently Microsoft's implementation treats
  783. namespace declarations as attributes so we do now, too.
  784. * XmlNamespaceManager.cs: HasNamespace fixed so that it only
  785. checks the current scope.
  786. 2002-02-26 Duncan Mak <[email protected]>
  787. * XmlDocumentType.cs: Added a few hacks here and there to
  788. temporarily fix the "I broke the build issue".
  789. 2002-02-25 Jason Diamond <[email protected]>
  790. * XmlDocument.cs, XmlElement.cs, XmlNode.xs, XmlNodeList.cs,
  791. XmlNodeListAsArrayList.cs: Multiple fixes necessary to get
  792. simple test to pass. The existing code is really shitty so I'll
  793. probably start writing tests and refactoring before much else
  794. can get done.
  795. 2002-02-25 Duncan Mak <[email protected]>
  796. * NameTable.cs: Implemented.
  797. * XmlDeclaration.cs: It should inherit from XmlLinkedNode, not XmlNode.
  798. 2002-02-24 Duncan Mak <[email protected]>
  799. * XmlNodeOrder.cs: Added to CVS.
  800. * XmlQualifiedName.cs: Fixed a warning from Equals ().
  801. * XmlTokenizedType.cs: Added to CVS.
  802. * XmlUrlResolver.cs: Added to CVS with one TODO task.
  803. 2002-02-23 Duncan Mak <[email protected]>
  804. * XmlQualifiedName.cs: Fixed ToString () and added the operators
  805. (== and !=).
  806. 2002-02-23 Jason Diamond <[email protected]>
  807. * XmlTextReader.cs: Added support for qualified attributes.
  808. 2002-02-23 Jason Diamond <[email protected]>
  809. * XmlNamespaceManager.cs: Initial implementation.
  810. * XmlTextReader.cs: Added support for NamespaceURI property on
  811. elements.
  812. 2002-02-23 Nick Drochak <[email protected]>
  813. * ChangeLog: Add the change log to this directory
  814. * XmlQualifiedName.cs: Fixed compile errors so it would build. Still has
  815. MonoTODO's