mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 21:50:55 +00:00
* Properly render DocBook in option descriptions.
svn path=/nixos/trunk/; revision=7765
This commit is contained in:
parent
3034daabb7
commit
8e0f2fd7c6
|
@ -3,6 +3,7 @@
|
||||||
<xsl:stylesheet version="1.0"
|
<xsl:stylesheet version="1.0"
|
||||||
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
||||||
xmlns:str="http://exslt.org/strings"
|
xmlns:str="http://exslt.org/strings"
|
||||||
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
xmlns="http://docbook.org/ns/docbook"
|
xmlns="http://docbook.org/ns/docbook"
|
||||||
extension-element-prefixes="str"
|
extension-element-prefixes="str"
|
||||||
>
|
>
|
||||||
|
@ -29,7 +30,8 @@
|
||||||
</term>
|
</term>
|
||||||
|
|
||||||
<listitem><para>
|
<listitem><para>
|
||||||
<xsl:value-of select="attr[@name = 'description']/string/@value" />
|
<xsl:value-of disable-output-escaping="yes"
|
||||||
|
select="attr[@name = 'description']/string/@value" />
|
||||||
</para></listitem>
|
</para></listitem>
|
||||||
|
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
|
|
|
@ -76,7 +76,7 @@
|
||||||
description = "
|
description = "
|
||||||
The kernel parameters. If you want to add additional
|
The kernel parameters. If you want to add additional
|
||||||
parameters, it's best to set
|
parameters, it's best to set
|
||||||
<option>boot.extraKernelParams</options>.
|
<option>boot.extraKernelParams</option>.
|
||||||
";
|
";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -116,7 +116,7 @@
|
||||||
the boot process. That is, these modules are not included in
|
the boot process. That is, these modules are not included in
|
||||||
the initial ramdisk, so they'd better not be required for
|
the initial ramdisk, so they'd better not be required for
|
||||||
mounting the root file system. Add them to
|
mounting the root file system. Add them to
|
||||||
<option>boot.initrd.extraKernelModules</options> if they are.
|
<option>boot.initrd.extraKernelModules</option> if they are.
|
||||||
";
|
";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -143,7 +143,7 @@
|
||||||
dependencies of the modules list here are included
|
dependencies of the modules list here are included
|
||||||
automatically. If you want to add additional
|
automatically. If you want to add additional
|
||||||
modules, it's best to set
|
modules, it's best to set
|
||||||
<option>boot.initrd.extraKernelModules</options>.
|
<option>boot.initrd.extraKernelModules</option>.
|
||||||
";
|
";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -154,7 +154,7 @@
|
||||||
description = "
|
description = "
|
||||||
Additional kernel modules for the initial ramdisk. These are
|
Additional kernel modules for the initial ramdisk. These are
|
||||||
loaded before the modules listed in
|
loaded before the modules listed in
|
||||||
<option>boot.initrd.kernelModules</options>, so they take
|
<option>boot.initrd.kernelModules</option>, so they take
|
||||||
precedence.
|
precedence.
|
||||||
";
|
";
|
||||||
}
|
}
|
||||||
|
@ -248,7 +248,7 @@
|
||||||
should be an attribute set specifying either the path of the
|
should be an attribute set specifying either the path of the
|
||||||
swap device or file (<literal>device</literal>) or the label
|
swap device or file (<literal>device</literal>) or the label
|
||||||
of the swap device (<literal>label</literal>, see
|
of the swap device (<literal>label</literal>, see
|
||||||
<command>mkswap -L</command</command>). Using a label is
|
<command>mkswap -L</command>). Using a label is
|
||||||
recommended.
|
recommended.
|
||||||
";
|
";
|
||||||
}
|
}
|
||||||
|
@ -290,7 +290,7 @@
|
||||||
};
|
};
|
||||||
description = "
|
description = "
|
||||||
The default theme for the virtual consoles. Themes can be found
|
The default theme for the virtual consoles. Themes can be found
|
||||||
at http://www.bootsplash.de/.
|
at <link xlink:href='http://www.bootsplash.de/' />.
|
||||||
";
|
";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -376,7 +376,8 @@
|
||||||
default = true;
|
default = true;
|
||||||
description = "
|
description = "
|
||||||
Whether to enable the SFTP subsystem in the SSH daemon. This
|
Whether to enable the SFTP subsystem in the SSH daemon. This
|
||||||
enables the use of commands such as sftp(1) and sshfs.
|
enables the use of commands such as <command>sftp</command> and
|
||||||
|
<command>sshfs</command>.
|
||||||
";
|
";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -493,7 +494,7 @@
|
||||||
description = "
|
description = "
|
||||||
Directory for Apache's transient runtime state (such as PID
|
Directory for Apache's transient runtime state (such as PID
|
||||||
files). It is created automatically. Note that the default,
|
files). It is created automatically. Note that the default,
|
||||||
/var/run/httpd, is deleted at boot time.
|
<filename>/var/run/httpd</filename>, is deleted at boot time.
|
||||||
";
|
";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue