| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351 |
- 2003-02-28 Alan Tam <[email protected]>
- * XmlConvert.cs: fixed the most ToXXX(string) and ToString(XXX)
- methods to make them compatible with the XML Schema Spec from W3C
- ToString(TimeSpan) is still outstanding
- 2003-02-18 Gonzalo Paniagua Javier <[email protected]>
- * XmlDocument.cs:
- (Load (string)): hack to workaround some issues with Uri.Parse. Once
- Parse is fixed, remove the hack.
- 2003-02-16 Atsushi Enomoto <[email protected]>
- * XmlQualifiedName.cs : fixed GetHashCode() to avoid null reference
- * XmlTextReader.cs : fixed ReadAttributeValue() to handle
- entity reference, and some refactory.
- 2003-02-16 Atsushi Enomoto <[email protected]>
- * XmlUrlResolver.cs : WebClient.Credentials was not implemented yet.
- 2003-02-16 Atsushi Enomoto <[email protected]>
- * XmlInputStream.cs : added (also contains internal XmlStreamReader).
- * XmlDocument.cs : Load () now can specify URL using XmlUrlResolver,
- and can read non-UTF-8 stream.
- * XmlTextReader.cs : related to above stream fix.
- * XmlUrlResolver.cs : implemented GetEntity ().
- 2003-02-03 Gonzalo Paniagua Javier <[email protected]>
- * XmlTextWriter.cs: implemented WriteRaw (char[], int, int).
- 2003-02-02 Atsushi Enomoto <[email protected]>
- * XmlTextReader.cs : implemented QuoteChar.
- 2003-01-26 Atsushi Enomoto <[email protected]>
- * XmlNode.cs : implemented ReplaceChild.
- removed DocElem checking at InsertBefore.
- * XmlNodeReader.cs : fixed ReadString and Read for correct node info.
- * XmlText.cs : implemented CloneNode and SplitText.
- 2003-01-24 Gonzalo Paniagua Javier <[email protected]>
- * XmlCharacterData.cs: added XPathNodeType property.
- 2003-01-22 Gonzalo Paniagua Javier <[email protected]>
- * XmlTextWriter.cs: throw an exception if WriteEndDocument is
- called without a prior call to WriteStartDocument.
- 2003-01-21 Atsushi Enomoto <[email protected]>
- * XmlNodeReader.cs : several fix to get more compatible with MS.NET.
- 2003-01-19 Atsushi Enomoto <[email protected]>
- * XmlNamespaceManager.cs : fundamental change of LookupPrefix to return
- null when no matching uri.
- * XmlElement.cs : removed unnecessary xmlns output.
- * XmlNode.cs : GetPrefixOfNamespace fix along with the change above.
- * XmlTextWriter.cs : LookupPrefix and WriteStartElementInternal fix
- along with the change above, and moved timing of 'xmlns' output
- to CloseStartElement.
- * XmlWriter.cs: modified WriteStartAttribute, same as yesterday.
- 2003-01-18 Atsushi Enomoto <[email protected]>
- * XmlWriter.cs: modified WriteStartElement (see test for detail).
- Added WriteNode.
- 2003-01-13 Ville Palo <[email protected]>
- * XmlDocument.cs: Added CheckName () method to check names validity.
-
- 2003-01-11 Gonzalo Paniagua Javier <[email protected]>
- * XmlTextReader.cs:
- (ReadOuterXml): use Depth property which return elementDepth, not depth.
- 2003-01-11 Atsushi Enomoto <[email protected]>
- * XmlElement.cs : (by ville) XmlElement.set_InnerText event bugfix.
- * XmlTextReader.cs : some fix for ReadOuterXml().
- 2003-01-08 Atsushi Enomoto <[email protected]>
- * XmlTextReader.cs : bugfix for attributes related to creation of
- XmlAttribute *node*.
- 2003-01-08 Atsushi Enomoto <[email protected]>
- * XmlTextReader.cs : bugfix for attribute values which have entity
- references.
- 2002-12-28 Ville Palo <[email protected]>
- * XmlDocument.cs: XmlTextWriter.Formatting == Indented when
- calling Save () -methods.
-
- 2002-12-28 Atsushi Enomoto <[email protected]>
- * XmlNodeReader.cs : primitive reading implementation.
- 2002-12-28 Atsushi Enomoto <[email protected]>
- * XmlElement.cs : quick fix for the incomplete patch of #35308 below.
- 2002-12-28 Atsushi Enomoto <[email protected]>
- * XmlDocument.cs : removed inconsistent line-feed output.
- * XmlElement.cs, XmlTextWriter.cs :
- fixed for bugzilla 35308 (default ns output)
- * XmlWhitespace.cs : limited output only when preserving whitespace.
- 2002-12-24 Atsushi Enomoto <[email protected]>
- * XmlAttribute.cs, XmlDocument.cs, XmlTextReader.cs:
- Implemented XmlTextReader.ReadAttributeValue().
- Added internal ReadAttributeNodeValue().
- Fixed XmlAttribute.InnerXml to use these methods.
-
- * XmlDocument.cs, XmlDocumentFragment.cs, XmlElement.cs, XmlNode.cs:
- Implemented XmlDocument.ReadNode() and removed ConstructDOM().
- Other changes are replacing them.
- 2002-12-24 Atsushi Enomoto <[email protected]>
- * XmlDocument.cs: patch by Ville (fixed default PreserveWhitespace)
- 2002-12-21 Atsushi Enomoto <[email protected]>
- * XmlElement.cs, XmlTextWriter.cs, XmlWriter.cs:
- patch by JD Conley <[email protected]>.
- (Fix for xmlns attribute output.)
- 2002-12-05 Ville Palo <[email protected]>
- * XmlQualifiedName.cs: Little fix to ToString () -method
- 2002-12-04 Tim Haynes <[email protected]>
- * class/System.XML/System.Xml/XmlElement.cs: Made more refined
- checks on attributeNode to fix 32262.
- 2002-12-03 Atsushi Enomoto <[email protected]>
- * XmlDocument.cs (CreateNavigator(XmlNode)) : reverted
- * XmlTextWriter.cs (WriteStartElementInternal):
- fixed when default namespace was specified, all descendants
- fail to omit the default namespace declarations.
- * XmlAttribute.cs,
- XmlDocument.cs,
- XmlNode.cs (internal XmlLang/XmlSpace) : implemented(defined)
- * XmlAttribute.cs,
- XmlDocumentFragment.cs,
- XmlElement.cs (set_InnerXml): now uses XmlLang/XmlSpace
- * XmlElement.cs (set_IsEmpty) : implemented
- (WriteTo) : removed my improper indenting (Writer already done)
- * XmlNode.cs (BaseURI) : fixed if ParentNode is null, NullPointerEx
- (ConstructDOM) : implemented when xmlReader isn't XmlTextReader
- ...and renamed XmlDocument.ConventionalParser to ReusableReader ;-)
- 2002-12-01 Atsushi Enomoto <[email protected]>
- * XmlNode.cs (RemoveChild):
- bugfixed when XmlNode is Document OwnerDocument is null
- * XmlDeclaration.cs (Value):
- bugfixed regular expression pattern.
- * XmlDocument.cs (CreateNavigator): bugfixed access modifier.
- 2002-11-24 Duncan Mak <[email protected]>
- * XmlImplementation.cs (HasFeature): Fixed a typo. Thanks for
- Fabricio Barros Cabral (fx) on #mono for spotting it. This is his
- first patch to Mono! ;-)
- 2002-11-19 Gonzalo Paniagua Javier <[email protected]>
- * XmlNode.cs:
- (AppendChild): readded refChild != null condition before throwing
- "cannot insert this node in this position" exception. There's probably
- a better solution. Fixes #34191.
- (RemoveAll): changed following Atsushi instructions.
-
- 2002-11-13 Duncan Mak <[email protected]>
- * XmlElement.cs (IsEmpty): A temporary check-in to keep gtk-sharp
- compiling.
- 2002-11-14 Atsushi Enomoto <[email protected]>
- * XmlDocument.cs : unified all constructors, added ConventionalParser,
- implemented CloneNode() and CreateEntityReference(),
- * XmlEntityReference.cs : set_Value, WriteContentTo, WriteTo
- set BaseURI to MonoTODO
- * XmlNode.cs : implemented PrependChild, modified ConstructDOM,
- bugfix InsertAfter (incorrect prepending) and InsertBefore
- (more than one DocumentElements hadn't caused errors)
- * XmlTextReader.cs : unified all constructors,
- added internal SetReaderContext(), SetReaderFragment()
- bugfix (syntax check of PUBLIC / getting internal subset)
- 2002-11-13 Atsushi Enomoto <[email protected]>
- XmlAttribute.cs : set_InnerText, set_InnerXml, some check for set_Prefix
- XmlAttributeCollection.cs : (indexer) this[localName, namespaceURI]
- XmlCharacterData.cs : exchanged Data and Value
- (for processing events and inheritance)
- XmlDocumentFragment.cs : set_InnerXml
- XmlSignificantWhitespace.cs : set_Value
- XmlTextReader.cs : ReadAttributeValue
- 2002-11-04 Atsushi Enomoto <[email protected]>
- XmlAttribute.cs: fixed missing internal 'OwnerElement''SetOwnerElement'
- 2002-11-03 Atsushi Enomoto <[email protected]>
- * XmlAttributeCollection.cs : checks owner element.
- implemented CopyTo, InsertAfter, InsertBefore, Prepend,
- Remove, RemoveAt, SetNamedItem.
- removed some logics that sets 'Parent' (that should be null)
- * XmlDocument.cs : set_InnerXml, [PreserveWhitespace(incomplete)]
- * XmlDocumentFragment.cs : get_InnerXml, WriteContentTo, WriteTo
- * XmlElement.cs : implemented WriteTo, set_InnerText.
- Fixed WriteTo() to add xmlns:* attributes when
- writer.LookupPrefix() returned mismatching.
- * XmlNamedNodeMap.cs : compare not only name but localname and nsuri.
- Removing different prefixes for the same uri now runs correct.
- added SetNamedItem(XmlNode node, int position_to_insert).
- * XmlNode.cs : ConstructDOM (logically) creates XmlEntityReference,
- XmlWhitespace, and XmlSignificantWhitespace
- 2002-10-31 Atsushi Enomoto <[email protected]>
- * XmlDocument.cs : implemented CreateDocumentFragment()
- * XmlElement.cs, XmlLinkedNode.cs :
- moved LastLinkedChild from XmlElement to XmlLinkedNode.
- * XmlEntityReference.cs : must throw NotImplementedException.
- * XmlNode.cs :
- + implemented InsertBefore() and then implemented InsertAfter()
- and modified AppendChild() to call it.
- + added logic to check ReadOnly, parent document equivalence,
- and inserting any 'content' before/after DocumentElement.
- + implemented Clone() [it is equals to CloneNode() by MS doc.]
- + added logic in RemoveChild() to check parent of oldChild.
- + fixed ConstructNamespaceManager() to internal only.
- 2002-10-29 Atsushi Enomoto <[email protected]>
- * XmlAttribute.cs : add internal 'IsDefault' property
- (equals to !Specified)
- * XmlImplementation.cs : added 'internalNameTable' property.
- * XmlDocument.cs :
- + now allows "" for 'standalone' in CreateXmlDeclaration.
- + implemented 'Implementation' property and constructor with it.
- + added logic for appending name table (but still no use)
- + implemented property 'DocumentType'
- (but without internalSubset parsing. wait for next update.)
- * XmlNode.cs :
- + modified AppendChild() and RemoveChild() to support fragment.
- + modified AppendChild() to remove newChild from its parent
- when newChild is already in the other place.
- + modified RemoveChild() to set parentNode null.
- + modified ConstructDOM() to create DocumentType,
- and fixed access modifier ('internal protected' to 'internal')
- * XmlLinkedNode.cs : fixed 'NextSibling' to return null
- when its parent is null.
- * XmlDocumentFragment.cs : added internal override 'LastLinkedChild'
- property to enable AppendChild() for this class.
- * XmlTextReader.cs : appended private publicId and systemId fields.
- 2002-10-28 Gonzalo Paniagua Javier <[email protected]>
- * XmlTextReader.cs: make it work when the underlying Stream is not
- 'seekable'.
- 2002-10-26 Piers Haken <[email protected]>
- * XmlNode.cs: add virtual property XPathNodeType
- * XmlAttribute.cs:
- * XmlComment.cs:
- * XmlDocument.cs:
- * XmlElement.cs::
- * XmlProcessingInstruction.cs:
- * XmlSignificantWhitespace.cs:
- * XmlText.cs:
- * XmlWhitespace.cs: implement XPathNodeType property
- * XmlDocumentNavigator.cs: use XPathNodeType property instead of switch
- 2002-10-26 Piers Haken <[email protected]>
- * XmlDocumentNavigator.cs: return invalid XPathNodeType (-1) for unknown node types.
- 2002-10-23 Gonzalo Paniagua Javier <[email protected]>
- * XmlTextReader.cs: don't increment depth for entity references.
- 2002-10-22 Tim Haynes <[email protected]>
- * - Fixed the duplication of xmlns:xx = yy when serializing the
- XML for serialization
-
- Fixed the unnecessary parsing/serializing when adding assemblies
- for serialization
- Avoided setting the XmlNode.InnerXml property
- (as it's not implemented)
- Fixed the usage/implementation of
- XmlElement.GetElementsByTagName()
-
- 2002-10-21 Duncan Mak <[email protected]>
- * XmlDocument.cs:
- * XmlElement.cs:
- * XmlNode.cs:
- * XmlTextReader.cs: Implementation for XmlNode.InnerXml from
- Atsushi Enomoto <[email protected]>.
- 2002-10-18 Duncan Mak <[email protected]>
- * XmlDocument.cs: Applied a patch by Atsushi Enomoto
- <[email protected]>.
- 2002-10-12 A.Enomoto <[email protected]>
- * XmlDocument.cs (ImportNode): Implemented
- 2002-10-06 Gonzalo Paniagua Javier <[email protected]>
- * XmlDocument.cs: one more Load method implemented.
- * XmlTextReader.cs: Depth now works.
- 2002-09-22 Gonzalo Paniagua Javier <[email protected]>
- * XmlConvert.cs: IsInvalid is now internal.
- * XmlNamespaceManager.cs: implemented RemoveNamespace
- * XmlTextReader.cs: return BaseURI and Encoding from the parser.
- * XmlTextWriter.cs: implemented WriteName and WriteNmToken.
- 2002-09-19 Matt Hunter <[email protected]>
- * XmlElement.cs: Implementing SetAttributeNode(localName,namespaceURI)
- * XmlAttributeCollection.cs: Implemented Append (XmlAttribute)
-
- 2002-09-19 Gonzalo Paniagua Javier <[email protected]>
- * XmlConvert.cs: finished implementation.
- * XmlTextReader.cs: fixed #30239.
- * XmlTextWriter.cs: fixed #30240.
- 2002-09-15 Gonzalo Paniagua Javier <[email protected]>
- * XmlTextReader.cs: line and position begin with 1.
- 2002-09-13 Gonzalo Paniagua Javier <[email protected]>
- * XmlException.cs: added a new internal constructor for IXmlLineInfo
- and output line and position info in Message.
- * XmlReader.cs: implemented missing bits.
- 2002-09-12 Piers Haken <[email protected]>
- * XmlDocumentNavigator.cs: implement MoveToId()
- 2002-09-05 Gonzalo Paniagua Javier <[email protected]>
- * XmlTextWriter.cs: fixed bug #29886.
- 2002-08-26 Ravi Pratap <[email protected]>
- * XmlAttribute.cs (InnerText): Implement getting this property.
- * XmlNode.cs (InnerText): Ensure that we append only values of
- text nodes.
- 2002-08-26 Gonzalo Paniagua Javier <[email protected]>
- * XmlWriter.cs: made ws and namespaceManager protected. mcs has a bug
- that allowed compiling this.
- [ FIXME: filed bug #29435. mcs should have failed on this ]
- 2002-08-25 Tim Coleman <[email protected]>
- * XmlNode.cs:
- Change CreateNavigator to not be virtual.
- * XmlElement.cs:
- Add set_Prefix and InnerText accessors.
- * XmlEntityReference.cs:
- Add set_Value accessor.
- * XmlTextWriter.cs:
- Make objects which should be private private.
- * XmlWriter.cs:
- Remove WriteStartElementInternal abstract definition.
- * XmlValidatingReader.cs:
- New stubs added.
- 2002-08-22 Jason Diamond <[email protected]>
- * XmlAttributeCollection.cs, XmlElement.cs: Implementation of RemoveAll
- and RemoveAllAttributes courtesy of Matt Hunter <[email protected]>.
- 2002-08-22 Jason Diamond <[email protected]>
- * XmlElement.cs: Correction to previous GetElementsByTagName patch
- courtesy of Matt Hunter <[email protected]>.
- 2002-08-22 Jason Diamond <[email protected]>
- * XmlDocument.cs, XmlElement.cs: Added implementation of namepsace
- qualified GetElementsByTagName courtesy of Matt Hunter
- <[email protected]>.
- 2002-08-19 Jason Diamond <[email protected]>
- * XmlDocument.cs, XmlElement.cs: Added implementation of
- GetElementsByTagName courtesy of Matt Hunter <[email protected]>.
- 2002-08-16 Jason Diamond <[email protected]>
- * XmlElement.cs: Fixed writing out qualified elements courtesy of
- Marcus Bürgel <[email protected]>.
- 2002-08-13 Tim Coleman <[email protected]>
- * XmlTextWriter.cs:
- Partial implementation of WriteQualifiedName ().
- 2002-08-07 Kral Ferch <[email protected]>
- * XmlCharacterData.cs: Implemented AppendData(), DeleteData(),
- InsertData(), and ReplaceData(). These methods fire the
- NodeChanging and NodeChanged events.
-
- * XmlDocument.cs: Fixed bugs in onNodeChanged() and onNodeChanging().
-
- * XmlNode.cs: AppendChild() fires NodeInserting and NodeInserted events.
- RemoveAll() and RemoveChild() fire NodeRemoving and NodeRemoved events.
-
- 2002-08-03 Tim Coleman <[email protected]>
- * XmlNamespaceManager.cs:
- .Net allows the empty namespace to be redefined
- at a later point, but the current implementation
- did not. This fixes a hashtable conflict.
- 2002-07-26 Tim Coleman <[email protected]>
- * XmlTextWriter.cs:
- When given a textwriter, check to see if it has a
- null encoding. This was being done for other inputs
- than a textwriter.
- Wed Jul 24 13:16:19 CEST 2002 Paolo Molaro <[email protected]>
- * XmlTextReader.cs: rough line/column support.
- 2002-07-23 Duncan Mak <[email protected]>
- * XmlConvert.cs: Implement the ToDateTime method. ToDateTime
- (string, string []) is particularly strange.
- * XmlException.cs: Remember to call the base serialization
- constructor.
- * XmlNodeReader.cs: Keep a new variable to store the Depth.
- 2002-07-14 Jason Diamond <[email protected]>
- * XmlAttribute.cs: Removed ownerElement field since we can reuse
- parentNode field.
- * XmlDocumentNavigator.cs: MoveToParent now moves to the OwnerElement
- if the current node is an attribute.
- * XmlElement.cs: SetAttributeNode now sets the new attribute's
- owner element.
- 2002-07-12 Jason Diamond <[email protected]>
- * XmlDocument.cs: If null was passed in for prefix or namespaceURI when
- creating an element, use String.Empty instead.
- 2002-07-12 Piers Haken <[email protected]>
- * XmlAttributeCollection.cs: implement some ItemOf indexers
- * XmlNamedNodeMap.cs: add internal 'Nodes' accessor for the nodeList field
- * XmlNode.cs: SelectNodes: return empty XmlNodeList, not null
- 2002-07-06 Ajay kumar Dwivedi <[email protected]>
- 2002-10-26 Piers Haken <[email protected]>
- * XmlDocumentNavigator.cs: return invalid XPathNodeType (-1) for unknown node types.
- 2002-10-23 Gonzalo Paniagua Javier <[email protected]>
- * XmlTextReader.cs: don't increment depth for entity references.
- 2002-10-22 Tim Haynes <[email protected]>
- * - Fixed the duplication of xmlns:xx = yy when serializing the
- XML for serialization
-
- Fixed the unnecessary parsing/serializing when adding assemblies
- for serialization
- Avoided setting the XmlNode.InnerXml property
- (as it's not implemented)
- Fixed the usage/implementation of
- XmlElement.GetElementsByTagName()
-
- 2002-10-21 Duncan Mak <[email protected]>
- * XmlDocument.cs:
- * XmlElement.cs:
- * XmlNode.cs:
- * XmlTextReader.cs: Implementation for XmlNode.InnerXml from
- Atsushi Enomoto <[email protected]>.
- 2002-10-18 Duncan Mak <[email protected]>
- * XmlDocument.cs: Applied a patch by Atsushi Enomoto
- <[email protected]>.
- 2002-10-12 A.Enomoto <[email protected]>
- * XmlDocument.cs (ImportNode): Implemented
- 2002-10-06 Gonzalo Paniagua Javier <[email protected]>
- * XmlDocument.cs: one more Load method implemented.
- * XmlTextReader.cs: Depth now works.
- 2002-09-22 Gonzalo Paniagua Javier <[email protected]>
- * XmlConvert.cs: IsInvalid is now internal.
- * XmlNamespaceManager.cs: implemented RemoveNamespace
- * XmlTextReader.cs: return BaseURI and Encoding from the parser.
- * XmlTextWriter.cs: implemented WriteName and WriteNmToken.
- 2002-09-19 Matt Hunter <[email protected]>
- * XmlElement.cs: Implementing SetAttributeNode(localName,namespaceURI)
- * XmlAttributeCollection.cs: Implemented Append (XmlAttribute)
-
- 2002-09-19 Gonzalo Paniagua Javier <[email protected]>
- * XmlConvert.cs: finished implementation.
- * XmlTextReader.cs: fixed #30239.
- * XmlTextWriter.cs: fixed #30240.
- 2002-09-15 Gonzalo Paniagua Javier <[email protected]>
- * XmlTextReader.cs: line and position begin with 1.
- 2002-09-13 Gonzalo Paniagua Javier <[email protected]>
- * XmlException.cs: added a new internal constructor for IXmlLineInfo
- and output line and position info in Message.
- * XmlReader.cs: implemented missing bits.
- 2002-09-12 Piers Haken <[email protected]>
- * XmlDocumentNavigator.cs: implement MoveToId()
- 2002-09-05 Gonzalo Paniagua Javier <[email protected]>
- * XmlTextWriter.cs: fixed bug #29886.
- 2002-08-26 Ravi Pratap <[email protected]>
- * XmlAttribute.cs (InnerText): Implement getting this property.
- * XmlNode.cs (InnerText): Ensure that we append only values of
- text nodes.
- 2002-08-26 Gonzalo Paniagua Javier <[email protected]>
- * XmlWriter.cs: made ws and namespaceManager protected. mcs has a bug
- that allowed compiling this.
- [ FIXME: filed bug #29435. mcs should have failed on this ]
- 2002-08-25 Tim Coleman <[email protected]>
- * XmlNode.cs:
- Change CreateNavigator to not be virtual.
- * XmlElement.cs:
- Add set_Prefix and InnerText accessors.
- * XmlEntityReference.cs:
- Add set_Value accessor.
- * XmlTextWriter.cs:
- Make objects which should be private private.
- * XmlWriter.cs:
- Remove WriteStartElementInternal abstract definition.
- * XmlValidatingReader.cs:
- New stubs added.
- 2002-08-22 Jason Diamond <[email protected]>
- * XmlAttributeCollection.cs, XmlElement.cs: Implementation of RemoveAll
- and RemoveAllAttributes courtesy of Matt Hunter <[email protected]>.
- 2002-08-22 Jason Diamond <[email protected]>
- * XmlElement.cs: Correction to previous GetElementsByTagName patch
- courtesy of Matt Hunter <[email protected]>.
- 2002-08-22 Jason Diamond <[email protected]>
- * XmlDocument.cs, XmlElement.cs: Added implementation of namepsace
- qualified GetElementsByTagName courtesy of Matt Hunter
- <[email protected]>.
- 2002-08-19 Jason Diamond <[email protected]>
- * XmlDocument.cs, XmlElement.cs: Added implementation of
- GetElementsByTagName courtesy of Matt Hunter <[email protected]>.
- 2002-08-16 Jason Diamond <[email protected]>
- * XmlElement.cs: Fixed writing out qualified elements courtesy of
- Marcus Bürgel <[email protected]>.
- 2002-08-13 Tim Coleman <[email protected]>
- * XmlTextWriter.cs:
- Partial implementation of WriteQualifiedName ().
- 2002-08-07 Kral Ferch <[email protected]>
- * XmlCharacterData.cs: Implemented AppendData(), DeleteData(),
- InsertData(), and ReplaceData(). These methods fire the
- NodeChanging and NodeChanged events.
-
- * XmlDocument.cs: Fixed bugs in onNodeChanged() and onNodeChanging().
-
- * XmlNode.cs: AppendChild() fires NodeInserting and NodeInserted events.
- RemoveAll() and RemoveChild() fire NodeRemoving and NodeRemoved events.
-
- 2002-08-03 Tim Coleman <[email protected]>
- * XmlNamespaceManager.cs:
- .Net allows the empty namespace to be redefined
- at a later point, but the current implementation
- did not. This fixes a hashtable conflict.
- 2002-07-26 Tim Coleman <[email protected]>
- * XmlTextWriter.cs:
- When given a textwriter, check to see if it has a
- null encoding. This was being done for other inputs
- than a textwriter.
- Wed Jul 24 13:16:19 CEST 2002 Paolo Molaro <[email protected]>
- * XmlTextReader.cs: rough line/column support.
- 2002-07-23 Duncan Mak <[email protected]>
- * XmlConvert.cs: Implement the ToDateTime method. ToDateTime
- (string, string []) is particularly strange.
- * XmlException.cs: Remember to call the base serialization
- constructor.
- * XmlNodeReader.cs: Keep a new variable to store the Depth.
- 2002-07-14 Jason Diamond <[email protected]>
- * XmlAttribute.cs: Removed ownerElement field since we can reuse
- parentNode field.
- * XmlDocumentNavigator.cs: MoveToParent now moves to the OwnerElement
- if the current node is an attribute.
- * XmlElement.cs: SetAttributeNode now sets the new attribute's
- owner element.
- 2002-07-12 Jason Diamond <[email protected]>
- * XmlDocument.cs: If null was passed in for prefix or namespaceURI when
- creating an element, use String.Empty instead.
- 2002-07-12 Piers Haken <[email protected]>
- * XmlAttributeCollection.cs: implement some ItemOf indexers
- * XmlNamedNodeMap.cs: add internal 'Nodes' accessor for the nodeList field
- * XmlNode.cs: SelectNodes: return empty XmlNodeList, not null
- 2002-07-06 Ajay kumar Dwivedi <[email protected]>
- * XmlTextWriter: Fixed Indentation. IndentationOverridden should
- not be set when inside a attribute.
- 2002-07-06 Ajay kumar Dwivedi <[email protected]>
- * XmlTextWriter: In WriteStartElement, if namespace is null and
- prefix is null|empty do not write out xmlns=""
-
- * XmlWriter: WriteStartElement calls the virtual method with null
- argument instead of empty string.
- 2002-07-05 Gonzalo Paniagua Javier <[email protected]>
- * XmlTextReader.cs: implemented .ctor (Stream).
- 2002-06-26 Duncan Mak <[email protected]>
- * XmlNodeReader.cs: Implementation of most of the properties, and
- some of the related methods.
- 2002-06-23 Piers Haken <[email protected]>
-
- * XmlDocumentNavigator.cs: implement Clone()
- * XmlElement.cs: remove bogus unimplemented override of InnerText
- * XmlNode.cs: implment SelectNodes/SelectSingleNode
- * XmlNodeArrayList.cs: new support class for SelectNodes
- 2002-06-21 Ajay kumar Dwivedi <[email protected]>
-
- * XmlQualifiedName: Name and Namespaces are never null. If null is passed
- to the constructor, set them to empty strings.
- Fixed the Operators.
-
- 2002-06-18 Ajay kumar Dwivedi <[email protected]>
-
- * XmlTextReader.cs: HasLineInfo returns false instead of throwing an
- Exception.
- 2002-06-14 Duncan Mak <[email protected]>
- * XmlConvert.cs: Added CLSCompliant attributes to methods.
-
- 2002-06-12 Duncan Mak <[email protected]>
- * XmlCharacterData.cs (Value): Throw an ArgumentException in the
- set block if the node is read-only.
- 2002-06-10 Ajay kumar Dwivedi <[email protected]>
- * XmlConstruct.cs : New Internal class with Helper methods for
- Checking XmlConstructs
- * XmlConvert.cs: Implemented most of the methods
- 2002-06-08 Duncan Mak <[email protected]>
- * XmlDocument.cs (Load):
- Added bits to Load (string) for BaseURI support.
- * XmlAttribute.cs (BaseURI):
- * XmlDocument.cs (BaseURI):
- * XmlEntity.cs (BaseURI): Implemented.
- 2002-05-27 Jason Diamond <[email protected]>
- * XmlDocumentNavigator.cs: Added file to directory.
- * XmlNode.cs (CreateNavigator): Implemented.
- (InnerText): Implemented.
- * XmlDocument.cs (NamespaceURI, Prefix): Return String.Empty instead of
- throwing exception.
- (Load(XmlReader)): Allow for namespace qualified attributes.
- * XmlElement.cs: Implemented GetAttribute(string, string) and both
- GetAttributeNode overloads.
- (SetAttributeNode(XmlAttribute)): Implemented.
- * XmlNamedNodeMap.cs: Fixed copy/paste bugs in GetNamedItem(string, string)
- and RemoveNamedItem(string, string).
- * XmlLinkedNode.cs (PreviousSibling): Implemented.
- * XmlTextReader.cs: Added code to maintain the order of attributes as
- they're parsed. XML doesn't require this but Microsoft's parser does it and
- matching them makes testing easier so now we have it, too.
- 2002-05-26 Miguel de Icaza <[email protected]>
- * XmlDocument.cs: Implement the Save methods.
- 2002-05-08 Mike Kestner <[email protected]>
- * XmlNamedNodeMap.cs (SetNamedItem): Fixed a copy/paste bug.
- 2002-04-28 Duncan Mak <[email protected]>
- * XmlSignificantWhitespace.cs (Value):
- * XmlWhitespace.cs (Value): Added MonoTODO to the 'set'
- block. Added new private method, IsValidWhitespaceChar, for
- checking.
- 2002-04-16 Duncan Mak <[email protected]>
- * XmlParserContext.cs (NameTable): Fixed a typo in the set block.
- 2002-04-12 Duncan Mak <[email protected]>
- * XmlAttribute.cs (Prefix): Added preliminary code for set block,
- added comment on work that needs to be done here. A new MonoTODO item.
- * XmlDocument.cs (ctor): Corrected constructor signature, changed
- parameter from 'NameTable' to 'XmlNameTable'.
- * XmlDocumentFragment.cs (InnerXml): Added missing set block.
- * XmlCaseOrder.cs: Moved to System.Xml.XPath.
- 2002-04-10 Duncan Mak <[email protected]>
- * XmlNodeReader.cs: Initial stubs for the class.
- 2002-04-08 Kral Ferch <[email protected]>
- * XmlAttributes.cs: InnerXml getter, WriteContentTo, and WriteTo
- implementations.
-
- * XmlDeclaration.cs: WriteTo implementation.
-
- * XmlDocument.cs: InnerXml getter implementation.
-
- * XmlElement.cs: InnerXml getter implementation.
- * XmlNode.cs: Removed MonoTODO attrib on OuterXml.
-
- * XmlSignificantWhitespace.cs: WriteTo implementation.
-
- * XmlText.cs: WriteContentTo and WriteTo implementation.
-
- * XmlTextWriter.cs: WriteRaw implementation.
-
- * XmlWhitespace.cs: WriteContentTo and WriteTo implementations.
- 2002-04-05 Kral Ferch <[email protected]>
- * XmlAttributes.cs: Added reminder MonoTODO to set NamespaceURI
- if prefix in constructor is one of the default ones.
-
- * XmlCharacterData.cs: Returns String.Empty for Value and Data
- even when constructed with null.
-
- * XmlDeclaration.cs: Value doesn't put encoding or standalone
- in if they are empty.
-
- * XmlDocument.cs: Implemented CreateNode methods and this caused
- the changes in the other files in this checkin.
-
- * XmlProcessingInstruction.cs: Returns String.Empty for Value and Data
- even when constructed with null.
-
- * XmlWhitespace.cs: Changed Value 'get' to return Data.
- 2002-04-01 Kral Ferch <[email protected]>
- * XmlTextWriter.cs: Impls for WriteEndDocument and WriteFullEndElement.
-
- 2002-03-31 Kral Ferch <[email protected]>
- * XmlTextWriter.cs: Impls for LookupPrefix, WriteBase64,
- and WriteCharEntity.
-
- * XmlWrite.cs: Fixed bug where attribute namespace decl
- was pushing a scope onto the namespace manager when it shouldn't
- have been.
-
- 2002-03-31 Kral Ferch <[email protected]>
- * XmlTextWriter.cs: Some tweaks for WriteAttibuteString
- in different states (no open start element, in WriteState.Content mode).
-
- 2002-03-29 Kral Ferch <[email protected]>
- * XmlTextWriter.cs: XmlLang and XmlSpace properties
- and WriteWhitespace.
-
- * XmlTextWriterOpenElement.cs: scope support for XmlLang
- and XmlSpace.
- 2002-03-29 Kral Ferch <[email protected]>
- * XmlTextWriter.cs: Working on Attribute methods.
-
- * XmlWriter.cs: Working on Attribute methods.
- 2002-03-28 Duncan Mak <[email protected]>
- * XmlDocument.cs (CreateWhitespace):
- (CreateSignificantWhitespace): Removed extraneous call to the ToCharArray
- method.
- * XmlSignificantWhitespace.cs (Value): Removed MonoTODO attribute.
- 2002-03-26 Duncan Mak <[email protected]>
- * XmlDocument.cs (CreateDocumentType): Implemented.
- * XmlNode.cs (Value): Implemented.
- * XmlProcessingInstruction.cs (InnerText): Implemented. It works just
- like XmlCharacterData.
- * XmlDeclaration.cs (CloneNode):
- * XmlDocument.cs (CreateXmlDeclaration): Added missing constructor
- arguments.
- * XmlCharacterData.cs (InnerText): Implemented. Funny that the
- docs say it is the "The concatenated values of the node and all
- the children of the node.". I wrote some test programs and
- couldn't get any of the derived nodes to AppendChild. For now,
- InnerText == Data == Value.
- (Substring): Fixed typo.
- * XmlDeclaration.cs (XmlDeclaration): Fixed the constructor parameter signature.
- * XmlImplementation.cs (CreateDocument): Implemented.
- 2002-03-25 Duncan Mak <[email protected]>
- * XmlDeclaration.cs: Rewrote the class, fixed formatting, added
- missing properties (InnerText, Value).
-
- * XmlDocument.cs (CreateXmlDeclaration): Implemented.
- 2002-03-23 Kral Ferch <[email protected]>
- * XmlTextWriter.cs: Impls for BaseStream and
- Namespaces and WriteState.
-
- * XmlWriter.cs: WriteState and WriteStartElementInternal.
- 2002-03-23 Kral Ferch <[email protected]>
- * XmlNodeListChildren.cs: made class internal
- instead of public. Shouldn't be visible outside
- of System.Xml.
-
- * XmlTextWriter.cs: Implementations for Formatting,
- IndentChar, Indenting, QuoteChar, WriteStartDocument(standalone).
- Suppresses encoding on xml declaration if null stream passed in.
- Formats output including suppressing indentation for elements in
- mixed content mode.
-
- * XmlTextWriterOpenElement.cs: Initial checkin.
- XmlTextWriter uses stack of these objects to track
- state.
-
- 2002-03-22 Mike Kestner <[email protected]>
- * XmlElement.cs: impl HasAttribute(string name).
- 2002-03-22 Duncan Mak <[email protected]>
- * XmlElement.cs: Reformatted.
- (CloneNode) Corrected.
- * XmlDocument.cs (CreateWhitespace):
- (CreateSignificantWhitespace): Implemented.
- * XmlAttribute.cs (CloneNode): Changed the child's CloneNode to
- true, because Attributes have ChildNodes.
- 2002-03-21 Kral Ferch <[email protected]>
- * XmlTextWriter.cs: WriteStartDocument tracks state, writes out
- xml declaration along with encoding. WriteEndElement throws
- exception if no WriteStartElement exists.
- 2002-03-20 Duncan Mak <[email protected]>
- * XmlEntityReference.cs (CloneNode): Implemented.
- * XmlException.cs (Message): Implemented. We need to cache the
- message string because SystemException doesn't expose 'message'
- from Exception.
- * XmlText.cs (Value): Added in the missing Value property.
- 2002-03-20 Duncan Mak <[email protected]>
- * XmlAttribute.cs (CloneNode): Implemented.
- * XmlDocumentFragment.cs (CloneNode): Implemented.
- * XmlElement.cs (CloneNode): Implemented.
- 2002-03-19 Duncan Mak <[email protected]>
- * XmlNotation.cs: Added to CVS.
- * XmlAttribute.cs (CloneNode): First crack at the CloneNode method.
- * XmlCDataSection.cs (CloneNode): Implemented.
- * XmlDocumentFragment.cs: Reformatted and added the missing properties
- (InnerXml, OwnerDocument, ParentNode).
- (CloneNode): Implemented.
- * XmlSignificantWhitespace.cs (CloneNode): Implemented.
- (Value) Implemented the 'get' property.
- * XmlWhitespace.cs (Module): implemented.
- 2002-03-19 Jason Diamond <[email protected]>
- * XmlDocument.cs: Fixed typo in Load that was duplicating the LocalName
- in the prefix.
- 2002-03-18 Jason Diamond <[email protected]>
- * XmlTextReader.cs: Don't restore properties after reading last
- attribute on an element.
- * XmlDocument.cs: Move back to element after reading attributes
- so that IsEmptyElement test succeeds.
- 2002-03-18 Kral Ferch <[email protected]>
- * XmlNamespaceManager.cs: Implemented LookupPrefix.
-
- * XmlTextWriter.cs: Implemented namespace and prefix support.
- 2002-03-18 Kral Ferch <[email protected]>
- * XmlTextReader.cs: Restores properties after
- reading last attribute on an element.
-
- * XmlNode.cs: AppendChild sets the parent
- on the child.
- 2002-03-17 Kral Ferch <[email protected]>
- * XmlCDataSection.cs: Formatting, Implementation for WriteTo.
- * XmlComment.cs: Implementations for WriteTo and WriteContentTo.
-
- * XmlElement.cs: Fixed bug in WriteTo.
-
- * XmlProcessingInstruction.cs: Formatting.
-
- * XmlTextWriter.cs: Implementations for Close, WriteCData, WriteComment,
- fixes for WriteEndElement, WriteProcessingInstruction.
- 2002-03-17 Kral Ferch <[email protected]>
- * XmlDocument.cs: Implementations for WriteTo() and WriteContentTo(),
- had Load() add PIs to the document, moved onXXX methods to alphabetical
- order in the file.
-
- * XmlElement.cs: Implementations for WriteTo() and WriteContentTo().
-
- * XmlNode.cs: Implementations for InnerXml Get and OuterXml.
-
- * XmlProcessingInstruction.cs: Implementations for WriteTo() and
- WriteContentTo().
-
- * XmlTextWriter.cs: Implementations for WriteEndElement,
- WriteProcessingInstruction, WriteStartElement, and WriteString.
-
- * XmlWriter.cs: Implemented WriteStartElement() methods.
- 2002-03-15 Duncan Mak <[email protected]>
- * XmlEntity.cs: Added to CVS. Need to implement BaseURI and
- InnerText once I know what they do.
- * XmlDocumentType.cs (XmlDocumentType): Fix the constructor now
- that we can properly chain constructors.
- (CloneNode): implemented.
- (WriteContentTo): Removed MonoTODO attribute as this method has no
- effect in this class.
- * XmlProcessingInstruction.cs (Value): Added the missing Set
- block.
- (InnerText): Added in, but not implemented.
- 2002-03-14 Kral Ferch <[email protected]>
- * XmlTextWriter.cs: implemented constructors and
- WriteCData and WriteComment.
- 2002-03-14 Duncan Mak <[email protected]>
- * XmlDocument.cs: Moved the NodeChanged EventHandler to its own
- file, and updated the callbacks to reflect the change.
- (XmlDocument): Added the NameTable constructor.
- (NameTable): Also the NameTable property.
- * XmlNodeChangedEventHandler.cs: Added, replacing the version that
- was in XmlDocument.cs. It has two arguments now (object,
- EventArgs) , instead of one (object).
- 2002-03-14 Kral Ferch <[email protected]>
- * XmlWriter.cs: Formatting.
-
- * XmlTextWriter.cs: Initial checkin.
-
- 2002-03-14 Duncan Mak <[email protected]>
- * Validation.cs: Removed, replaced by ValidationType.cs.
- * ValidationType.cs: Added.
- 2002-03-13 Duncan Mak <[email protected]>
- * XmlException.cs: Made it [Serializable], implemented good ol'
- GetObjectData, and the serialization constructor.
- * XmlNamedNodeMap.cs (SetNamedItem): Check for the Name property.
- (SetNamedItem): Reverted (added back in) the patch with the
- ReadOnly checks. "Don't doubt yourself, my son... you were right!"
- * XmlNamedNodeMap.cs (GetEnumerator): piggyback on the ArrayList implementation.
- (GetNamedItem (string, string)): implemented.
- (RemoveNamedItem): implemented.
- (SetNamedItem): implemented.
- 2002-03-12 Kral Ferch <[email protected]>
- * XmlAttribute.cs: Moved a method from amongst properties down to
- it's alphabetical position in the methods section.
-
- * XmlNode.cs: Passes in 'this' to XmlNodeList constructor instead of
- last linked child. Set XmlNode base class to return false for IsReadOnly().
- Implemented GetEnumerator() and RemoveChild().
-
- * XmlNodeListChildren.cs: Now stores the parent instead of the last child.
- This is to support the behavior that the Enumerator doesn't become invalid
- when changes to the children occur. Flushed out rest of implementation for
- MoveNext, Current, and Reset.
- 2002-03-12 Duncan Mak <[email protected]>
- * XmlCharacterData.cs: Reformatted the properties for better readability.
- * XmlLinkedNode.cs: Removed the awful boxy comments.
- * XmlNamedNodeMap.cs (Count):
- (Item): Implemented. Tests will be coming.
- * XmlEntityReference.cs:
- * XmlSignificantWhitespace.cs: Implemented these classes except for
- the Clone, WriteContentTo and WriteTo methods. Will have to
- investigate into these later.
- 2002-03-11 Duncan Mak <[email protected]>
- * IHasXmlNode.cs: Added to CVS.
- 2002-03-08 Jason Diamond <[email protected]>
- * XmlParserContext.cs: Added missing constructors and missing Encoding
- property.
- * XmlTextReader.cs: Start using the XmlParserContext class.
- 2002-03-08 Jason Diamond <[email protected]>
- * XmlTextReader.cs: Implemented MoveToElement and MoveToFirstAttribute.
- 2002-03-08 Mike Kestner <[email protected]>
- * XmlNode.cs (Item): Implemented both indexers.
- 2002-03-08 Jason Diamond <[email protected]>
- * DomEncodingType.cs, TreePosition.cs, XPathNodeType.cs, XmlDataType.cs,
- XmlExceptionCode.cs, XmlSortOrder.cs, XmlUtil.cs: Removed files.
- 2002-03-08 Jason Diamond <[email protected]>
- * XmlAttribute.cs: Attribute nodes are supposed to store their values
- as child nodes so updated to reflect that.
- * XmlDocument.cs, XmlElement.cs, XmlNode.cs: Moved code that was
- duplicated in XmlDocument and XmlElement into XmlNode so that it
- wouldn't have to be duplicated in XmlAttribute, too.
- 2002-03-08 Kral Ferch <[email protected]>
- * XmlNodeList.cs, XmlDocument.cs, XmlLinkedNode.cs,
- XmlNode.cs: Formatting.
-
- * XmlNodeListChildren.cs: Implementation of XmlNodeList
- for XmlNode.ChildNodes property.
-
- * XmlNodeListAsArrayList.cs: Removed file. Using different
- data structure (circular list) in XmlNode so this file
- is no longer valid.
-
- * XmlDocument.cs, XmlElement.cs: New ChildNodes tests found
- bug in setter property of LastLinkedChild so fixed it.
-
- 2002-03-06 Jason Diamond <[email protected]>
- * XmlInputSource.cs, XmlNames_1_0.cs, XmlParse.cs: Removed files.
- We already have a parser in XmlTextReader.
- * XmlException.cs: Removed constructor accepting XmlInputSource.
- 2002-03-06 Kral Ferch <[email protected]>
- * XmlNode.cs: Rewrote this class from scratch with
- MonoToDo attribs and NotImplementedExceptions. Now defines an
- internal LastLinkedNode property to aid the new implementation.
- XmlNodes only have ref to owner doc and parent nodes now.
-
- * XmlLinkedNode.cs: Added NextLinkedSibling internal property
- and ref to next sibling to support walking our circular child
- node list.
-
- * XmlDocument.cs: Added ref to last child node and overrides
- XmlNode's internal LastLinkedChild property to support walking
- our circular child node list.
-
- 2002-03-02 Kral Ferch <[email protected]>
- * XmlProcessingInstructions.cs: Class was empty. Implemented
- constructor, properties, and CloneNode() method. Put in
- MonoToDo attrib for remaining methods.
- * XmlComment.cs: Reformatted and put in MonoToDo attribs.
- Got rid of helper methods and fields since they were no
- longer needed.
- * XmlLinkedNode.cs: Reformatted and put in MonoToDo attribs.
- * XmlDocument.cs: Added code to Load(XmlReader) to create XmlComment,
- XmlCDataSection, and XmlProcessingInstruction nodes. Implemented
- Createxxx() methods for those three node types.
- 2002-03-02 Jason Diamond <[email protected]>
- * XmlDocument.cs: Implemented the remaining CreateElement and
- CreateAttribute methods.
- * XmlAttribute.cs: Re-implemented.
- * XmlElement.cs: Set owner element on attributes. Reformatted.
- 2002-03-02 Jason Diamond <[email protected]>
- * XmlTextReader.cs: Implemented MoveToNextAttribute().
- * XmlDocument.cs: Reformatted. Adding missing methods and MonoTODO
- attributes. Create attribute nodes while loading. Implemented
- Load(string) and CreateTextNode().
- * XmlCharacterData.cs, XmlText.cs: Re-implemented.
- * XmlCDataSection.cs, XmlComment.cs: Call correct constructor in
- XmlCharacterData.
- * XmlNamedNodeMap.cs, XmlAttributeCollection.cs: Stubbed out.
- 2002-03-02 Mike Kestner <[email protected]>
- * XmlAttribute.cs : Using fix.
- * XmlDocument.cs (CreateAttribute(String)): Implement.
- 2002-03-02 Jason Diamond <[email protected]>
- * XmlNamespaceManager.cs: Atomize prefixes and namespaces strings in
- the name table.
- 2002-02-28 Jason Diamond <[email protected]>
- * XmlDocument.cs, XmlNode.cs: Initial implementation of LoadXml
- courtesy of Kral Ferch <[email protected]>.
- 2002-02-28 Jason Diamond <[email protected]>
- * XmlException.cs, XmlReader.cs, XmlTextReader.cs: Reformatted,
- added missing members and MonoTODO attributes.
-
- * XmlTextReader.cs: Throw XmlException instead of System.Exception.
- 2002-02-27 Jason Diamond <[email protected]>
- * XmlElement.cs: Reformatted, added missing members and MonoTODO
- attributes.
- 2002-02-26 Duncan Mak <[email protected]>
- * XmlCDataSection.cs: Initial implementation.
- * NameTable.cs: Fixed the whole thing. Wrote a NUnit test to test
- it out. This should (hopefully) be correct.
- 2002-02-26 Jason Diamond <[email protected]>
- * XmlTextReader.cs: Apparently Microsoft's implementation treats
- namespace declarations as attributes so we do now, too.
- * XmlNamespaceManager.cs: HasNamespace fixed so that it only
- checks the current scope.
- 2002-02-26 Duncan Mak <[email protected]>
- * XmlDocumentType.cs: Added a few hacks here and there to
- temporarily fix the "I broke the build issue".
- 2002-02-25 Jason Diamond <[email protected]>
- * XmlDocument.cs, XmlElement.cs, XmlNode.xs, XmlNodeList.cs,
- XmlNodeListAsArrayList.cs: Multiple fixes necessary to get
- simple test to pass. The existing code is really shitty so I'll
- probably start writing tests and refactoring before much else
- can get done.
- 2002-02-25 Duncan Mak <[email protected]>
- * NameTable.cs: Implemented.
- * XmlDeclaration.cs: It should inherit from XmlLinkedNode, not XmlNode.
- 2002-02-24 Duncan Mak <[email protected]>
-
- * XmlNodeOrder.cs: Added to CVS.
- * XmlQualifiedName.cs: Fixed a warning from Equals ().
- * XmlTokenizedType.cs: Added to CVS.
- * XmlUrlResolver.cs: Added to CVS with one TODO task.
- 2002-02-23 Duncan Mak <[email protected]>
- * XmlQualifiedName.cs: Fixed ToString () and added the operators
- (== and !=).
- 2002-02-23 Jason Diamond <[email protected]>
- * XmlTextReader.cs: Added support for qualified attributes.
- 2002-02-23 Jason Diamond <[email protected]>
- * XmlNamespaceManager.cs: Initial implementation.
-
- * XmlTextReader.cs: Added support for NamespaceURI property on
- elements.
- 2002-02-23 Nick Drochak <[email protected]>
- * ChangeLog: Add the change log to this directory
- * XmlQualifiedName.cs: Fixed compile errors so it would build. Still has
- MonoTODO's
|