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 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157
|
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:pdx="http://xml.phpdox.net/src"
xmlns:pdxf="http://xml.phpdox.net/functions"
xmlns:pu="http://schema.phpunit.de/coverage/1.0"
xmlns:func="http://exslt.org/functions"
xmlns:idx="http://xml.phpdox.net/src"
xmlns:git="http://xml.phpdox.net/gitlog"
xmlns:ctx="ctx://engine/html"
extension-element-prefixes="func"
exclude-result-prefixes="idx pdx pdxf pu git ctx">
<xsl:variable name="type">
<xsl:choose>
<xsl:when test="local-name($unit) = 'class'">classes</xsl:when>
<xsl:when test="local-name($unit) = 'trait'">traits</xsl:when>
<xsl:when test="local-name($unit) = 'interface'">interfaces</xsl:when>
</xsl:choose>
</xsl:variable>
<xsl:template name="synopsis">
<xsl:param name="unit" />
<div class="synopsis">
<xsl:value-of select="local-name($unit)" /> <xsl:value-of select="$unit/@name" />
<xsl:if test="$unit/pdx:extends">
extends <xsl:for-each select="$unit/pdx:extends">
<xsl:copy-of select="pdxf:link(., '', @name)" />
<xsl:if test="position() != last()">, </xsl:if>
</xsl:for-each>
</xsl:if>
<xsl:if test="$unit/pdx:implements">
implements
<xsl:for-each select="$unit/pdx:implements">
<xsl:copy-of select="pdxf:link(., '', @name)" />
<xsl:if test="position() != last()">,</xsl:if>
</xsl:for-each>
</xsl:if>
{<br/>
<xsl:if test="$unit/pdx:constant">
<ul class="none">
<li>// constants</li>
<xsl:for-each select="$unit/pdx:constant">
<li>const <xsl:value-of select="@name" /> = <xsl:choose>
<xsl:when test="@value = ''"><xsl:value-of select="@constant" /></xsl:when>
<xsl:otherwise><xsl:value-of select="@value" /></xsl:otherwise>
</xsl:choose>;</li>
</xsl:for-each>
</ul>
</xsl:if>
<xsl:for-each select="$unit/pdx:parent[pdx:constant]">
<ul class="none">
<li>// Inherited constants from <xsl:copy-of select="pdxf:link(., '', @name)" /></li>
<xsl:for-each select="pdx:constant">
<li>const <a href="#{@name}"><xsl:value-of select="@name" /></a> = <xsl:choose>
<xsl:when test="@value = ''"><xsl:value-of select="@constant" /></xsl:when>
<xsl:otherwise><xsl:value-of select="@value" /></xsl:otherwise>
</xsl:choose>;</li>
</xsl:for-each>
</ul>
</xsl:for-each>
<xsl:if test="$unit/pdx:member">
<ul class="none">
<li>// members</li>
<xsl:for-each select="$unit/pdx:member">
<li>
<xsl:value-of select="@visibility" /><xsl:if test="@static = 'true'"> static</xsl:if><xsl:call-template name="vartype" /> <a href="#members">$<xsl:value-of select="@name" /></a><xsl:if test="@default or @constant"> =
<xsl:choose>
<xsl:when test="@default = ''"> <xsl:value-of select="@constant" /></xsl:when>
<xsl:otherwise><xsl:value-of select="@default" /></xsl:otherwise>
</xsl:choose></xsl:if>;
</li>
</xsl:for-each>
</ul>
</xsl:if>
<xsl:for-each select="$unit/pdx:parent[pdx:member]">
<ul class="none">
<li>// Inherited members from <span title="{@full}"><xsl:value-of select="@name" /></span></li>
<xsl:for-each select="pdx:member">
<li>
<xsl:value-of select="@visibility" /><xsl:if test="@static = 'true'"> static</xsl:if><xsl:call-template name="vartype" /> <a href="#members">$<xsl:value-of select="@name" /></a>;
</li>
</xsl:for-each>
</ul>
</xsl:for-each>
<xsl:if test="$unit/pdx:constructor|$unit/pdx:destructor|$unit/pdx:method">
<ul class="none">
<li>// methods</li>
<xsl:for-each select="$unit/pdx:constructor|$unit/pdx:destructor|$unit/pdx:method">
<li>
<xsl:value-of select="@visibility" /><xsl:if test="@final = 'true'"> final</xsl:if><xsl:if test="@abstract = 'true'"> abstract</xsl:if><xsl:if test="@static = 'true'"> static</xsl:if> <xsl:call-template
name="returntype">
<xsl:with-param name="ctx" select="." />
</xsl:call-template> <xsl:copy-of select="pdxf:link($unit, @name, @name)" />()
</li>
</xsl:for-each>
</ul>
</xsl:if>
<xsl:for-each select="$unit/pdx:parent[pdx:method[@visibility != 'private']|pdx:constructor[@visibility != 'private']|pdx:destructor[@visibility != 'private']]|$unit/pdx:trait[pdx:method]">
<xsl:variable name="parent" select="." />
<ul class="none">
<li>// Inherited methods from <span title="{@full}"><xsl:value-of select="@name" /></span></li>
<xsl:for-each select="pdx:constructor[@visibility != 'private']|pdx:destructor[@visibility != 'private']|pdx:method[@visibility != 'private']">
<xsl:variable name="title">
<xsl:choose>
<xsl:when test="@original"><xsl:value-of select="@original" /></xsl:when>
<xsl:otherwise><xsl:value-of select="@name" /></xsl:otherwise>
</xsl:choose>
</xsl:variable>
<li>
<xsl:value-of select="@visibility" /><xsl:if test="@final = 'true'"> final</xsl:if><xsl:if test="@abstract = 'true'"> abstract</xsl:if><xsl:if test="@static = 'true'"> static</xsl:if> <xsl:call-template
name="type"><xsl:with-param name="ctx" select="." /></xsl:call-template> <xsl:copy-of select="pdxf:link($parent, $title, @name)" />()
</li>
</xsl:for-each>
</ul>
</xsl:for-each>
}<br/>
</div>
</xsl:template>
<!-- ######################################################################################################### -->
<xsl:template name="vartype">
<xsl:choose>
<xsl:when test="pdx:docblock/pdx:var/@type = 'object'"> <span title="{pdx:docblock/pdx:var/pdx:type/@full}"><xsl:value-of select="pdx:docblock/pdx:var/pdx:type/@name" /></span></xsl:when>
<xsl:when test="@type = '{unknown}'">
<xsl:if test="pdx:docblock/pdx:var/@type"> <xsl:value-of select="pdx:docblock/pdx:var/@type" /></xsl:if>
</xsl:when>
<xsl:otherwise> <xsl:value-of select="@type" /></xsl:otherwise>
</xsl:choose>
</xsl:template>
<!-- ######################################################################################################### -->
<xsl:template name="returntype">
<xsl:param name="ctx" />
<xsl:choose>
<xsl:when test="pdx:return"><xsl:if test="pdx:return/@nullable = 'true'">?</xsl:if>
<xsl:choose>
<xsl:when test="pdx:return/@type = 'object'"><span title="{pdx:return/pdx:type/@name}"><xsl:value-of select="pdx:return/pdx:type/@name" /></span></xsl:when>
<xsl:otherwise><xsl:value-of select="pdx:return/@type" /></xsl:otherwise>
</xsl:choose>
</xsl:when>
<xsl:when test="pdx:docblock/pdx:return/@type = 'object'"><xsl:value-of select="pdx:docblock/pdx:return/pdx:type/@name" /></xsl:when>
<xsl:when test="not(pdx:docblock/pdx:return)">void</xsl:when>
<xsl:otherwise><xsl:value-of select="pdx:docblock/pdx:return/@type" /></xsl:otherwise>
</xsl:choose>
</xsl:template>
</xsl:stylesheet>
|