diff options
author | arved <arved@unknown> | 2001-01-08 02:37:24 +0000 |
---|---|---|
committer | arved <arved@unknown> | 2001-01-08 02:37:24 +0000 |
commit | eabf4ef87ee882557fb308388d27f1ca106792bc (patch) | |
tree | 697c4808116040077df2eb6e264c5c42d5fcf6bc /docs/design/fo_impl/fo_classes.xsl | |
parent | cc87e36a3cc90764bd0aad71af617f5ba5ec490d (diff) | |
download | xmlgraphics-fop-eabf4ef87ee882557fb308388d27f1ca106792bc.tar.gz xmlgraphics-fop-eabf4ef87ee882557fb308388d27f1ca106792bc.zip |
New docs for discussion of refactoring of FOs
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@193954 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/design/fo_impl/fo_classes.xsl')
-rw-r--r-- | docs/design/fo_impl/fo_classes.xsl | 100 |
1 files changed, 100 insertions, 0 deletions
diff --git a/docs/design/fo_impl/fo_classes.xsl b/docs/design/fo_impl/fo_classes.xsl new file mode 100644 index 000000000..ad9e21690 --- /dev/null +++ b/docs/design/fo_impl/fo_classes.xsl @@ -0,0 +1,100 @@ +<?xml version="1.0"?> +<xsl:stylesheet + xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" + xmlns:fo="http://www.w3.org/1999/XSL/Format"> + +<xsl:output method="html"/> + +<xsl:strip-space elements="*"/> + +<xsl:template match="/"> + <xsl:apply-templates/> +</xsl:template> + +<xsl:template match="formattingObjects"> +<html> +<head> +<title><xsl:value-of select="title"/></title> +</head> +<body> +<h2><xsl:value-of select="title"/></h2> +<xsl:apply-templates select="usage"/> +<h2>Block-Level Formatting Objects</h2> +<xsl:apply-templates select="category[@class='block-level']"/> +<h2>Inline-Level Formatting Objects</h2> +<xsl:apply-templates select="category[@class='inline-level']"/> +<h2>Other Formatting Objects</h2> +<xsl:apply-templates select="category[@class='other']"/> +<xsl:apply-templates select="notes"/> +</body> +</html> +</xsl:template> + +<xsl:template match="usage"> + <xsl:apply-templates select="para"/> +</xsl:template> + +<xsl:template match="para"> + <p><xsl:apply-templates/></p> +</xsl:template> + +<xsl:template match="em"> + <em><xsl:apply-templates/></em> +</xsl:template> + +<xsl:template match="term"> + <b><xsl:apply-templates/></b> +</xsl:template> + +<xsl:template match="category"> + <table width="100%" cellpadding="5" cellspacing="1" border="1"> + <tr> + <th>Name</th><th>Base Class</th><th>Spec Content</th> + <th>Generated Areas</th><th>Breaks and Keeps</th> + </tr> + <xsl:apply-templates select="object"/> + </table> +</xsl:template> + +<xsl:template match="object"> + <tr> + <td> + <xsl:value-of select="name"/> + <xsl:if test="self::node()[@implemented='false']"> *</xsl:if> + </td> + <td><xsl:value-of select="baseClass"/></td> + <td><xsl:value-of select="specContent"/></td> + <td><xsl:apply-templates select="generatedAreas"/></td> + <td><xsl:value-of select="breaksKeeps"/> </td> + </tr> +</xsl:template> + +<xsl:template match="generatedAreas"> +<xsl:choose> + <xsl:when test="currentLayout"> + <ul> + <li>Class: <xsl:value-of select="type/class"/>  + Stacking: <xsl:value-of select="type/stacking"/></li> + <li>Multiplicity: <xsl:value-of select="multiplicity"/></li> + <li>Layout into: <xsl:value-of select="currentLayout"/> + <xsl:if test="currentLayout[@intoParentArea='true']"> (parent)</xsl:if></li> + <xsl:if test="self::node()[@isReference='true']"> + <li>Reference Area(s)</li> + </xsl:if> + </ul> + </xsl:when> + <xsl:otherwise> </xsl:otherwise> +</xsl:choose> +</xsl:template> + +<xsl:template match="notes"> +<p><b>Notes:</b></p> + <ol> + <xsl:for-each select="note"> + <li><xsl:value-of select="."/></li> + </xsl:for-each> + </ol> +</xsl:template> + +</xsl:stylesheet> + |