[JEDI.NET-commits] tools/JediDoc/source JediDoc.System.Xml.Reflection.pas,1.5,1.6
Status: Pre-Alpha
Brought to you by:
jedi_mbe
From: Marcel B. <jed...@us...> - 2005-06-25 13:59:36
|
Update of /cvsroot/jedidotnet/tools/JediDoc/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29745/tools/JediDoc/source Modified Files: JediDoc.System.Xml.Reflection.pas Log Message: Still some InnerText instead of InnerXml occurrences Index: JediDoc.System.Xml.Reflection.pas =================================================================== RCS file: /cvsroot/jedidotnet/tools/JediDoc/source/JediDoc.System.Xml.Reflection.pas,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** JediDoc.System.Xml.Reflection.pas 25 Jun 2005 13:15:54 -0000 1.5 --- JediDoc.System.Xml.Reflection.pas 25 Jun 2005 13:59:27 -0000 1.6 *************** *** 276,285 **** begin frag := doc.CreateDocumentFragment; ! if ctorNode.InnerText.Trim.Length = 0 then frag.InnerXml := 'Initializes a new instance of the <see-class /> class.' else frag.InnerXml := System.String.Format( 'Initializes a new instance of the <see-class /> class, {0}.', ! ctorNode.InnerText.Trim); ctorNode.ParentNode.InsertBefore(frag, ctorNode); removeList.Add(ctorNode); --- 276,285 ---- begin frag := doc.CreateDocumentFragment; ! if ctorNode.InnerXml.Trim.Length = 0 then frag.InnerXml := 'Initializes a new instance of the <see-class /> class.' else frag.InnerXml := System.String.Format( 'Initializes a new instance of the <see-class /> class, {0}.', ! ctorNode.InnerXml.Trim); ctorNode.ParentNode.InsertBefore(frag, ctorNode); removeList.Add(ctorNode); *************** *** 312,316 **** if not Assigned(attr) then raise Exception.Create('Missing ''source'' attribute in the ''replace'' tag'); ! customList.Add(attr.Value, replaceNode.InnerText); end; Replace(XmlElement(importedNode), customList); --- 312,316 ---- if not Assigned(attr) then raise Exception.Create('Missing ''source'' attribute in the ''replace'' tag'); ! customList.Add(attr.Value, replaceNode.InnerXml); end; Replace(XmlElement(importedNode), customList); |