Can I link xslt to another xslt? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T11:03:57Z http://stackoverflow.com/feeds/question/532985 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/532985/can-i-link-xslt-to-another-xslt 4 Can I link xslt to another xslt? c00ke 2009-02-10T16:15:31Z 2009-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#532997 1 Answer by krosenvold for Can I link xslt to another xslt? krosenvold 2009-02-10T16:19:00Z 2009-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#532999 2 Answer by Andrew Hare for Can I link xslt to another xslt? Andrew Hare 2009-02-10T16:19:12Z 2009-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#533000 9 Answer by sirlancelot for Can I link xslt to another xslt? sirlancelot 2009-02-10T16:19:12Z 2009-02-10T16:31:44Z <pre><code>&lt;xsl:import href="library/utility-include.xsl" /&gt; </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>&lt;xsl:import/&gt;</code> documentation</a>.</p> <p>Remember that you must write your import lines as the first child element of <code>&lt;xsl:stylesheet&gt;</code> or <code>&lt;xsl:transform&gt;</code>. They cannot appear throughout your files.</p> http://stackoverflow.com/questions/532985/can-i-link-xslt-to-another-xslt/533358#533358 6 Answer by Dimitre Novatchev for Can I link xslt to another xslt? Dimitre Novatchev 2009-02-10T17:35:12Z 2009-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>&lt;xsl:import&gt;</code></a></strong></p> <p>and</p> <p><strong><a href="http://www.w3.org/TR/xslt#include" rel="nofollow"><code>&lt;xsl:include&gt;</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#1794937 1 Answer by Aravind for Can I link xslt to another xslt? Aravind 2009-11-25T05:54:15Z 2009-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>