aboutsummaryrefslogtreecommitdiff
path: root/util/optionlist/Options-wiki.xsl
blob: 0fe60aa6c385aa4c7ae80bc4bf8766cb48aafb6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:output method="text"
            encoding="utf-8"
            indent="yes" />

<xsl:template match="/">
This is an automatically generated list of '''LinuxBIOS compile-time options'''.

Last update: <xsl:value-of select="//creationdate"/>.

{| border="1"
|- bgcolor="#6699dd"
! align="left" | Option
! align="left" | Comment
! align="left" | Default
! align="left" | Export
! 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:for-each>
|}

</xsl:template>
</xsl:stylesheet>