From: Oleg T. <he...@us...> - 2005-11-22 12:11:10
|
Update of /cvsroot/mvp-xml/EXSLT/v2/src/Exslt/Xsl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19633/v2/src/Exslt/Xsl Modified Files: MvpXslTransform.cs XslReader.cs Log Message: Index: MvpXslTransform.cs =================================================================== RCS file: /cvsroot/mvp-xml/EXSLT/v2/src/Exslt/Xsl/MvpXslTransform.cs,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- MvpXslTransform.cs 21 Nov 2005 21:21:38 -0000 1.3 +++ MvpXslTransform.cs 22 Nov 2005 12:10:51 -0000 1.4 @@ -76,7 +76,7 @@ /// <summary> /// Loads and compiles the style sheet contained in the <see cref="IXPathNavigable"/> object. - /// See also <see cref="XslCompiledTransform(IXPathNavigable)"/>. + /// See also <see cref="XslCompiledTransform.Load(IXPathNavigable)"/>. /// </summary> /// <param name="stylesheet">An object implementing the <see cref="IXPathNavigable"/> interface. /// In the Microsoft .NET Framework, this can be either an <see cref="XmlNode"/> (typically an <see cref="XmlDocument"/>), @@ -85,14 +85,14 @@ /// <summary> /// Loads and compiles the style sheet located at the specified URI. - /// See also <see cref="XslCompiledTransform(String)"/>. + /// See also <see cref="XslCompiledTransform.Load(String)"/>. /// </summary> /// <param name="stylesheetUri">The URI of the style sheet.</param> public void Load(string stylesheetUri) { this.compiledTransform.Load(stylesheetUri); } /// <summary> /// Compiles the style sheet contained in the <see cref="XmlReader"/>. - /// See also <see cref="XslCompiledTransform(XmlReader)"/>. + /// See also <see cref="XslCompiledTransform.Load(XmlReader)"/>. /// </summary> /// <param name="stylesheet">An <see cref="XmlReader"/> containing the style sheet.</param> public void Load(XmlReader stylesheet) { this.compiledTransform.Load(stylesheet); } @@ -101,13 +101,13 @@ /// Compiles the XSLT style sheet contained in the <see cref="IXPathNavigable"/>. /// The <see cref="XmlResolver"/> resolves any XSLT <c>import</c> or <c>include</c> elements and the /// XSLT settings determine the permissions for the style sheet. - /// See also <see cref="XslCompiledTransform(IXPathNavigable, XsltSettings, XmlResolver)"/>. + /// See also <see cref="XslCompiledTransform.Load(IXPathNavigable, XsltSettings, XmlResolver)"/>. /// </summary> /// <param name="stylesheet">An object implementing the <see cref="IXPathNavigable"/> interface. /// In the Microsoft .NET Framework, this can be either an <see cref="XmlNode"/> (typically an <see cref="XmlDocument"/>), /// or an <see cref="XPathDocument"/> containing the style sheet.</param> /// <param name="settings">The <see cref="XsltSettings"/> to apply to the style sheet. - /// If this is a null reference (Nothing in Visual Basic), the <see cref="XsltSettings.Default"> setting is applied.</param> + /// If this is a null reference (Nothing in Visual Basic), the <see cref="XsltSettings.Default"/> setting is applied.</param> /// <param name="stylesheetResolver">The <see cref="XmlResolver"/> used to resolve any /// style sheets referenced in XSLT <c>import</c> and <c>include</c> elements. If this is a /// null reference (Nothing in Visual Basic), external resources are not resolved.</param> @@ -120,11 +120,11 @@ /// Loads and compiles the XSLT style sheet specified by the URI. /// The <see cref="XmlResolver"/> resolves any XSLT <c>import</c> or <c>include</c> elements and the /// XSLT settings determine the permissions for the style sheet. - /// See also <see cref="XslCompiledTransform(string, XsltSettings, XmlResolver)"/>. + /// See also <see cref="XslCompiledTransform.Load(string, XsltSettings, XmlResolver)"/>. /// </summary> /// <param name="stylesheetUri">The URI of the style sheet.</param> /// <param name="settings">The <see cref="XsltSettings"/> to apply to the style sheet. - /// If this is a null reference (Nothing in Visual Basic), the <see cref="XsltSettings.Default"> setting is applied.</param> + /// If this is a null reference (Nothing in Visual Basic), the <see cref="XsltSettings.Default"/> setting is applied.</param> /// <param name="stylesheetResolver">The <see cref="XmlResolver"/> used to resolve any /// style sheets referenced in XSLT <c>import</c> and <c>include</c> elements. If this is a /// null reference (Nothing in Visual Basic), external resources are not resolved.</param> @@ -137,11 +137,11 @@ /// Compiles the XSLT style sheet contained in the <see cref="XmlReader"/>. /// The <see cref="XmlResolver"/> resolves any XSLT <c>import</c> or <c>include</c> elements and the /// XSLT settings determine the permissions for the style sheet. - /// See also <see cref="XslCompiledTransform(XmlReader, XsltSettings, XmlResolver)"/>. + /// See also <see cref="XslCompiledTransform.Load(XmlReader, XsltSettings, XmlResolver)"/>. /// </summary> /// <param name="stylesheet">The <see cref="XmlReader"/> containing the style sheet.</param> /// <param name="settings">The <see cref="XsltSettings"/> to apply to the style sheet. - /// If this is a null reference (Nothing in Visual Basic), the <see cref="XsltSettings.Default"> setting is applied.</param> + /// If this is a null reference (Nothing in Visual Basic), the <see cref="XsltSettings.Default"/> setting is applied.</param> /// <param name="stylesheetResolver">The <see cref="XmlResolver"/> used to resolve any /// style sheets referenced in XSLT <c>import</c> and <c>include</c> elements. If this is a /// null reference (Nothing in Visual Basic), external resources are not resolved.</param> Index: XslReader.cs =================================================================== RCS file: /cvsroot/mvp-xml/EXSLT/v2/src/Exslt/Xsl/XslReader.cs,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- XslReader.cs 21 Nov 2005 21:21:38 -0000 1.3 +++ XslReader.cs 22 Nov 2005 12:10:51 -0000 1.4 @@ -163,7 +163,7 @@ /// Starts XSL transformation of given <see cref="XmlInput"/> object with /// specified <see cref="XsltArgumentList"/>. After this method returns /// you can read the transformation output out of XslReader object via - /// standard <see cref="XmleRader"/> methods such as Read() or MoveXXX(). + /// standard <see cref="XmlReader"/> methods such as Read() or MoveXXX(). /// </summary> /// <remarks>If the <c>StartTransform()</c> method is called when previous /// transformation isn't over yet, it will be aborted, buffer cleaned and |