Can I link xslt to another xslt? - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T11:03:57Zhttp://stackoverflow.com/feeds/question/532985http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/532985/can-i-link-xslt-to-another-xslt4Can I link xslt to another xslt?c00ke2009-02-10T16:15:31Z2009-11-25T05:54:15Z
<p>Basically I want to have one xslt to become my 'base' xslt and want to link this into child xslt files.</p>
<p>Is this possible? </p>
<p>The aim is to reduce code duplication. </p>
<p>We will have many child xslt files for the various customers all with their own formatting and additional text etc and don't want to repeat the base code for each client xslt.</p>
<p>I know we can format based on the type of customer but this will make the xslt cluttered.
Would ideally just like customer related code for each customer.</p>
<p>Is this not the way to do xslt?? I am new to xslt!</p>
<p>Cheers</p>
<p>Paul</p>
http://stackoverflow.com/questions/532985/can-i-link-xslt-to-another-xslt/532997#5329971Answer by krosenvold for Can I link xslt to another xslt?krosenvold2009-02-10T16:19:00Z2009-02-10T16:19:00Z<p>Check out <a href="http://www.w3schools.com/Xsl/el_import.asp" rel="nofollow">xslt import</a></p>
http://stackoverflow.com/questions/532985/can-i-link-xslt-to-another-xslt/532999#5329992Answer by Andrew Hare for Can I link xslt to another xslt?Andrew Hare2009-02-10T16:19:12Z2009-02-10T16:19:12Z<p>Yes you can - you can <code>include</code> and <code>import</code> other XSLTs.</p>
<p><a href="http://www.w3schools.com/Xsl/el_import.asp" rel="nofollow">This is a good place to start learning about <code>import</code></a> which is what you are looking for specifically. <code>include</code> is different but worth knowing about.</p>
http://stackoverflow.com/questions/532985/can-i-link-xslt-to-another-xslt/533000#5330009Answer by sirlancelot for Can I link xslt to another xslt?sirlancelot2009-02-10T16:19:12Z2009-02-10T16:31:44Z<pre><code><xsl:import href="library/utility-include.xsl" />
</code></pre>
<p>The href path is relative to the current xsl file. <a href="http://www.w3schools.com/Xsl/el_import.asp" rel="nofollow"><code><xsl:import/></code> documentation</a>.</p>
<p>Remember that you must write your import lines as the first child element of <code><xsl:stylesheet></code> or <code><xsl:transform></code>. They cannot appear throughout your files.</p>
http://stackoverflow.com/questions/532985/can-i-link-xslt-to-another-xslt/533358#5333586Answer by Dimitre Novatchev for Can I link xslt to another xslt?Dimitre Novatchev2009-02-10T17:35:12Z2009-03-22T16:04:39Z<p><strong>As all other answers have specified, there are two XSLT instructions</strong>:</p>
<p><strong><a href="http://www.w3.org/TR/xslt#import" rel="nofollow"><code><xsl:import></code></a></strong></p>
<p>and</p>
<p><strong><a href="http://www.w3.org/TR/xslt#include" rel="nofollow"><code><xsl:include></code></a></strong></p>
<p>that were designed exactly to provide this capability.</p>
<p><strong>It may be of interest to you that there are complete libraries</strong> of templates and functions that internally import other stylesheets of the library. The stylesheets of the library are intended to be imported in the user's XSLT stylesheets.</p>
<p>For example, do have a look at the <a href="http://fxsl.sf.net" rel="nofollow"><strong>FXSL library</strong></a> for functional programming in XSLT.</p>
http://stackoverflow.com/questions/532985/can-i-link-xslt-to-another-xslt/1794937#17949371Answer by Aravind for Can I link xslt to another xslt?Aravind2009-11-25T05:54:15Z2009-11-25T05:54:15Z<p>All other answers give you sufficient information,<br/>
I want to mention one more important thing here .. You can even <b>"pass the (in both ways) parameters" between the two</b> (calling and called file, if they need to share any data)<b> xslt files ..</b>
<br/>This feature Plays important role in/beyond XSLT version 2.0, you may need it in future ..<br/>
:)</p>