2017-09-28 18:08:53 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
|
2017-10-10 19:57:53 +00:00
|
|
|
<xsl:output method="html" doctype-system="about:legacy-compat"/>
|
2017-09-28 18:08:53 +00:00
|
|
|
<xsl:template match="/">
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<style>
|
2017-10-01 12:26:32 +00:00
|
|
|
table
|
|
|
|
{
|
2017-10-09 19:10:47 +00:00
|
|
|
border: 3px solid black;
|
2017-10-01 12:26:32 +00:00
|
|
|
}
|
2017-10-09 19:10:47 +00:00
|
|
|
|
|
|
|
.first-row
|
2017-10-01 12:26:32 +00:00
|
|
|
{
|
2017-10-09 19:10:47 +00:00
|
|
|
border-top: 3px solid black;
|
2017-10-01 12:26:32 +00:00
|
|
|
}
|
|
|
|
|
2017-10-09 19:10:47 +00:00
|
|
|
th
|
2017-10-01 12:26:32 +00:00
|
|
|
{
|
2017-10-09 19:10:47 +00:00
|
|
|
font-weight: normal;
|
2017-10-01 12:26:32 +00:00
|
|
|
white-space: nowrap;
|
2017-10-09 19:10:47 +00:00
|
|
|
padding: 15px 5px 15px 5px;
|
|
|
|
border-top: 1px solid black;
|
|
|
|
border-left: 1px solid black;
|
|
|
|
border-right: 1px solid black;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
td
|
|
|
|
{
|
|
|
|
padding: 15px 5px 15px 5px;
|
2017-10-01 12:26:32 +00:00
|
|
|
}
|
2017-10-09 19:10:47 +00:00
|
|
|
|
2017-10-01 12:26:32 +00:00
|
|
|
.cell-def
|
|
|
|
{
|
|
|
|
white-space: nowrap;
|
2017-10-09 19:10:47 +00:00
|
|
|
border-top: 1px solid black;
|
2017-10-01 12:26:32 +00:00
|
|
|
}
|
2017-10-02 08:40:20 +00:00
|
|
|
.cell-vals
|
|
|
|
{
|
2017-10-09 19:10:47 +00:00
|
|
|
border-top: 1px solid black;
|
|
|
|
}
|
|
|
|
.cell-desc
|
|
|
|
{
|
|
|
|
border-top: 1px solid black;
|
2017-10-02 08:40:20 +00:00
|
|
|
}
|
2017-09-28 18:08:53 +00:00
|
|
|
|
2017-10-09 19:10:47 +00:00
|
|
|
.audio {background-color: hsl(0, 100%, 94%);}
|
2017-10-02 08:40:20 +00:00
|
|
|
.midi {background-color: hsl(165, 100%, 85%);}
|
|
|
|
.player {background-color: hsl(60, 100%, 80%);}
|
|
|
|
.shell {background-color: hsl(36, 100%, 85%);}
|
|
|
|
.synth {background-color: hsl(105, 100%, 85%);}
|
2017-09-28 18:08:53 +00:00
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h2>FluidSettings</h2>
|
2017-10-09 19:10:47 +00:00
|
|
|
<table>
|
|
|
|
<!--print each and every setting row by row in the table-->
|
2017-09-28 18:08:53 +00:00
|
|
|
<xsl:for-each select="fluidsettings/*/*">
|
2017-10-01 12:26:32 +00:00
|
|
|
<xsl:sort select="name(..)" />
|
2017-09-28 18:08:53 +00:00
|
|
|
<xsl:sort select="name" />
|
|
|
|
<tr>
|
|
|
|
<!-- the class attribute of tr shall be the name of the settings group of the current setting -->
|
|
|
|
<xsl:attribute name="class">
|
|
|
|
<xsl:value-of select="name(..)" />
|
|
|
|
</xsl:attribute>
|
|
|
|
|
2017-10-09 19:10:47 +00:00
|
|
|
<td class="cell-name first-row">
|
2017-10-10 19:57:53 +00:00
|
|
|
<xsl:attribute name="id"><xsl:value-of select="name(..)" /><![CDATA[.]]><xsl:value-of select="name" /></xsl:attribute>
|
2017-10-09 19:10:47 +00:00
|
|
|
<a>
|
2017-10-10 19:57:53 +00:00
|
|
|
<xsl:attribute name="href"><![CDATA[#]]><xsl:value-of select="name(..)" /><![CDATA[.]]><xsl:value-of select="name" /></xsl:attribute>
|
2017-10-09 19:10:47 +00:00
|
|
|
<xsl:value-of select="name(..)" />.<xsl:value-of select="name" />
|
|
|
|
</a>
|
2017-09-28 18:08:53 +00:00
|
|
|
</td>
|
2017-10-01 12:26:32 +00:00
|
|
|
|
2017-10-09 19:10:47 +00:00
|
|
|
<th class="first-row">Type</th>
|
|
|
|
|
|
|
|
<td class="cell-type first-row">
|
2017-10-01 12:26:32 +00:00
|
|
|
<xsl:value-of select="type" />
|
|
|
|
</td>
|
2017-10-09 19:10:47 +00:00
|
|
|
</tr>
|
|
|
|
|
|
|
|
<tr>
|
|
|
|
<xsl:attribute name="class">
|
|
|
|
<xsl:value-of select="name(..)" />
|
|
|
|
</xsl:attribute>
|
|
|
|
<td></td>
|
|
|
|
<th>Default</th>
|
2017-10-01 12:26:32 +00:00
|
|
|
<td class="cell-def">
|
|
|
|
<xsl:copy-of select="def" />
|
|
|
|
</td>
|
2017-10-09 19:10:47 +00:00
|
|
|
</tr>
|
|
|
|
|
|
|
|
<tr>
|
|
|
|
<xsl:attribute name="class">
|
|
|
|
<xsl:value-of select="name(..)" />
|
|
|
|
</xsl:attribute>
|
|
|
|
<td></td>
|
|
|
|
<th>
|
|
|
|
<xsl:choose>
|
|
|
|
<xsl:when test="type = 'str'">
|
|
|
|
Values
|
|
|
|
</xsl:when>
|
|
|
|
<xsl:when test="type = 'bool'">
|
|
|
|
Values
|
|
|
|
</xsl:when>
|
|
|
|
<xsl:otherwise>
|
|
|
|
Min
|
|
|
|
-
|
|
|
|
Max
|
|
|
|
</xsl:otherwise>
|
|
|
|
</xsl:choose>
|
|
|
|
</th>
|
2017-10-01 12:26:32 +00:00
|
|
|
|
|
|
|
<td class="cell-vals">
|
2017-09-28 18:08:53 +00:00
|
|
|
<xsl:choose>
|
2017-10-01 12:26:32 +00:00
|
|
|
<xsl:when test="type = 'str'">
|
|
|
|
<xsl:value-of select="vals" />
|
|
|
|
</xsl:when>
|
|
|
|
<xsl:when test="type = 'bool'">
|
2017-10-09 19:10:47 +00:00
|
|
|
1, "yes", 0, "no"
|
2017-09-28 18:08:53 +00:00
|
|
|
</xsl:when>
|
|
|
|
<xsl:otherwise>
|
2017-10-01 12:26:32 +00:00
|
|
|
<xsl:value-of select="min" />
|
2017-10-09 19:10:47 +00:00
|
|
|
-
|
2017-10-01 12:26:32 +00:00
|
|
|
<xsl:value-of select="max" />
|
2017-09-28 18:08:53 +00:00
|
|
|
</xsl:otherwise>
|
|
|
|
</xsl:choose>
|
|
|
|
</td>
|
2017-10-02 08:40:20 +00:00
|
|
|
</tr>
|
2017-10-09 19:10:47 +00:00
|
|
|
|
2017-10-02 08:40:20 +00:00
|
|
|
<tr>
|
|
|
|
<xsl:attribute name="class">
|
|
|
|
<xsl:value-of select="name(..)" />
|
|
|
|
</xsl:attribute>
|
2017-10-09 19:10:47 +00:00
|
|
|
<td></td>
|
|
|
|
<th>Description</th>
|
|
|
|
<td class="cell-desc">
|
2017-10-01 12:26:32 +00:00
|
|
|
<xsl:copy-of select="desc" />
|
2017-09-28 18:08:53 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</xsl:for-each>
|
|
|
|
</table>
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
</xsl:template>
|
|
|
|
</xsl:stylesheet>
|
|
|
|
|