You can subscribe to this list here.
2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(174) |
Nov
(85) |
Dec
(14) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2005 |
Jan
(56) |
Feb
|
Mar
|
Apr
|
May
(4) |
Jun
(1) |
Jul
(132) |
Aug
(5) |
Sep
|
Oct
(314) |
Nov
(133) |
Dec
(18) |
2006 |
Jan
(6) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Oleg T. <he...@us...> - 2005-11-25 22:09:39
|
Update of /cvsroot/mvp-xml/Common/v2/src/Serialization In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24142/v2/src/Serialization Modified Files: XmlSerializerCache.cs Log Message: Index: XmlSerializerCache.cs =================================================================== RCS file: /cvsroot/mvp-xml/Common/v2/src/Serialization/XmlSerializerCache.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- XmlSerializerCache.cs 28 Oct 2005 20:07:56 -0000 1.1 +++ XmlSerializerCache.cs 25 Nov 2005 22:09:27 -0000 1.2 @@ -22,7 +22,7 @@ /// <summary> /// The XmlSerializerCache allows to work around the - /// assembly leak problem in the XmlSerializer + /// assembly leak problem in the <see cref="XmlSerializer"/> /// ( LINK ) /// The cache will inspect if it contains any previously cached /// instances that are compatible with the parameters passed to the @@ -30,7 +30,7 @@ /// a new XmlSerializer instance. /// </summary> /// <remarks> - /// In contrast to the XmlSerializer, the XmlSerializerCache requires + /// In contrast to the <see cref="XmlSerializer"/>, the XmlSerializerCache requires /// a permission set that allows reflecting over private members. /// </remarks> public class XmlSerializerCache : IDisposable |
Update of /cvsroot/mvp-xml/Common/v2/src/XPath In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24142/v2/src/XPath Modified Files: EmptyXPathNodeIterator.cs IHasXPathNavigator.cs IndexingXPathNavigator.cs SingletonXPathNodeIterator.cs SubtreeeXPathNavigator.cs XPathNavigatorIterator.cs Log Message: Index: SingletonXPathNodeIterator.cs =================================================================== RCS file: /cvsroot/mvp-xml/Common/v2/src/XPath/SingletonXPathNodeIterator.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- SingletonXPathNodeIterator.cs 29 Oct 2005 21:13:10 -0000 1.1 +++ SingletonXPathNodeIterator.cs 25 Nov 2005 22:09:27 -0000 1.2 @@ -8,8 +8,12 @@ namespace Mvp.Xml.Common.XPath { /// <summary> - /// <see cref="XPathNodeIterator"/> over a single node. + /// <see cref="XPathNodeIterator"/> over a single node. Can be used to return a single + /// node out of an XSLT or XPath extension function. /// </summary> + /// <remarks> + /// <para>Author: Oleg Tkachenko, <a href="http://www.xmllab.net">http://www.xmllab.net</a>.</para> + /// </remarks> public class SingletonXPathNodeIterator : XPathNodeIterator { private XPathNavigator navigator; Index: IndexingXPathNavigator.cs =================================================================== RCS file: /cvsroot/mvp-xml/Common/v2/src/XPath/IndexingXPathNavigator.cs,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- IndexingXPathNavigator.cs 28 Oct 2005 20:01:47 -0000 1.4 +++ IndexingXPathNavigator.cs 25 Nov 2005 22:09:27 -0000 1.5 @@ -13,16 +13,16 @@ { /// <summary> /// IndexingXPathNavigator enables lazy or eager indexing of any XML store - /// (XmlDocument, XPathDocument or any other IXPathNavigable store) thus - /// providing alternative way to select nodes directly from built index table - /// and not searhing the tree. This allows drastically decrease selection time + /// (<see cref="XmlDocument"/>, <see cref="XPathDocument"/> or any other <see cref="IXPathNavigable"/> XML store) thus + /// providing an alternative way to select nodes directly from an index table + /// instead of searhing the XML tree. This allows drastically decrease selection time /// on preindexed selections. /// </summary> /// <remarks> - /// <para>Author: Oleg Tkachenko, ol...@xm...</para> + /// <para>Author: Oleg Tkachenko, <a href="http://www.xmllab.net">http://www.xmllab.net</a>.</para> /// <para>Contributors: Daniel Cazzulino, kz...@gm...</para> - /// <para>See http://www.tkachenko.com/blog/archives/000194.html</para> - /// </remarks> + /// <para>See <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnxmlnet/html/XMLindexing.asp">"XML Indexing Part 1: XML IDs, XSLT Keys and IndexingXPathNavigator"</a>.</para> + /// </remarks> public class IndexingXPathNavigator : XPathNavigator { #region Fields & Ctor Index: IHasXPathNavigator.cs =================================================================== RCS file: /cvsroot/mvp-xml/Common/v2/src/XPath/IHasXPathNavigator.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- IHasXPathNavigator.cs 25 Oct 2005 21:33:44 -0000 1.2 +++ IHasXPathNavigator.cs 25 Nov 2005 22:09:27 -0000 1.3 @@ -7,15 +7,15 @@ namespace Mvp.Xml.Common.XPath { /// <summary> - /// Enables a class to return an XPathNavigator from the current context or position. + /// Enables a class to return an <see cref="XPathNavigator"/> from the current context or position. /// </summary> /// <remarks> - /// <para>Author: Oleg Tkachenko, ol...@xm...</para> + /// <para>Author: Oleg Tkachenko, <a href="http://www.xmllab.net">http://www.xmllab.net</a>.</para> /// </remarks> public interface IHasXPathNavigator { /// <summary> - /// Returns the XPathNavigator for the current context or position. + /// Returns the <see cref="XPathNavigator"/> for the current context or position. /// </summary> XPathNavigator GetNavigator(); } Index: XPathNavigatorIterator.cs =================================================================== RCS file: /cvsroot/mvp-xml/Common/v2/src/XPath/XPathNavigatorIterator.cs,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- XPathNavigatorIterator.cs 29 Oct 2005 21:13:10 -0000 1.3 +++ XPathNavigatorIterator.cs 25 Nov 2005 22:09:27 -0000 1.4 @@ -13,6 +13,10 @@ /// arbitrary addition of the <see cref="XPathNavigator"/> /// nodes that belong to the set. /// </summary> + /// <remarks> + /// <para>Author: Daniel Cazzulino, kz...@gm...</para> + /// <para>Contributors: Oleg Tkachenko, <a href="http://www.xmllab.net">http://www.xmllab.net</a>.</para> + /// </remarks> public class XPathNavigatorIterator : XPathNodeIterator { #region Fields & Ctors Index: SubtreeeXPathNavigator.cs =================================================================== RCS file: /cvsroot/mvp-xml/Common/v2/src/XPath/SubtreeeXPathNavigator.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- SubtreeeXPathNavigator.cs 25 Oct 2005 21:33:44 -0000 1.2 +++ SubtreeeXPathNavigator.cs 25 Nov 2005 22:09:27 -0000 1.3 @@ -9,7 +9,7 @@ namespace Mvp.Xml.Common.XPath { /// <summary> - /// Allows to navigate a subtree of an IXPathNavigable source, + /// Allows to navigate a subtree of an <see cref="IXPathNavigable"/> source, /// by limiting the scope of the navigator to that received /// at construction time. /// </summary> Index: EmptyXPathNodeIterator.cs =================================================================== RCS file: /cvsroot/mvp-xml/Common/v2/src/XPath/EmptyXPathNodeIterator.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- EmptyXPathNodeIterator.cs 30 Oct 2005 12:01:04 -0000 1.2 +++ EmptyXPathNodeIterator.cs 25 Nov 2005 22:09:27 -0000 1.3 @@ -9,8 +9,12 @@ { /// <summary> /// Empty <see cref="XPathNodeIterator"/>, used to represent empty - /// node sequence. Implemented as a singleton. + /// node sequence. Can be used to return empty nodeset out of an XSLT or XPath extension function. + /// Implemented as a singleton. /// </summary> + /// <remarks> + /// <para>Author: Oleg Tkachenko, <a href="http://www.xmllab.net">http://www.xmllab.net</a>.</para> + /// </remarks> public class EmptyXPathNodeIterator : XPathNodeIterator { /// <summary> |
From: Oleg T. <he...@us...> - 2005-11-25 22:08:45
|
Update of /cvsroot/mvp-xml/Global/v2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24005/v2 Modified Files: Global.ndoc Log Message: Index: Global.ndoc =================================================================== RCS file: /cvsroot/mvp-xml/Global/v2/Global.ndoc,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- Global.ndoc 25 Nov 2005 20:49:47 -0000 1.1 +++ Global.ndoc 25 Nov 2005 22:08:32 -0000 1.2 @@ -1,44 +1,25 @@ <project SchemaVersion="1.3"> <assemblies> - <assembly location=".\v1\bin\Release\Mvp.Xml.dll" documentation=".\v1\bin\Release\Mvp.Xml.xml" /> + <assembly location=".\bin\Release\Mvp.Xml.dll" documentation=".\bin\Release\Mvp.xml" /> </assemblies> <documenters> - <documenter name="JavaDoc"> - <property name="Title" value="Mvp.Xml API Documentation" /> - <property name="OutputDirectory" value="D:\projects\Mvp.Xml\WebSite\api\" /> - <property name="CleanIntermediates" value="True" /> - </documenter> - <documenter name="LaTeX"> - <property name="OutputDirectory" value=".\doc\" /> - <property name="TextFileFullName" value="Documentation.tex" /> - <property name="TexFileBaseName" value="Documentation" /> - <property name="LatexCompiler" value="latex" /> - <property name="TexFileFullPath" value=".\doc\Documentation.tex" /> - </documenter> - <documenter name="LinearHtml"> - <property name="OutputDirectory" value=".\doc\" /> - <property name="Title" value="An NDoc Documented Class Library" /> - </documenter> <documenter name="MSDN"> - <property name="OutputDirectory" value="D:\projects\Mvp.Xml\WebSite\api\" /> - <property name="HtmlHelpName" value="Mvp.Xml API Documentation" /> - <property name="Title" value="Mvp.Xml API Documentation" /> <property name="OutputTarget" value="Web" /> + <property name="OutputDirectory" value="D:\projects\Mvp.Xml\WebSite\api\2.0\" /> + <property name="HtmlHelpName" value="Mvp.Xml v2.0 API Documentation" /> + <property name="Title" value="Mvp.Xml v2.0 API Documentation" /> + <property name="FooterHtml" value="<div>© 2005 <a href="http://www.mvpxml.org">Mvp.Xml Project</a></div>" /> <property name="SdkLinksOnWeb" value="True" /> - <property name="FooterHtml" value="<div>©2005 <a href="http://mvp-xml.sf.net">Mvp.Xml Project</a></div>" /> <property name="DocumentProtected" value="False" /> - <property name="IncludeAssemblyVersion" value="True" /> - <property name="CopyrightText" value="Mvp.Xml Project" /> - <property name="CopyrightHref" value="http://mvp-xml.sf.net" /> + <property name="AssemblyVersionInfo" value="AssemblyVersion" /> + <property name="CopyrightText" value="(c) 2005 Mvp.Xml Project" /> + <property name="CopyrightHref" value="http://www.mvpxml.org" /> + <property name="DocumentAttributes" value="False" /> <property name="CleanIntermediates" value="True" /> </documenter> - <documenter name="VS.NET 2003"> - <property name="OutputDirectory" value=".\doc\" /> - <property name="HtmlHelpName" value="Documentation" /> - <property name="Title" value="An NDoc documented library" /> - </documenter> <documenter name="XML"> <property name="OutputFile" value=".\doc\doc.xml" /> + <property name="DocumentAttributes" value="False" /> </documenter> </documenters> </project> \ No newline at end of file |
From: Oleg T. <he...@us...> - 2005-11-25 20:49:57
|
Update of /cvsroot/mvp-xml/Global In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8718 Removed Files: Global.ndoc Log Message: --- Global.ndoc DELETED --- |
From: Oleg T. <he...@us...> - 2005-11-25 20:49:57
|
Update of /cvsroot/mvp-xml/Global/v2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8718/v2 Added Files: Global.ndoc Log Message: --- NEW FILE: Global.ndoc --- <project SchemaVersion="1.3"> <assemblies> <assembly location=".\v1\bin\Release\Mvp.Xml.dll" documentation=".\v1\bin\Release\Mvp.Xml.xml" /> </assemblies> <documenters> <documenter name="JavaDoc"> <property name="Title" value="Mvp.Xml API Documentation" /> <property name="OutputDirectory" value="D:\projects\Mvp.Xml\WebSite\api\" /> <property name="CleanIntermediates" value="True" /> </documenter> <documenter name="LaTeX"> <property name="OutputDirectory" value=".\doc\" /> <property name="TextFileFullName" value="Documentation.tex" /> <property name="TexFileBaseName" value="Documentation" /> <property name="LatexCompiler" value="latex" /> <property name="TexFileFullPath" value=".\doc\Documentation.tex" /> </documenter> <documenter name="LinearHtml"> <property name="OutputDirectory" value=".\doc\" /> <property name="Title" value="An NDoc Documented Class Library" /> </documenter> <documenter name="MSDN"> <property name="OutputDirectory" value="D:\projects\Mvp.Xml\WebSite\api\" /> <property name="HtmlHelpName" value="Mvp.Xml API Documentation" /> <property name="Title" value="Mvp.Xml API Documentation" /> <property name="OutputTarget" value="Web" /> <property name="SdkLinksOnWeb" value="True" /> <property name="FooterHtml" value="<div>©2005 <a href="http://mvp-xml.sf.net">Mvp.Xml Project</a></div>" /> <property name="DocumentProtected" value="False" /> <property name="IncludeAssemblyVersion" value="True" /> <property name="CopyrightText" value="Mvp.Xml Project" /> <property name="CopyrightHref" value="http://mvp-xml.sf.net" /> <property name="CleanIntermediates" value="True" /> </documenter> <documenter name="VS.NET 2003"> <property name="OutputDirectory" value=".\doc\" /> <property name="HtmlHelpName" value="Documentation" /> <property name="Title" value="An NDoc documented library" /> </documenter> <documenter name="XML"> <property name="OutputFile" value=".\doc\doc.xml" /> </documenter> </documenters> </project> |
From: Oleg T. <he...@us...> - 2005-11-25 20:49:57
|
Update of /cvsroot/mvp-xml/Global/v1 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8718/v1 Added Files: Global.ndoc Log Message: --- NEW FILE: Global.ndoc --- <project SchemaVersion="1.3"> <assemblies> <assembly location=".\v1\bin\Release\Mvp.Xml.dll" documentation=".\v1\bin\Release\Mvp.Xml.xml" /> </assemblies> <documenters> <documenter name="JavaDoc"> <property name="Title" value="Mvp.Xml API Documentation" /> <property name="OutputDirectory" value="D:\projects\Mvp.Xml\WebSite\api\" /> <property name="CleanIntermediates" value="True" /> </documenter> <documenter name="LaTeX"> <property name="OutputDirectory" value=".\doc\" /> <property name="TextFileFullName" value="Documentation.tex" /> <property name="TexFileBaseName" value="Documentation" /> <property name="LatexCompiler" value="latex" /> <property name="TexFileFullPath" value=".\doc\Documentation.tex" /> </documenter> <documenter name="LinearHtml"> <property name="OutputDirectory" value=".\doc\" /> <property name="Title" value="An NDoc Documented Class Library" /> </documenter> <documenter name="MSDN"> <property name="OutputDirectory" value="D:\projects\Mvp.Xml\WebSite\api\" /> <property name="HtmlHelpName" value="Mvp.Xml API Documentation" /> <property name="Title" value="Mvp.Xml API Documentation" /> <property name="OutputTarget" value="Web" /> <property name="SdkLinksOnWeb" value="True" /> <property name="FooterHtml" value="<div>©2005 <a href="http://mvp-xml.sf.net">Mvp.Xml Project</a></div>" /> <property name="DocumentProtected" value="False" /> <property name="IncludeAssemblyVersion" value="True" /> <property name="CopyrightText" value="Mvp.Xml Project" /> <property name="CopyrightHref" value="http://mvp-xml.sf.net" /> <property name="CleanIntermediates" value="True" /> </documenter> <documenter name="VS.NET 2003"> <property name="OutputDirectory" value=".\doc\" /> <property name="HtmlHelpName" value="Documentation" /> <property name="Title" value="An NDoc documented library" /> </documenter> <documenter name="XML"> <property name="OutputFile" value=".\doc\doc.xml" /> </documenter> </documenters> </project> |
From: Oleg T. <he...@us...> - 2005-11-22 12:54:45
|
Update of /cvsroot/mvp-xml/Global/v2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29479/v2 Modified Files: Global.csproj Log Message: Index: Global.csproj =================================================================== RCS file: /cvsroot/mvp-xml/Global/v2/Global.csproj,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- Global.csproj 21 Nov 2005 21:42:26 -0000 1.5 +++ Global.csproj 22 Nov 2005 12:54:38 -0000 1.6 @@ -7,8 +7,8 @@ <ProjectGuid>{2658B682-C08B-47C0-9FEC-A990876A3F7C}</ProjectGuid> <OutputType>Library</OutputType> <AppDesignerFolder>Properties</AppDesignerFolder> - <RootNamespace>Global</RootNamespace> - <AssemblyName>Global</AssemblyName> + <RootNamespace>Mvp.Xml</RootNamespace> + <AssemblyName>Mvp.Xml</AssemblyName> <SignAssembly>false</SignAssembly> <AssemblyOriginatorKeyFile> </AssemblyOriginatorKeyFile> @@ -30,7 +30,7 @@ <DefineConstants>TRACE</DefineConstants> <ErrorReport>prompt</ErrorReport> <WarningLevel>4</WarningLevel> - <DocumentationFile>bin\Release\Global.xml</DocumentationFile> + <DocumentationFile>bin\Release\Mvp.xml</DocumentationFile> </PropertyGroup> <ItemGroup> <Reference Include="System" /> |
From: Oleg T. <he...@us...> - 2005-11-22 12:44:45
|
Update of /cvsroot/mvp-xml/Common/v2/test/SubtreeeXPathNavigatorTests In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27751/v2/test/SubtreeeXPathNavigatorTests Modified Files: Tests.cs Log Message: Index: Tests.cs =================================================================== RCS file: /cvsroot/mvp-xml/Common/v2/test/SubtreeeXPathNavigatorTests/Tests.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- Tests.cs 25 Oct 2005 21:33:44 -0000 1.1 +++ Tests.cs 22 Nov 2005 12:44:33 -0000 1.2 @@ -67,7 +67,7 @@ } stopWatch.Stop(); dom += stopWatch.ElapsedMilliseconds; - + stopWatch.Reset(); GC.Collect(); System.Threading.Thread.Sleep(1000); @@ -83,6 +83,7 @@ } stopWatch.Stop(); xpath += stopWatch.ElapsedMilliseconds; + stopWatch.Reset(); } Console.WriteLine("XmlDocument transformation: {0}", dom / count); |
From: Oleg T. <he...@us...> - 2005-11-22 12:44:45
|
Update of /cvsroot/mvp-xml/Common/v2/test In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27751/v2/test Modified Files: IndexingXPathNavigatorTest.cs Log Message: Index: IndexingXPathNavigatorTest.cs =================================================================== RCS file: /cvsroot/mvp-xml/Common/v2/test/IndexingXPathNavigatorTest.cs,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- IndexingXPathNavigatorTest.cs 7 Nov 2005 13:58:18 -0000 1.3 +++ IndexingXPathNavigatorTest.cs 22 Nov 2005 12:44:33 -0000 1.4 @@ -29,8 +29,9 @@ XPathDocument doc = new XPathDocument(Globals.GetResource(Globals.NorthwindResource)); //XmlDocument doc = new XmlDocument(); //doc.Load("test/northwind.xml"); - stopWatch.Stop(); + stopWatch.Stop(); Console.WriteLine("Loading XML document: {0, 6:f2} ms", stopWatch.ElapsedMilliseconds); + stopWatch.Reset(); XPathNavigator nav = doc.CreateNavigator(); XPathExpression expr = nav.Compile("/ROOT/CustomerIDs/OrderIDs/Item[OrderID=' 10330']/ShipAddress"); @@ -45,15 +46,18 @@ doc.CreateNavigator()); stopWatch.Stop(); Console.WriteLine("Building IndexingXPathNavigator: {0, 6:f2} ms", stopWatch.ElapsedMilliseconds); + stopWatch.Reset(); stopWatch.Start(); inav.AddKey("orderKey", "OrderIDs/Item", "OrderID"); stopWatch.Stop(); - Console.WriteLine("Adding keys: {0, 6:f2} ms", stopWatch.ElapsedMilliseconds); + Console.WriteLine("Adding keys: {0, 6:f2} ms", stopWatch.ElapsedMilliseconds); + stopWatch.Reset(); XPathExpression expr2 = inav.Compile("key('orderKey', ' 10330')/ShipAddress"); stopWatch.Start(); inav.BuildIndexes(); stopWatch.Stop(); - Console.WriteLine("Indexing: {0, 6:f2} ms", stopWatch.ElapsedMilliseconds); + Console.WriteLine("Indexing: {0, 6:f2} ms", stopWatch.ElapsedMilliseconds); + stopWatch.Reset(); Console.WriteLine("Indexed selection, warming..."); SelectIndexedNodes(inav, repeat, stopWatch, expr2); @@ -74,6 +78,7 @@ stopWatch.Stop(); Console.WriteLine("Regular selection: {0} times, total time {1, 6:f2} ms, {2} nodes selected", repeat, stopWatch.ElapsedMilliseconds, counter); + stopWatch.Reset(); } private static void SelectIndexedNodes(XPathNavigator nav, int repeat, Stopwatch stopWatch, XPathExpression expr) @@ -89,6 +94,7 @@ stopWatch.Stop(); Console.WriteLine("Indexed selection: {0} times, total time {1, 6:f2} ms, {2} nodes selected", repeat, stopWatch.ElapsedMilliseconds, counter); + stopWatch.Reset(); } } } \ No newline at end of file |
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 |
From: Oleg T. <he...@us...> - 2005-11-22 12:11:10
|
Update of /cvsroot/mvp-xml/EXSLT/v2/src/Exslt In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19633/v2/src/Exslt Modified Files: ExsltTransform.cs Log Message: Index: ExsltTransform.cs =================================================================== RCS file: /cvsroot/mvp-xml/EXSLT/v2/src/Exslt/ExsltTransform.cs,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- ExsltTransform.cs 22 Nov 2005 11:11:18 -0000 1.4 +++ ExsltTransform.cs 22 Nov 2005 12:10:51 -0000 1.5 @@ -240,7 +240,7 @@ #region Load() method Overloads /// <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"/>), @@ -249,14 +249,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.xslTransform.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.xslTransform.Load(stylesheet); } @@ -265,13 +265,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> @@ -284,11 +284,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> @@ -301,11 +301,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> |
From: Oleg T. <he...@us...> - 2005-11-22 12:01:33
|
Update of /cvsroot/mvp-xml/XInclude/v1/test/tests In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16089/v1/test/tests Modified Files: document.xml Log Message: Index: document.xml =================================================================== RCS file: /cvsroot/mvp-xml/XInclude/v1/test/tests/document.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- document.xml 29 Oct 2005 11:51:35 -0000 1.2 +++ document.xml 22 Nov 2005 12:01:07 -0000 1.3 @@ -1,6 +1,6 @@ <?xml version="1.0"?> <document xmlns:xi="http://www.w3.org/2003/XInclude"> <p>120 Mz is adequate for an average home user.</p> - <xi:include hre2f="disclaimer.xml" parse="xml"><foo></foo></xi:include> + <xi:include href="disclaimer.xml" parse="xml"><foo></foo></xi:include> foo </document> |
From: Oleg T. <he...@us...> - 2005-11-22 11:53:17
|
Update of /cvsroot/mvp-xml/EXSLT/v1/test/ExsltTest/results/EXSLT/Random In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14068/v1/test/ExsltTest/results/EXSLT/Random Modified Files: random-sequence.xml Log Message: Index: random-sequence.xml =================================================================== RCS file: /cvsroot/mvp-xml/EXSLT/v1/test/ExsltTest/results/EXSLT/Random/random-sequence.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- random-sequence.xml 19 Jul 2005 19:47:01 -0000 1.1 +++ random-sequence.xml 22 Nov 2005 11:53:07 -0000 1.2 @@ -1,10 +1,9 @@ -<out> +<out> <test1>10</test1> <test2>1</test2> <test3>0</test3> <test4>4</test4> <test5>1</test5> <test6>5</test6> - <test7>5</test7> <test8>5</test8> </out> \ No newline at end of file |
From: Oleg T. <he...@us...> - 2005-11-22 11:53:17
|
Update of /cvsroot/mvp-xml/EXSLT/v1/test/ExsltTest/tests/EXSLT/Random In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14068/v1/test/ExsltTest/tests/EXSLT/Random Modified Files: random-sequence.xslt Log Message: Index: random-sequence.xslt =================================================================== RCS file: /cvsroot/mvp-xml/EXSLT/v1/test/ExsltTest/tests/EXSLT/Random/random-sequence.xslt,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- random-sequence.xslt 19 Jul 2005 19:47:20 -0000 1.1 +++ random-sequence.xslt 22 Nov 2005 11:53:07 -0000 1.2 @@ -21,10 +21,7 @@ </test5> <test6> <xsl:value-of select="count(random:random-sequence(5, 0))"/> - </test6> - <test7> - <xsl:value-of select="count(random:random-sequence(5, 5 div 0))"/> - </test7> + </test6> <test8> <xsl:value-of select="count(random:random-sequence(5, -0.5))"/> </test8> |
From: Oleg T. <he...@us...> - 2005-11-22 11:11:38
|
Update of /cvsroot/mvp-xml/EXSLT/v2/src/Exslt In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4773/v2/src/Exslt Modified Files: ExsltTransform.cs Log Message: Index: ExsltTransform.cs =================================================================== RCS file: /cvsroot/mvp-xml/EXSLT/v2/src/Exslt/ExsltTransform.cs,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- ExsltTransform.cs 30 Oct 2005 13:50:54 -0000 1.3 +++ ExsltTransform.cs 22 Nov 2005 11:11:18 -0000 1.4 @@ -76,6 +76,7 @@ /// * http://gotdotnet.com/exslt/strings /// * http://gotdotnet.com/exslt/dynamic /// </remarks> + [Obsolete("This class has been deprecated. Please use Mvp.Xml.Common.Xsl.MvpXslTransform instead.")] public class ExsltTransform { @@ -237,20 +238,43 @@ #endregion #region Load() method Overloads - /// <summary> Loads the XSLT stylesheet contained in the IXPathNavigable</summary> - public void Load(IXPathNavigable ixn) { this.xslTransform.Load(ixn); } + /// <summary> + /// Loads and compiles the style sheet contained in the <see cref="IXPathNavigable"/> object. + /// See also <see cref="XslCompiledTransform(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"/>), + /// or an <see cref="XPathDocument"/> containing the style sheet.</param> + public void Load(IXPathNavigable stylesheet) { this.xslTransform.Load(stylesheet); } - /// <summary> Loads the XSLT stylesheet specified by a URL</summary> - public void Load(string s) { this.xslTransform.Load(s); } + /// <summary> + /// Loads and compiles the style sheet located at the specified URI. + /// See also <see cref="XslCompiledTransform(String)"/>. + /// </summary> + /// <param name="stylesheetUri">The URI of the style sheet.</param> + public void Load(string stylesheetUri) { this.xslTransform.Load(stylesheetUri); } - /// <summary> Loads the XSLT stylesheet contained in the XmlReader</summary> - public void Load(XmlReader reader) { this.xslTransform.Load(reader); } + /// <summary> + /// Compiles the style sheet contained in the <see cref="XmlReader"/>. + /// See also <see cref="XslCompiledTransform(XmlReader)"/>. + /// </summary> + /// <param name="stylesheet">An <see cref="XmlReader"/> containing the style sheet.</param> + public void Load(XmlReader stylesheet) { this.xslTransform.Load(stylesheet); } /// <summary> - /// Compiles the XSLT style sheet contained in the IXPathNavigable. - /// The XmlResolver resolves any XSLT import or include elements and the + /// 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. - /// </summary> + /// See also <see cref="XslCompiledTransform(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> + /// <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> public void Load(IXPathNavigable stylesheet, XsltSettings settings, XmlResolver stylesheetResolver) { this.xslTransform.Load(stylesheet, settings, stylesheetResolver); @@ -258,19 +282,33 @@ /// <summary> /// Loads and compiles the XSLT style sheet specified by the URI. - /// The XmlResolver resolves any XSLT import or include elements and the + /// 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. - /// </summary> + /// See also <see cref="XslCompiledTransform(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> + /// <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> public void Load(string stylesheetUri, XsltSettings settings, XmlResolver stylesheetResolver) { this.xslTransform.Load(stylesheetUri, settings, stylesheetResolver); } /// <summary> - /// Compiles the XSLT style sheet contained in the XmlReader. - /// The XmlResolver resolves any XSLT import or include elements and the + /// 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. - /// </summary> + /// See also <see cref="XslCompiledTransform(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> + /// <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> public void Load(XmlReader stylesheet, XsltSettings settings, XmlResolver stylesheetResolver) { this.xslTransform.Load(stylesheet, settings, stylesheetResolver); |
From: Oleg T. <he...@us...> - 2005-11-21 22:07:42
|
Update of /cvsroot/mvp-xml/XPointer/v2/test In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26601/v2/test Modified Files: XPointerTest.csproj Log Message: Index: XPointerTest.csproj =================================================================== RCS file: /cvsroot/mvp-xml/XPointer/v2/test/XPointerTest.csproj,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- XPointerTest.csproj 28 Oct 2005 21:51:34 -0000 1.3 +++ XPointerTest.csproj 21 Nov 2005 22:07:34 -0000 1.4 @@ -74,10 +74,6 @@ <ErrorReport>prompt</ErrorReport> </PropertyGroup> <ItemGroup> - <Reference Include="Mvp.Xml.Common.Test, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL"> - <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\Common\v2\test\bin\Debug\Mvp.Xml.Common.Test.dll</HintPath> - </Reference> <Reference Include="nunit.framework"> <Name>nunit.framework</Name> <HintPath>..\..\..\..\..\Program Files\NUnit 2.2\bin\nunit.framework.dll</HintPath> @@ -113,6 +109,14 @@ </None> </ItemGroup> <ItemGroup> + <ProjectReference Include="..\..\..\Common\v2\src\Common.csproj"> + <Project>{12B8D3E3-4362-4E91-A3D2-37473083B47A}</Project> + <Name>Common</Name> + </ProjectReference> + <ProjectReference Include="..\..\..\Common\v2\test\CommonTest.csproj"> + <Project>{17955FFF-E5FC-43B8-B390-86E370658CB1}</Project> + <Name>CommonTest</Name> + </ProjectReference> <ProjectReference Include="..\src\XPointer.csproj"> <Project>{E0E9C344-ABB5-4CE9-A055-DECB508298E7}</Project> <Name>XPointer</Name> |
From: Oleg T. <he...@us...> - 2005-11-21 22:07:34
|
Update of /cvsroot/mvp-xml/XInclude/v2/test In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26546/v2/test Modified Files: XIncludeTest.csproj Log Message: Index: XIncludeTest.csproj =================================================================== RCS file: /cvsroot/mvp-xml/XInclude/v2/test/XIncludeTest.csproj,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- XIncludeTest.csproj 29 Oct 2005 11:51:35 -0000 1.2 +++ XIncludeTest.csproj 21 Nov 2005 22:07:23 -0000 1.3 @@ -88,6 +88,10 @@ <Reference Include="System.Xml"> <Name>System.XML</Name> </Reference> + <ProjectReference Include="..\..\..\Common\v2\src\Common.csproj"> + <Project>{12B8D3E3-4362-4E91-A3D2-37473083B47A}</Project> + <Name>Common</Name> + </ProjectReference> <ProjectReference Include="..\src\XInclude.csproj"> <Name>XInclude</Name> <Project>{3750FAB1-FD0E-425A-9DAA-87543A556319}</Project> |
From: Oleg T. <he...@us...> - 2005-11-21 22:07:17
|
Update of /cvsroot/mvp-xml/Global/v2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26489/v2 Modified Files: Mvp.Xml.sln Log Message: Index: Mvp.Xml.sln =================================================================== RCS file: /cvsroot/mvp-xml/Global/v2/Mvp.Xml.sln,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- Mvp.Xml.sln 30 Oct 2005 13:55:53 -0000 1.1 +++ Mvp.Xml.sln 21 Nov 2005 22:07:09 -0000 1.2 @@ -12,6 +12,9 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "XPointerTest", "..\..\XPointer\v2\test\XPointerTest.csproj", "{79267547-881D-45DA-90B7-17CAC2EE8814}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ExsltTest", "..\..\EXSLT\v2\test\ExsltTest\ExsltTest.csproj", "{AC8B9015-E508-4E40-8E6D-C4FCF52CE4B0}" + ProjectSection(ProjectDependencies) = postProject + {BA694D9F-6B1E-4038-AC81-BF1640C07D90} = {BA694D9F-6B1E-4038-AC81-BF1640C07D90} + EndProjectSection EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Common", "..\..\Common\v2\src\Common.csproj", "{12B8D3E3-4362-4E91-A3D2-37473083B47A}" EndProject |
From: Oleg T. <he...@us...> - 2005-11-21 22:07:10
|
Update of /cvsroot/mvp-xml/Common/v2/test In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26429/v2/test Modified Files: CommonTest.csproj Log Message: Index: CommonTest.csproj =================================================================== RCS file: /cvsroot/mvp-xml/Common/v2/test/CommonTest.csproj,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- CommonTest.csproj 21 Nov 2005 20:49:52 -0000 1.8 +++ CommonTest.csproj 21 Nov 2005 22:06:58 -0000 1.9 @@ -74,10 +74,6 @@ <ErrorReport>prompt</ErrorReport> </PropertyGroup> <ItemGroup> - <Reference Include="Mvp.Xml.Exslt, Version=2.0.2148.42336, Culture=neutral, PublicKeyToken=dd92544dc05f5671, processorArchitecture=MSIL"> - <SpecificVersion>False</SpecificVersion> - <HintPath>..\..\..\EXSLT\v2\src\Exslt\Mvp.Xml.Exslt.dll</HintPath> - </Reference> <Reference Include="nunit.framework"> <Name>nunit.framework</Name> <HintPath>..\..\..\..\..\Program Files\NUnit 2.2\bin\nunit.framework.dll</HintPath> @@ -98,6 +94,10 @@ <Reference Include="System.Xml"> <Name>System.XML</Name> </Reference> + <ProjectReference Include="..\..\..\EXSLT\v2\src\Exslt\Exslt.csproj"> + <Project>{BA694D9F-6B1E-4038-AC81-BF1640C07D90}</Project> + <Name>Exslt</Name> + </ProjectReference> <ProjectReference Include="..\src\Common.csproj"> <Name>Common</Name> <Project>{12B8D3E3-4362-4E91-A3D2-37473083B47A}</Project> |
From: Oleg T. <he...@us...> - 2005-11-21 21:42:33
|
Update of /cvsroot/mvp-xml/Global/v2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20661/v2 Modified Files: Global.csproj Log Message: Index: Global.csproj =================================================================== RCS file: /cvsroot/mvp-xml/Global/v2/Global.csproj,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- Global.csproj 21 Nov 2005 21:11:19 -0000 1.4 +++ Global.csproj 21 Nov 2005 21:42:26 -0000 1.5 @@ -120,15 +120,6 @@ <Compile Include="..\..\Common\v2\src\XPath\XPathVariable.cs"> <Link>Common\XPath\XPathVariable.cs</Link> </Compile> - <Compile Include="..\..\Common\v2\src\Xsl\IXmlTransform.cs"> - <Link>Common\Xsl\IXmlTransform.cs</Link> - </Compile> - <Compile Include="..\..\Common\v2\src\Xsl\MvpXslTransform.cs"> - <Link>Common\Xsl\MvpXslTransform.cs</Link> - </Compile> - <Compile Include="..\..\Common\v2\src\Xsl\XslReader.cs"> - <Link>Common\Xsl\XslReader.cs</Link> - </Compile> <Compile Include="..\..\EXSLT\v2\src\Exslt\ExsltContext.cs"> <Link>EXSLT\ExsltContext.cs</Link> </Compile> @@ -183,6 +174,15 @@ <Compile Include="..\..\EXSLT\v2\src\Exslt\MultiOutput\OutputState.cs"> <Link>EXSLT\MultiOutput\OutputState.cs</Link> </Compile> + <Compile Include="..\..\EXSLT\v2\src\Exslt\Xsl\IXmlTransform.cs"> + <Link>Common\Xsl\IXmlTransform.cs</Link> + </Compile> + <Compile Include="..\..\EXSLT\v2\src\Exslt\Xsl\MvpXslTransform.cs"> + <Link>Common\Xsl\MvpXslTransform.cs</Link> + </Compile> + <Compile Include="..\..\EXSLT\v2\src\Exslt\Xsl\XslReader.cs"> + <Link>Common\Xsl\XslReader.cs</Link> + </Compile> <Compile Include="..\..\XInclude\v2\src\SR.cs"> <Link>XInclude\SR.cs</Link> </Compile> @@ -255,6 +255,7 @@ <None Include="Common\.cvsignore" /> <None Include="Common\Serialization\.cvsignore" /> <None Include="Common\XPath\.cvsignore" /> + <None Include="Common\Xsl\.cvsignore" /> <None Include="EXSLT\.cvsignore" /> <None Include="EXSLT\MultiOutput\.cvsignore" /> <None Include="XInclude\.cvsignore" /> |
From: Oleg T. <he...@us...> - 2005-11-21 21:36:21
|
Update of /cvsroot/mvp-xml/XPointer/v2/src/Common/XPath In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17684/v2/src/Common/XPath Removed Files: dummy.txt Log Message: --- dummy.txt DELETED --- |
From: Oleg T. <he...@us...> - 2005-11-21 21:36:13
|
Update of /cvsroot/mvp-xml/XPointer/v2/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17684/v2/src Modified Files: XPointer.csproj Log Message: Index: XPointer.csproj =================================================================== RCS file: /cvsroot/mvp-xml/XPointer/v2/src/XPointer.csproj,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- XPointer.csproj 21 Nov 2005 16:31:45 -0000 1.6 +++ XPointer.csproj 21 Nov 2005 21:36:05 -0000 1.7 @@ -85,44 +85,6 @@ </Reference> </ItemGroup> <ItemGroup> - <Compile Include="..\..\..\Common\v2\src\SR.cs"> - <Link>Common\SR.cs</Link> - <SubType>Code</SubType> - </Compile> - <Compile Include="..\..\..\Common\v2\src\XmlBaseAwareXmlTextReader.cs"> - <Link>Common\XPath\XmlBaseAwareXmlTextReader.cs</Link> - </Compile> - <Compile Include="..\..\..\Common\v2\src\XmlNamespaces.cs"> - <Link>Common\XmlNamespaces.cs</Link> - <SubType>Code</SubType> - </Compile> - <Compile Include="..\..\..\Common\v2\src\XmlNodeListFactory.cs"> - <Link>Common\XmlNodeListFactory.cs</Link> - <SubType>Code</SubType> - </Compile> - <Compile Include="..\..\..\Common\v2\src\XmlPrefix.cs"> - <Link>Common\XmlPrefix.cs</Link> - <SubType>Code</SubType> - </Compile> - <Compile Include="..\..\..\Common\v2\src\XPath\DynamicContext.cs"> - <Link>Common\XPath\DynamicContext.cs</Link> - <SubType>Code</SubType> - </Compile> - <Compile Include="..\..\..\Common\v2\src\XPath\IHasXPathNavigator.cs"> - <Link>Common\XPath\IHasXPathNavigator.cs</Link> - <SubType>Code</SubType> - </Compile> - <Compile Include="..\..\..\Common\v2\src\XPath\SubtreeeXPathNavigator.cs"> - <Link>Common\XPath\SubtreeeXPathNavigator.cs</Link> - </Compile> - <Compile Include="..\..\..\Common\v2\src\XPath\XPathCache.cs"> - <Link>Common\XPath\XPathCache.cs</Link> - <SubType>Code</SubType> - </Compile> - <Compile Include="..\..\..\Common\v2\src\XPath\XPathVariable.cs"> - <Link>Common\XPath\XPathVariable.cs</Link> - <SubType>Code</SubType> - </Compile> <Compile Include="AssemblyInfo.cs"> <SubType>Code</SubType> </Compile> @@ -170,16 +132,17 @@ <SubType>Code</SubType> </Compile> <Content Include="changelog.txt" /> - <EmbeddedResource Include="..\..\..\Common\v2\src\SR.resx"> - <Link>Common\SR.resx</Link> - <DependentUpon>SR.cs</DependentUpon> - <SubType>Designer</SubType> - </EmbeddedResource> <EmbeddedResource Include="SR.resx"> <DependentUpon>SR.cs</DependentUpon> <SubType>Designer</SubType> </EmbeddedResource> </ItemGroup> + <ItemGroup> + <ProjectReference Include="..\..\..\Common\v2\src\Common.csproj"> + <Project>{12B8D3E3-4362-4E91-A3D2-37473083B47A}</Project> + <Name>Common</Name> + </ProjectReference> + </ItemGroup> <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> <PropertyGroup> <PreBuildEvent> |
From: Oleg T. <he...@us...> - 2005-11-21 21:34:13
|
Update of /cvsroot/mvp-xml/XInclude/v2/src/XPointer In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17126/v2/src/XPointer Removed Files: dummy.txt Log Message: --- dummy.txt DELETED --- |
From: Oleg T. <he...@us...> - 2005-11-21 21:34:12
|
Update of /cvsroot/mvp-xml/XInclude/v2/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17126/v2/src Modified Files: XInclude.csproj Log Message: Index: XInclude.csproj =================================================================== RCS file: /cvsroot/mvp-xml/XInclude/v2/src/XInclude.csproj,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- XInclude.csproj 30 Oct 2005 13:56:22 -0000 1.3 +++ XInclude.csproj 21 Nov 2005 21:33:57 -0000 1.4 @@ -86,105 +86,6 @@ </Reference> </ItemGroup> <ItemGroup> - <Compile Include="..\..\..\Common\v2\src\SR.cs"> - <Link>Common\SR.cs</Link> - <SubType>Code</SubType> - </Compile> - <Compile Include="..\..\..\Common\v2\src\XmlBaseAwareXmlTextReader.cs"> - <Link>Common\XmlBaseAwareXmlTextReader.cs</Link> - <SubType>Code</SubType> - </Compile> - <Compile Include="..\..\..\Common\v2\src\XmlNamespaces.cs"> - <Link>Common\XmlNamespaces.cs</Link> - <SubType>Code</SubType> - </Compile> - <Compile Include="..\..\..\Common\v2\src\XmlNodeListFactory.cs"> - <Link>Common\XmlNodeListFactory.cs</Link> - <SubType>Code</SubType> - </Compile> - <Compile Include="..\..\..\Common\v2\src\XmlPrefix.cs"> - <Link>Common\XmlPrefix.cs</Link> - <SubType>Code</SubType> - </Compile> - <Compile Include="..\..\..\Common\v2\src\XPath\DynamicContext.cs"> - <Link>Common\XPath\DynamicContext.cs</Link> - <SubType>Code</SubType> - </Compile> - <Compile Include="..\..\..\Common\v2\src\XPath\IHasXPathNavigator.cs"> - <Link>Common\XPath\IHasXPathNavigator.cs</Link> - <SubType>Code</SubType> - </Compile> - <Compile Include="..\..\..\Common\v2\src\XPath\SubtreeeXPathNavigator.cs"> - <Link>Common\XPath\SubtreeeXPathNavigator.cs</Link> - </Compile> - <Compile Include="..\..\..\Common\v2\src\XPath\XPathCache.cs"> - <Link>Common\XPath\XPathCache.cs</Link> - <SubType>Code</SubType> - </Compile> - <Compile Include="..\..\..\Common\v2\src\XPath\XPathVariable.cs"> - <Link>Common\XPath\XPathVariable.cs</Link> - <SubType>Code</SubType> - </Compile> - <Compile Include="..\..\..\XPointer\v2\src\ElementSchemaPointerPart.cs"> - <Link>XPointer\ElementSchemaPointerPart.cs</Link> - <SubType>Code</SubType> - </Compile> - <Compile Include="..\..\..\XPointer\v2\src\LexUtils.cs"> - <Link>XPointer\LexUtils.cs</Link> - <SubType>Code</SubType> - </Compile> - <Compile Include="..\..\..\XPointer\v2\src\Pointer.cs"> - <Link>XPointer\Pointer.cs</Link> - <SubType>Code</SubType> - </Compile> - <Compile Include="..\..\..\XPointer\v2\src\PointerPart.cs"> - <Link>XPointer\PointerPart.cs</Link> - <SubType>Code</SubType> - </Compile> - <Compile Include="..\..\..\XPointer\v2\src\SchemaBasedPointer.cs"> - <Link>XPointer\SchemaBasedPointer.cs</Link> - <SubType>Code</SubType> - </Compile> - <Compile Include="..\..\..\XPointer\v2\src\ShorthandPointer.cs"> - <Link>XPointer\ShorthandPointer.cs</Link> - <SubType>Code</SubType> - </Compile> - <Compile Include="..\..\..\XPointer\v2\src\SR.cs"> - <Link>XPointer\SR.cs</Link> - <SubType>Code</SubType> - </Compile> - <Compile Include="..\..\..\XPointer\v2\src\XmlnsSchemaPointerPart.cs"> - <Link>XPointer\XmlnsSchemaPointerPart.cs</Link> - <SubType>Code</SubType> - </Compile> - <Compile Include="..\..\..\XPointer\v2\src\XPath1SchemaPointerPart.cs"> - <Link>XPointer\XPath1SchemaPointerPart.cs</Link> - <SubType>Code</SubType> - </Compile> - <Compile Include="..\..\..\XPointer\v2\src\XPointerException.cs"> - <Link>XPointer\XPointerException.cs</Link> - <SubType>Code</SubType> - </Compile> - <Compile Include="..\..\..\XPointer\v2\src\XPointerLexer.cs"> - <Link>XPointer\XPointerLexer.cs</Link> - <SubType>Code</SubType> - </Compile> - <Compile Include="..\..\..\XPointer\v2\src\XPointerParser.cs"> - <Link>XPointer\XPointerParser.cs</Link> - <SubType>Code</SubType> - </Compile> - <Compile Include="..\..\..\XPointer\v2\src\XPointerReader.cs"> - <Link>XPointer\XPointerReader.cs</Link> - <SubType>Code</SubType> - </Compile> - <Compile Include="..\..\..\XPointer\v2\src\XPointerSchema.cs"> - <Link>XPointer\XPointerSchema.cs</Link> - <SubType>Code</SubType> - </Compile> - <Compile Include="..\..\..\XPointer\v2\src\XPointerSchemaPointerPart.cs"> - <Link>XPointer\XPointerSchemaPointerPart.cs</Link> - <SubType>Code</SubType> - </Compile> <Compile Include="AssemblyInfo.cs"> <SubType>Code</SubType> </Compile> @@ -209,21 +110,21 @@ <Compile Include="XIncludingReaderState.cs"> <SubType>Code</SubType> </Compile> - <EmbeddedResource Include="..\..\..\Common\v2\src\SR.resx"> - <Link>Common\SR.resx</Link> - <DependentUpon>SR.cs</DependentUpon> - <SubType>Designer</SubType> - </EmbeddedResource> - <EmbeddedResource Include="..\..\..\XPointer\v2\src\SR.resx"> - <Link>XPointer\SR.resx</Link> - <DependentUpon>SR.cs</DependentUpon> - <SubType>Designer</SubType> - </EmbeddedResource> <EmbeddedResource Include="SR.resx"> <DependentUpon>SR.cs</DependentUpon> <SubType>Designer</SubType> </EmbeddedResource> </ItemGroup> + <ItemGroup> + <ProjectReference Include="..\..\..\Common\v2\src\Common.csproj"> + <Project>{12B8D3E3-4362-4E91-A3D2-37473083B47A}</Project> + <Name>Common</Name> + </ProjectReference> + <ProjectReference Include="..\..\..\XPointer\v2\src\XPointer.csproj"> + <Project>{E0E9C344-ABB5-4CE9-A055-DECB508298E7}</Project> + <Name>XPointer</Name> + </ProjectReference> + </ItemGroup> <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> <PropertyGroup> <PreBuildEvent> |
From: Oleg T. <he...@us...> - 2005-11-21 21:34:11
|
Update of /cvsroot/mvp-xml/XInclude/v2/src/Common/XPath In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17126/v2/src/Common/XPath Removed Files: dummy.txt Log Message: --- dummy.txt DELETED --- |