以下のXSLTファイルの内容は、FileMaker Developer 5に付属するサンプルを参考にしました。意味のある記述だけを残すために、クレジットなどは省略しました。
<?xml version="1.0" encoding="Shift_JIS"?> <xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl" xmlns:fm="http://www.filemaker.com/fmpdsoresult"> <xsl:template><xsl:apply-templates/></xsl:template> <xsl:template match="text()"><xsl:value-of select="."/></xsl:template> <xsl:template match="fm:FMPDSORESULT"> <html> <head> <title><xsl:value-of select="fm:DATABASE"/></title> </head> <body> <h1><xsl:value-of select="fm:DATABASE"/></h1> <xsl:element name="table"> <xsl:attribute name="border"> </xsl:attribute> <tr> <th>日付</th> <th>分類</th> <th>タイトル</th> <th>内容</th> </tr> <xsl:apply-templates/> </xsl:element> </body> </html> </xsl:template> <xsl:template match="fm:ROW"> <tr> <td><xsl:value-of select="fm:日付"/></td> <td><xsl:value-of select="fm:分類"/></td> <td><xsl:value-of select="fm:タイトル"/></td> <td><xsl:value-of select="fm:内容"/></td> </tr> </xsl:template>
<xsl:template match="fm:ERRORCODE|fm:DATABASE|fm:LAYOUT"> </xsl:template> </xsl:stylesheet>
|