In the index file, the links to toc & doc file use absolute URI. It's not portable.
I succeed to use relative URI with the following code in makeIndex.xsl
<frame name="toc" src="{string-join(($intermediaryDirectory,tokenize(@tocOutputUri,'/')[last()]),'/')}"/><frame name="doc" src="{string-join(($intermediaryDirectory,tokenize(@htmlOutputUri,'/')[last()]),'/')}"/>
In the index file, the links to toc & doc file use absolute URI. It's not portable.
I succeed to use relative URI with the following code in makeIndex.xsl
<frame name="toc" src="{string-join(($intermediaryDirectory,tokenize(@tocOutputUri,'/')[last()]),'/')}"/>
<frame name="doc" src="{string-join(($intermediaryDirectory,tokenize(@htmlOutputUri,'/')[last()]),'/')}"/>