blob: 71c4a66707390e1ced3a64aeafc8234b94b08bd7 (
plain) (
tree)
|
|
<?xml version="1.0" encoding="utf-8"?>
<!--
#
# %CopyrightBegin%
#
# Copyright Ericsson AB 2009-2010. All Rights Reserved.
#
# The contents of this file are subject to the Erlang Public License,
# Version 1.1, (the "License"); you may not use this file except in
# compliance with the License. You should have received a copy of the
# Erlang Public License along with this software. If not, it can be
# retrieved online at http://www.erlang.org/.
#
# Software distributed under the License is distributed on an "AS IS"
# basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
# the License for the specific language governing rights and limitations
# under the License.
#
# %CopyrightEnd%
-->
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:preserve-space elements="code pre"/>
<xsl:strip-space elements="*"/>
<xsl:output method="text" encoding="UTF-8" indent="no"/>
<!-- Header -->
<xsl:template match="header">
</xsl:template>
<!-- Section/Title -->
<xsl:template match="section/title">
</xsl:template>
<!-- *ref/Section -->
<xsl:template match="erlref/section|comref/section|cref/section|fileref/section|appref/section">
<xsl:text> .SH "</xsl:text><xsl:value-of select="translate(title, 'abcdefghijklmnopqrstuvwxyz','ABCDEFGHIJKLMNOPQRSTUVWXYZ')"/><xsl:text>" </xsl:text>
<xsl:apply-templates/>
</xsl:template>
<!-- *ref/Subsection -->
<xsl:template match="section/section">
<xsl:text> .SS "</xsl:text><xsl:value-of select="title"/><xsl:text>" </xsl:text>
<xsl:apply-templates/>
</xsl:template>
<!-- Lists -->
<xsl:template match="list">
<xsl:text> .RS 2</xsl:text>
<xsl:apply-templates/>
<xsl:text> .RE</xsl:text>
</xsl:template>
<xsl:template match="list/item">
<xsl:text> .TP 2 </xsl:text>
<xsl:text>* </xsl:text>
<xsl:apply-templates/>
<xsl:text> .LP </xsl:text>
</xsl:template>
<xsl:template match="taglist">
<xsl:text> .RS 2</xsl:text>
<xsl:apply-templates select="tag|item"/>
<xsl:text> .RE</xsl:text>
</xsl:template>
<xsl:template match="taglist/tag">
<xsl:text> .TP 2 </xsl:text>
<xsl:text>.B </xsl:text>
<xsl:apply-templates/><xsl:text>: </xsl:text>
</xsl:template>
<xsl:template match="taglist/item">
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="item/p">
<xsl:variable name="content">
<xsl:apply-templates/>
</xsl:variable>
<xsl:choose>
<xsl:when test="position() = 1">
<xsl:value-of select="$content"/>
</xsl:when>
<xsl:otherwise>
<xsl:text> .RS 2</xsl:text>
<xsl:text> .LP .LP </xsl:text>
<xsl:value-of select="$content"/>
<xsl:text> .RE</xsl:text>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<!-- Note -->
<xsl:template match="note">
<xsl:text> .SS Note:</xsl:text>
<xsl:apply-templates/>
<xsl:text> </xsl:text>
</xsl:template>
<!-- Warning -->
<xsl:template match="warning">
<xsl:text> .SS Warning:</xsl:text>
<xsl:apply-templates/>
<xsl:text> </xsl:text>
</xsl:template>
<!-- Paragraph -->
<xsl:template match="p">
<xsl:text> .LP </xsl:text>
<xsl:apply-templates/>
</xsl:template>
<!-- Inline elements -->
<xsl:template match="b">
<xsl:text>\fB</xsl:text>
<xsl:apply-templates/>
<xsl:text>\fR\& </xsl:text>
</xsl:template>
<xsl:template match="br">
<xsl:text> .br </xsl:text>
</xsl:template>
<xsl:template match="c">
<xsl:text>\fI</xsl:text><xsl:apply-templates/><xsl:text>\fR\&</xsl:text>
</xsl:template>
<xsl:template match="em">
<xsl:text>\fI</xsl:text> <xsl:apply-templates/><xsl:text>\fR\&</xsl:text>
</xsl:template>
<xsl:template match="seealso">
<xsl:text>\fB</xsl:text><xsl:apply-templates/><xsl:text>\fR\&</xsl:text>
</xsl:template>
<!-- Code -->
<xsl:template match="code">
<xsl:text> .LP </xsl:text>
<xsl:text> .nf </xsl:text>
<xsl:apply-templates/>
<xsl:text> .fi </xsl:text>
</xsl:template>
<!-- Pre -->
<xsl:template match="pre">
<xsl:text> .LP </xsl:text>
<xsl:text> .nf </xsl:text>
<xsl:apply-templates/>
<xsl:text> .fi </xsl:text>
</xsl:template>
<!-- Table -->
<xsl:template match="table">
</xsl:template>
<!-- Image -->
<xsl:template match="image">
</xsl:template>
<!-- Reference Manual -->
<!-- Application -->
<xsl:template match="application">
<xsl:apply-templates/>
</xsl:template>
<!-- Erlref -->
<xsl:template match="/erlref">
<xsl:variable name="companyname">
<xsl:choose>
<!-- Workaround until all of OTP's .../holder contents are correct. -->
<xsl:when test="starts-with(header/copyright/holder,'Ericsson AB')"><xsl:text>Ericsson AB</xsl:text></xsl:when>
<xsl:otherwise><xsl:value-of select="header/copyright/holder"/></xsl:otherwise>
</xsl:choose>
</xsl:variable>
<xsl:text>.TH </xsl:text><xsl:value-of select="module"/><xsl:text> 3 "</xsl:text><xsl:value-of select="$appname"/><xsl:text> </xsl:text><xsl:value-of select="$appver"/><xsl:text>" "</xsl:text><xsl:value-of select="$companyname"/><xsl:text>" "Erlang Module Definition" </xsl:text>
<xsl:text>.SH NAME </xsl:text>
<xsl:value-of select="module"/><xsl:text> \- </xsl:text><xsl:value-of select="modulesummary"/><xsl:text> </xsl:text>
<xsl:apply-templates/>
</xsl:template>
<!-- Comref -->
<xsl:template match="/comref">
<xsl:variable name="companyname">
<xsl:choose>
<!-- Workaround until all of OTP's .../holder contents are correct. -->
<xsl:when test="starts-with(header/copyright/holder,'Ericsson AB')"><xsl:text>Ericsson AB</xsl:text></xsl:when>
<xsl:otherwise><xsl:value-of select="header/copyright/holder"/></xsl:otherwise>
</xsl:choose>
</xsl:variable>
<xsl:text>.TH </xsl:text><xsl:value-of select="com"/><xsl:text> 1 "</xsl:text><xsl:value-of select="$appname"/><xsl:text> </xsl:text><xsl:value-of select="$appver"/><xsl:text>" "</xsl:text><xsl:value-of select="$companyname"/><xsl:text>" "User Commands" </xsl:text>
<xsl:text>.SH NAME </xsl:text>
<xsl:value-of select="com"/><xsl:text> \- </xsl:text><xsl:value-of select="comsummary"/><xsl:text> </xsl:text>
<xsl:apply-templates/>
</xsl:template>
<!-- Cref -->
<xsl:template match="/cref">
<xsl:variable name="companyname">
<xsl:choose>
<!-- Workaround until all of OTP's .../holder contents are correct. -->
<xsl:when test="starts-with(header/copyright/holder,'Ericsson AB')"><xsl:text>Ericsson AB</xsl:text></xsl:when>
<xsl:otherwise><xsl:value-of select="header/copyright/holder"/></xsl:otherwise>
</xsl:choose>
</xsl:variable>
<xsl:text>.TH </xsl:text><xsl:value-of select="lib"/><xsl:text> 3 "</xsl:text><xsl:value-of select="$appname"/><xsl:text> </xsl:text><xsl:value-of select="$appver"/><xsl:text>" "</xsl:text><xsl:value-of select="$companyname"/><xsl:text>" "C Library Functions" </xsl:text>
<xsl:text>.SH NAME </xsl:text>
<xsl:value-of select="lib"/><xsl:text> \- </xsl:text><xsl:value-of select="libsummary"/><xsl:text> </xsl:text>
<xsl:apply-templates/>
</xsl:template>
<!-- Fileref -->
<xsl:template match="/fileref">
<xsl:variable name="companyname">
<xsl:choose>
<!-- Workaround until all of OTP's .../holder contents are correct. -->
<xsl:when test="starts-with(header/copyright/holder,'Ericsson AB')"><xsl:text>Ericsson AB</xsl:text></xsl:when>
<xsl:otherwise><xsl:value-of select="header/copyright/holder"/></xsl:otherwise>
</xsl:choose>
</xsl:variable>
<xsl:text>.TH </xsl:text><xsl:value-of select="file"/><xsl:text> 5 "</xsl:text><xsl:value-of select="$appname"/><xsl:text> </xsl:text><xsl:value-of select="$appver"/><xsl:text>" "</xsl:text><xsl:value-of select="$companyname"/><xsl:text>" "Files" </xsl:text>
<xsl:text>.SH NAME </xsl:text>
<xsl:value-of select="file"/><xsl:text> \- </xsl:text><xsl:value-of select="filesummary"/><xsl:text> </xsl:text>
<xsl:apply-templates/>
</xsl:template>
<!-- Appref -->
<xsl:template match="/appref">
<xsl:variable name="companyname">
<xsl:choose>
<!-- Workaround until all of OTP's .../holder contents are correct. -->
<xsl:when test="starts-with(header/copyright/holder,'Ericsson AB')"><xsl:text>Ericsson AB</xsl:text></xsl:when>
<xsl:otherwise><xsl:value-of select="header/copyright/holder"/></xsl:otherwise>
</xsl:choose>
</xsl:variable>
<xsl:text>.TH </xsl:text><xsl:value-of select="app"/><xsl:text> 7 "</xsl:text><xsl:value-of select="$appname"/><xsl:text> </xsl:text><xsl:value-of select="$appver"/><xsl:text>" "</xsl:text><xsl:value-of select="$companyname"/><xsl:text>" "Erlang Application Definition" </xsl:text>
<xsl:text>.SH NAME </xsl:text>
<xsl:value-of select="app"/><xsl:text> \- </xsl:text><xsl:value-of select="appsummary"/><xsl:text> </xsl:text>
<xsl:apply-templates/>
</xsl:template>
<!-- Module|Com|Lib|File|App-->
<xsl:template match="module|com|lib|file|app">
</xsl:template>
<!-- Modulesummary|Comsummary|Libsummary|Filesummary|Appsummary -->
<xsl:template match="modulesummary|comsummary|libsummary|filesummary|appsummary">
</xsl:template>
<!-- Description -->
<xsl:template match="description">
<xsl:text>.SH DESCRIPTION</xsl:text>
<xsl:apply-templates/>
</xsl:template>
<!-- Funcs -->
<xsl:template match="funcs">
<xsl:text> .SH EXPORTS</xsl:text>
<xsl:apply-templates/>
</xsl:template>
<!-- Func -->
<xsl:template match="func">
<xsl:text> .LP</xsl:text>
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="name">
<xsl:text> .B </xsl:text>
<xsl:apply-templates/>
<xsl:text> .br</xsl:text>
</xsl:template>
<!-- Type -->
<xsl:template match="type">
<xsl:text> .RS</xsl:text>
<xsl:text> .TP</xsl:text>
<xsl:text> Types</xsl:text>
<xsl:apply-templates/>
<xsl:text> .RE</xsl:text>
</xsl:template>
<!-- V -->
<xsl:template match="v">
<xsl:text> </xsl:text><xsl:value-of select="normalize-space(text())"/>
<xsl:text> .br</xsl:text>
</xsl:template>
<!-- D -->
<xsl:template match="d">
<xsl:text> </xsl:text><xsl:apply-templates/>
<xsl:text> .br</xsl:text>
</xsl:template>
<!-- Desc -->
<xsl:template match="desc">
<xsl:text> .RS</xsl:text>
<xsl:apply-templates/>
<xsl:text> .RE</xsl:text>
</xsl:template>
<!-- Fsummary -->
<xsl:template match="fsummary">
<!-- This tag is skipped for now. -->
</xsl:template>
<!-- Authors -->
<xsl:template match="authors">
<xsl:text> .SH AUTHORS</xsl:text>
<xsl:apply-templates/>
</xsl:template>
<!-- Aname -->
<xsl:template match="authors/aname">
<xsl:text> .LP </xsl:text>
<xsl:apply-templates/>
</xsl:template>
<!-- Email -->
<xsl:template match="authors/email">
<xsl:text> .I <</xsl:text>
<xsl:apply-templates/>
<xsl:text>></xsl:text>
</xsl:template>
<!-- Do not noramlize any text within pre and code tags. -->
<xsl:template match="pre/text()">
<xsl:value-of select="."/>
</xsl:template>
<xsl:template match="code/text()">
<xsl:value-of select="."/>
</xsl:template>
<!-- Replace ' by \&' ans . by \&. -->
<xsl:template match="text()">
<xsl:variable name="startstring">
<xsl:value-of select="normalize-space()"/><xsl:text> </xsl:text>
</xsl:variable>
<xsl:variable name="rep1">
<xsl:call-template name="replace-string">
<xsl:with-param name="text" select="$startstring" />
<xsl:with-param name="replace" select=""\"" />
<xsl:with-param name="with" select=""\\"" />
</xsl:call-template>
</xsl:variable>
<xsl:variable name="rep2">
<xsl:call-template name="replace-string">
<xsl:with-param name="text" select="$rep1" />
<xsl:with-param name="replace" select=""'"" />
<xsl:with-param name="with" select=""\&'"" />
</xsl:call-template>
</xsl:variable>
<xsl:call-template name="replace-string">
<xsl:with-param name="text" select="$rep2" />
<xsl:with-param name="replace" select=""."" />
<xsl:with-param name="with" select=""\&."" />
</xsl:call-template>
</xsl:template>
<!-- Template replace-string is borrowed at http://www.dpawson.co.uk/xsl/sect2/replace.html -->
<xsl:template name="replace-string">
<xsl:param name="text"/>
<xsl:param name="replace"/>
<xsl:param name="with"/>
<xsl:choose>
<xsl:when test="contains($text,$replace)">
<xsl:value-of select="substring-before($text,$replace)"/>
<xsl:value-of select="$with"/>
<xsl:call-template name="replace-string">
<xsl:with-param name="text" select="substring-after($text,$replace)"/>
<xsl:with-param name="replace" select="$replace"/>
<xsl:with-param name="with" select="$with"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$text"/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
</xsl:stylesheet>
|