Ein Roboter mit bürstenlosem Antrieb, differenzial und NRF24L01 Funk. Großflächig gebaut um ein großes Solarpanel aufzunehmen.
https://gitlab.informatik.hs-fulda.de/fdai5253/roboter
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
2.0 KiB
41 lines
2.0 KiB
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
|
|
<xsl:output method="text" standalone="yes" />
|
|
<xsl:template match="/">
|
|
<xsl:apply-templates select="//sectiondef[@kind='public-func']/memberdef[@kind='function']" />
|
|
</xsl:template>
|
|
<xsl:template match="memberdef">
|
|
<!-- xsl:text>
=== </xsl:text><xsl:value-of select="definition"/> <xsl:value-of select="argsstring"/><xsl:text> ===
</xsl:text -->
|
|
<xsl:text>
=== </xsl:text><xsl:value-of select="name"/><xsl:text> ===

</xsl:text>
|
|
<xsl:apply-templates select="briefdescription"/>
|
|
<xsl:if test="count(detaileddescription/para[not(./*)]) < 1"><xsl:text>
</xsl:text></xsl:if>
|
|
<xsl:apply-templates select="detaileddescription"/>
|
|
</xsl:template>
|
|
<xsl:template match="briefdescription/para">''<xsl:value-of select="."/>'' </xsl:template>
|
|
<xsl:template match="detaileddescription/para/parameterlist">
|
|
Parameters:
|
|
|
|
<xsl:apply-templates select="parameteritem"/>
|
|
</xsl:template>
|
|
<xsl:template match="parameteritem">* ''<xsl:value-of select="parameternamelist/parametername"/>'': <xsl:value-of select="parameterdescription/para"/><xsl:text>
</xsl:text>
|
|
</xsl:template>
|
|
<xsl:template match="detaileddescription/para[not(./*)]">
|
|
<xsl:value-of select="."/><xsl:text>
</xsl:text>
|
|
</xsl:template>
|
|
<xsl:template match="detaileddescription/para/simplesect[@kind='return']/para">
|
|
Returns:
|
|
|
|
* <xsl:value-of select="."/><xsl:text>
</xsl:text>
|
|
</xsl:template>
|
|
<xsl:template match="detaileddescription/para/simplesect[@kind='warning']/para">
|
|
Warning: <xsl:value-of select="."/><xsl:text>
</xsl:text>
|
|
|
|
</xsl:template>
|
|
<xsl:template match="detaileddescription/para/programlisting">
|
|
<xsl:text>
<pre>
</xsl:text><xsl:apply-templates select="codeline"/><xsl:text></pre>
</xsl:text>
|
|
</xsl:template>
|
|
<xsl:template match="codeline">
|
|
<xsl:value-of select="."/><xsl:text>
</xsl:text>
|
|
</xsl:template>
|
|
<xsl:template match="text()"/>
|
|
</xsl:stylesheet>
|
|
|