forked from phpDocumentor/phpDocumentor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapi-doc.xsl
More file actions
26 lines (21 loc) · 842 Bytes
/
api-doc.xsl
File metadata and controls
26 lines (21 loc) · 842 Bytes
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
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output indent="yes" method="html"/>
<xsl:include href="chrome.xsl"/>
<xsl:include href="api-doc/property.xsl"/>
<xsl:include href="api-doc/class.xsl"/>
<xsl:include href="api-doc/constant.xsl"/>
<xsl:include href="api-doc/function.xsl"/>
<xsl:include href="api-doc/docblock.xsl"/>
<xsl:include href="api-doc/file.xsl"/>
<xsl:template name="content">
<div id="content">
<xsl:apply-templates select="/project/file[@path=$path]"/>
</div>
<small class="footer">
Documentation was generated by
<a href="http://docblox-project.org">DocBlox
<xsl:value-of select="$version"/>
</a>.
</small>
</xsl:template>
</xsl:stylesheet>