diff options
Diffstat (limited to 'test/shunit2-2.0.3/share/resources/shelldoc.xslt')
-rw-r--r-- | test/shunit2-2.0.3/share/resources/shelldoc.xslt | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/test/shunit2-2.0.3/share/resources/shelldoc.xslt b/test/shunit2-2.0.3/share/resources/shelldoc.xslt new file mode 100644 index 0000000..45d5f92 --- /dev/null +++ b/test/shunit2-2.0.3/share/resources/shelldoc.xslt @@ -0,0 +1,71 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- $Id$ --> +<!-- +example ways to process this xslt: +$ java -cp xalan-2.6.0.jar \ + org.apache.xalan.xslt.Process -xml -in log4sh.xml -xsl shelldoc.xslt + +$ xsltproc shelldoc.xslt log4sh.xml |xmllint -noblanks - +--> +<xsl:stylesheet version="1.0" + xmlns:xsl="http://www.w3.org/1999/XSL/Transform" + xmlns:s="http://www.forestent.com/projects/shelldoc/xsl/2005.0"> + <xsl:output + method="xml" + version="1.0" + encoding="UTF-8" + indent="yes"/> + <xsl:strip-space elements="*" /> + + <xsl:variable name="newline"> +<xsl:text> +</xsl:text> + </xsl:variable> + + <xsl:key name="groups" match="s:function" use="@group" /> + + <xsl:template match="/"> + <chapter id="shelldoc" lang="en-US"><title>Function Reference</title> + <xsl:for-each select="//s:function[generate-id(.)=generate-id(key('groups', @group)[1])]"> + <xsl:sort select="@group" /> + + <section> + <xsl:attribute name="id">shelldoc-section-<xsl:value-of select="@group" /></xsl:attribute> + <title><xsl:value-of select="@group"/></title> + <table> + <xsl:attribute name="id">shelldoc-function-<xsl:value-of select="@group" /></xsl:attribute> + <title><xsl:value-of select="@group"/></title> + <tgroup cols="2"><tbody> + <xsl:for-each select="key('groups', @group)"> + <!--<xsl:sort select="entry/funcsynopsis/funcprototype/funcdef/function" />--> + <xsl:choose> + <xsl:when test="@modifier"> + <xsl:if test="@modifier != 'private'"> + <row valign="top"> + <xsl:copy-of select="entry" /> + <!--<xsl:apply-templates select="entry" />--> + </row> + </xsl:if> + </xsl:when> + <xsl:otherwise> + <row valign="top"> + <xsl:copy-of select="entry" /> + <!--<xsl:apply-templates select="entry" />--> + </row> + </xsl:otherwise> + </xsl:choose> + </xsl:for-each> + </tbody></tgroup> + </table> + </section> + </xsl:for-each> + </chapter> + </xsl:template> + + <xsl:template match="entry"> + <entry> + <xsl:copy-of select="*" /> + </entry> + </xsl:template> + +</xsl:stylesheet> |