ChangeLog 58 KB

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