diff options
author | Stefan Reinauer <stepan@openbios.org> | 2006-10-19 19:06:28 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2006-10-19 19:06:28 +0000 |
commit | 2132f1a605383e9c7bc477a7f07c46035f455d12 (patch) | |
tree | 98b3bac4228e1b38a8a74f170ac7350682e230c2 /util/optionlist/Options-wiki.xsl | |
parent | fd845a04a901475ad85472a94789c34f151cf541 (diff) |
fix from Uwe Hermann: updated patch to fix a wiki syntax bug in the output...
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2462 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/optionlist/Options-wiki.xsl')
-rw-r--r-- | util/optionlist/Options-wiki.xsl | 29 |
1 files changed, 16 insertions, 13 deletions
diff --git a/util/optionlist/Options-wiki.xsl b/util/optionlist/Options-wiki.xsl index 9ab147f05b..0fe60aa6c3 100644 --- a/util/optionlist/Options-wiki.xsl +++ b/util/optionlist/Options-wiki.xsl @@ -3,30 +3,33 @@ <xsl:output method="text" encoding="utf-8" - indent="yes" /> + indent="yes" /> <xsl:template match="/"> -==LinuxBIOS Options== +This is an automatically generated list of '''LinuxBIOS compile-time options'''. -This is an automatically generated list of LinuxBIOS compile time -options. Created at <xsl:value-of select="//creationdate"/>. +Last update: <xsl:value-of select="//creationdate"/>. {| border="1" -|- bgcolor="#0975a7" +|- bgcolor="#6699dd" ! align="left" | Option ! align="left" | Comment ! align="left" | Default ! align="left" | Export ! align="left" | Format<xsl:for-each select="options/option"> -|- -| <xsl:value-of select="@name"/> -| <xsl:value-of select="comment"/> -| <xsl:value-of select="default"/> -| <xsl:value-of select="export"/> -| <xsl:value-of select="format"/> +|- bgcolor="#eeeeee" +| +<xsl:value-of select="@name"/> +| +<xsl:value-of select="comment"/> +| +<xsl:value-of select="default"/> +| +<xsl:value-of select="export"/> +| +<xsl:value-of select="format"/> </xsl:for-each> -|} - +|} </xsl:template> </xsl:stylesheet> |