1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:db="http://docbook.org/ns/docbook"
exclude-result-prefixes="db"
>
<!-- ********************************************************************
********************************************************************
Copyright 2010-2022, Regina Obe
License: BSD-3-Clause
Purpose: This is an xsl transform that generates file list_geography_functions.xml.xsl which
includes index listing of functions accepting or returning geography.
It uses xml reference sections from reference.xml to then be processed by docbook
******************************************************************** -->
<xsl:output method="xml" indent="yes" encoding="utf-8" />
<!-- We deal only with the reference chapters -->
<xsl:template match="/">
<xsl:apply-templates select="/db:book/db:chapter[contains(@xml:id, 'reference')]" />
</xsl:template>
<xsl:template match="/">
<itemizedlist>
<!-- Pull out the purpose section for each ref entry and strip whitespace and put in a variable to be tagged unto each function comment -->
<xsl:for-each select='//db:refentry'>
<xsl:sort select="@xml:id"/>
<xsl:variable name='comment'>
<xsl:value-of select="normalize-space(translate(translate(db:refnamediv/db:refpurpose,'
', ' '), '	', ' '))"/>
</xsl:variable>
<xsl:variable name="refid">
<xsl:value-of select="@xml:id" />
</xsl:variable>
<xsl:variable name="refname">
<xsl:value-of select="db:refnamediv/db:refname" />
</xsl:variable>
<!-- If at least one proto function accepts or returns a geography -->
<xsl:choose>
<xsl:when test="
contains(db:refsynopsisdiv/db:funcsynopsis,'geography') or
contains(db:refsynopsisdiv/db:funcsynopsis/db:funcprototype/db:funcdef,'geography')
">
<listitem><simpara><link linkend="{$refid}"><xsl:value-of select="$refname" /></link> - <xsl:value-of select="$comment" /></simpara></listitem>
</xsl:when>
</xsl:choose>
</xsl:for-each>
</itemizedlist>
</xsl:template>
</xsl:stylesheet>
|