mirror of
https://github.com/Llewellynvdm/conky.git
synced 2024-11-05 21:07:52 +00:00
updated Changelog, added two XSL stylesheets to for pretty tables of variables and configuration settings
git-svn-id: https://conky.svn.sourceforge.net/svnroot/conky/trunk/conky@214 7f574dfc-610e-0410-a909-a81674777703
This commit is contained in:
parent
52b2d75fad
commit
7986773643
10
ChangeLog
10
ChangeLog
@ -5,6 +5,7 @@
|
||||
* Diskio fixes (sf.net 1274140)
|
||||
* $alignr and $alignc now have 25% more goodness! (sf.net bug 1273905)
|
||||
* Far better SMP support
|
||||
* Added support for i8k kernel driver, parsing information for dell inspiron laptops found in /proc/i8k (sf.net request 1256058)
|
||||
|
||||
2005-08-25
|
||||
* More own_window fixes
|
||||
@ -45,7 +46,8 @@
|
||||
2005-08-07
|
||||
* mpd password patch from Joshua Gerrish
|
||||
* conky can run without X now, use --disable-x11 when configuring
|
||||
|
||||
=========================================================================
|
||||
=========================================================================
|
||||
2005-08-06
|
||||
* Conky 1.2 released
|
||||
|
||||
@ -126,6 +128,9 @@
|
||||
* Added fix for battery charged state (thanks to Lukas Zapletal
|
||||
<lzap@seznam.cz>)
|
||||
|
||||
=========================================================================
|
||||
=========================================================================
|
||||
|
||||
2005-07-05
|
||||
* Conky 1.1 released
|
||||
|
||||
@ -168,6 +173,9 @@
|
||||
* Removed NVCtrl code
|
||||
* Added noswap and i2c patches
|
||||
|
||||
=========================================================================
|
||||
=========================================================================
|
||||
|
||||
2005-06-21
|
||||
* Version 1.0. Conky is born from the ashes of torsmo. Main site: http://conky.rty.ca/
|
||||
* Added xwin patch
|
||||
|
2
debian/changelog
vendored
2
debian/changelog
vendored
@ -1,4 +1,4 @@
|
||||
conky (1.3.0-0ubuntu1) hoary; urgency=low
|
||||
conky (1.2.9) hoary; urgency=low
|
||||
|
||||
* Initial Release.
|
||||
* This is my first Debian Package, hopefully it works.
|
||||
|
45
doc/config_settings.xsl
Normal file
45
doc/config_settings.xsl
Normal file
@ -0,0 +1,45 @@
|
||||
<?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>Conky Variables</title>
|
||||
</head>
|
||||
<body bgcolor="#FFFFFF">
|
||||
<xsl:apply-templates />
|
||||
</body>
|
||||
</html>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="variablelist" >
|
||||
<table cellpadding="4">
|
||||
|
||||
<tr bgcolor = "#ffd700">
|
||||
<th>Option</th>
|
||||
<th>Explanation</th>
|
||||
</tr>
|
||||
|
||||
<xsl:for-each select="varlistentry">
|
||||
<tr bgcolor = "#4a708b">
|
||||
<td align="center" bgcolor="#2e8b57">
|
||||
<font color = "FFFFFF">
|
||||
<xsl:value-of select="term/command/option" />
|
||||
</font>
|
||||
</td>
|
||||
<td>
|
||||
<font color = "#c1cdcd">
|
||||
<xsl:value-of select="listitem" />
|
||||
</font>
|
||||
</td>
|
||||
</tr>
|
||||
</xsl:for-each>
|
||||
|
||||
</table>
|
||||
</xsl:template>
|
||||
|
||||
</xsl:stylesheet>
|
51
doc/variables.xsl
Normal file
51
doc/variables.xsl
Normal file
@ -0,0 +1,51 @@
|
||||
<?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>Conky Variables</title>
|
||||
</head>
|
||||
<body bgcolor="#FFFFFF">
|
||||
<xsl:apply-templates />
|
||||
</body>
|
||||
</html>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="variablelist" >
|
||||
<table cellpadding="4">
|
||||
|
||||
<tr bgcolor = "#ffd700">
|
||||
<th>Variable</th>
|
||||
<th>Arguments () = optional</th>
|
||||
<th>Explanation</th>
|
||||
</tr>
|
||||
|
||||
<xsl:for-each select="varlistentry">
|
||||
<tr bgcolor = "#4a708b">
|
||||
<td align="center" bgcolor="#2e8b57">
|
||||
<font color = "FFFFFF">
|
||||
<xsl:value-of select="term/command/option" />
|
||||
</font>
|
||||
</td>
|
||||
<td align="center">
|
||||
<font color = "#c1cdcd">
|
||||
<xsl:value-of select="term/option" />
|
||||
</font>
|
||||
</td>
|
||||
<td>
|
||||
<font color = "#c1cdcd">
|
||||
<xsl:value-of select="listitem" />
|
||||
</font>
|
||||
</td>
|
||||
</tr>
|
||||
</xsl:for-each>
|
||||
|
||||
</table>
|
||||
</xsl:template>
|
||||
|
||||
</xsl:stylesheet>
|
Loading…
Reference in New Issue
Block a user