Hi all,
I have a group of xsl sub stylesheets which i need to include into a parent stylesheet, all of which are contained in a directory below the parent. I have been using relative paths for the include statements however these now need to be changed full qualified paths.
As these all share the same directory it makes sense to do this with a variable defined in the parent stylesheet eg.
<xsl:variable name="module_path" select="C:/stylesheet/modules"/>
However when used within the include statement like:
<xsl:include href="{$module_path}/substylesheet1.xsl"/>
I get the error could not find part of the path "C:/stylesheet/$module_path/substylesheet1.xsl".
Does anyone know how this can be achieved?