diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2004-06-21 19:53:41 +0000 |
---|---|---|
committer | Gerald W. Carter <jerry@samba.org> | 2008-04-23 08:45:56 -0500 |
commit | fc5ad178dbe7ab92e2fed298f74804d4fe9c8073 (patch) | |
tree | 861d8750fe736cf105cd8276c4183a77b539dc05 /docs | |
parent | 83a17815a7689f1f6f7ca57161a0e804277c75f9 (diff) | |
download | samba-fc5ad178dbe7ab92e2fed298f74804d4fe9c8073.tar.gz samba-fc5ad178dbe7ab92e2fed298f74804d4fe9c8073.tar.bz2 samba-fc5ad178dbe7ab92e2fed298f74804d4fe9c8073.zip |
XSL script for converting DocBook XML to Yodl, almost done :-)
(This used to be commit b9404cd05db77efbb81fc59925aaff59d45416fa)
Diffstat (limited to 'docs')
-rw-r--r-- | docs/xslt/yodl.xsl | 108 |
1 files changed, 108 insertions, 0 deletions
diff --git a/docs/xslt/yodl.xsl b/docs/xslt/yodl.xsl new file mode 100644 index 0000000000..96fd718454 --- /dev/null +++ b/docs/xslt/yodl.xsl @@ -0,0 +1,108 @@ +<?xml version='1.0'?> +<!-- + DocBook to yodl converter + Currently only for manpages + + (C) Jelmer Vernooij 2004 +--> +<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" + xmlns:exsl="http://exslt.org/common" + version="1.1"> + + <xsl:output method="text" encoding="iso-8859-1" standalone="yes"/> + <xsl:strip-space elements="*"/> + + <xsl:template match="refentry"> + <xsl:text>manpage(</xsl:text> + <xsl:value-of select="refmeta/refentrytitle"/> + <xsl:text>)()(</xsl:text> + <xsl:value-of select="refmeta/manvolnum"/> + <xsl:text>)(package)() </xsl:text> + + <xsl:apply-templates/> + </xsl:template> + + <xsl:template match="emphasis"> + <xsl:text>em(</xsl:text> + <xsl:apply-templates/> + <xsl:text>)</xsl:text> + </xsl:template> + + <xsl:template match="command"> + <xsl:text>bf(</xsl:text> + <xsl:apply-templates/> + <xsl:text>)</xsl:text> + </xsl:template> + + <xsl:template match="refnamediv"> + <xsl:text>manpagename(</xsl:text> + <xsl:value-of select="refname"/> + <xsl:text>)(</xsl:text> + <xsl:value-of select="refpurpose"/> + <xsl:text>) </xsl:text> + </xsl:template> + + <xsl:template match="refsynopsisdiv"> + manpagesynopsis() + </xsl:template> + + <xsl:template match="refsect1"> + <xsl:choose> + <xsl:when test="title='DESCRIPTION'"> + <xsl:text> manpagedescription() </xsl:text> + </xsl:when> + <xsl:when test="title='OPTIONS'"> + <xsl:text> manpageoptions() </xsl:text> + </xsl:when> + <xsl:when test="title='FILES'"> + <xsl:text> manpagefiles() </xsl:text> + </xsl:when> + <xsl:when test="title='SEE ALSO'"> + <xsl:text> manpageseealso() </xsl:text> + </xsl:when> + <xsl:when test="title='DIAGNOSTICS'"> + <xsl:text> manpagediagnostics() </xsl:text> + </xsl:when> + <xsl:when test="title='BUGS'"> + <xsl:text> manpagebugs() </xsl:text> + </xsl:when> + <xsl:when test="title='AUTHOR'"> + <xsl:text> manpageauthor() </xsl:text> + </xsl:when> + <xsl:otherwise> + <xsl:text> manpagesection(</xsl:text> + <xsl:value-of select="title"/> + <xsl:text>) </xsl:text> + </xsl:otherwise> + </xsl:choose> + <xsl:for-each select="para"> + <xsl:text> </xsl:text> + <xsl:apply-templates/> + </xsl:for-each> + </xsl:template> + + <xsl:template match="itemizedlist|orderedlist"> + <xsl:text>startdit() </xsl:text> + <xsl:for-each select="listitem"> + <xsl:text>dit() </xsl:text> + <xsl:apply-templates/> + <xsl:text> </xsl:text> + </xsl:for-each> + <xsl:text>enddit() </xsl:text> + </xsl:template> + + <xsl:template match="variablelist"> + <xsl:text>startdit() </xsl:text> + <xsl:for-each select="varlistentry"> + <xsl:text>dit(</xsl:text> + <xsl:value-of select="term"/> + <xsl:text>) </xsl:text> + <xsl:apply-templates select="listitem"/> + <xsl:text> </xsl:text> + </xsl:for-each> + <xsl:text>enddit() </xsl:text> + </xsl:template> + + <xsl:template match="*"/> + +</xsl:stylesheet> |