ChangeLog 44 KB

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