This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

RE: Creating External Generic XSL functions file


Nic wrote:
> What I want to do is to write a "Consolidated.xsl" XSL file 
> containing all
> my generic xsl functions that are used in more than one xsl file.
> Basically I want to know what needs to be in the 
> Consolidated.xsl (obviously
> apart from the functions) and how you call/include the 
> Consolidated.xsl
> functions in the stylesheet(s)?

If you have a complete stylesheet, ie with <xsl:stylesheet> tags and everything in the consolidated.xsl file, then in the 'real' XSL file that is used in the transform, you can use either the <xsl:import> or <xsl:include> elements.

eg:
<xsl:stylesheet>
 <xsl:include href="Consolidated.xsl" />
 <!-- other XSL stuff here -->
</xs:stylesheet>

------------------------------------------------------------------------------
This message and any attachment is confidential and may be privileged or otherwise protected from disclosure.  If you have received it by mistake please let us know by reply and then delete it from your system; you should not copy the message or disclose its contents to anyone.





 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]