Author: uwe Date: 2009-06-03 01:49:00 +0200 (Wed, 03 Jun 2009) New Revision: 4330
Modified: trunk/coreboot-v2/util/optionlist/Options-wiki.xsl Log: 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
Modified: trunk/coreboot-v2/util/optionlist/Options-wiki.xsl =================================================================== --- trunk/coreboot-v2/util/optionlist/Options-wiki.xsl 2009-06-01 20:02:21 UTC (rev 4329) +++ trunk/coreboot-v2/util/optionlist/Options-wiki.xsl 2009-06-02 23:49:00 UTC (rev 4330) @@ -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>