0fe60aa6c385aa4c7ae80bc4bf8766cb48aafb6f
[coreboot.git] / util / optionlist / Options-wiki.xsl
1 <?xml version="1.0"?>
2 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
3
4 <xsl:output method="text"
5             encoding="utf-8"
6             indent="yes" />
7
8 <xsl:template match="/">
9 This is an automatically generated list of '''LinuxBIOS compile-time options'''.
10
11 Last update: <xsl:value-of select="//creationdate"/>.
12
13 {| border="1"
14 |- bgcolor="#6699dd"
15 ! align="left" | Option
16 ! align="left" | Comment
17 ! align="left" | Default
18 ! align="left" | Export
19 ! align="left" | Format<xsl:for-each select="options/option">
20 |- bgcolor="#eeeeee"
21 |
22 <xsl:value-of select="@name"/>
23 |
24 <xsl:value-of select="comment"/>
25 |
26 <xsl:value-of select="default"/>
27 |
28 <xsl:value-of select="export"/>
29 |
30 <xsl:value-of select="format"/>
31 </xsl:for-each>
32 |}
33
34 </xsl:template>
35 </xsl:stylesheet>