OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

docbook-apps message

[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]


Subject: Re: [docbook-apps] Draft watermark not working. No specific customization.


On Sat, Mar 8, 2008 at 4:25 AM, spr <spremi@yahoo.com> wrote:
>  I have a very basic customization - only to set the draft.mode to "yes"
>  (see attached).
...
<xsl:param name="draft.mode" select="yes"/>


(xsl:param's are funny) I think you've set the draft.mode to the value
of the XPath yes rather than the string value yes. Try either

<xsl:param name="draft.mode" select="'yes'"/>

or

<xsl:param name="draft.mode">yes</xsl:param>


HTH,
Keith


[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]