Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAtsushi Eno <atsushieno@gmail.com>2004-02-04 20:48:06 +0300
committerAtsushi Eno <atsushieno@gmail.com>2004-02-04 20:48:06 +0300
commitfdf21b83beaf0a7dc6f8091ecd17b364ccd60ca3 (patch)
tree6b3969555de4ef4ba8d0aafe0af1919adc542724 /mcs/class/System.XML/System.Xml/DTDObjectModel.cs
parent841027d32ba31a1392b7e1e8862dbdc907228507 (diff)
2004-02-04 Atsushi Enomoto <atsushi@ximian.com>
* DTDObjectModel.cs : Never expand entity on ScanEntityValue(). * DTDValidatingReader.cs : XmlDeclaration node requires attributes to be movable. * XmlAttribute.cs, XmlDocument.cs, XmlDocumentFragment.cs, XmlElement.cs, XmlEntity.cs, XmlLinkedNode.cs, XmlNode.cs, XmlNotation.cs : Added namespace checking flag (required for such xml readers that holds Namespaces=false). Now only XmlNode holds LastLinkedNode. * XmlDocumentType.cs, XmlEntity.cs, XmlEntityReference.cs : The children of Entity and EntityReference became correct. They now holds parsed nodes, but it is only when they are appended to the document. * XmlNode.cs : Modified insertBeforeIntern() to InsertBefore() with boolean checkNodeType argument. This method also tries to create Entity's and EntityReference's child nodes. Also added internal RemoveChild() with boolean checkNodeType argument. * XmlNodeReader.cs : Quick hack for ResolveEntity() that became broken with these changes. use InnerXml as input to entityReader. * XmlTextReader.cs : XmlDeclaration's value LocalName should be the same as Name. The names of DTD's pseudo attributes should be empty. Fixed DTD node's Depth (was regarded as attribute value's depth). svn path=/trunk/mcs/; revision=22767
Diffstat (limited to 'mcs/class/System.XML/System.Xml/DTDObjectModel.cs')
-rw-r--r--mcs/class/System.XML/System.Xml/DTDObjectModel.cs1
1 files changed, 0 insertions, 1 deletions
diff --git a/mcs/class/System.XML/System.Xml/DTDObjectModel.cs b/mcs/class/System.XML/System.Xml/DTDObjectModel.cs
index 2930484d1fc..dcbdd149a52 100644
--- a/mcs/class/System.XML/System.Xml/DTDObjectModel.cs
+++ b/mcs/class/System.XML/System.Xml/DTDObjectModel.cs
@@ -925,7 +925,6 @@ namespace Mono.Xml
Root.AddError (new XmlSchemaException ("Invalid reference character '&' is specified.",
this.LineNumber, this.LinePosition, null, this.BaseURI, null));
scanned = true;
- entityValue = value;
recursed = false;
}
}