Next in thread → Next in month →

RE: [docbook-apps] Saxon ignoring output directory params

From
Mauritz Jeanson <>
Date
2009-02-22T21:03:08+00:00
ID
76209BADD01E46389C371B72D8C1C17F@D7MZ171J
Thread
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 →