updated Changelog, added two XSL stylesheets to for pretty tables of variables and...
authorJason Tan <jtan325@users.sourceforge.net>
Sat, 27 Aug 2005 11:39:41 +0000 (11:39 +0000)
committerJason Tan <jtan325@users.sourceforge.net>
Sat, 27 Aug 2005 11:39:41 +0000 (11:39 +0000)
git-svn-id: https://conky.svn.sourceforge.net/svnroot/conky/trunk/conky@214 7f574dfc-610e-0410-a909-a81674777703

ChangeLog
debian/changelog
doc/config_settings.xsl [new file with mode: 0644]
doc/variables.xsl [new file with mode: 0644]

index 4c6e42a..aae8678 100644 (file)
--- a/ChangeLog
+++ b/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
 
        * Added fix for battery charged state (thanks to Lukas Zapletal
        <lzap@seznam.cz>)
 
+=========================================================================
+=========================================================================
+       
 2005-07-05
        * Conky 1.1 released
 
        * 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
index 5da218a..163d8bb 100644 (file)
@@ -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.
diff --git a/doc/config_settings.xsl b/doc/config_settings.xsl
new file mode 100644 (file)
index 0000000..e679ce5
--- /dev/null
@@ -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>
\ No newline at end of file
diff --git a/doc/variables.xsl b/doc/variables.xsl
new file mode 100644 (file)
index 0000000..8796a16
--- /dev/null
@@ -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>
\ No newline at end of file