Hello,
I have a simple XSL file which looks like:
<?xml version='1.0'?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:import href="html/docbook.xsl"/>
</xsl:stylesheet>
I have an XSL file which lies in a folder on the disk (not on the web). It's path relative to my XSL file (above) is:
..\..\..\Dependencies\XSL\xsl\htmlhelp\htmlhelp.xsl
<xsl:import href="..\..\..\Dependencies\XSL\xsl\htmlhelp\htmlhelp.xsl"/>
or
<xsl:import href="../../../Dependencies/XSL/xsl/htmlhelp/htmlhelp.xsl"/>
doesn't seem to be working (I get - can not find file - errors from xslproc tool.)
What is the proper way of writing relative paths in the XSL:import ?
Thanks in advance,
Paul