Skip to content
Snippets Groups Projects
Commit 7fdc8358 authored by Simon McVittie's avatar Simon McVittie
Browse files

devhelp2man: Add minimal support for older gtk-doc versions


This doesn't screen-scrape out the full description of the function,
but it gets the name of the man page right, which is enough to make
the build not fail.

Signed-off-by: default avatarSimon McVittie <smcv@collabora.com>
parent d572b9fa
No related branches found
No related tags found
1 merge request!311Build capsule-capture-libs from a bundled copy of libcapsule
......@@ -85,6 +85,16 @@ License along with libcapsule. If not, see <http://www.gnu.org/licenses/>.
</xsl:if>
</xsl:template>
<xsl:template match="refsynopsisdiv/synopsis/link" mode="refnamediv">
<xsl:param name="matched" select="."/>
<xsl:if test="$matched = $target">
<xsl:element name="refname">
<xsl:value-of select="."/>
</xsl:element>
<xsl:apply-templates/>
</xsl:if>
</xsl:template>
<xsl:template name="paramdef" match="parameter" mode="funcsig">
<xsl:param name="tok" select="string:tokenize(., ' ')"/>
<xsl:param name="last" select="ext:node-set($tok)[last()]"/>
......@@ -157,7 +167,14 @@ License along with libcapsule. If not, see <http://www.gnu.org/licenses/>.
</xsl:element>
</xsl:element>
<xsl:element name="refnamediv">
<xsl:apply-templates select="refsect1[@role='functions_proto']"/>
<xsl:choose>
<xsl:when test="refsect1[@role='functions_proto']">
<xsl:apply-templates select="refsect1[@role='functions_proto']"/>
</xsl:when>
<xsl:otherwise>
<xsl:apply-templates select="refsynopsisdiv[@role='synopsis']" mode="refnamediv"/>
</xsl:otherwise>
</xsl:choose>
</xsl:element>
<xsl:element name="refsynopsisdiv">
<xsl:element name="funcsynopsis">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment