mirror of
https://github.com/Llewellynvdm/conky.git
synced 2024-11-06 05:17:57 +00:00
3d26a4880e
git-svn-id: https://conky.svn.sourceforge.net/svnroot/conky/trunk/conky1@1007 7f574dfc-610e-0410-a909-a81674777703
47 lines
1.1 KiB
XML
47 lines
1.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
version="1.0">
|
|
|
|
<!--jtan325 created this-->
|
|
<xsl:output method="html"/>
|
|
|
|
<xsl:template match="/">
|
|
<html>
|
|
<head>
|
|
<title>~/.conkyrc settings</title>
|
|
</head>
|
|
<body bgcolor="#FFFFFF">
|
|
<xsl:apply-templates />
|
|
</body>
|
|
</html>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="variablelist" >
|
|
<table cellpadding="3">
|
|
|
|
<tr bgcolor = "#eecfa1">
|
|
<th>Variable</th>
|
|
<th>Explanation</th>
|
|
</tr>
|
|
|
|
<xsl:for-each select="varlistentry">
|
|
<xsl:variable name="row_bg">
|
|
<xsl:choose>
|
|
<xsl:when test="position() mod 2 = 1">#fffafa</xsl:when>
|
|
<xsl:otherwise>#b4cdcd</xsl:otherwise>
|
|
</xsl:choose>
|
|
</xsl:variable>
|
|
<tr bgcolor = "{$row_bg}">
|
|
<td align="center">
|
|
<xsl:value-of select="term/command/option" />
|
|
</td>
|
|
<td>
|
|
<xsl:value-of select="listitem" />
|
|
</td>
|
|
</tr>
|
|
</xsl:for-each>
|
|
</table>
|
|
</xsl:template>
|
|
|
|
</xsl:stylesheet>
|