-- 作者:huyanlin
-- 发布时间:6/3/2004 5:49:00 PM
--
附件呢? <?xml version="1.0" encoding="UTF-8" ?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format" > <xsl:output method="xml" encoding="UTF-8" /> <xsl:template match="FRAMES"> <fo:block-container border-style="solid" border-width="0.01mm" height="10.6cm" width="185.01mm" top="12cm" position="absolute"> <fo:table> <fo:table-column column-width="8mm"/> <fo:table-column column-width="22mm"/> <fo:table-column column-width="7mm"/> <fo:table-column column-width="8mm"/> <fo:table-column column-width="39mm"/> <fo:table-column column-width="6mm"/> <fo:table-column column-width="8mm"/> <fo:table-column column-width="22mm"/> <fo:table-column column-width="7mm"/> <fo:table-column column-width="8mm"/> <fo:table-column column-width="39mm"/> <fo:table-column column-width="6mm"/> <fo:table-column column-width="8mm"/> <fo:table-column column-width="22mm"/> <fo:table-column column-width="7mm"/> <fo:table-column column-width="8mm"/> <fo:table-column column-width="39mm"/> <fo:table-column column-width="6mm"/> <fo:table-column column-width="8mm"/> <fo:table-column column-width="22mm"/> <fo:table-column column-width="7mm"/> <fo:table-column column-width="8mm"/> <fo:table-column column-width="39mm"/> <fo:table-column column-width="6mm"/> <fo:table-body> <fo:table-row> <fo:table-cell border-width="0.01mm" border-style="solid"> <fo:block font-size="9pt" font-weight="bold"> 画像番号 </fo:block> </fo:table-cell> <fo:table-cell border-width="0.01mm" border-style="solid"> <fo:block font-size="9pt" font-weight="bold"> サイズ </fo:block> </fo:table-cell> <fo:table-cell border-width="0.01mm" border-style="solid"> <fo:block font-size="9pt" font-weight="bold"> 枚数 </fo:block> </fo:table-cell> <fo:table-cell border-width="0.01mm" border-style="solid"> <fo:block font-size="9pt" font-weight="bold"> フチ </fo:block> </fo:table-cell> <fo:table-cell border-width="0.01mm" border-style="solid"> <fo:block font-size="9pt" font-weight="bold"> ファイル名 </fo:block> </fo:table-cell> <fo:table-cell border-width="0.01mm" border-style="solid"> <fo:block font-size="8pt" font-weight="bold"> チェック </fo:block> </fo:table-cell> <fo:table-cell border-width="0.01mm" border-style="solid"> <fo:block font-size="9pt" font-weight="bold"> 画像番号 </fo:block> </fo:table-cell> <fo:table-cell border-width="0.01mm" border-style="solid"> <fo:block font-size="9pt" font-weight="bold"> サイズ </fo:block> </fo:table-cell> <fo:table-cell border-width="0.01mm" border-style="solid"> <fo:block font-size="9pt" font-weight="bold"> 枚数 </fo:block> </fo:table-cell> <fo:table-cell border-width="0.01mm" border-style="solid"> <fo:block font-size="9pt" font-weight="bold"> フチ </fo:block> </fo:table-cell> <fo:table-cell border-width="0.01mm" border-style="solid"> <fo:block font-size="9pt" font-weight="bold"> ファイル名 </fo:block> </fo:table-cell> <fo:table-cell border-width="0.01mm" border-style="solid"> <fo:block font-size="8pt" font-weight="bold"> チェック </fo:block> </fo:table-cell> </fo:table-row> <xsl:apply-templates select="FRAME" /> </fo:table-body> </fo:table> </fo:block-container> </xsl:template> <xsl:template match="FRAME"> <fo:table-row> <fo:table-cell background-color="GAINSBORO" border-width="0.01mm" border-style="solid"> <fo:block font-size="9pt"> <xsl:number/> </fo:block> </fo:table-cell> <xsl:apply-templates select="SIZE" /> <xsl:apply-templates select="ORDER-ALL" /> <xsl:apply-templates select="BORDER" /> <xsl:apply-templates select="UP-USER-FILE-NAME" /> <fo:table-cell border-width="0.01mm" border-style="solid"> <fo:block font-size="9pt"> </fo:block> </fo:table-cell> </fo:table-row> </xsl:template> <xsl:template match="SIZE"> <fo:table-cell border-width="0.01mm" border-style="solid"> <fo:block font-size="9pt"> <xsl:value-of select='.'/> </fo:block> </fo:table-cell> </xsl:template> <xsl:template match="ORDER-ALL"> <fo:table-cell border-width="0.01mm" border-style="solid"> <fo:block font-size="9pt"> <xsl:value-of select='.'/> </fo:block> </fo:table-cell> </xsl:template> <xsl:template match="BORDER"> <fo:table-cell border-width="0.01mm" border-style="solid"> <fo:block font-size="9pt"> <xsl:if test="../BORDER != 0"> 有り </xsl:if> <xsl:if test="../BORDER = 0"> 無し </xsl:if> </fo:block> </fo:table-cell> </xsl:template> <xsl:template match="UP-USER-FILE-NAME"> <fo:table-cell border-width="0.01mm" border-style="solid"> <fo:block font-size="9pt"> <xsl:value-of select='.'/> </fo:block> </fo:table-cell> </xsl:template> </xsl:stylesheet>
|