Next in thread →
Next in month →
RE: [docbook-apps] Saxon ignoring output directory params
| -----Original Message----- | From: Mauritz Jeanson | | | | <xsl:param name="base.dir" select="/www/mfsite/docbook"></xsl:param> | | You need to put a trailing slash at the very end of the path. You also need to make the select attribute a string (note the single quotes): <xsl:param name="base.dir" select="'/www/mfsite/docbook/'"></xsl:param> Alternatively: <xsl:param name="base.dir">/www/mfsite/docbook/</xsl:param> Mauritz
Next in thread →
Next in month →