Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'docs/org.eclipse.wst.xsl.doc/html/general/general.html')
-rw-r--r--docs/org.eclipse.wst.xsl.doc/html/general/general.html27
1 files changed, 0 insertions, 27 deletions
diff --git a/docs/org.eclipse.wst.xsl.doc/html/general/general.html b/docs/org.eclipse.wst.xsl.doc/html/general/general.html
deleted file mode 100644
index 0c6f17d..0000000
--- a/docs/org.eclipse.wst.xsl.doc/html/general/general.html
+++ /dev/null
@@ -1,27 +0,0 @@
-<html><head><META http-equiv="Content-Type" content="text/html; charset=UTF-8"><title>Chapter&nbsp;1.&nbsp;General</title><meta content="DocBook XSL Stylesheets V1.74.0" name="generator"><link rel="home" href="../index.html" title="XSL Tools User Documentation"><link rel="up" href="../index.html" title="XSL Tools User Documentation"><link rel="prev" href="../index.html" title="XSL Tools User Documentation"><link rel="next" href="../editor/xsleditor.html" title="Chapter&nbsp;2.&nbsp;XSL Editing"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="chapter" lang="en"><div class="titlepage"><div><div><h2 class="title"><a name="N10012"></a>Chapter&nbsp;1.&nbsp;General</h2></div></div></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><span class="section"><a href="general.html#XInclude">XInclude</a></span></dt></dl></div><p>This section covers topics that don't have any other particular place to go.</p><div class="section" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="XInclude"></a>XInclude</h2></div></div></div><p>
- XInclude allows a user to import or include other XML files into one xml file.
- It is used primarily with documentation file formats like Docbook and DITA. It
- allows for separating out large xml documents into more manageable chunks of information.
- </p><p>
- The XSL Tools project includes an ANT task that can be run with in eclipse, eclipse
- headless, and without eclipse at all. If running outside of eclipse, you will need
- to make sure that the jar file xinclude.jar in the org.eclipse.wst.xsl.core.jar file
- is made avaiable on your class path.
- </p><div class="mediaobject" align="center"><img src="../images/general/xinclude.png" align="middle"></div><p>
- The following parameters are available on the xsl.xinclude ANT task:
- </p><div class="itemizedlist"><ul type="disc"><li><p>
- <span class="bold"><strong>
- in
- </strong></span> - The full path to the input file that contains
- the file with the XIncludes. If the files that it includes have includes, then
- those will be brought in an expanded as well.
- </p></li><li><p>
- <span class="bold"><strong>out</strong></span> - The full path to the output file
- to be written with all includes expanded. This is typically used as the
- input to a stylesheet transformation process.
- </p></li></ul></div><div class="example"><a name="N1003D"></a><p class="title"><b>Example&nbsp;1.1.&nbsp;XInclude Example</b></p><div class="example-contents"><pre class="programlisting">
-&lt;target name="merge"&gt;
- &lt;xsl.xinclude in="${docbooksource}/xslhelp.dbk"
- out="${docbooksource}/xslhelpcombined.dbk"/&gt;
-&lt;/target&gt;
- </pre></div></div><br class="example-break"></div></div></body></html> \ No newline at end of file

Back to the top