Re: XSLT 'or' statement (Was Re: DOCBOOK-APPS: How can I getstylesheet to bold?)

2001-07-31 Thread Bob Stayton
From: Dan York [EMAIL PROTECTED] Bob, Since I thought your use of the 'or' functionality was quite cool, I modified my customization layer along the lines of what you did: xsl:template match=emphasis xsl:choose xsl:when test=@role='bold'|@role='strong' !-- changed line --

Re: XSLT 'or' statement (Was Re: DOCBOOK-APPS: How can I getstylesheet to bold?)

2001-07-31 Thread Adam Turoff
On Tue, Jul 31, 2001 at 01:39:38PM -0400, Dan York wrote: xsl:template match=emphasis xsl:choose xsl:when test=@role='bold'|@role='strong' !-- changed line -- xsl:call-template name=inline.boldseq/ /xsl:when xsl:otherwise xsl:call-template