ChangeLog 95 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565
  1. 2003-11-01 Atsushi Enomoto <[email protected]>
  2. * XmlDocument.cs : Save(Stream) should not close the stream.
  3. 2003-10-25 Atsushi Enomoto <[email protected]>
  4. * DTDReader.cs, DTDValidatingReader.cs, XmlInputStream.cs,
  5. XmlTextReader.cs : More cleanup.
  6. * XmlDocument.cs : Removed CheckName(). Code cleanup.
  7. * XmlElement.cs : .ctor() now adds default attributes (if required).
  8. * XmlAttribute.cs, XmlElement.cs, XmlEntity.cs, XmlEntityReference.cs,
  9. XmlNotation.cs : Now uses OwnerDocument's NameTable.
  10. 2003-10-25 Pedro Martínez Juliá <[email protected]>
  11. * XmlConvert.cs: Support for the sign in double and single. The
  12. processing of the infinites and nan numbers are more complex than
  13. comparing to "INF" so we must let Double::Parse and Single::Parse
  14. doing their job.
  15. 2003-10-25 Atsushi Enomoto <[email protected]>
  16. * DTDValidatingReader.cs : Now it handles whitespace entity as
  17. significant.
  18. * XmlConvert.cs : As to NIST testcases, exponential support on single
  19. and double floating point numbers.
  20. * XmlValidatingReader.cs : If it IsDefault, then line number and line
  21. position returns 0.
  22. 2003-10-25 Atsushi Enomoto <[email protected]>
  23. * DTDReader.cs,
  24. XmlConstructs.cs,
  25. XmlTextReader.cs,
  26. XmlWriter.cs : Fixed incorrect access modifier.
  27. * XmlTextWriter.cs : Imported state variable from XmlWriter.
  28. * DTDValidatingReader.cs : Removed extraneous MonoTODO.
  29. * XmlConvert.cs : Implemented ToTimeSpan().
  30. Modified ToDateTime() to reuse the same array.
  31. 2003-10-19 Atsushi Enomoto <[email protected]>
  32. * XmlAttributeCollection.cs : Fixed synchronization stuff.
  33. * XmlConvert.cs : Added two FromBinHexString() methods.
  34. * XmlTextReader.cs : Modified to use one of the above method.
  35. * XmlValidatingReader.cs : XsdValidatingReader.XmlResolver will be
  36. disabled (in the next commit), so resolver won' be set to it.
  37. Attempt to validate against XDR now throws NotSupportedException.
  38. 2003-10-19 Atsushi Enomoto <[email protected]>
  39. * XmlChar.cs : added WhitespaceChars, used in common.
  40. * XmlConvert.cs,
  41. XmlDeclaration.cs,
  42. XmlParserInput.cs,
  43. XmlTextReader.cs,
  44. XmlTextWriter.cs : String.Trim()
  45. * XmlConvert.cs : shifted XmlConstructs to XmlChar.
  46. * XmlTextReader.cs : Implemented Normalization.
  47. 2003-10-19 Atsushi Enomoto <[email protected]>
  48. * XmlNode.cs : GetPrefixOfNamespace() also contained a bug similar to
  49. GetNamespaceOfPrefix() fixed at 2003-10-13.
  50. * XmlTextReader.cs : ReadBase64() should keep incomplete base64 block
  51. which remained by previous call of this method.
  52. * XmlUrlResolver.cs : Added assertion for file Uri path's absoluteness.
  53. * XmlValidatingReader.cs : Notice about intention of XDR won't be
  54. supported (at least in Mono 1.0).
  55. 2003-10-18 Atsushi Enomoto <[email protected]>
  56. * XmlDocument.cs : CloneNode() does not copy PreserveWhitespace.
  57. * XmlWriter.cs : Calling WriteNode() with XmlReader whose state is
  58. XmlDeclaration now calls WriteProcessingInstruction(). This fixes
  59. testcase XmlWriterTests.WriteNodeFullDocument().
  60. * XmlTextWriter.cs : Added LAMESPEC comments related to above.
  61. 2003-10-13 Atsushi Enomoto <[email protected]>
  62. * XmlDocument.cs : Fixed bugzilla #49607. Save() outputs XML
  63. declaration even though there is no XmlDeclaration child.
  64. * XmlTextReader.cs : Fixed Init() so that ResetState() should work.
  65. 2003-10-13 Atsushi Enomoto <[email protected]>
  66. * XmlTextWriter.cs : Implemented WriteSurrogateCharEntity().
  67. Reverted my recent extraneous check in WriteStartAttribute().
  68. 2003-10-13 Atsushi Enomoto <[email protected]>
  69. * XmlNode.cs : GetNamespaceOfPrefix() should check Attributes existence.
  70. And it should throw ArgumentNullException.
  71. 2003-10-13 Atsushi Enomoto <[email protected]>
  72. * XmlAttribute.cs : Fixed InnerText that did not removed its content
  73. if there is two or more children.
  74. * XmlNode.cs : XmlNode.cs : Fixed bugzilla #49580 (1)to return "",
  75. (2)not to compare NodeType for detached nodes, (3)optimization to
  76. compare element's prefix.
  77. * XmlSecureResolver.cs : Removed extraneous members.
  78. 2003-10-09 Atsushi Enomoto <[email protected]>
  79. * Added DTDReader.cs. It is almost importation of XmlTextReader.
  80. * DTDObjectModel.cs :
  81. - More .NET-ism. Properties took place of fields.
  82. - Imported PE set from XmlTextReader. Added location info.
  83. - Added DTDEntityBase common to PE and GE.
  84. - More correct text declaration handling with new XmlTextReader.
  85. * DTDValidatingReader.cs :
  86. - Now uses entity resolving XmlTextReader to validate attributes
  87. correctly. Implemented standalone
  88. - Standalone and default related validity constraints check.
  89. * XmlImplementation.cs: Implemented HasFeature().
  90. * XmlNode.cs : Implemented Supports().
  91. * XmlNodeReader.cs : Modified to use XmlTextReader.SkipTextDeclaration()
  92. * XmlParserInput.cs : Removed extraneous members.
  93. * XmlTextReader.cs :
  94. - All DTD related functionality now goes to DTDReader.cs
  95. - It became old simple TextReader input style.
  96. - Implemented GetRemainder().
  97. - Implemented ReadBase64(), ReadBinHex() and ReadChars(), using
  98. additional new private method ReadUntilEndTag().
  99. - Removed incomplete MaybeTextDecl and added SkipTextDeclaration().
  100. ReadXmlDeclaration() now became simple.
  101. - More strict entity reference check at SetEntityReferenceProperty()
  102. - Removed extraneous members.
  103. * XmlWriter.cs : WriteNode(XmlNodeType.None) does not raise error.
  104. 2003-10-09 Gonzalo Paniagua Javier <[email protected]>
  105. * XmlTextReader.cs: when we get an unexpected EOF in ReadContent, set
  106. the state before throwing the exception if depth > 0.
  107. 2003-10-04 Atsushi Enomoto <[email protected]>
  108. * XmlAttribute.cs : Removed extraneous MonoTODO.
  109. * XmlTextWriter.cs : Implemented WriteBinHex() and WriteChars().
  110. WriteStartElement() and WriteStartAttribute() should ignore Prefix
  111. if namespace uri is not specified.
  112. 2003-10-04 Atsushi Enomoto <[email protected]>
  113. * XmlDocumentFragment.cs,
  114. XmlElement.cs,
  115. XmlEntityReference.cs : Removed extraneous MonoTODO.
  116. * XmlNode.cs : Implemented Normalize().
  117. * XmlNodeReader.cs :
  118. - AttributeCount and HasAttributes should return its owner element's
  119. value, to be consistent with XmlTextReader.
  120. - Fixed Depth to reflect correct attribute/attribute-value iteration.
  121. - simplified ownerElement and HasValue.
  122. - Prefix won't return null.
  123. - MoveToElement() should also work against attribute value nodes.
  124. * XmlTextReader.cs : MoveToElement() should return false if it is
  125. positioned at element itself.
  126. 2003-10-04 Atsushi Enomoto <[email protected]>
  127. * XmlTextReader.cs : Improved SignificantWhitespace handling.
  128. 2003-10-01 Atsushi Enomoto <[email protected]>
  129. * XmlSecureResolver.cs : Implemented basic feature.
  130. 2003-10-01 Atsushi Enomoto <[email protected]>
  131. * XmlUrlResolver.cs : Should work with null type argument.
  132. 2003-10-01 Lluis Sanchez Gual <[email protected]>
  133. * XmlTextWriter.cs : An attribute can require a prefix for the default
  134. namespace, so we need to store the prefix as well as the namespace.
  135. 2003-09-30 Atsushi Enomoto <[email protected]>
  136. * DTDValidatingReader.cs : Simplified to use
  137. XmlSchemaUtil.GetParserContext().
  138. * XmlValidatingReader.cs : ValidationType.Auto should always use
  139. XsdValidatingReader because xsi:schemaLocation might be used.
  140. 2003-09-30 Atsushi Enomoto <[email protected]>
  141. * XmlTextReader.cs : Attribute value token properties were incorrectly
  142. set by the linked node.
  143. 2003-09-26 Atsushi Enomoto <[email protected]>
  144. * XmlDocumentNavigator.cs : Fix for bugzilla #48931. MoveToRoot() now
  145. considers such case that target node was not adapted to the document.
  146. * XmlNamespaceManager.cs : GetEnumerator() missed the last pair.
  147. * XmlTextWriter.cs : use 'as' instead of 'try..catch'.
  148. 2003-09-25 Ben Maurer <[email protected]>
  149. * XmlNode.cs (XPathNodeType): Give more useful debugging message.
  150. * XmlDocumentNavigator.cs (MoveToPrevious): Needs same checks as
  151. in MoveToNext.
  152. 2003-09-23 Atsushi Enomoto <[email protected]>
  153. * XmlNamespaceManager.cs: Rewrote PopScope() because its namespace
  154. recovery was still not enough. Fixed GrowScopes() (incorrect index).
  155. 2003-09-21 Atsushi Enomoto <[email protected]>
  156. * XmlTextReader.cs :
  157. - Fix for bugzilla #48337 (containing Ben's advice on that).
  158. - Added internal XmlTokenInfo classes. Nodes are now handled as token
  159. objects (linked node, attributes and attribute values). Most of the
  160. node state properties and iterating methods are changed to refer to
  161. the token classes (except for value builder availability). Removed
  162. fields which are never used. CompileDTDSubset() is changed in
  163. reflection to nodeType field removal.
  164. - Fixed Depth that should vary in moving between attributes and/or
  165. reading attribute values.
  166. - LineNumber and LinePosition now returns more correct location.
  167. - Fixed Value that should still return true if its value is an empty
  168. attribute value string.
  169. - EntityValue is checked WFC constraints even thoug it is not used.
  170. - All .ctor() now initializes ReadState as Initial.
  171. - Read() should be available for attribute value constructor.
  172. * XmlAttribute.cs : set_InnerXml() now calls reader's Read().
  173. 2003-09-21 Atsushi Enomoto <[email protected]>
  174. * XmlNamespaceManager.cs: PopScope() must retain those namespaces which
  175. are added in the scope before PushScope() was called.
  176. 2003-09-20 Ben Maurer <[email protected]>
  177. * XmlNamespaceManager.cs: Rewrote. Uses arrays, rather than linked
  178. lists and removes uses of Hashtable. Results in huge speed gains.
  179. 2003-09-19 Ben Maurer <[email protected]>
  180. * XmlConvert.cs: NaN.ToString () != INF.
  181. 2003-09-14 Lluis Sanchez Gual <[email protected]>
  182. * XmlTextWriter.cs: Attributes that have a namespace must be always
  183. prefixed.
  184. 2003-09-13 Atsushi Enomoto <[email protected]>
  185. * XmlTextWriterOpenElement.cs : Changed to receive prefix and localName
  186. in .ctor().
  187. * XmlTextWriter.cs : Changed to use above XmlTextWriterOpenElement.
  188. Changed xmlns adding scheme. In detail, 1) WriteStartElement does not
  189. add Namespaces immediately, but adds at AddMissingElementXmlns so
  190. that we don't have to have extra check than namespaceManager's
  191. LookupPrefix(). 2) Removed writtenAttributes for performance reason
  192. since it is no more required.
  193. 2003-09-10 Atsushi Enomoto <[email protected]>
  194. * XmlDocument.cs : patch by Jonathan Hogg. Fixed CreateAttribute()
  195. that handled xmlns attributes inproperly.
  196. 2003-09-08 Atsushi Enomoto <[email protected]>
  197. * XmlNamespaceManager.cs : GetEnumerator() should return all of the
  198. available pairs (of prefix and namespace).
  199. * XmlQualifiedName.cs : Quick fix for NullReferenceException in case
  200. of name (or ns) is null. (The description of the immediate previous
  201. changes will be inserted below.)
  202. * XmlTextWriter.cs : Fixed WriteDocType(). Removed CheckValidName().
  203. * XmlUrlResolver.cs : Changed not to call WebClient.Dispose() which
  204. will release resources it had allocated.
  205. 2003-09-01 Ben Maurer <[email protected]>
  206. * XmlDocument.cs (Save): use the encoding of the document, if
  207. available.
  208. 2003-08-24 Atsushi Enomoto <[email protected]>
  209. * XmlValidatingReader.cs : Implemented SchemaType. Added support for
  210. ValidationType.Schema. Added support for XmlResolver. Fixed
  211. ReadTypedValue() not to consume EndElement.
  212. 2003-08-19 Atsushi Enomoto <[email protected]>
  213. * XmlDocumentNavigator.cs : Fixed MoveToFirstNamespace() that arose
  214. infinite loop.
  215. * XmlNamespaceManager.cs : Renamed AtomStrEq to AtomicStringEquals.
  216. Commented out Console.Error.WriteLine().
  217. * XmlUrlResolver.cs : Fixed ResolveUri() and GetEntity() to support
  218. escape and unescape for relative URI string.
  219. 2003-08-19 Ben Maurer <[email protected]>
  220. * XmlParserContext.cs: Make each context inherit next.
  221. 2003-08-18 Ben Maurer <[email protected]>
  222. * XmlChar.cs (IsWhitespace): Spare enumerator allocation.
  223. * XmlTextWriter.cs (WriteWhitespace): Enumerators are very high in
  224. fat, use low-fat loops instead. Even better, call the function
  225. inside XmlChar for code reuse.
  226. * HighWaterStack.cs (added): New class that acts like a Stack, but
  227. helps with memory allocation.
  228. * XmlNamespaceManager.cs, XmlParserContext.cs: Rewrote to use
  229. HighWaterStack.
  230. * XmlTextReader.cs: Remove orderedAttributesEnumerator variable,
  231. use a variable that stores the position in the ArrayList.
  232. 2003-08-18 Ben Maurer <[email protected]>
  233. * XmlTextWriter.cs: Begin diet. String.Format has too much
  234. saturated fat, lets replace with the fat-free .Write ()
  235. calls. Effects best seen when Paolo's StreamWriter patch is
  236. applied.
  237. 2003-08-14 Atsushi Enomoto <[email protected]>
  238. * XmlNodeReader.cs : Fixed ReadAttributeValue() that might result in
  239. vanishing current node.
  240. 2003-08-14 Atsushi Enomoto <[email protected]>
  241. * DTDValidatingReader.cs : Added SchemaType.
  242. Read() Assures to return to element.
  243. * DTDObjectModel.cs : Removed DTDEntityDeclaration.BaseURI.
  244. * XmlReader.cs : ReadString() should be virtual in NET_1_1.
  245. * XmlTextReader.cs : 1) Depth should consider Attribute and its values.
  246. Introduced insideAttribute field to support them.
  247. 2) ReadAttributeValue() should consider empty string.
  248. * XmlValidatingReader.cs :
  249. Fixed several properties which premised as if it was already read.
  250. Encoding and Namespaces now throws NotSupportedException for other
  251. than XmlTextReader.
  252. Implemented ReadTypedValue() based on IHasXmlSchemaInfo.SchemaType.
  253. 2003-08-10 Atsushi Enomoto <[email protected]>
  254. * XmlInputStream.cs : Reverted CanSeek as to return false anyway.
  255. 2003-08-10 Atsushi Enomoto <[email protected]>
  256. * DTDObjectModel.cs : added XmlResolver related members. Added
  257. invalid entity recursion logic. Added encodingdecl check on textdecl.
  258. * DTDValidatingReader.cs : It now implements IHasXmlParserContext.
  259. * XmlChar.cs : IsPubidChar() should not allow TAB(&#9;).
  260. * XmlDocumentType.cs : 1) internal CreateDocumentType() was now changed
  261. to receive DTDObjectModel to support other than XmlTextReader.
  262. 2) Most of its public member is now based on DTDObjectModel.
  263. * XmlDocument.cs : 1) Synchronous change with XmlDocumentType.
  264. 2) ReadNode() now considers XmlParserContext's DTDObjectModel for
  265. other than XmlTextReader (such as XmlValidatingReader).
  266. * XmlNode.cs : code cleanup only.
  267. * XmlParserInput.cs : added HasPEBuffer, used to check illegal nesting.
  268. * XmlTextReader.cs : 1) Illegal entity reference check logic was moved
  269. from ReadContent() to SetEntityReferenceProperties(). 2) Indentation
  270. change on ReadEntityReference(). 3) ReadAttribute() now checks
  271. reference to external entity reference. 4) Added textdecl encoding
  272. check. 5) DTDObjectModel fields are now set correctly. 6) added
  273. PERef markup nest check. 7) If PEDecl was not found, it might be WFC
  274. violation, not only be VC violation. 8) ReadEntityDecl() now receives
  275. its declared entity itself, and this method checks IsInternalSubset.
  276. * XmlValidatingReader.cs : 1) Added GetInternalPerserContext().
  277. 2) ValidationType.None should be the same as Auto, not DTD (in the
  278. future it should keep xml schema's default values).
  279. Pending Stuff in XmlTextReader which breaks some NUnit tests;
  280. 1) SetEntityReferenceProperies() has check for illegal references.
  281. 2) ReadAttribute(bool) has similar check for illegal references.
  282. 2003-08-09 Atsushi Enomoto <[email protected]>
  283. * DTDAutomata.cs : Fixed (modified or added) TryEndElement() of choice,
  284. sequence and oneOrMore. Fixed DTDChoiceAutomata.TryStartElement().
  285. 2003-08-09 Atsushi Enomoto <[email protected]>
  286. * XmlTextReader.cs : Checked and fixed all TryExpandPERef() invokation
  287. and supplied SkipWhitespace() as they needed. It broke monodoc.
  288. Fixed ReadEntityValueDecl() to get correct value.
  289. 2003-08-08 Atsushi Enomoto <[email protected]>
  290. * XmlInputStream.cs :
  291. Fixed Initialize() that might result in incorrect buffer.
  292. CanRead and Position should consider buffer (especially when the
  293. stream was EOF).
  294. CanSeek should use stream's CanSeek.
  295. * XmlChar.cs : added GetPredefinedEntity().
  296. * DTDObjectModel.cs :
  297. - Modified ComputeDefaultValue() to use it.
  298. - Fixed NormalizedDefaultValue not to expect parsed value as string.
  299. - ResolveExternalEntity now detects invalid standalone specification.
  300. - DTDParameterEntityDeclaration.Value is now changed to property and
  301. keep its resolved value of literal value of external value using
  302. new Resolve (XmlResolver) method (called only by XmlTextReader).
  303. * DTDValidatingReader.cs :
  304. - It now handles entity-expanded Whitespace and SignificantWhitespace
  305. correctly. Does not raise unexpected text not allowed error.
  306. - Fixed MoveToAttribute()s to move internal reader correctly, and
  307. should be able to move in other cases than on element node.
  308. - On Read()ing document type and ResolveEntity(), it now sets
  309. XmlResolver on text reader.
  310. - On ID constraints check and type verification, it now uses
  311. normalized attribute or its tokenized value(s).
  312. - Fixed ValidateAttributes() to add default values when
  313. ValidationType is Auto.
  314. * XmlParserContext.cs : added internal Dtd setter.
  315. * XmlParserInput.cs :
  316. InsertParameterEntityBuffer() should add surrounding whitespaces.
  317. Removed unused code block.
  318. * XmlTextReader.cs :
  319. - Modified ReadReference(), ReadAttribute() and Dereference() to use
  320. XmlChar.GetPredefinedEntity().
  321. - When returning entity reference, it checks extity declaration
  322. existence in certain conditions.
  323. - ReadAttribute() now skips general entity replacement on reading
  324. entity value.
  325. - ReadText() now handles whitespace texts as XmlNodeType.Whitespace.
  326. - ReadXmlDeclaration() holds isStandalone, which might be used in
  327. entity reference's well-formedness check.
  328. - internal 'DTD' now uses XmlParserContext.Dtd.
  329. - isInternalSubset was meaningless. Now uses input stack's Count.
  330. - Added some required SkipWhitespace().
  331. - Several parameter entity handling changes. Added GetPEValue(name).
  332. TryExpandPERef() now uses ImportAsPERef(). ReadParameterEntityDecl()
  333. now uses its Resolve() when it was external PE. Now it uses value
  334. buffer instead of currentTag, to efficiently read (included) PE.
  335. CompileDeclaration() now uses ImportAsPERef instead of ExpandPERef().
  336. ImportAsPERef() simply inserts the value to currentInput.
  337. ReadEntityDecl() also uses value buffer. Removed non-used methods.
  338. - Default attributes are now stored in normalized form.
  339. - Dereference() now considers non-expanding predefined entities.
  340. * XmlValidatingReader.cs : now holds Schemas, and ValidationType.Auto
  341. is more correctly supported.
  342. * XmlAttributeCollection.cs :
  343. When removing default attribute, it immediately inserts the attribute.
  344. RemoveAll() should consider default (not-removable) attributes.
  345. * XmlDocument.cs :
  346. Should have its default XmlResolver. Added Internal Resolver.
  347. Some Load() should use its XmlResolver.
  348. ImportNode() should copy its children in node level, not value level.
  349. It also have to consider not to copy default attribute on importing
  350. XmlElement.
  351. * XmlDocumentType.cs : Now uses document's XmlResolver to read DTD.
  352. * XmlAttribute.cs,
  353. XmlDocumentFragment.cs.
  354. XmlElement.cs : use XmlResolver on InnerXml. Removed some MonoTODO.
  355. * XmlNodeReader.cs : GetInternalParserConext() should provide its DTD.
  356. ResolveEntity() uses XmlResolver on entityReader.
  357. 2003-08-07 Atsushi Enomoto <[email protected]>
  358. * DTDObjectModel.cs :
  359. - Added validation error check (and AddError(), Errors).
  360. - Fixed ComputeDefaultValue() to handle various references correctly.
  361. - DTDEntityDeclaration.EntityValue became property, and added
  362. LiteralEntityValue. The new one holds resolved value.
  363. Added ResolveExternalEntity(). It now required root in .ctor().
  364. * DTDValidatingReader.cs :
  365. - Now it handles namespaced attributes (as input to xsd validator).
  366. - Added XmlResolver property as usual XmlReader.
  367. - Added currentEntityHandling field so that it can stand changing
  368. XmlValidatingReader's EntityHandling dynamically.
  369. - FilterNormalization() now requires name for getting datatypes and
  370. can stand for non-current attribute normalization.
  371. - Splitted ReadContent() from Read() that can be called recursively
  372. when expanding entities.
  373. - Now handles Entity not found error *after* resolution of entities,
  374. as MS.NET does.
  375. - Read()ing DTD checks its Errors and raises validation error events.
  376. In some situations, DTD parsing may detect VC error, not WFC error.
  377. It also strictly checks NData existence.
  378. - Handling of entity-resolved text is a bit changed and Read()ing
  379. element, endElement, cdata now changed to switch collecting text
  380. and collected text.
  381. - content type ANY should allow texts.
  382. - Added enumerated attribute validity check.
  383. - Added Name/Names creation rule check for ID/IDREF/IDREFS.
  384. - Added entity existence check for ENTITY/ENTITIES attributes.
  385. - Added NMTOKEN creation rule check for NMTOKEN/NMTOKENS.
  386. - Fixed to remove extraneous #REQUIRED check.
  387. - Contributing default attribute is now only applied to the case
  388. ValidationType is DTD or None.
  389. - ResolveEntity() now handles external entities.
  390. Added Mono.Xml.IXmlParserContext interface support.
  391. * XmlDocumentType.cs : Fixed to use BaseURI to build DTD model.
  392. * XmlTextReader.cs :
  393. - Fixed ReadAttributeValue() to reset returnEntityReference.
  394. - Added bool MaybeTextDecl only for ResolveEntity().
  395. - Fixed ReadWhitespace(). In fact its value is considered even if it
  396. is in the end of the XML.
  397. - Fixed ReadXmlDeclaration(). Now skips text declaration.
  398. - CompileDTDSubset() now checks IGNORE/INCLUDE section end balances.
  399. - ReadContentSpec() should set OrderType = OR for mixed model.
  400. Fixed to set content element name correctly.
  401. - ImportAsPERef() now skips Text declaration.
  402. - Type of enumerated default attributes shold be string.
  403. - Undeclared PE error is now handled as DTD's VC error, not
  404. XmlTextReader's WFC error.
  405. * XmlValidatingReader.cs : BaseURI should provide that of
  406. original XmlReader's when read was not started yet.
  407. Fixed XmlResolver to delegate to DTDValidatingReader.
  408. * XmlAttributeCollection.cs : Acquiring attList declaration is
  409. insufficient especially in case of lack of elementdecl.
  410. * XmlChar.cs : (Maybe this is compact than XmlConstructs.)
  411. added IsWhitespace(),IsNCNameChar(),IsName(),IsNCName(),IsNmToken(),
  412. IsPubid(). Copies IsValidIANAEncoding() from XmlConstructs.
  413. * XmlInputStream.cs : Removed "version" declaration check. It should
  414. be done by XmlTextReader.
  415. * XmlNodeReader.cs : added internal GetInternalParserContext() and now
  416. it can be used in XmlValidatingReader.ResolveEntity().
  417. ResolveEntity() sets XmlTextReader.MaybeTextDecl.
  418. 2003-08-05 Atsushi Enomoto <[email protected]>
  419. * DTDValidatingReader.cs :
  420. Added full ExpandEntities support for text node and entity reference
  421. node (although require many usage tests). Almost all methods and
  422. properties now have currentTextValue != null check, that field means
  423. that there are cached (entity-resolved) text.
  424. Implemented default attribute aware XmlLang and XmlSpace.
  425. * XmlNodeReader.cs : ResolveEntity() should not require DTD.
  426. 2003-08-03 Atsushi Enomoto <[email protected]>
  427. * DTDValidatingReader.cs,
  428. XmlNodeReader.cs,
  429. XmlReader.cs,
  430. XmlTextReader.cs,
  431. XmlValidatingReader.cs : fixed pragma USE_VERSION_1_0 to NET_1_0.
  432. 2003-08-03 Atsushi Enomoto <[email protected]>
  433. * DTDObjectModel.cs : Added BaseURI (but not used yet).
  434. DTDAttListDeclaration.ctro() now requires root dtd object model.
  435. * DTDValidatingReader.cs : Read() now expands EntityReference if
  436. entity handling of validating reader is ExpandEntities.
  437. * XmlReader.cs,
  438. XmlTextReader.cs,
  439. XmlNodeReader.cs,
  440. XmlValidatingReader.cs : Implemented "virtual" ReadInnerXml and
  441. ReadOuterXml which are modified in MS.NET 1.1.
  442. * XmlConstructs.cs : added int version of IsValid, IsInvalid,
  443. IsContent, IsMarkup and IsNCNameStart.
  444. Fixed int version of IsXXX() to check array index range.
  445. Added IsValidName (string).
  446. * XmlTextReader.cs :
  447. - Read() handles document with non document element as an error.
  448. - ReadText() and ReadCharacterReference() checkes illegal characters.
  449. - ReadEntityReference() checks name validity.
  450. - ReadProcessingInstruction() rejects such name that starts with
  451. "xml" ignoring case, and checks attributes more strictly.
  452. - ReadDeclaration() rejects unrecognized kind of declaration.
  453. - In many places, added "required whitespace" check in DTD markup.
  454. - DTD content model now disallows mixing use of '|' and ','.
  455. 2003-08-02 Atsushi Enomoto <[email protected]>
  456. * XmlDocumentFragment.cs : I missed to add it in relation to the
  457. previous XmlParserContext patch. Similar to XmlAttribute/XmlElement.
  458. * XmlNodeReader.cs : removed some TODO attributes.
  459. * DTDValidatingReader.cs,
  460. XmlValidatingReader.cs : Implemented ResolveEntity().
  461. 2003-07-31 Atsushi Enomoto <[email protected]>
  462. * XmlParserContext.cs,
  463. XmlAttribute.cs,
  464. XmlElement.cs : Added internal Dtd and new internal XmlParserContext
  465. .ctor() that takes DTDObjectModel. And then rewrote classes which
  466. uses DTD information. Changed DocTypeName, InternalSubset, PublicId
  467. and SystemId to use DTDObjectModel.
  468. * DTDObjectModel.cs :
  469. Added DTDObjectModel.InternalSubsetHasPEReference.
  470. Added DTDEntityDeclaration.IsInternalSubset.
  471. * XmlTextReader.cs :
  472. Added internal GetInternalParserContext (to build entity reader).
  473. Added private isIntSubset to check if the DTD subset is internal or
  474. external, which might affect well-formedness constraints.
  475. Changed GenerateDTDObjectModel to return the resulting DTD model.
  476. * XmlEntityReference.cs : implemented BaseURI.
  477. * XmlNodeReader.cs :
  478. - Implemented ResolveEntity() and CanResolveEntity(). In fact
  479. it leads too many changes on almost all methods and properties,
  480. since they now must be aware of entityReader.
  481. - fixed ownerElement that might be used to return from attribute
  482. value to the element through parent attribtues.
  483. - Now changed indexer to call GetAttribute() and moved actual logic
  484. to the matching GetAttribute() methods.
  485. 2003-07-29 Atsushi Enomoto <[email protected]>
  486. * XmlNode.cs : fixed internal ConstructNamespaceManager() for InnerXml
  487. not to create extraneous xmlns="".
  488. 2003-07-28 Atsushi Enomoto <[email protected]>
  489. * DTDValidatingReader.cs : (Read,ValidateAttributes,ReadAttributeValue)
  490. attribute declaration should be got independently of elementdecl.
  491. * XmlAttribute.cs :
  492. Added internal SetDefault() to mark as default.
  493. Removed InnerText implementation that is just the same as XmlNode.
  494. * XmlDocument.cs : id shouldn't be removed from table at 'trying' to
  495. get matching elements. ReadAttributeNode() now sets default mark.
  496. * XmlElement.cs : WriteTo() should ignore default attributes.
  497. * XmlTextWriter.cs : shuold allow valid name char such as digits.
  498. 2003-07-27 Piers Haken <[email protected]>
  499. * XmlQualifiedName.cs : fields should never be null
  500. 2003-07-27 Atsushi Enomoto <[email protected]>
  501. * XmlDocumentFragment.cs : added XPathNodeType indicating Root.
  502. 2003-07-27 Atsushi Enomoto <[email protected]>
  503. * XmlDocument.cs (GetIdenticalAttribute): restored OwnerElement.IsRooted
  504. 2003-07-27 Atsushi Enomoto <[email protected]>
  505. * XmlLinkedNode.cs : added internal IsRooted.
  506. 2003-07-26 Atsushi Enomoto <[email protected]>
  507. * DTDValidatingReader.cs :
  508. - Added ID support in ValidateAttributes().
  509. - More refined ReadAttributeValue() support for non-expanding entity
  510. situation
  511. - It should handle LocalName, Name, Prefix, NamespaceURI and Value
  512. correctly when the reader is on each of the value nodes of an
  513. attribute. Now XmlDocument.ReadNode() should work well.
  514. * XmlDocument.cs :
  515. - added idTable, AddIdenticalAttribute(), GetIdenticalAttribute() and
  516. RemoveIdenticalAttribute()
  517. - Implemented GetElementById().
  518. * XmlAttributeCollection.cs :
  519. - added private ownerDocument property and replaced
  520. ownerElement.OwnerDocument with it.
  521. - Added AdjustIdenticalAttribute() and it is used in SetNamedItem().
  522. It calls XmlDocument.{Add|Remove}IdenticalAttribute().
  523. - Added RemoveIdenticalAttribute() and it is used in Remove().
  524. (I also added AddIdenticalAttribute() but is not used.)
  525. 2003-07-26 Duncan Mak <[email protected]>
  526. * XmlDocument.cs (GetIdenticalAttribute): Temporarily remove test
  527. for OwnerElement.IsRooted to fix the build..
  528. 2003-07-26 Atsushi Enomoto <[email protected]>
  529. * XmlDocumentType.cs :
  530. modified private DTD to dtd and added internal DTD (the same thing).
  531. * XmlElement.cs :
  532. Fixed SetAttributeNode() to check if specified attribute is already
  533. set to the other element. In fact it is W3C DOM's specification but
  534. MS.NET 1.0 failed to catch it.
  535. * XmlTextReader.cs :
  536. ReadAttributeValue() should check if the value of the attribute is
  537. already read when the whole value is entity reference.
  538. Also, Name of text nodes should be "", not "#text"
  539. 2003-07-26 Atsushi Enomoto <[email protected]>
  540. * XmlAttribute.cs : .ctor() shouldallow localName "xml" (not prefix)
  541. with http://www.w3.org/XML/1998/namespace.
  542. * XmlEntity.cs : patch by Aleksey Sanin. InnerText is now supported.
  543. * XmlNode.cs : InnerText should handle CDATA and whitespaces.
  544. * XmlTextReader.cs : Should allow " (#PCDATA)* " in ReadContentSpec().
  545. * XmlTextWriter.cs : Quick fix for accepting (and writing) same-named
  546. attributes (as MS.NET does). It isn't good way and I may change it.
  547. 2003-07-24 Atsushi Enomoto <[email protected]>
  548. * DTDObjectModel.cs : Added DTDEntityDeclarationCollection and
  549. DTDNotationDeclarationCollection and replaced Hashtables with them.
  550. Added NormalizedDefaultValue property for DTDAttributeDefinition.
  551. * DTDValidatingReader.cs :
  552. - It now reads attribute values into value collection.
  553. - Renamed consumedDefaultAttribute to consumedAttribute, and
  554. inContent to insideContent.
  555. - GetAttribute() should allow reader's other node state than element.
  556. - MoveToNextAttribute() should move when reader is placed other than
  557. the first attribute.
  558. - HandleError() now supports ValidationType.None (i.e. does nothing).
  559. - ValidateAttribute() now collects and resolves attribute value
  560. entity references. (On the other hand, it doesn't support
  561. EntityHandling.ExpandCharEntity.)
  562. - NodeType shouldn't return Attribute after ReadAttributeValue().
  563. Now only Text is supported, but must also support EntityReference.
  564. - Add FilterNormalization() and partially support Normalization.
  565. 2003-07-24 Atsushi Enomoto <[email protected]>
  566. * XmlTextReader.cs :
  567. Read() now handles parser context stuff (BaseURI, XmlLang and
  568. XmlSpace) correctly for an empty element.
  569. Normalization property now doesn't throw an error. Will be used soon.
  570. * XmlValidatingReader.cs : added ValidationType.None support (wait for
  571. the next DTDValidatingReader update for "not firing event handler).
  572. * XmlNodeReader.cs : jun. 30th commit seems wrong. It keeps its state.
  573. 2003-07-19 Atsushi Enomoto <[email protected]>
  574. * DTDValidatingReader.cs :
  575. changed base class to XmlReader and implemented IXmlLineInfo members.
  576. changed .ctor() argument from event handler to validating reader.
  577. Removed some #if ... #else ... #endif blocks.
  578. Added validation event support for Read() using HandleError().
  579. * XmlValidatingReader.cs : added internal OnValidationEvent().
  580. * XmlDocument.cs : ReadNode() now checks reader's state more strictly.
  581. 2003-07-19 Atsushi Enomoto <[email protected]>
  582. * XmlUrlResolver.cs : applied BenM's patch for file uri problem
  583. (bug #46610).
  584. 2003-07-15 Atsushi Enomoto <[email protected]>
  585. * DTDValidatingReader.cs :
  586. added DTDObjectModel support for non-XmlTextReader XmlReader
  587. e.g. XmlNodeReader (Read() method).
  588. * XmlDocument.cs :
  589. added internal CreateDocumentType(XmlTextReader) and moved
  590. ReadDoctypeNode() to XmlDocumentType.ImportFromDTD().
  591. * XmlDocumentType.cs :
  592. added internal .ctor(XmlTextReader, document) and ImportFromDTD().
  593. * XmlTextReader.cs :
  594. Renamed useSbForVal (valueBuilderAvailable), valSb (valueBuilder)
  595. and currentSubset (DTD).
  596. Added GenerateDTDObjectModel() (for independent doctype parsing).
  597. 2003-07-15 Atsushi Enomoto <[email protected]>
  598. * XmlAttribute.cs :
  599. .ctor() should reject xml- or xmlns-prefixed node.
  600. * XmlNamespaceManager.cs :
  601. added some xmlns validity check.
  602. * XmlNode.cs :
  603. optimized GetNamespaceOfPrefix() and GetPrefixOfNamespace() by
  604. avoiding XmlNamespaceManager creation.
  605. * XmlNodeReader.cs :
  606. doctype node should return PUBLIC and SYSTEM for its indexer,
  607. and Value should be internal subset,
  608. 2003-07-12 Atsushi Enomoto <[email protected]>
  609. * DTDObjectModel.cs,
  610. DTDValidatingReader.cs : Completely rewrote attribute handling.
  611. 2003-07-12 Atsushi Enomoto <[email protected]>
  612. * XmlAttribute.cs,
  613. XmlElement.cs : Fixed CloneNode() for bug #46129.
  614. * XmlDocument.cs : Fixed MakeReaderErrorMessage that specified invalid
  615. String.Format arguments, and basically XmlException.ctor(
  616. IXmlLineInfo, message) seems good idea to use.
  617. * XmlTextReader.cs :
  618. - Fixed .ctor(Stream, XmlNodeType, XmlParserContext) which had
  619. required non-null context which don't have to exist.
  620. - Added state check. Introduced 'currentState' and 'maybeTextDecl'
  621. (for external entity) and removed hasEnteredDocument. Added
  622. state-check logic to ReadStartTag(), ReadEndTag(), ReadText(),
  623. ReadCData(), ReadDoctypeDecl() and ReadWhitespace().
  624. - Replaced throw ReaderError() with throw new XmlException() and
  625. fixed that some error hadn't thrown, only created.
  626. - ResetState() should re-initialize existing private members other
  627. than some specified fields.
  628. - Private AddAttribute() should check if the same-named attribute
  629. already exists.
  630. * DTDObjectModel.cs : Additive declaration for ATTLIST is availabe now.
  631. 2003-07-09 Lluis Sanchez Gual <[email protected]>
  632. * XmlTextReader.cs : Implemented ResetState() method.
  633. 2003-07-06 Atsushi Enomoto <[email protected]>
  634. * XmlElement.cs : IsEmpty has removed attributes since it incorrectly
  635. used RemoveAll().
  636. 2003-07-06 Atsushi Enomoto <[email protected]>
  637. * XmlDocument.cs : Load(string filename) should close its stream.
  638. Small change for the latest DTDObjectModel change.
  639. * XmlTextReader.cs : Changed for the latest DTDObjectModel change (all
  640. changed methods are only related to DTD stuff).
  641. Now uses XmlSchemaDatatype for attribute type definition.
  642. * XmlValidatingReader : initial (limited) support for DTD validation.
  643. It can handle only XmlTextReader.
  644. * DTDObjectModel.cs : changed radically for initial validation support.
  645. * added DTDAutomata.cs and DTDValidatingReader.cs.
  646. 2003-07-06 Atsushi Enomoto <[email protected]>
  647. * XmlElement.cs : Removed extraneous xmlns output support (it should
  648. be done by XmlTextWriter).
  649. * XmlNode.cs : InsertBefore() now checks validity of the newChild (and
  650. most of the changes are in fact indentation changes).
  651. * XmlWriter.cs : WriteAttributes() now can write entity references.
  652. WriteNode() now writes xmldecl attributes correctly.
  653. Removed namespaceManager and xmlns check logic, since it should be
  654. done by individual XmlTextWriter.
  655. * XmlTextWriter.cs : Patch by Jerome. AddMissingElementXmlns () has
  656. written multiple xmlns declarations.
  657. Moved namespaceManager from abstract XmlWriter.
  658. Write{Start|End}Attribute() and WriteString() now checks xmlns
  659. attribute value. (MS.NET holds value only with this write method).
  660. 2003-07-04 Atsushi Enomoto <[email protected]>
  661. * XmlDocument.cs : removed xmlReader.Close() from Load(XmlReader).
  662. 2003-06-30 Atsushi Enomoto <[email protected]>
  663. * XmlDocumentNavigator.cs : Implemented MoveTo*Namespace() and
  664. essentially changed most of the property handling (e.g. removed attribute
  665. enumerator and it now became really cloneable).
  666. * XmlNodeReader.cs : ReadInnerXml() changes its state as error
  667. when the method is called at Initial state.
  668. 2003-06-25 Atsushi Enomoto <[email protected]>
  669. * XmlDocumentNavigator.cs : Fixed IsEmptyElement. It treats <foo></foo>
  670. as non-empty, and XmlElement's IsEmpty is designed as such.
  671. Fixed MoveToFirst() and MoveToNext() not to move to xmldecl nor
  672. doctype node.
  673. * XmlNode.cs : Fixed XPathNodeType. It should throw an exception
  674. instead of returning undefined enum value.
  675. Modified some code comments.
  676. * XmlWriter.cs : Fixed WriteNode () to use WriteFullEndElement()
  677. when XmlReader's node is not at empty element or at EndElement.
  678. Fixed XmlDeclaration's standalone check.
  679. 2003-06-21 Atsushi Enomoto <[email protected]>
  680. * XmlTextReader.cs : removed CRLFs. Fixed private InitializeContext()
  681. to use known Uri way (used in XmlUrlResolver) instead of UriBuilder.
  682. 2003-06-20 Atsushi Enomoto <[email protected]>
  683. * XmlInputStream.cs : quick fix for public ctor() BaseURI bug.
  684. 2003-06-20 Ben Maurer <[email protected]>
  685. * XmlTextReader.cs: Reduces memory allocation when the reader is
  686. not queried for some values.
  687. * NameTable.cs: Now uses a custom hashtable to implement. As a
  688. result, when Get (char[], int, int) is called, a string is only
  689. allocated if it is actually a new entry.
  690. (StrEqArray) Compares a string and a char[]
  691. (AddEntry) Adds a new entry to the hashtable
  692. (Entry) Represents a hashtable entry.
  693. 2003-06-20 Atsushi Enomoto <[email protected]>
  694. * XmlUrlResolver.cs : several ResolveUri() fix. e.g. for external URIs.
  695. 2003-06-16 Ben Maurer <[email protected]>
  696. * XmlUrlResolver.cs: really fixed #44231
  697. 2003-06-16 Atsushi Enomoto <[email protected]>
  698. * XmlNodeReader.cs : fixed MoveToNextAttribute(). In some cases
  699. this method set current node null.
  700. * XmlTextReader.cs : fixed GetAttribute (name, ns), which returned
  701. String.Empty instead of null (expected value).
  702. * XmlTextReader.cs,
  703. XmlUrlResolver.cs,
  704. XmlInputStream.cs : fixed BaseURI problem (bug #44231).
  705. 2003-06-15 Atsushi Enomoto <[email protected]>
  706. * XmlNodeReader.cs : this [name] and this [name, ns] (and
  707. GetAttribute() methods in turn) returns null instead of String.Empty.
  708. * XmlTextWriter.cs : WriteStartAttribute() should try to use specified
  709. prefix before auto-generating prefixes.
  710. Implemented WriteBase64().
  711. 2003-06-13 Atsushi Enomoto <[email protected]>
  712. * XmlNodeReader.cs : LookupNamespace () has refered invalid current
  713. node for attributes. Modified to use private "document" property.
  714. 2003-06-10 Lluis Sanchez Gual <[email protected]>
  715. * XmlTextWriter.cs: when adding an attribute with a namespace, a prefix must be automaticaly
  716. generated, and a namespace declaration must be added.
  717. * XmlWriter.cs: the namespace for the prefix xmlns must be http://www.w3.org/2000/xmlns/
  718. 2003-06-10 Zoltan Varga <[email protected]>
  719. * XmlAttribute.cs: Accept a null prefix or namespaceURI.
  720. 2003-06-10 Duncan Mak <[email protected]>
  721. * XmlDocumentNavigator.cs (GetNode): Make it implement
  722. IHasXmlNode.
  723. 2003-06-05 Lluis Sanchez Gual <[email protected]>
  724. * XmlTextWriter.cs : Fixed bug. After calling for example WriteStartElement ("pref","ln","ns");
  725. a call to LookupPrefix ("pref") when still writting attributes should
  726. return "ns", and it didn't.
  727. 2003-06-02 Atsushi Enomoto <[email protected]>
  728. * XmlDocumentNavigator.cs : quick fix for MoveToFirstChild().
  729. * XmlConvert.cs : fixed VerifyNCName() to check correctly.
  730. 2003-06-01 Atsushi Enomoto <[email protected]>
  731. * XmlDocumentNavigator.cs : Compute document node one time.
  732. MoveToFirstChild() should move to PIs and comments.
  733. 2003-05-30 Miguel de Icaza <[email protected]>
  734. * XmlReader.cs (ReadStartElement): Improve error message.
  735. 2003-05-28 Lluis Sanchez Gual <[email protected]>
  736. * XmlTextReader.cs : MoveToAttribute methods must set the enumerator to the right
  737. position, since MoveToNextAttribute may be called after it.
  738. SetProperties(): attributes do not "inherit" the namespace.
  739. * XmlDocument.cs: ReadNode(), ReadAttributeNode(): must keep the current reader position.
  740. 2003-05-27 Atsushi Enomoto <[email protected]>
  741. * NameTable.cs : Add() sets the given name string interned.
  742. * XmlParserContext.cs : added internal PushScope() and PopScope() to
  743. hold stacks of xml:base, xml:lang and xml:space.
  744. * XmlTextReader.cs : implemented XmlLang and XmlSpace (only as a
  745. property for stacked attributes). Renamed Initialize() to Initialize-
  746. Context(). Modified to use XmlParserContext.PushScope()/PopScope().
  747. 2003-05-26 Lluis Sanchez Gual <[email protected]>
  748. * XmlReader.cs: Little fix to WriteAttributeString()
  749. 2003-05-24 Atsushi Enomoto <[email protected]>
  750. * XmlAttribute.cs, XmlCharacterData.cs, XmlComment.cs, XmlDocument.cs,
  751. XmlDocumentFragment.cs, XmlElement.cs, XmlEntity.cs, XmlLinkedNode.cs,
  752. XmlNode.cs, XmlNotation.cs, XmlProcessingInstruction.cs, XmlReader.cs,
  753. XmlSignificantWhitespace.cs, XmlText.cs, XmlWhitespace.cs:
  754. Reverted the recent accessibility mistake (5/16).
  755. * XmlDocument.cs, XmlNode.cs : moved actual CreateNavigator() logic
  756. from XmlNode to XmlDocument.
  757. 2003-05-18 Lluis Sanchez Gual <[email protected]>
  758. * XmlQualifiedName.cs : Fixed bug in equality operator.
  759. 2003-05-18 Atsushi Enomoto <[email protected]>
  760. * XmlTextWriter.cs : patch by Jonathan Hogg. Flush() does not close
  761. any open attributes or elements. WriteWhitespace() checks state and
  762. closes start tag. Fixed WriteStringInternal() to replace CR/LF chars
  763. when it is called inside attribute value.
  764. * XmlException.cs : added .NET 1.1 .ctor.
  765. * added XmlSecureResolver.cs (only stubbing).
  766. * XmlAttribute.cs : set_InnerXml() should remove children.
  767. * XmlAttribute.cs,
  768. XmlElement.cs,
  769. XmlDocumentFragment.cs,
  770. XmlDocument.cs : removed XmlTextReader reuse (It was buggy stuff).
  771. * XmlNode.cs : RemoveAll() should also remove all attributes.
  772. * XmlTextRader.cs : .ctor() for attribute value reader should add
  773. quotations at initialization, since it requires quote chars.
  774. * XmlWriter.cs : WriteAttributeString() more correct xmlns check.
  775. 2003-05-16 Atsushi Enomoto <[email protected]>
  776. * changed XPathNodeType modifier to internal *protected* override.
  777. * XmlAttribute.cs : .ctor() now checks name validity e.g. xmlns.
  778. * XmlAttribute.cs, XmlElement.cs : set_Prefix checks NCName validity.
  779. * XmlAttributeCollection.cs : removed some incorrect TODO attributes.
  780. * XmlDocument.cs ; CreateAttribute(name) now auto-completes xmlns NSURI
  781. when the argument is "xmlns".
  782. * XmlElement.cs : more compliant IsEmpty support. See also WriteTo().
  783. * XmlNamespaceManager.cs : added initial "xml" and "xmlns" namespaces.
  784. * XmlNode.cs : ser_InnerXml() throws InvalidOperationException.
  785. * XmlNodeReader.cs : LookupNamespace() refactory. Fixed ReadInnerXml()
  786. not to set error state for non-started XmlNodeReader.
  787. * XmlTextReader.cs : fixed ReadAttributeValue() not to reset state.
  788. BaseURI support. Fixed Initialize() to handle Attribute correctly.
  789. SetProperty for attribute auto-completes xmlns NSURI.
  790. Attribute and whitespace handling became more correct.
  791. Don't parse external DTD if XmlResolver is null.
  792. * XmlTextWriter.cs : implemented WriteEntityRef().
  793. WriteStartAttribute() checks if ns does not equal to that of xmlns.
  794. * XmlWriter.cs : trivial refactoring (WriteNode() xmldecl output).
  795. 2003-05-05 Atsushi Enomoto <[email protected]>
  796. * XmlConvert.cs : IsInvalid() Now uses XmlConstructs.IsName(Start).
  797. EncodeName() now correctly encodes invalid names.
  798. Result string of ToString(DateTime) contains "fffffff".
  799. 2003-04-29 Atsushi Enomoto <[email protected]>
  800. * XmlElement.cs : fixed IsEmpty (removed private field isEmpty).
  801. * XmlNodeReader.cs : Fixed AttributeCount, each this[] (indexers),
  802. MoveTo*Attribute(),
  803. Fixed this[] to work correctly against XmlDeclarations.
  804. Fixed ReadInnerXml() and ReadOuterXml() to call Read() correctly.
  805. (which may prevent validations etc.)
  806. * XmlReader.cs,
  807. XmlNodeReader.cs,
  808. XmlTextReader.cs : Fixed ReadString() to be compliant with each
  809. other.
  810. * XmlTextReader.cs : ReadInnerXml() now moves to next node correctly.
  811. 2003-04-27 Pedro Martínez Juliá <[email protected]>
  812. * XmlNode.cs: ensure to get a valid Uri in BaseUri when loading the
  813. source document from a file.
  814. 2003-04-27 Atsushi Enomoto <[email protected]>
  815. * XmlAttribute.cs : fixed WriteTo() and WriteContentTo() to write
  816. content EntityReference correctly.
  817. * XmlNodeReader.cs : many fix for EndElement handling (AttributeCount,
  818. HasAttributes, indexers, MoveTo*Attribute() and Read() ).
  819. Modified Skip() to call Read () explicitly.
  820. * XmlTextReader.cs :
  821. Fixed ReadInnerXml() which ignored EndElement token in certain cases.
  822. Implemented MoveToAttribute (local, ns), and modified GetAttribute()
  823. in relation to this change.
  824. Attributes for XmlDeclaration are now correctly set.
  825. * XmlTextWriter.cs : WriteRaw() is now different from WriteString().
  826. Simplified WriteAttributes() for XmlDeclaration.
  827. 2003-04-26 Atsushi Enomoto <[email protected]>
  828. * XmlTextReader.cs : fixed ReadInnerXml(). it was inconsistent with
  829. Depth property fix.
  830. 2003-04-25 Atsushi Enomoto <[email protected]>
  831. * XmlDocument.cs : fixed Load() to set baseURI correctly.
  832. * XmlReader.cs : patch by Gonzalo. Fixed not to skip XmlDeclaration.
  833. * XmlTextReader.cs :
  834. fixed Depth. When it's on StartElement, Depth was already incremented.
  835. fixed private SaveProperty(), which moved away its saved properties
  836. when MoveToElement was called repeatedly.
  837. * XmlTextWriter.cs : fixed WriteQualifiedName() to close start tag.
  838. * XmlWriter.cs :
  839. WriteAttributes() refactory (for XMLDecl).
  840. WriteNode() don't Read() when the reader is Initial state, let other
  841. invokation to Read(). In case of Element, it should write entire
  842. element. In case of Attribute, it shouldn't Read().
  843. WriteStartDocument() should omit standalone decl. when there is no
  844. explicit value.
  845. 2003-04-23 Gonzalo Paniagua Javier <[email protected]>
  846. * XmlReader.cs: reverted last patch. It breaks System.Configuration
  847. because 1. it considers XmlDeclaration as content and 2. always
  848. returns XmlNodeType.None.
  849. 2003-04-23 Atsushi Enomoto <[email protected]>
  850. * Added missing ChangeLog of 4/4/2003.
  851. * XmlTextWriter.cs : patch by Erik. fixed WriteQualifiedName.
  852. (write prefix instead of ns.)
  853. * XmlInputStream.cs : file access mode fix (FileAccess.Read was missing)
  854. * XmlTextReader.cs : modified to call Read() instead of ReadContent().
  855. (It may be required for decorated reader such as XmlValidatingReader.)
  856. Changed Read() error message for mismatch end tag.
  857. * XmlDocument.cs : (ReadNode) friendly message for mismatch EndElement.
  858. * XmlReader.cs : Corrected misinterpreted MoveToContent() method.
  859. 2003-04-04 Atsushi Enomoto <[email protected]>
  860. * XmlDocument.cs : Load() now closes the given XmlReader.
  861. Don't allow creation of XmlTextReader for Doctype. (workaround.)
  862. * XmlInputStream.cs : It now closes its internal stream explicitly.
  863. * XmlNode.cs : RemoveChild() bugfix for removing LastLinkedChild.
  864. * XmlNodeReader.cs : GetAttribute() bugfix for not-present attribute.
  865. * XmlParserInput.cs : added Close() method.
  866. * XmlReader.cs : MoveToContent() should (1) not Read in case of empty
  867. element, and (2) MoveToElement() in case of attribute.
  868. * XmlTextReader.cs : Close() now actually closes source TextReaders.
  869. 2003-03-26 Duncan Mak <[email protected]>
  870. * XmlTextWriter.cs (Write): A patch from Atsushi to fix
  871. prematurely ending the write, or something like that. It was
  872. causing us to chop off the end of the document when we're trying
  873. to generate XML Schemas.
  874. 2003-03-23 Atsushi Enomoto <[email protected]>
  875. * XmlTextReader.cs : implemented ReadString().
  876. fixed ctor(string, XmlNodeType, XmlParserContext) - don't raise
  877. null reference exception when context is null.
  878. * XmlNodeReader.cs : fixed ReadString() - should ignore attributes etc.
  879. fixed Read() - when positioned at EndElement, it didn't progress.
  880. fixed HasAttribute - it didn't return false in all cases.
  881. fixed Name and LocalName - only limited type of nodes return names.
  882. fixed AttributeCount - in some cases it threw null ref exception.
  883. 2003-03-22 Atsushi Enomoto <[email protected]>
  884. * XmlTextWriter.cs : WriteStartDocument doesn't set hasRoot=true, then
  885. WriteEndDocument without root element now raises an error correctly.
  886. * XmlDocumentNavigator.cs : (MoveToFirstChild) fixed bugzilla #36672.
  887. implemented BaseURI, NameTable, XmlLang, GetAttributes, GetNamespace,
  888. MoveToAttribute.
  889. 2003-03-22 Atsushi Enomoto <[email protected]>
  890. * XmlElement.cs : RemoveAttribute now don't throws when specified
  891. attribute does not exist.
  892. 2003-03-21 Atsushi Enomoto <[email protected]>
  893. * XmlNode.cs : add descriptions for some node type error.
  894. 2003-03-21 Atsushi Enomoto <[email protected]>
  895. * XmlNodeArrayList.cs, XmlNodeListChildren.cs : bugzilla #39920 fix.
  896. 2003-03-19 Atsushi Enomoto <[email protected]>
  897. * XmlDeclaration.cs : quick fix, not to use regex for set_Value.
  898. 2003-03-19 Atsushi Enomoto <[email protected]>
  899. * XmlTextReader.cs : Fixed wrong notationdecl SYSTEM id read.
  900. * XmlInputStream.cs : Should allow versionless input stream entity.
  901. 2003-03-18 Atsushi Enomoto <[email protected]>
  902. * added XmlParserInput.cs for multi xml document sources.
  903. * added DTDObjectModel.cs (maybe temporary).
  904. * XmlTextReader.cs :
  905. + fixed ctor to use XmlStreamReader. Allowed null XmlParserContext.
  906. + Some members such as LineNumber, ReadChar now uses XmlParserInput.
  907. + added support for Namespaces (namespace-ignorant parse available).
  908. + added support for XmlResolver.
  909. + replace SetReaderContext()/SetReaderFragment() with Initialize().
  910. + use NameTable in CreateNameString.
  911. + fixed ReadCData(). Now reads "]]]>" correctly.
  912. + support for DTD parse.
  913. + Read() now throws an error when it reached EOF while Depth > 0.
  914. * XmlAttribute.cs,
  915. XmlDocumentFragment.cs,
  916. XmlElement.cs : fix related to the changes of XmlTextReader.Initialize
  917. * XmlDocument.cs : ReadNode() now reads DocumentType.
  918. * XmlDocumentType.cs : implemented Entities, Notations, WriteTo().
  919. * XmlEntity.cs,
  920. XmlNotation.cs : added override LastLinkedChild (for doctype node).
  921. * XmlNamedNodeMap.cs : Remove() raises an error if target is read only.
  922. * XmlElement.cs : bugfix for node removal of set_InnerXml.
  923. * XmlNode.cs : added insertBeforeIntern() derived from InsertBefore().
  924. (to append child XmlEntity into XmlDocumentType correctly.)
  925. * XmlInputStream.cs : fixed to access file with FileAccess.Read.
  926. 2003-03-15 Duncan Mak <[email protected]>
  927. * XmlElement.cs (Name): Only append prefix + ':' when prefix is
  928. neither String.Empty nor null. Thanks to Simon Guindon for
  929. reporting the bug and Jackson for fixing this bug with me.
  930. 2003-03-15 Atsushi Enomoto <[email protected]>
  931. * XmlConstructs.cs : fix "int IsXXX()" to reject negative value.
  932. * XmlDocument.cs : simplify Load(string url) to use XmlTextReader.
  933. fixed ReadNode(), it should call reader.Read() only on Initial state.
  934. * XmlInputStream.cs : Changed namespace. Added XmlStreamReader(stream)
  935. and XmlStreamReader (string). Fixed XmlInputStream(url) not to use
  936. System.Net.WebClient directly.
  937. * XmlParserContext.cs : baseURI never be null.
  938. * XmlTextWriter.cs : use WebName for Encoding instead of HeaderName.
  939. * XmlUrlResolver.cs : namespace change for XmlInputStream.
  940. 2003-03-12 Elan Feingold <[email protected]>
  941. * XmlTextReader.cs: When throwing a ReaderException, show what
  942. character was the culprit
  943. 2003-03-05 Atsushi Enomoto <[email protected]>
  944. * XmlDocumentFragment.cs, XmlElement.cs :
  945. modified InnerXml (fragment type from Element to DocumentFragment).
  946. * XmlElement.cs : fixed WriteTo() ns check.
  947. * XmlNamespaceManager.cs : MS.NET allows Add() used two or more times.
  948. * XmlNode.cs : fixed ConstructNamespaceManager().
  949. * XmlConstructs.cs : added IsSpace, IsName, IsNameStart, IsNCName,
  950. IsPubid with an int arg.
  951. * XmlReader.cs : changed to use XmlChar.cs (its role is as same as
  952. XmlConstructs.cs).
  953. * XmlTextReader.cs :
  954. improved error messages with line info.
  955. / checking matching start and end tags.
  956. / prevents the apperance of multiple root elements. (patch by Erik)
  957. fixed and refactored ReadInnerXml() and ReadOuterXml()
  958. changed to use XmlChar.cs.
  959. * XmlTextWriter.cs : changed to put element's xmlns at CloseStartTag ()
  960. (It will help c14n implementation.)
  961. / blocks multiple attribute output with element node.
  962. 2003-02-28 Alan Tam <[email protected]>
  963. * XmlConvert.cs: fixed the most ToXXX(string) and ToString(XXX)
  964. methods to make them compatible with the XML Schema Spec from W3C
  965. ToString(TimeSpan) is still outstanding
  966. 2003-02-18 Gonzalo Paniagua Javier <[email protected]>
  967. * XmlDocument.cs:
  968. (Load (string)): hack to workaround some issues with Uri.Parse. Once
  969. Parse is fixed, remove the hack.
  970. 2003-02-16 Atsushi Enomoto <[email protected]>
  971. * XmlQualifiedName.cs : fixed GetHashCode() to avoid null reference
  972. * XmlTextReader.cs : fixed ReadAttributeValue() to handle
  973. entity reference, and some refactory.
  974. 2003-02-16 Atsushi Enomoto <[email protected]>
  975. * XmlUrlResolver.cs : WebClient.Credentials was not implemented yet.
  976. 2003-02-16 Atsushi Enomoto <[email protected]>
  977. * XmlInputStream.cs : added (also contains internal XmlStreamReader).
  978. * XmlDocument.cs : Load () now can specify URL using XmlUrlResolver,
  979. and can read non-UTF-8 stream.
  980. * XmlTextReader.cs : related to above stream fix.
  981. * XmlUrlResolver.cs : implemented GetEntity ().
  982. 2003-02-03 Gonzalo Paniagua Javier <[email protected]>
  983. * XmlTextWriter.cs: implemented WriteRaw (char[], int, int).
  984. 2003-02-02 Atsushi Enomoto <[email protected]>
  985. * XmlTextReader.cs : implemented QuoteChar.
  986. 2003-01-26 Atsushi Enomoto <[email protected]>
  987. * XmlNode.cs : implemented ReplaceChild.
  988. removed DocElem checking at InsertBefore.
  989. * XmlNodeReader.cs : fixed ReadString and Read for correct node info.
  990. * XmlText.cs : implemented CloneNode and SplitText.
  991. 2003-01-24 Gonzalo Paniagua Javier <[email protected]>
  992. * XmlCharacterData.cs: added XPathNodeType property.
  993. 2003-01-22 Gonzalo Paniagua Javier <[email protected]>
  994. * XmlTextWriter.cs: throw an exception if WriteEndDocument is
  995. called without a prior call to WriteStartDocument.
  996. 2003-01-21 Atsushi Enomoto <[email protected]>
  997. * XmlNodeReader.cs : several fix to get more compatible with MS.NET.
  998. 2003-01-19 Atsushi Enomoto <[email protected]>
  999. * XmlNamespaceManager.cs : fundamental change of LookupPrefix to return
  1000. null when no matching uri.
  1001. * XmlElement.cs : removed unnecessary xmlns output.
  1002. * XmlNode.cs : GetPrefixOfNamespace fix along with the change above.
  1003. * XmlTextWriter.cs : LookupPrefix and WriteStartElementInternal fix
  1004. along with the change above, and moved timing of 'xmlns' output
  1005. to CloseStartElement.
  1006. * XmlWriter.cs: modified WriteStartAttribute, same as yesterday.
  1007. 2003-01-18 Atsushi Enomoto <[email protected]>
  1008. * XmlWriter.cs: modified WriteStartElement (see test for detail).
  1009. Added WriteNode.
  1010. 2003-01-13 Ville Palo <[email protected]>
  1011. * XmlDocument.cs: Added CheckName () method to check names validity.
  1012. 2003-01-11 Gonzalo Paniagua Javier <[email protected]>
  1013. * XmlTextReader.cs:
  1014. (ReadOuterXml): use Depth property which return elementDepth, not depth.
  1015. 2003-01-11 Atsushi Enomoto <[email protected]>
  1016. * XmlElement.cs : (by ville) XmlElement.set_InnerText event bugfix.
  1017. * XmlTextReader.cs : some fix for ReadOuterXml().
  1018. 2003-01-08 Atsushi Enomoto <[email protected]>
  1019. * XmlTextReader.cs : bugfix for attributes related to creation of
  1020. XmlAttribute *node*.
  1021. 2003-01-08 Atsushi Enomoto <[email protected]>
  1022. * XmlTextReader.cs : bugfix for attribute values which have entity
  1023. references.
  1024. 2002-12-28 Ville Palo <[email protected]>
  1025. * XmlDocument.cs: XmlTextWriter.Formatting == Indented when
  1026. calling Save () -methods.
  1027. 2002-12-28 Atsushi Enomoto <[email protected]>
  1028. * XmlNodeReader.cs : primitive reading implementation.
  1029. 2002-12-28 Atsushi Enomoto <[email protected]>
  1030. * XmlElement.cs : quick fix for the incomplete patch of #35308 below.
  1031. 2002-12-28 Atsushi Enomoto <[email protected]>
  1032. * XmlDocument.cs : removed inconsistent line-feed output.
  1033. * XmlElement.cs, XmlTextWriter.cs :
  1034. fixed for bugzilla 35308 (default ns output)
  1035. * XmlWhitespace.cs : limited output only when preserving whitespace.
  1036. 2002-12-24 Atsushi Enomoto <[email protected]>
  1037. * XmlAttribute.cs, XmlDocument.cs, XmlTextReader.cs:
  1038. Implemented XmlTextReader.ReadAttributeValue().
  1039. Added internal ReadAttributeNodeValue().
  1040. Fixed XmlAttribute.InnerXml to use these methods.
  1041. * XmlDocument.cs, XmlDocumentFragment.cs, XmlElement.cs, XmlNode.cs:
  1042. Implemented XmlDocument.ReadNode() and removed ConstructDOM().
  1043. Other changes are replacing them.
  1044. 2002-12-24 Atsushi Enomoto <[email protected]>
  1045. * XmlDocument.cs: patch by Ville (fixed default PreserveWhitespace)
  1046. 2002-12-21 Atsushi Enomoto <[email protected]>
  1047. * XmlElement.cs, XmlTextWriter.cs, XmlWriter.cs:
  1048. patch by JD Conley <[email protected]>.
  1049. (Fix for xmlns attribute output.)
  1050. 2002-12-05 Ville Palo <[email protected]>
  1051. * XmlQualifiedName.cs: Little fix to ToString () -method
  1052. 2002-12-04 Tim Haynes <[email protected]>
  1053. * class/System.XML/System.Xml/XmlElement.cs: Made more refined
  1054. checks on attributeNode to fix 32262.
  1055. 2002-12-03 Atsushi Enomoto <[email protected]>
  1056. * XmlDocument.cs (CreateNavigator(XmlNode)) : reverted
  1057. * XmlTextWriter.cs (WriteStartElementInternal):
  1058. fixed when default namespace was specified, all descendants
  1059. fail to omit the default namespace declarations.
  1060. * XmlAttribute.cs,
  1061. XmlDocument.cs,
  1062. XmlNode.cs (internal XmlLang/XmlSpace) : implemented(defined)
  1063. * XmlAttribute.cs,
  1064. XmlDocumentFragment.cs,
  1065. XmlElement.cs (set_InnerXml): now uses XmlLang/XmlSpace
  1066. * XmlElement.cs (set_IsEmpty) : implemented
  1067. (WriteTo) : removed my improper indenting (Writer already done)
  1068. * XmlNode.cs (BaseURI) : fixed if ParentNode is null, NullPointerEx
  1069. (ConstructDOM) : implemented when xmlReader isn't XmlTextReader
  1070. ...and renamed XmlDocument.ConventionalParser to ReusableReader ;-)
  1071. 2002-12-01 Atsushi Enomoto <[email protected]>
  1072. * XmlNode.cs (RemoveChild):
  1073. bugfixed when XmlNode is Document OwnerDocument is null
  1074. * XmlDeclaration.cs (Value):
  1075. bugfixed regular expression pattern.
  1076. * XmlDocument.cs (CreateNavigator): bugfixed access modifier.
  1077. 2002-11-24 Duncan Mak <[email protected]>
  1078. * XmlImplementation.cs (HasFeature): Fixed a typo. Thanks for
  1079. Fabricio Barros Cabral (fx) on #mono for spotting it. This is his
  1080. first patch to Mono! ;-)
  1081. 2002-11-19 Gonzalo Paniagua Javier <[email protected]>
  1082. * XmlNode.cs:
  1083. (AppendChild): readded refChild != null condition before throwing
  1084. "cannot insert this node in this position" exception. There's probably
  1085. a better solution. Fixes #34191.
  1086. (RemoveAll): changed following Atsushi instructions.
  1087. 2002-11-13 Duncan Mak <[email protected]>
  1088. * XmlElement.cs (IsEmpty): A temporary check-in to keep gtk-sharp
  1089. compiling.
  1090. 2002-11-14 Atsushi Enomoto <[email protected]>
  1091. * XmlDocument.cs : unified all constructors, added ConventionalParser,
  1092. implemented CloneNode() and CreateEntityReference(),
  1093. * XmlEntityReference.cs : set_Value, WriteContentTo, WriteTo
  1094. set BaseURI to MonoTODO
  1095. * XmlNode.cs : implemented PrependChild, modified ConstructDOM,
  1096. bugfix InsertAfter (incorrect prepending) and InsertBefore
  1097. (more than one DocumentElements hadn't caused errors)
  1098. * XmlTextReader.cs : unified all constructors,
  1099. added internal SetReaderContext(), SetReaderFragment()
  1100. bugfix (syntax check of PUBLIC / getting internal subset)
  1101. 2002-11-13 Atsushi Enomoto <[email protected]>
  1102. XmlAttribute.cs : set_InnerText, set_InnerXml, some check for set_Prefix
  1103. XmlAttributeCollection.cs : (indexer) this[localName, namespaceURI]
  1104. XmlCharacterData.cs : exchanged Data and Value
  1105. (for processing events and inheritance)
  1106. XmlDocumentFragment.cs : set_InnerXml
  1107. XmlSignificantWhitespace.cs : set_Value
  1108. XmlTextReader.cs : ReadAttributeValue
  1109. 2002-11-04 Atsushi Enomoto <[email protected]>
  1110. XmlAttribute.cs: fixed missing internal 'OwnerElement''SetOwnerElement'
  1111. 2002-11-03 Atsushi Enomoto <[email protected]>
  1112. * XmlAttributeCollection.cs : checks owner element.
  1113. implemented CopyTo, InsertAfter, InsertBefore, Prepend,
  1114. Remove, RemoveAt, SetNamedItem.
  1115. removed some logics that sets 'Parent' (that should be null)
  1116. * XmlDocument.cs : set_InnerXml, [PreserveWhitespace(incomplete)]
  1117. * XmlDocumentFragment.cs : get_InnerXml, WriteContentTo, WriteTo
  1118. * XmlElement.cs : implemented WriteTo, set_InnerText.
  1119. Fixed WriteTo() to add xmlns:* attributes when
  1120. writer.LookupPrefix() returned mismatching.
  1121. * XmlNamedNodeMap.cs : compare not only name but localname and nsuri.
  1122. Removing different prefixes for the same uri now runs correct.
  1123. added SetNamedItem(XmlNode node, int position_to_insert).
  1124. * XmlNode.cs : ConstructDOM (logically) creates XmlEntityReference,
  1125. XmlWhitespace, and XmlSignificantWhitespace
  1126. 2002-10-31 Atsushi Enomoto <[email protected]>
  1127. * XmlDocument.cs : implemented CreateDocumentFragment()
  1128. * XmlElement.cs, XmlLinkedNode.cs :
  1129. moved LastLinkedChild from XmlElement to XmlLinkedNode.
  1130. * XmlEntityReference.cs : must throw NotImplementedException.
  1131. * XmlNode.cs :
  1132. + implemented InsertBefore() and then implemented InsertAfter()
  1133. and modified AppendChild() to call it.
  1134. + added logic to check ReadOnly, parent document equivalence,
  1135. and inserting any 'content' before/after DocumentElement.
  1136. + implemented Clone() [it is equals to CloneNode() by MS doc.]
  1137. + added logic in RemoveChild() to check parent of oldChild.
  1138. + fixed ConstructNamespaceManager() to internal only.
  1139. 2002-10-29 Atsushi Enomoto <[email protected]>
  1140. * XmlAttribute.cs : add internal 'IsDefault' property
  1141. (equals to !Specified)
  1142. * XmlImplementation.cs : added 'internalNameTable' property.
  1143. * XmlDocument.cs :
  1144. + now allows "" for 'standalone' in CreateXmlDeclaration.
  1145. + implemented 'Implementation' property and constructor with it.
  1146. + added logic for appending name table (but still no use)
  1147. + implemented property 'DocumentType'
  1148. (but without internalSubset parsing. wait for next update.)
  1149. * XmlNode.cs :
  1150. + modified AppendChild() and RemoveChild() to support fragment.
  1151. + modified AppendChild() to remove newChild from its parent
  1152. when newChild is already in the other place.
  1153. + modified RemoveChild() to set parentNode null.
  1154. + modified ConstructDOM() to create DocumentType,
  1155. and fixed access modifier ('internal protected' to 'internal')
  1156. * XmlLinkedNode.cs : fixed 'NextSibling' to return null
  1157. when its parent is null.
  1158. * XmlDocumentFragment.cs : added internal override 'LastLinkedChild'
  1159. property to enable AppendChild() for this class.
  1160. * XmlTextReader.cs : appended private publicId and systemId fields.
  1161. 2002-10-28 Gonzalo Paniagua Javier <[email protected]>
  1162. * XmlTextReader.cs: make it work when the underlying Stream is not
  1163. 'seekable'.
  1164. 2002-10-26 Piers Haken <[email protected]>
  1165. * XmlNode.cs: add virtual property XPathNodeType
  1166. * XmlAttribute.cs:
  1167. * XmlComment.cs:
  1168. * XmlDocument.cs:
  1169. * XmlElement.cs::
  1170. * XmlProcessingInstruction.cs:
  1171. * XmlSignificantWhitespace.cs:
  1172. * XmlText.cs:
  1173. * XmlWhitespace.cs: implement XPathNodeType property
  1174. * XmlDocumentNavigator.cs: use XPathNodeType property instead of switch
  1175. 2002-10-26 Piers Haken <[email protected]>
  1176. * XmlDocumentNavigator.cs: return invalid XPathNodeType (-1) for unknown node types.
  1177. 2002-10-23 Gonzalo Paniagua Javier <[email protected]>
  1178. * XmlTextReader.cs: don't increment depth for entity references.
  1179. 2002-10-22 Tim Haynes <[email protected]>
  1180. * - Fixed the duplication of xmlns:xx = yy when serializing the
  1181. XML for serialization
  1182. Fixed the unnecessary parsing/serializing when adding assemblies
  1183. for serialization
  1184. Avoided setting the XmlNode.InnerXml property
  1185. (as it's not implemented)
  1186. Fixed the usage/implementation of
  1187. XmlElement.GetElementsByTagName()
  1188. 2002-10-21 Duncan Mak <[email protected]>
  1189. * XmlDocument.cs:
  1190. * XmlElement.cs:
  1191. * XmlNode.cs:
  1192. * XmlTextReader.cs: Implementation for XmlNode.InnerXml from
  1193. Atsushi Enomoto <[email protected]>.
  1194. 2002-10-18 Duncan Mak <[email protected]>
  1195. * XmlDocument.cs: Applied a patch by Atsushi Enomoto
  1196. <[email protected]>.
  1197. 2002-10-12 A.Enomoto <[email protected]>
  1198. * XmlDocument.cs (ImportNode): Implemented
  1199. 2002-10-06 Gonzalo Paniagua Javier <[email protected]>
  1200. * XmlDocument.cs: one more Load method implemented.
  1201. * XmlTextReader.cs: Depth now works.
  1202. 2002-09-22 Gonzalo Paniagua Javier <[email protected]>
  1203. * XmlConvert.cs: IsInvalid is now internal.
  1204. * XmlNamespaceManager.cs: implemented RemoveNamespace
  1205. * XmlTextReader.cs: return BaseURI and Encoding from the parser.
  1206. * XmlTextWriter.cs: implemented WriteName and WriteNmToken.
  1207. 2002-09-19 Matt Hunter <[email protected]>
  1208. * XmlElement.cs: Implementing SetAttributeNode(localName,namespaceURI)
  1209. * XmlAttributeCollection.cs: Implemented Append (XmlAttribute)
  1210. 2002-09-19 Gonzalo Paniagua Javier <[email protected]>
  1211. * XmlConvert.cs: finished implementation.
  1212. * XmlTextReader.cs: fixed #30239.
  1213. * XmlTextWriter.cs: fixed #30240.
  1214. 2002-09-15 Gonzalo Paniagua Javier <[email protected]>
  1215. * XmlTextReader.cs: line and position begin with 1.
  1216. 2002-09-13 Gonzalo Paniagua Javier <[email protected]>
  1217. * XmlException.cs: added a new internal constructor for IXmlLineInfo
  1218. and output line and position info in Message.
  1219. * XmlReader.cs: implemented missing bits.
  1220. 2002-09-12 Piers Haken <[email protected]>
  1221. * XmlDocumentNavigator.cs: implement MoveToId()
  1222. 2002-09-05 Gonzalo Paniagua Javier <[email protected]>
  1223. * XmlTextWriter.cs: fixed bug #29886.
  1224. 2002-08-26 Ravi Pratap <[email protected]>
  1225. * XmlAttribute.cs (InnerText): Implement getting this property.
  1226. * XmlNode.cs (InnerText): Ensure that we append only values of
  1227. text nodes.
  1228. 2002-08-26 Gonzalo Paniagua Javier <[email protected]>
  1229. * XmlWriter.cs: made ws and namespaceManager protected. mcs has a bug
  1230. that allowed compiling this.
  1231. [ FIXME: filed bug #29435. mcs should have failed on this ]
  1232. 2002-08-25 Tim Coleman <[email protected]>
  1233. * XmlNode.cs:
  1234. Change CreateNavigator to not be virtual.
  1235. * XmlElement.cs:
  1236. Add set_Prefix and InnerText accessors.
  1237. * XmlEntityReference.cs:
  1238. Add set_Value accessor.
  1239. * XmlTextWriter.cs:
  1240. Make objects which should be private private.
  1241. * XmlWriter.cs:
  1242. Remove WriteStartElementInternal abstract definition.
  1243. * XmlValidatingReader.cs:
  1244. New stubs added.
  1245. 2002-08-22 Jason Diamond <[email protected]>
  1246. * XmlAttributeCollection.cs, XmlElement.cs: Implementation of RemoveAll
  1247. and RemoveAllAttributes courtesy of Matt Hunter <[email protected]>.
  1248. 2002-08-22 Jason Diamond <[email protected]>
  1249. * XmlElement.cs: Correction to previous GetElementsByTagName patch
  1250. courtesy of Matt Hunter <[email protected]>.
  1251. 2002-08-22 Jason Diamond <[email protected]>
  1252. * XmlDocument.cs, XmlElement.cs: Added implementation of namepsace
  1253. qualified GetElementsByTagName courtesy of Matt Hunter
  1254. <[email protected]>.
  1255. 2002-08-19 Jason Diamond <[email protected]>
  1256. * XmlDocument.cs, XmlElement.cs: Added implementation of
  1257. GetElementsByTagName courtesy of Matt Hunter <[email protected]>.
  1258. 2002-08-16 Jason Diamond <[email protected]>
  1259. * XmlElement.cs: Fixed writing out qualified elements courtesy of
  1260. Marcus Bürgel <[email protected]>.
  1261. 2002-08-13 Tim Coleman <[email protected]>
  1262. * XmlTextWriter.cs:
  1263. Partial implementation of WriteQualifiedName ().
  1264. 2002-08-07 Kral Ferch <[email protected]>
  1265. * XmlCharacterData.cs: Implemented AppendData(), DeleteData(),
  1266. InsertData(), and ReplaceData(). These methods fire the
  1267. NodeChanging and NodeChanged events.
  1268. * XmlDocument.cs: Fixed bugs in onNodeChanged() and onNodeChanging().
  1269. * XmlNode.cs: AppendChild() fires NodeInserting and NodeInserted events.
  1270. RemoveAll() and RemoveChild() fire NodeRemoving and NodeRemoved events.
  1271. 2002-08-03 Tim Coleman <[email protected]>
  1272. * XmlNamespaceManager.cs:
  1273. .Net allows the empty namespace to be redefined
  1274. at a later point, but the current implementation
  1275. did not. This fixes a hashtable conflict.
  1276. 2002-07-26 Tim Coleman <[email protected]>
  1277. * XmlTextWriter.cs:
  1278. When given a textwriter, check to see if it has a
  1279. null encoding. This was being done for other inputs
  1280. than a textwriter.
  1281. Wed Jul 24 13:16:19 CEST 2002 Paolo Molaro <[email protected]>
  1282. * XmlTextReader.cs: rough line/column support.
  1283. 2002-07-23 Duncan Mak <[email protected]>
  1284. * XmlConvert.cs: Implement the ToDateTime method. ToDateTime
  1285. (string, string []) is particularly strange.
  1286. * XmlException.cs: Remember to call the base serialization
  1287. constructor.
  1288. * XmlNodeReader.cs: Keep a new variable to store the Depth.
  1289. 2002-07-14 Jason Diamond <[email protected]>
  1290. * XmlAttribute.cs: Removed ownerElement field since we can reuse
  1291. parentNode field.
  1292. * XmlDocumentNavigator.cs: MoveToParent now moves to the OwnerElement
  1293. if the current node is an attribute.
  1294. * XmlElement.cs: SetAttributeNode now sets the new attribute's
  1295. owner element.
  1296. 2002-07-12 Jason Diamond <[email protected]>
  1297. * XmlDocument.cs: If null was passed in for prefix or namespaceURI when
  1298. creating an element, use String.Empty instead.
  1299. 2002-07-12 Piers Haken <[email protected]>
  1300. * XmlAttributeCollection.cs: implement some ItemOf indexers
  1301. * XmlNamedNodeMap.cs: add internal 'Nodes' accessor for the nodeList field
  1302. * XmlNode.cs: SelectNodes: return empty XmlNodeList, not null
  1303. 2002-07-06 Ajay kumar Dwivedi <[email protected]>
  1304. 2002-10-26 Piers Haken <[email protected]>
  1305. * XmlDocumentNavigator.cs: return invalid XPathNodeType (-1) for unknown node types.
  1306. 2002-10-23 Gonzalo Paniagua Javier <[email protected]>
  1307. * XmlTextReader.cs: don't increment depth for entity references.
  1308. 2002-10-22 Tim Haynes <[email protected]>
  1309. * - Fixed the duplication of xmlns:xx = yy when serializing the
  1310. XML for serialization
  1311. Fixed the unnecessary parsing/serializing when adding assemblies
  1312. for serialization
  1313. Avoided setting the XmlNode.InnerXml property
  1314. (as it's not implemented)
  1315. Fixed the usage/implementation of
  1316. XmlElement.GetElementsByTagName()
  1317. 2002-10-21 Duncan Mak <[email protected]>
  1318. * XmlDocument.cs:
  1319. * XmlElement.cs:
  1320. * XmlNode.cs:
  1321. * XmlTextReader.cs: Implementation for XmlNode.InnerXml from
  1322. Atsushi Enomoto <[email protected]>.
  1323. 2002-10-18 Duncan Mak <[email protected]>
  1324. * XmlDocument.cs: Applied a patch by Atsushi Enomoto
  1325. <[email protected]>.
  1326. 2002-10-12 A.Enomoto <[email protected]>
  1327. * XmlDocument.cs (ImportNode): Implemented
  1328. 2002-10-06 Gonzalo Paniagua Javier <[email protected]>
  1329. * XmlDocument.cs: one more Load method implemented.
  1330. * XmlTextReader.cs: Depth now works.
  1331. 2002-09-22 Gonzalo Paniagua Javier <[email protected]>
  1332. * XmlConvert.cs: IsInvalid is now internal.
  1333. * XmlNamespaceManager.cs: implemented RemoveNamespace
  1334. * XmlTextReader.cs: return BaseURI and Encoding from the parser.
  1335. * XmlTextWriter.cs: implemented WriteName and WriteNmToken.
  1336. 2002-09-19 Matt Hunter <[email protected]>
  1337. * XmlElement.cs: Implementing SetAttributeNode(localName,namespaceURI)
  1338. * XmlAttributeCollection.cs: Implemented Append (XmlAttribute)
  1339. 2002-09-19 Gonzalo Paniagua Javier <[email protected]>
  1340. * XmlConvert.cs: finished implementation.
  1341. * XmlTextReader.cs: fixed #30239.
  1342. * XmlTextWriter.cs: fixed #30240.
  1343. 2002-09-15 Gonzalo Paniagua Javier <[email protected]>
  1344. * XmlTextReader.cs: line and position begin with 1.
  1345. 2002-09-13 Gonzalo Paniagua Javier <[email protected]>
  1346. * XmlException.cs: added a new internal constructor for IXmlLineInfo
  1347. and output line and position info in Message.
  1348. * XmlReader.cs: implemented missing bits.
  1349. 2002-09-12 Piers Haken <[email protected]>
  1350. * XmlDocumentNavigator.cs: implement MoveToId()
  1351. 2002-09-05 Gonzalo Paniagua Javier <[email protected]>
  1352. * XmlTextWriter.cs: fixed bug #29886.
  1353. 2002-08-26 Ravi Pratap <[email protected]>
  1354. * XmlAttribute.cs (InnerText): Implement getting this property.
  1355. * XmlNode.cs (InnerText): Ensure that we append only values of
  1356. text nodes.
  1357. 2002-08-26 Gonzalo Paniagua Javier <[email protected]>
  1358. * XmlWriter.cs: made ws and namespaceManager protected. mcs has a bug
  1359. that allowed compiling this.
  1360. [ FIXME: filed bug #29435. mcs should have failed on this ]
  1361. 2002-08-25 Tim Coleman <[email protected]>
  1362. * XmlNode.cs:
  1363. Change CreateNavigator to not be virtual.
  1364. * XmlElement.cs:
  1365. Add set_Prefix and InnerText accessors.
  1366. * XmlEntityReference.cs:
  1367. Add set_Value accessor.
  1368. * XmlTextWriter.cs:
  1369. Make objects which should be private private.
  1370. * XmlWriter.cs:
  1371. Remove WriteStartElementInternal abstract definition.
  1372. * XmlValidatingReader.cs:
  1373. New stubs added.
  1374. 2002-08-22 Jason Diamond <[email protected]>
  1375. * XmlAttributeCollection.cs, XmlElement.cs: Implementation of RemoveAll
  1376. and RemoveAllAttributes courtesy of Matt Hunter <[email protected]>.
  1377. 2002-08-22 Jason Diamond <[email protected]>
  1378. * XmlElement.cs: Correction to previous GetElementsByTagName patch
  1379. courtesy of Matt Hunter <[email protected]>.
  1380. 2002-08-22 Jason Diamond <[email protected]>
  1381. * XmlDocument.cs, XmlElement.cs: Added implementation of namepsace
  1382. qualified GetElementsByTagName courtesy of Matt Hunter
  1383. <[email protected]>.
  1384. 2002-08-19 Jason Diamond <[email protected]>
  1385. * XmlDocument.cs, XmlElement.cs: Added implementation of
  1386. GetElementsByTagName courtesy of Matt Hunter <[email protected]>.
  1387. 2002-08-16 Jason Diamond <[email protected]>
  1388. * XmlElement.cs: Fixed writing out qualified elements courtesy of
  1389. Marcus Bürgel <[email protected]>.
  1390. 2002-08-13 Tim Coleman <[email protected]>
  1391. * XmlTextWriter.cs:
  1392. Partial implementation of WriteQualifiedName ().
  1393. 2002-08-07 Kral Ferch <[email protected]>
  1394. * XmlCharacterData.cs: Implemented AppendData(), DeleteData(),
  1395. InsertData(), and ReplaceData(). These methods fire the
  1396. NodeChanging and NodeChanged events.
  1397. * XmlDocument.cs: Fixed bugs in onNodeChanged() and onNodeChanging().
  1398. * XmlNode.cs: AppendChild() fires NodeInserting and NodeInserted events.
  1399. RemoveAll() and RemoveChild() fire NodeRemoving and NodeRemoved events.
  1400. 2002-08-03 Tim Coleman <[email protected]>
  1401. * XmlNamespaceManager.cs:
  1402. .Net allows the empty namespace to be redefined
  1403. at a later point, but the current implementation
  1404. did not. This fixes a hashtable conflict.
  1405. 2002-07-26 Tim Coleman <[email protected]>
  1406. * XmlTextWriter.cs:
  1407. When given a textwriter, check to see if it has a
  1408. null encoding. This was being done for other inputs
  1409. than a textwriter.
  1410. Wed Jul 24 13:16:19 CEST 2002 Paolo Molaro <[email protected]>
  1411. * XmlTextReader.cs: rough line/column support.
  1412. 2002-07-23 Duncan Mak <[email protected]>
  1413. * XmlConvert.cs: Implement the ToDateTime method. ToDateTime
  1414. (string, string []) is particularly strange.
  1415. * XmlException.cs: Remember to call the base serialization
  1416. constructor.
  1417. * XmlNodeReader.cs: Keep a new variable to store the Depth.
  1418. 2002-07-14 Jason Diamond <[email protected]>
  1419. * XmlAttribute.cs: Removed ownerElement field since we can reuse
  1420. parentNode field.
  1421. * XmlDocumentNavigator.cs: MoveToParent now moves to the OwnerElement
  1422. if the current node is an attribute.
  1423. * XmlElement.cs: SetAttributeNode now sets the new attribute's
  1424. owner element.
  1425. 2002-07-12 Jason Diamond <[email protected]>
  1426. * XmlDocument.cs: If null was passed in for prefix or namespaceURI when
  1427. creating an element, use String.Empty instead.
  1428. 2002-07-12 Piers Haken <[email protected]>
  1429. * XmlAttributeCollection.cs: implement some ItemOf indexers
  1430. * XmlNamedNodeMap.cs: add internal 'Nodes' accessor for the nodeList field
  1431. * XmlNode.cs: SelectNodes: return empty XmlNodeList, not null
  1432. 2002-07-06 Ajay kumar Dwivedi <[email protected]>
  1433. * XmlTextWriter: Fixed Indentation. IndentationOverridden should
  1434. not be set when inside a attribute.
  1435. 2002-07-06 Ajay kumar Dwivedi <[email protected]>
  1436. * XmlTextWriter: In WriteStartElement, if namespace is null and
  1437. prefix is null|empty do not write out xmlns=""
  1438. * XmlWriter: WriteStartElement calls the virtual method with null
  1439. argument instead of empty string.
  1440. 2002-07-05 Gonzalo Paniagua Javier <[email protected]>
  1441. * XmlTextReader.cs: implemented .ctor (Stream).
  1442. 2002-06-26 Duncan Mak <[email protected]>
  1443. * XmlNodeReader.cs: Implementation of most of the properties, and
  1444. some of the related methods.
  1445. 2002-06-23 Piers Haken <[email protected]>
  1446. * XmlDocumentNavigator.cs: implement Clone()
  1447. * XmlElement.cs: remove bogus unimplemented override of InnerText
  1448. * XmlNode.cs: implment SelectNodes/SelectSingleNode
  1449. * XmlNodeArrayList.cs: new support class for SelectNodes
  1450. 2002-06-21 Ajay kumar Dwivedi <[email protected]>
  1451. * XmlQualifiedName: Name and Namespaces are never null. If null is passed
  1452. to the constructor, set them to empty strings.
  1453. Fixed the Operators.
  1454. 2002-06-18 Ajay kumar Dwivedi <[email protected]>
  1455. * XmlTextReader.cs: HasLineInfo returns false instead of throwing an
  1456. Exception.
  1457. 2002-06-14 Duncan Mak <[email protected]>
  1458. * XmlConvert.cs: Added CLSCompliant attributes to methods.
  1459. 2002-06-12 Duncan Mak <[email protected]>
  1460. * XmlCharacterData.cs (Value): Throw an ArgumentException in the
  1461. set block if the node is read-only.
  1462. 2002-06-10 Ajay kumar Dwivedi <[email protected]>
  1463. * XmlConstruct.cs : New Internal class with Helper methods for
  1464. Checking XmlConstructs
  1465. * XmlConvert.cs: Implemented most of the methods
  1466. 2002-06-08 Duncan Mak <[email protected]>
  1467. * XmlDocument.cs (Load):
  1468. Added bits to Load (string) for BaseURI support.
  1469. * XmlAttribute.cs (BaseURI):
  1470. * XmlDocument.cs (BaseURI):
  1471. * XmlEntity.cs (BaseURI): Implemented.
  1472. 2002-05-27 Jason Diamond <[email protected]>
  1473. * XmlDocumentNavigator.cs: Added file to directory.
  1474. * XmlNode.cs (CreateNavigator): Implemented.
  1475. (InnerText): Implemented.
  1476. * XmlDocument.cs (NamespaceURI, Prefix): Return String.Empty instead of
  1477. throwing exception.
  1478. (Load(XmlReader)): Allow for namespace qualified attributes.
  1479. * XmlElement.cs: Implemented GetAttribute(string, string) and both
  1480. GetAttributeNode overloads.
  1481. (SetAttributeNode(XmlAttribute)): Implemented.
  1482. * XmlNamedNodeMap.cs: Fixed copy/paste bugs in GetNamedItem(string, string)
  1483. and RemoveNamedItem(string, string).
  1484. * XmlLinkedNode.cs (PreviousSibling): Implemented.
  1485. * XmlTextReader.cs: Added code to maintain the order of attributes as
  1486. they're parsed. XML doesn't require this but Microsoft's parser does it and
  1487. matching them makes testing easier so now we have it, too.
  1488. 2002-05-26 Miguel de Icaza <[email protected]>
  1489. * XmlDocument.cs: Implement the Save methods.
  1490. 2002-05-08 Mike Kestner <[email protected]>
  1491. * XmlNamedNodeMap.cs (SetNamedItem): Fixed a copy/paste bug.
  1492. 2002-04-28 Duncan Mak <[email protected]>
  1493. * XmlSignificantWhitespace.cs (Value):
  1494. * XmlWhitespace.cs (Value): Added MonoTODO to the 'set'
  1495. block. Added new private method, IsValidWhitespaceChar, for
  1496. checking.
  1497. 2002-04-16 Duncan Mak <[email protected]>
  1498. * XmlParserContext.cs (NameTable): Fixed a typo in the set block.
  1499. 2002-04-12 Duncan Mak <[email protected]>
  1500. * XmlAttribute.cs (Prefix): Added preliminary code for set block,
  1501. added comment on work that needs to be done here. A new MonoTODO item.
  1502. * XmlDocument.cs (ctor): Corrected constructor signature, changed
  1503. parameter from 'NameTable' to 'XmlNameTable'.
  1504. * XmlDocumentFragment.cs (InnerXml): Added missing set block.
  1505. * XmlCaseOrder.cs: Moved to System.Xml.XPath.
  1506. 2002-04-10 Duncan Mak <[email protected]>
  1507. * XmlNodeReader.cs: Initial stubs for the class.
  1508. 2002-04-08 Kral Ferch <[email protected]>
  1509. * XmlAttributes.cs: InnerXml getter, WriteContentTo, and WriteTo
  1510. implementations.
  1511. * XmlDeclaration.cs: WriteTo implementation.
  1512. * XmlDocument.cs: InnerXml getter implementation.
  1513. * XmlElement.cs: InnerXml getter implementation.
  1514. * XmlNode.cs: Removed MonoTODO attrib on OuterXml.
  1515. * XmlSignificantWhitespace.cs: WriteTo implementation.
  1516. * XmlText.cs: WriteContentTo and WriteTo implementation.
  1517. * XmlTextWriter.cs: WriteRaw implementation.
  1518. * XmlWhitespace.cs: WriteContentTo and WriteTo implementations.
  1519. 2002-04-05 Kral Ferch <[email protected]>
  1520. * XmlAttributes.cs: Added reminder MonoTODO to set NamespaceURI
  1521. if prefix in constructor is one of the default ones.
  1522. * XmlCharacterData.cs: Returns String.Empty for Value and Data
  1523. even when constructed with null.
  1524. * XmlDeclaration.cs: Value doesn't put encoding or standalone
  1525. in if they are empty.
  1526. * XmlDocument.cs: Implemented CreateNode methods and this caused
  1527. the changes in the other files in this checkin.
  1528. * XmlProcessingInstruction.cs: Returns String.Empty for Value and Data
  1529. even when constructed with null.
  1530. * XmlWhitespace.cs: Changed Value 'get' to return Data.
  1531. 2002-04-01 Kral Ferch <[email protected]>
  1532. * XmlTextWriter.cs: Impls for WriteEndDocument and WriteFullEndElement.
  1533. 2002-03-31 Kral Ferch <[email protected]>
  1534. * XmlTextWriter.cs: Impls for LookupPrefix, WriteBase64,
  1535. and WriteCharEntity.
  1536. * XmlWrite.cs: Fixed bug where attribute namespace decl
  1537. was pushing a scope onto the namespace manager when it shouldn't
  1538. have been.
  1539. 2002-03-31 Kral Ferch <[email protected]>
  1540. * XmlTextWriter.cs: Some tweaks for WriteAttibuteString
  1541. in different states (no open start element, in WriteState.Content mode).
  1542. 2002-03-29 Kral Ferch <[email protected]>
  1543. * XmlTextWriter.cs: XmlLang and XmlSpace properties
  1544. and WriteWhitespace.
  1545. * XmlTextWriterOpenElement.cs: scope support for XmlLang
  1546. and XmlSpace.
  1547. 2002-03-29 Kral Ferch <[email protected]>
  1548. * XmlTextWriter.cs: Working on Attribute methods.
  1549. * XmlWriter.cs: Working on Attribute methods.
  1550. 2002-03-28 Duncan Mak <[email protected]>
  1551. * XmlDocument.cs (CreateWhitespace):
  1552. (CreateSignificantWhitespace): Removed extraneous call to the ToCharArray
  1553. method.
  1554. * XmlSignificantWhitespace.cs (Value): Removed MonoTODO attribute.
  1555. 2002-03-26 Duncan Mak <[email protected]>
  1556. * XmlDocument.cs (CreateDocumentType): Implemented.
  1557. * XmlNode.cs (Value): Implemented.
  1558. * XmlProcessingInstruction.cs (InnerText): Implemented. It works just
  1559. like XmlCharacterData.
  1560. * XmlDeclaration.cs (CloneNode):
  1561. * XmlDocument.cs (CreateXmlDeclaration): Added missing constructor
  1562. arguments.
  1563. * XmlCharacterData.cs (InnerText): Implemented. Funny that the
  1564. docs say it is the "The concatenated values of the node and all
  1565. the children of the node.". I wrote some test programs and
  1566. couldn't get any of the derived nodes to AppendChild. For now,
  1567. InnerText == Data == Value.
  1568. (Substring): Fixed typo.
  1569. * XmlDeclaration.cs (XmlDeclaration): Fixed the constructor parameter signature.
  1570. * XmlImplementation.cs (CreateDocument): Implemented.
  1571. 2002-03-25 Duncan Mak <[email protected]>
  1572. * XmlDeclaration.cs: Rewrote the class, fixed formatting, added
  1573. missing properties (InnerText, Value).
  1574. * XmlDocument.cs (CreateXmlDeclaration): Implemented.
  1575. 2002-03-23 Kral Ferch <[email protected]>
  1576. * XmlTextWriter.cs: Impls for BaseStream and
  1577. Namespaces and WriteState.
  1578. * XmlWriter.cs: WriteState and WriteStartElementInternal.
  1579. 2002-03-23 Kral Ferch <[email protected]>
  1580. * XmlNodeListChildren.cs: made class internal
  1581. instead of public. Shouldn't be visible outside
  1582. of System.Xml.
  1583. * XmlTextWriter.cs: Implementations for Formatting,
  1584. IndentChar, Indenting, QuoteChar, WriteStartDocument(standalone).
  1585. Suppresses encoding on xml declaration if null stream passed in.
  1586. Formats output including suppressing indentation for elements in
  1587. mixed content mode.
  1588. * XmlTextWriterOpenElement.cs: Initial checkin.
  1589. XmlTextWriter uses stack of these objects to track
  1590. state.
  1591. 2002-03-22 Mike Kestner <[email protected]>
  1592. * XmlElement.cs: impl HasAttribute(string name).
  1593. 2002-03-22 Duncan Mak <[email protected]>
  1594. * XmlElement.cs: Reformatted.
  1595. (CloneNode) Corrected.
  1596. * XmlDocument.cs (CreateWhitespace):
  1597. (CreateSignificantWhitespace): Implemented.
  1598. * XmlAttribute.cs (CloneNode): Changed the child's CloneNode to
  1599. true, because Attributes have ChildNodes.
  1600. 2002-03-21 Kral Ferch <[email protected]>
  1601. * XmlTextWriter.cs: WriteStartDocument tracks state, writes out
  1602. xml declaration along with encoding. WriteEndElement throws
  1603. exception if no WriteStartElement exists.
  1604. 2002-03-20 Duncan Mak <[email protected]>
  1605. * XmlEntityReference.cs (CloneNode): Implemented.
  1606. * XmlException.cs (Message): Implemented. We need to cache the
  1607. message string because SystemException doesn't expose 'message'
  1608. from Exception.
  1609. * XmlText.cs (Value): Added in the missing Value property.
  1610. 2002-03-20 Duncan Mak <[email protected]>
  1611. * XmlAttribute.cs (CloneNode): Implemented.
  1612. * XmlDocumentFragment.cs (CloneNode): Implemented.
  1613. * XmlElement.cs (CloneNode): Implemented.
  1614. 2002-03-19 Duncan Mak <[email protected]>
  1615. * XmlNotation.cs: Added to CVS.
  1616. * XmlAttribute.cs (CloneNode): First crack at the CloneNode method.
  1617. * XmlCDataSection.cs (CloneNode): Implemented.
  1618. * XmlDocumentFragment.cs: Reformatted and added the missing properties
  1619. (InnerXml, OwnerDocument, ParentNode).
  1620. (CloneNode): Implemented.
  1621. * XmlSignificantWhitespace.cs (CloneNode): Implemented.
  1622. (Value) Implemented the 'get' property.
  1623. * XmlWhitespace.cs (Module): implemented.
  1624. 2002-03-19 Jason Diamond <[email protected]>
  1625. * XmlDocument.cs: Fixed typo in Load that was duplicating the LocalName
  1626. in the prefix.
  1627. 2002-03-18 Jason Diamond <[email protected]>
  1628. * XmlTextReader.cs: Don't restore properties after reading last
  1629. attribute on an element.
  1630. * XmlDocument.cs: Move back to element after reading attributes
  1631. so that IsEmptyElement test succeeds.
  1632. 2002-03-18 Kral Ferch <[email protected]>
  1633. * XmlNamespaceManager.cs: Implemented LookupPrefix.
  1634. * XmlTextWriter.cs: Implemented namespace and prefix support.
  1635. 2002-03-18 Kral Ferch <[email protected]>
  1636. * XmlTextReader.cs: Restores properties after
  1637. reading last attribute on an element.
  1638. * XmlNode.cs: AppendChild sets the parent
  1639. on the child.
  1640. 2002-03-17 Kral Ferch <[email protected]>
  1641. * XmlCDataSection.cs: Formatting, Implementation for WriteTo.
  1642. * XmlComment.cs: Implementations for WriteTo and WriteContentTo.
  1643. * XmlElement.cs: Fixed bug in WriteTo.
  1644. * XmlProcessingInstruction.cs: Formatting.
  1645. * XmlTextWriter.cs: Implementations for Close, WriteCData, WriteComment,
  1646. fixes for WriteEndElement, WriteProcessingInstruction.
  1647. 2002-03-17 Kral Ferch <[email protected]>
  1648. * XmlDocument.cs: Implementations for WriteTo() and WriteContentTo(),
  1649. had Load() add PIs to the document, moved onXXX methods to alphabetical
  1650. order in the file.
  1651. * XmlElement.cs: Implementations for WriteTo() and WriteContentTo().
  1652. * XmlNode.cs: Implementations for InnerXml Get and OuterXml.
  1653. * XmlProcessingInstruction.cs: Implementations for WriteTo() and
  1654. WriteContentTo().
  1655. * XmlTextWriter.cs: Implementations for WriteEndElement,
  1656. WriteProcessingInstruction, WriteStartElement, and WriteString.
  1657. * XmlWriter.cs: Implemented WriteStartElement() methods.
  1658. 2002-03-15 Duncan Mak <[email protected]>
  1659. * XmlEntity.cs: Added to CVS. Need to implement BaseURI and
  1660. InnerText once I know what they do.
  1661. * XmlDocumentType.cs (XmlDocumentType): Fix the constructor now
  1662. that we can properly chain constructors.
  1663. (CloneNode): implemented.
  1664. (WriteContentTo): Removed MonoTODO attribute as this method has no
  1665. effect in this class.
  1666. * XmlProcessingInstruction.cs (Value): Added the missing Set
  1667. block.
  1668. (InnerText): Added in, but not implemented.
  1669. 2002-03-14 Kral Ferch <[email protected]>
  1670. * XmlTextWriter.cs: implemented constructors and
  1671. WriteCData and WriteComment.
  1672. 2002-03-14 Duncan Mak <[email protected]>
  1673. * XmlDocument.cs: Moved the NodeChanged EventHandler to its own
  1674. file, and updated the callbacks to reflect the change.
  1675. (XmlDocument): Added the NameTable constructor.
  1676. (NameTable): Also the NameTable property.
  1677. * XmlNodeChangedEventHandler.cs: Added, replacing the version that
  1678. was in XmlDocument.cs. It has two arguments now (object,
  1679. EventArgs) , instead of one (object).
  1680. 2002-03-14 Kral Ferch <[email protected]>
  1681. * XmlWriter.cs: Formatting.
  1682. * XmlTextWriter.cs: Initial checkin.
  1683. 2002-03-14 Duncan Mak <[email protected]>
  1684. * Validation.cs: Removed, replaced by ValidationType.cs.
  1685. * ValidationType.cs: Added.
  1686. 2002-03-13 Duncan Mak <[email protected]>
  1687. * XmlException.cs: Made it [Serializable], implemented good ol'
  1688. GetObjectData, and the serialization constructor.
  1689. * XmlNamedNodeMap.cs (SetNamedItem): Check for the Name property.
  1690. (SetNamedItem): Reverted (added back in) the patch with the
  1691. ReadOnly checks. "Don't doubt yourself, my son... you were right!"
  1692. * XmlNamedNodeMap.cs (GetEnumerator): piggyback on the ArrayList implementation.
  1693. (GetNamedItem (string, string)): implemented.
  1694. (RemoveNamedItem): implemented.
  1695. (SetNamedItem): implemented.
  1696. 2002-03-12 Kral Ferch <[email protected]>
  1697. * XmlAttribute.cs: Moved a method from amongst properties down to
  1698. it's alphabetical position in the methods section.
  1699. * XmlNode.cs: Passes in 'this' to XmlNodeList constructor instead of
  1700. last linked child. Set XmlNode base class to return false for IsReadOnly().
  1701. Implemented GetEnumerator() and RemoveChild().
  1702. * XmlNodeListChildren.cs: Now stores the parent instead of the last child.
  1703. This is to support the behavior that the Enumerator doesn't become invalid
  1704. when changes to the children occur. Flushed out rest of implementation for
  1705. MoveNext, Current, and Reset.
  1706. 2002-03-12 Duncan Mak <[email protected]>
  1707. * XmlCharacterData.cs: Reformatted the properties for better readability.
  1708. * XmlLinkedNode.cs: Removed the awful boxy comments.
  1709. * XmlNamedNodeMap.cs (Count):
  1710. (Item): Implemented. Tests will be coming.
  1711. * XmlEntityReference.cs:
  1712. * XmlSignificantWhitespace.cs: Implemented these classes except for
  1713. the Clone, WriteContentTo and WriteTo methods. Will have to
  1714. investigate into these later.
  1715. 2002-03-11 Duncan Mak <[email protected]>
  1716. * IHasXmlNode.cs: Added to CVS.
  1717. 2002-03-08 Jason Diamond <[email protected]>
  1718. * XmlParserContext.cs: Added missing constructors and missing Encoding
  1719. property.
  1720. * XmlTextReader.cs: Start using the XmlParserContext class.
  1721. 2002-03-08 Jason Diamond <[email protected]>
  1722. * XmlTextReader.cs: Implemented MoveToElement and MoveToFirstAttribute.
  1723. 2002-03-08 Mike Kestner <[email protected]>
  1724. * XmlNode.cs (Item): Implemented both indexers.
  1725. 2002-03-08 Jason Diamond <[email protected]>
  1726. * DomEncodingType.cs, TreePosition.cs, XPathNodeType.cs, XmlDataType.cs,
  1727. XmlExceptionCode.cs, XmlSortOrder.cs, XmlUtil.cs: Removed files.
  1728. 2002-03-08 Jason Diamond <[email protected]>
  1729. * XmlAttribute.cs: Attribute nodes are supposed to store their values
  1730. as child nodes so updated to reflect that.
  1731. * XmlDocument.cs, XmlElement.cs, XmlNode.cs: Moved code that was
  1732. duplicated in XmlDocument and XmlElement into XmlNode so that it
  1733. wouldn't have to be duplicated in XmlAttribute, too.
  1734. 2002-03-08 Kral Ferch <[email protected]>
  1735. * XmlNodeList.cs, XmlDocument.cs, XmlLinkedNode.cs,
  1736. XmlNode.cs: Formatting.
  1737. * XmlNodeListChildren.cs: Implementation of XmlNodeList
  1738. for XmlNode.ChildNodes property.
  1739. * XmlNodeListAsArrayList.cs: Removed file. Using different
  1740. data structure (circular list) in XmlNode so this file
  1741. is no longer valid.
  1742. * XmlDocument.cs, XmlElement.cs: New ChildNodes tests found
  1743. bug in setter property of LastLinkedChild so fixed it.
  1744. 2002-03-06 Jason Diamond <[email protected]>
  1745. * XmlInputSource.cs, XmlNames_1_0.cs, XmlParse.cs: Removed files.
  1746. We already have a parser in XmlTextReader.
  1747. * XmlException.cs: Removed constructor accepting XmlInputSource.
  1748. 2002-03-06 Kral Ferch <[email protected]>
  1749. * XmlNode.cs: Rewrote this class from scratch with
  1750. MonoToDo attribs and NotImplementedExceptions. Now defines an
  1751. internal LastLinkedNode property to aid the new implementation.
  1752. XmlNodes only have ref to owner doc and parent nodes now.
  1753. * XmlLinkedNode.cs: Added NextLinkedSibling internal property
  1754. and ref to next sibling to support walking our circular child
  1755. node list.
  1756. * XmlDocument.cs: Added ref to last child node and overrides
  1757. XmlNode's internal LastLinkedChild property to support walking
  1758. our circular child node list.
  1759. 2002-03-02 Kral Ferch <[email protected]>
  1760. * XmlProcessingInstructions.cs: Class was empty. Implemented
  1761. constructor, properties, and CloneNode() method. Put in
  1762. MonoToDo attrib for remaining methods.
  1763. * XmlComment.cs: Reformatted and put in MonoToDo attribs.
  1764. Got rid of helper methods and fields since they were no
  1765. longer needed.
  1766. * XmlLinkedNode.cs: Reformatted and put in MonoToDo attribs.
  1767. * XmlDocument.cs: Added code to Load(XmlReader) to create XmlComment,
  1768. XmlCDataSection, and XmlProcessingInstruction nodes. Implemented
  1769. Createxxx() methods for those three node types.
  1770. 2002-03-02 Jason Diamond <[email protected]>
  1771. * XmlDocument.cs: Implemented the remaining CreateElement and
  1772. CreateAttribute methods.
  1773. * XmlAttribute.cs: Re-implemented.
  1774. * XmlElement.cs: Set owner element on attributes. Reformatted.
  1775. 2002-03-02 Jason Diamond <[email protected]>
  1776. * XmlTextReader.cs: Implemented MoveToNextAttribute().
  1777. * XmlDocument.cs: Reformatted. Adding missing methods and MonoTODO
  1778. attributes. Create attribute nodes while loading. Implemented
  1779. Load(string) and CreateTextNode().
  1780. * XmlCharacterData.cs, XmlText.cs: Re-implemented.
  1781. * XmlCDataSection.cs, XmlComment.cs: Call correct constructor in
  1782. XmlCharacterData.
  1783. * XmlNamedNodeMap.cs, XmlAttributeCollection.cs: Stubbed out.
  1784. 2002-03-02 Mike Kestner <[email protected]>
  1785. * XmlAttribute.cs : Using fix.
  1786. * XmlDocument.cs (CreateAttribute(String)): Implement.
  1787. 2002-03-02 Jason Diamond <[email protected]>
  1788. * XmlNamespaceManager.cs: Atomize prefixes and namespaces strings in
  1789. the name table.
  1790. 2002-02-28 Jason Diamond <[email protected]>
  1791. * XmlDocument.cs, XmlNode.cs: Initial implementation of LoadXml
  1792. courtesy of Kral Ferch <[email protected]>.
  1793. 2002-02-28 Jason Diamond <[email protected]>
  1794. * XmlException.cs, XmlReader.cs, XmlTextReader.cs: Reformatted,
  1795. added missing members and MonoTODO attributes.
  1796. * XmlTextReader.cs: Throw XmlException instead of System.Exception.
  1797. 2002-02-27 Jason Diamond <[email protected]>
  1798. * XmlElement.cs: Reformatted, added missing members and MonoTODO
  1799. attributes.
  1800. 2002-02-26 Duncan Mak <[email protected]>
  1801. * XmlCDataSection.cs: Initial implementation.
  1802. * NameTable.cs: Fixed the whole thing. Wrote a NUnit test to test
  1803. it out. This should (hopefully) be correct.
  1804. 2002-02-26 Jason Diamond <[email protected]>
  1805. * XmlTextReader.cs: Apparently Microsoft's implementation treats
  1806. namespace declarations as attributes so we do now, too.
  1807. * XmlNamespaceManager.cs: HasNamespace fixed so that it only
  1808. checks the current scope.
  1809. 2002-02-26 Duncan Mak <[email protected]>
  1810. * XmlDocumentType.cs: Added a few hacks here and there to
  1811. temporarily fix the "I broke the build issue".
  1812. 2002-02-25 Jason Diamond <[email protected]>
  1813. * XmlDocument.cs, XmlElement.cs, XmlNode.xs, XmlNodeList.cs,
  1814. XmlNodeListAsArrayList.cs: Multiple fixes necessary to get
  1815. simple test to pass. The existing code is really shitty so I'll
  1816. probably start writing tests and refactoring before much else
  1817. can get done.
  1818. 2002-02-25 Duncan Mak <[email protected]>
  1819. * NameTable.cs: Implemented.
  1820. * XmlDeclaration.cs: It should inherit from XmlLinkedNode, not XmlNode.
  1821. 2002-02-24 Duncan Mak <[email protected]>
  1822. * XmlNodeOrder.cs: Added to CVS.
  1823. * XmlQualifiedName.cs: Fixed a warning from Equals ().
  1824. * XmlTokenizedType.cs: Added to CVS.
  1825. * XmlUrlResolver.cs: Added to CVS with one TODO task.
  1826. 2002-02-23 Duncan Mak <[email protected]>
  1827. * XmlQualifiedName.cs: Fixed ToString () and added the operators
  1828. (== and !=).
  1829. 2002-02-23 Jason Diamond <[email protected]>
  1830. * XmlTextReader.cs: Added support for qualified attributes.
  1831. 2002-02-23 Jason Diamond <[email protected]>
  1832. * XmlNamespaceManager.cs: Initial implementation.
  1833. * XmlTextReader.cs: Added support for NamespaceURI property on
  1834. elements.
  1835. 2002-02-23 Nick Drochak <[email protected]>
  1836. * ChangeLog: Add the change log to this directory
  1837. * XmlQualifiedName.cs: Fixed compile errors so it would build. Still has
  1838. MonoTODO's