This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

RE: Including tags in an xml:variable


Yes, that's what I'm looking to do... So, the solution is:

<xsl:template name="ColumnWidths">
<fo:table-column column-width="0.5in"/>
<fo:table-column column-width="2in"/>
<fo:table-column column-width="2in"/>
<fo:table-column column-width="0.5in"/>
<fo:table-column column-width="0.5in"/>
<fo:table-column column-width="0.5in"/>
<fo:table-column column-width="0.5in"/>
<fo:table-column column-width="0.5in"/>
</xsl:template>

<fo:table>
  <xsl:call-template name="ColumnWidths"/>
  <fo:table-body>
  ** OMITTED TABLE STUFF **
  </fo:table-body>
</fo:table>


Thanks for your help.

Mick
-----Original Message-----
From: Clapham, Paul [mailto:pclapham@core-mark.com]
Sent: Tuesday, July 03, 2001 10:52 AM
To: xsl-list@lists.mulberrytech.com
Subject: RE: [xsl] Including tags in an xml:variable


Why not just use a named template?  It automatically puts its contents into
the result tree and you don't have to fight against the language (is that
what your comment about &lt; meant?).

PC2

<xsl:template name="ColumnWidths">
<fo:table-column column-width="0.5in"/>
<fo:table-column column-width="2in"/>
<fo:table-column column-width="2in"/>
<fo:table-column column-width="0.5in"/>
<fo:table-column column-width="0.5in"/>
<fo:table-column column-width="0.5in"/>
<fo:table-column column-width="0.5in"/>
<fo:table-column column-width="0.5in"/>
</xsl:variable>

<fo:table>
  <xsl:call-template name="$ColumnWidths"/>
  <fo:table-body>
  ** OMITTED TABLE STUFF **
  </fo:table-body>
</fo:table>

  **  More Omitted Stuff **
<fo:table>
  <xsl:call-template name="$ColumnWidths"/>
  <fo:table-body>
  ** SOME OTHER TABLE STUFF HERE**
  </fo:table-body>
</fo:table>

-----Original Message-----
From: Huisking, Michael [mailto:MHuisking@caiso.com]
Sent: July 3, 2001 10:34
To: 'XSL-List@lists.mulberrytech.com'
Subject: [xsl] Including tags in an xml:variable


Hi.

Is there a way to define an xml:variable that contains tags such that the
tags themselves will literally be written out to the outfile on the
transformation?

I have an xsl file that I use to produce an fo file.  It contains several
tables that have the same column definitions and I'd like to be able to
declare the definition once and use it many times in the file.  For example:

<xsl:variable name="ColumnWidths">
<fo:table-column column-width="0.5in"/>
<fo:table-column column-width="2in"/>
<fo:table-column column-width="2in"/>
<fo:table-column column-width="0.5in"/>
<fo:table-column column-width="0.5in"/>
<fo:table-column column-width="0.5in"/>
<fo:table-column column-width="0.5in"/>
<fo:table-column column-width="0.5in"/>
</xsl:variable>

<fo:table>
  <xsl:value-of select="$ColumnWidths"/>
  <fo:table-body>
  ** OMITTED TABLE STUFF **
  </fo:table-body>
</fo:table>

  **  More Omitted Stuff **
<fo:table>
  <xsl:value-of select="$ColumnWidths"/>
  <fo:table-body>
  ** SOME OTHER TABLE STUFF HERE**
  </fo:table-body>
</fo:table>


Is something like this possible?  I haven't had any luck trying to use &lt
and &gt (they stay as the literals "&gt" and "&lt" in the output.)

Thanks in advance.

Michael Huisking
California ISO

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]