diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2009-06-02 23:49:00 +0000 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2009-06-02 23:49:00 +0000 |
commit | f8318fe8f9af3d92eaf24aea3457a011e5fde134 (patch) | |
tree | 3b7085354f8a0196f3b3bb8558c757fb7a1eeb19 /util/optionlist/Options-wiki.xsl | |
parent | c7a6447c8fc38f33b6f109081662199c9ce6c935 (diff) |
More compact format for wiki output at
http://www.coreboot.org/Coreboot_Options (trivial).
Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Uwe Hermann <uwe@hermann-uwe.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4330 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/optionlist/Options-wiki.xsl')
-rw-r--r-- | util/optionlist/Options-wiki.xsl | 19 |
1 files changed, 6 insertions, 13 deletions
diff --git a/util/optionlist/Options-wiki.xsl b/util/optionlist/Options-wiki.xsl index 5f5327f865..fca0427c2b 100644 --- a/util/optionlist/Options-wiki.xsl +++ b/util/optionlist/Options-wiki.xsl @@ -25,29 +25,22 @@ indent="yes" /> <xsl:template match="/"> -This is an automatically generated list of '''coreboot compile-time options'''. +This is an automatically generated list of '''coreboot v2 compile-time options'''. Last update: <xsl:value-of select="//creationdate"/>. -{| border="0" +{| border="0" style="font-size: smaller" |- bgcolor="#6699dd" ! align="left" | Option ! align="left" | Comment ! align="left" | Default ! align="left" | Export -! align="left" | Format<xsl:for-each select="options/option"> +! align="left" | Format +<xsl:for-each select="options/option"> |- 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: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> |