ChangeLog 50 KB

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