From: Oleg T. <he...@us...> - 2005-11-02 13:21:51
|
Update of /cvsroot/mvp-xml/WebSite/xinclude In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1958/xinclude Modified Files: index.html Log Message: Index: index.html =================================================================== RCS file: /cvsroot/mvp-xml/WebSite/xinclude/index.html,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- index.html 20 Jul 2005 20:53:29 -0000 1.7 +++ index.html 2 Nov 2005 13:21:27 -0000 1.8 @@ -29,8 +29,8 @@ <p>XInclude.NET has been thoroughly tested against <a href="http://www.w3.org/XML/Test/XInclude/">XML Inclusions (XInclude) Version 1.0, W3C Conformance Test Suite (2004-11-03)</a> under -Microsoft .NET 1.0 and 1.1 on Windows 2000 and Windows Server 2003.<br> -</p> +Microsoft .NET 1.0, 1.1 + and 2.0 on Windows 2000, Windows XP and Windows Server 2003.</p> <p style="font-weight: bold;">Contents:</p> <ol> <li><a href="#mozTocId537061">Requirements</a></li> @@ -43,31 +43,28 @@ <li><a href="#mozTocId893216">XPointer</a></li> <li><a href="#mozTocId299036">Conformance Issues </a></li> <li><a href="#mozTocId670936">License</a></li> - <li><a href="#mozTocId666501">Bug reports</a></li> - <li><a href="#mozTocId594662">Feedback</a></li> + <li><a href="#mozTocId666501">Support</a></li> </ol> <h2><a class="mozTocH2" name="mozTocId537061"></a>1. Requirements</h2> <p>XInclude.NET module as well as a whole Mvp.Xml library is .NET Framework application and requires <a href="http://msdn.microsoft.com/netframework/" target="_top"> .NET -Framework</a> version 1.0 or 1.1 to be installed.<br> +Framework</a> version 1.X or 2.0 to be installed.<br> </p> <h2><a class="mozTocH2" name="mozTocId172804"></a>2. Download</h2> Go to the <a href="http://sourceforge.net/project/showfiles.php?group_id=102352">Downloads</a> -page. You can download XInclude.NET module separately (with no -dependencies on other modules) or as part of the Mvp.Xml library -release (all modules in one dll).<br> +page. + XInclude.NET module is a part of the Mvp.Xml library release.<br> <h2><a class="mozTocH2" name="mozTocId593736"></a>3. Installation and Documentation</h2> -<p>Find precompiled <font style="font-family: monospace;" - face="Courier New">Mvp.Xml.XInclude.dll</font> (or <span - style="font-family: monospace;">Mvp.Xml.dll</span> if you've -downloaded full Mvp.Xml library) library in the "<font +<p>Find precompiled <span + style="font-family: monospace;">Mvp.Xml.dll</span> assembly + in the "<font style="font-family: monospace;" face="Courier New">bin</font>" directiory. The "<font style="font-family: monospace;" face="Courier New">src</font>" directory contains XInclude.NET sources -in Visual Studio .NET 2003 solution form. The documentation can be +in Visual Studio .NET 2003 (XInclude/src/v1) and Visual Studio 2005 (XInclude/src/v2) solution form. The documentation can be found in the "<span style="font-family: monospace;">doc</span>" directory (<a href="http://mvp-xml.sourceforge.net/xinclude/index.html">online version</a>). Test cases can be @@ -97,7 +94,14 @@ xpointer() Scheme</a></li> </ul> <h2><a class="mozTocH2" name="mozTocId209347"></a>4. History</h2> -Done since 1.2 release:<br> +Done in 2.0 release:<br /> + <ul> + <li>The codebase has been ported to .NET 2.0.</li> + <li>A <a href="http://sourceforge.net/tracker/index.php?func=detail&aid=1236851&group_id=102352&atid=633328"> + bug</a> with custom XmlResolver has been fixed.</li> + </ul> + <br /> + Done since 1.2 release:<br> <ul> <li>The new home - <a href="http://mvp-xml.sf.net/">Mvp.Xml project</a> and so the new namespace - <a href="../api/Mvp.Xml.XInclude.html"><span @@ -170,7 +174,7 @@ <pre>XmlReader reader = new XIncludingReader("source.xml");<br>while (reader.Read()) {<br> ... <br> </pre> <p>XML inclusion while building <span style="font-family: monospace;">XmlDocument</span>:</p> <p><code></code></p> -<pre>XmlReader reader = new XIncludingReader(new XmlTextReader("source.xml"));<br>XmlDocument doc = new XmlDocument(); <br>doc.Load(reader);<br>... <br> </pre> +<pre>XmlReader reader = new XIncludingReader(XmlReader.Create("source.xml"));<br>XmlDocument doc = new XmlDocument(); <br>doc.Load(reader);<br>... <br> </pre> <p>XML inclusion before an XSL Transformation:</p> <p><code></code></p> <pre>XslTransform xslt = new XslTransform();<br>xslt.Load("stylesheet.xsl");<br>XmlReader reader = new XIncludingReader("source.xml");<br>XPathDocument xdoc = new XPathDocument(reader);<br>xslt.Transform(xdoc, null, new StreamWriter("result.xml"));<br>...</pre> @@ -256,30 +260,27 @@ </ol> <h2><a class="mozTocH2" name="mozTocId670936"></a>9. License</h2> <p>XInclude.NET as part of the <a href="http://mvp-xml.sf.net/">Mvp.Xml -project</a> is subject to the <a href="../license.html">Common -Public License</a> - <a +project</a> is subject to the <a href="../license.html">GPL License</a> - <a href="http://www.opensource.org/licenses/index.php">OSI approved</a> free open-source license. -It's distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR -CONDITIONS OF ANY -KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY -WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR -FITNESS FOR A PARTICULAR PURPOSE.</p> -<h2><a class="mozTocH2" name="mozTocId666501"></a>10. Bug reports</h2> -<p>Please feel free to report any bugs to the Mvp.Xml project's <a +</p> +<h2><a class="mozTocH2" name="mozTocId666501"></a>10. Support</h2> +<p> + You can get support on using XInclude.NET module using the following options:</p> + <ul> + <li><a href="http://www.xmllab.net/Forum/tabid/70/Default.aspx">XInclude.NET Forum</a> + at the <a href="http://www.xmllab.net/">XML Lab</a></li> + <li>Mailing list: <a href="https://lists.sourceforge.net/mailman/listinfo/mvp-xml-help"> + mvp-xml-help</a> (general discussion list for Mvp.Xml users), <a href="http://sourceforge.net/mailarchive/forum.php?forum=mvp-xml-help"> + (online +archive)</a>. </li> + <li>Please feel free to report any bugs to the Mvp.Xml project's <a href="http://sourceforge.net/tracker/?group_id=102352&atid=633328"> -Bug Tracker</a>. Feature requests are also <a +Bug Tracker</a>. </li> + <li>Feature requests are also <a href="http://sourceforge.net/tracker/?group_id=102352&atid=633331">welcome</a>.<br> -</p> -<h2><a class="mozTocH2" name="mozTocId594662"></a>11. Feedback</h2> -<p>We appreciate any kind of feedback, feel free to post any questions -or comments about XInclude.NET module and Mvp.Xml project in general in -the <a - href="https://lists.sourceforge.net/mailman/listinfo/mvp-xml-help">mvp-xml-help</a> -mailing list <a - href="http://sourceforge.net/mailarchive/forum.php?forum=mvp-xml-help">(online -archive)</a>. -</p> + </li> + </ul> <hr style="width: 100%; height: 2px;"> <p> The project is hosted at <a target="_blank" href="http://www.sourceforge.net"> |