> -----Original Message-----
> From: Glen Mazza [mailto:[EMAIL PROTECTED]
>
> Of course, if you're only using the string in one place, or if you always
> want it capitalized, then you should be able to do the conversion in your
> database SQL to begin with:
>
> select upper(column_name) from table_name;
>

For the record:
If one is determined in leaving this up to the FO processor, this would
ultimately work as well in XSL-FO (just in case the SQL is out of your
control... and you're not working with FOP(*) --damn'! ;) ):

<!-- the following template will capitalize all text-nodes -->

<xsl:template match="text()">
  <fo:wrapper text-transform="uppercase">
    <xsl:value-of select="." />
  </fo:wrapper>
</xsl:template>


Cheers,

Andreas

(*) http://xml.apache.org/fop/compliance.html#fo-property-text-transform


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to