23 lines
748 B
XML
23 lines
748 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
|
|
|
|
<xsl:output method="html" encoding="windows-1252" indent="yes"/>
|
|
|
|
<xsl:template match="/">
|
|
<html>
|
|
<head>
|
|
<link rel="stylesheet" type="text/css" href="../appl/api2/reference.css?"/>
|
|
</head>
|
|
<body>
|
|
<h1>API reference</h1>
|
|
<xsl:for-each select="/api/fields/*">
|
|
<br />
|
|
<xsl:element name="a">
|
|
<xsl:attribute name="href">../api2/<xsl:value-of select="local-name()"/>.doc</xsl:attribute>
|
|
<xsl:value-of select="local-name()"/>
|
|
</xsl:element>
|
|
</xsl:for-each>
|
|
</body>
|
|
</html>
|
|
</xsl:template>
|
|
</xsl:stylesheet> |