c77ba6bebc
There's work to do still for giving a prettier style on the documentation, for instance splitting paragraphs correctly and printing the detailed description of the methods as well. Signed-off-by: Tiago Vignatti <tiago.vignatti@intel.com>
73 lines
2.0 KiB
XML
73 lines
2.0 KiB
XML
<?xml version="1.0" ?>
|
|
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
|
<xsl:output method="xml" encoding="UTF-8" indent="yes" />
|
|
|
|
<xsl:template match="/">
|
|
<!-- insert docbook's DOCTYPE blurb -->
|
|
<xsl:text disable-output-escaping = "yes"><![CDATA[
|
|
<!DOCTYPE appendix PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
|
|
<!ENTITY % BOOK_ENTITIES SYSTEM "Wayland.ent">
|
|
%BOOK_ENTITIES;
|
|
]>
|
|
]]></xsl:text>
|
|
|
|
<section id="sect-Library-Client">
|
|
<title>Client API</title>
|
|
<para>Following is the Wayland library classes for clients
|
|
(<emphasis>libwayland-client</emphasis>). Note that most of the
|
|
procedures are related with IPC, which is the main responsibility of
|
|
the library.
|
|
</para>
|
|
|
|
<para>
|
|
<variablelist>
|
|
<xsl:apply-templates select="/doxygen/compounddef" />
|
|
</variablelist>
|
|
</para>
|
|
|
|
<para>And methods for the respective classes.</para>
|
|
|
|
<para>
|
|
<variablelist>
|
|
<xsl:apply-templates select="/doxygen/compounddef/sectiondef/memberdef" />
|
|
</variablelist>
|
|
</para>
|
|
</section>
|
|
</xsl:template>
|
|
|
|
|
|
<!-- methods -->
|
|
<xsl:template match="memberdef" >
|
|
<xsl:if test="@kind = 'function' and @static = 'no'">
|
|
<varlistentry>
|
|
<term>
|
|
<xsl:value-of select="name" />
|
|
- <xsl:value-of select="briefdescription" />
|
|
</term>
|
|
<listitem>
|
|
<para></para>
|
|
</listitem>
|
|
</varlistentry>
|
|
</xsl:if>
|
|
</xsl:template>
|
|
|
|
<!-- classes -->
|
|
<xsl:template match="compounddef" >
|
|
<xsl:if test="@kind = 'class' ">
|
|
<varlistentry>
|
|
<term>
|
|
<xsl:value-of select="compoundname" />
|
|
<xsl:if test="briefdescription">
|
|
- <xsl:value-of select="briefdescription" />
|
|
</xsl:if>
|
|
</term>
|
|
|
|
<!-- TODO: the output text is not splitting paragraphs correctly -->
|
|
<listitem>
|
|
<para><xsl:value-of select="detaileddescription"/></para>
|
|
</listitem>
|
|
</varlistentry>
|
|
</xsl:if>
|
|
</xsl:template>
|
|
</xsl:stylesheet>
|