109 lines
2.6 KiB
XML
109 lines
2.6 KiB
XML
|
<?xml version="1.0"?>
|
||
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
|
||
|
|
||
|
<xsl:output method="xml" omit-xml-declaration="yes" indent="no"/>
|
||
|
|
||
|
<xsl:template match="/">
|
||
|
<xsl:apply-templates/>
|
||
|
</xsl:template>
|
||
|
|
||
|
<xsl:template match="ljxmlrpc">
|
||
|
<reference>
|
||
|
<title>XML/RPC Protocol Reference</title>
|
||
|
<xsl:apply-templates/>
|
||
|
</reference>
|
||
|
</xsl:template>
|
||
|
|
||
|
<xsl:template match="method">
|
||
|
<refentry>
|
||
|
<refnamediv>
|
||
|
<refname><xsl:value-of select="@name"/></refname>
|
||
|
<refpurpose><xsl:value-of select="shortdes"/></refpurpose>
|
||
|
</refnamediv>
|
||
|
|
||
|
<refsect1>
|
||
|
<title>Mode Description</title>
|
||
|
<para>
|
||
|
<xsl:value-of select="des"/>
|
||
|
</para>
|
||
|
</refsect1>
|
||
|
|
||
|
<refsect1>
|
||
|
<title>Arguments</title>
|
||
|
<orderedlist>
|
||
|
<xsl:for-each select="arguments">
|
||
|
<xsl:apply-templates/>
|
||
|
</xsl:for-each>
|
||
|
</orderedlist>
|
||
|
</refsect1>
|
||
|
|
||
|
<refsect1>
|
||
|
<title>Return Values</title>
|
||
|
<orderedlist>
|
||
|
<xsl:for-each select="returns">
|
||
|
<xsl:apply-templates/>
|
||
|
</xsl:for-each>
|
||
|
</orderedlist>
|
||
|
</refsect1>
|
||
|
|
||
|
</refentry>
|
||
|
</xsl:template>
|
||
|
|
||
|
<xsl:template match="struct">
|
||
|
<listitem><para>
|
||
|
<emphasis>[struct]</emphasis>
|
||
|
<xsl:call-template name="count"/>
|
||
|
Containing keys:
|
||
|
<itemizedlist>
|
||
|
<xsl:for-each select="*">
|
||
|
<xsl:apply-templates select="."/>
|
||
|
</xsl:for-each>
|
||
|
</itemizedlist>
|
||
|
</para></listitem>
|
||
|
</xsl:template>
|
||
|
|
||
|
<xsl:template match="scalar">
|
||
|
<listitem><para>
|
||
|
<emphasis>[scalar]</emphasis>
|
||
|
<xsl:call-template name="count"/>
|
||
|
<xsl:value-of select="des"/>
|
||
|
</para></listitem>
|
||
|
</xsl:template>
|
||
|
|
||
|
<xsl:template match="key">
|
||
|
<listitem><para>
|
||
|
<emphasis role="bold"><xsl:value-of select="@name"/></emphasis>:
|
||
|
<itemizedlist>
|
||
|
<xsl:value-of select="./des"/>
|
||
|
<xsl:for-each select="*">
|
||
|
<xsl:apply-templates select="."/>
|
||
|
</xsl:for-each>
|
||
|
</itemizedlist>
|
||
|
</para></listitem>
|
||
|
</xsl:template>
|
||
|
|
||
|
<xsl:template match="list">
|
||
|
<listitem><para>
|
||
|
<emphasis>[list]</emphasis>
|
||
|
<xsl:call-template name="count"/>
|
||
|
<xsl:value-of select="des"/>
|
||
|
Containing items:
|
||
|
<itemizedlist>
|
||
|
<xsl:for-each select="scalar|struct|list">
|
||
|
<xsl:apply-templates select="."/>
|
||
|
</xsl:for-each>
|
||
|
</itemizedlist>
|
||
|
</para></listitem>
|
||
|
</xsl:template>
|
||
|
|
||
|
<xsl:template name="count">
|
||
|
<xsl:choose>
|
||
|
<xsl:when test="@count='1'">(required)</xsl:when>
|
||
|
<xsl:when test="@count='opt'">(optional)</xsl:when>
|
||
|
<xsl:when test="@count='1more'">(required; multiple allowed)</xsl:when>
|
||
|
<xsl:when test="@count='0more'">(optional; multiple allowed)</xsl:when>
|
||
|
</xsl:choose>
|
||
|
</xsl:template>
|
||
|
|
||
|
</xsl:stylesheet>
|