Administrator
|
I see in the standard email-form.xpl that there is no $doc variable in that XSLT. Add one, e.g:
<xsl:variable name="document" select="doc('input:parameters')/*/document" as="xs:string"/>
and then:
concat('/fr/', $app,'/', $form, '/edit/', $document)
should work.
You can also use <xsl:message> to output debug information in XSLT. E.g.:
<xsl:message> xxx <xsl:copy-of select="concat('/fr/', $app,'/', $form, '/edit/', $document)"/> </xsl:message>
The message will appear in orbeon.log.
-Erik
|