mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
* Fix the manual.
svn path=/nixos/trunk/; revision=9769
This commit is contained in:
parent
4b1ed0ded2
commit
1089c1f7fa
@ -75,7 +75,7 @@
|
|||||||
|
|
||||||
<xsl:template match="string">
|
<xsl:template match="string">
|
||||||
<!-- !!! escaping -->
|
<!-- !!! escaping -->
|
||||||
"<xsl:value-of select="@value" />"
|
<xsl:text>"</xsl:text><xsl:value-of select="@value" /><xsl:text>"</xsl:text>
|
||||||
</xsl:template>
|
</xsl:template>
|
||||||
|
|
||||||
|
|
||||||
@ -85,12 +85,12 @@
|
|||||||
|
|
||||||
|
|
||||||
<xsl:template match="bool[@value = 'true']">
|
<xsl:template match="bool[@value = 'true']">
|
||||||
true
|
<xsl:text>true</xsl:text>
|
||||||
</xsl:template>
|
</xsl:template>
|
||||||
|
|
||||||
|
|
||||||
<xsl:template match="bool[@value = 'false']">
|
<xsl:template match="bool[@value = 'false']">
|
||||||
false
|
<xsl:text>false</xsl:text>
|
||||||
</xsl:template>
|
</xsl:template>
|
||||||
|
|
||||||
|
|
||||||
@ -109,8 +109,7 @@
|
|||||||
<xsl:for-each select="attr">
|
<xsl:for-each select="attr">
|
||||||
<xsl:value-of select="@name" />
|
<xsl:value-of select="@name" />
|
||||||
<xsl:text> = </xsl:text>
|
<xsl:text> = </xsl:text>
|
||||||
<xsl:apply-templates select="*" />
|
<xsl:apply-templates select="*" /><xsl:text>; </xsl:text>
|
||||||
<xsl:text>; </xsl:text>
|
|
||||||
</xsl:for-each>
|
</xsl:for-each>
|
||||||
}
|
}
|
||||||
</xsl:template>
|
</xsl:template>
|
||||||
|
@ -1324,7 +1324,7 @@
|
|||||||
key to be used to connect (<varname>sshKey</varname>). The
|
key to be used to connect (<varname>sshKey</varname>). The
|
||||||
SSH private key should not have a passphrase, and the
|
SSH private key should not have a passphrase, and the
|
||||||
corresponding public key should be added to
|
corresponding public key should be added to
|
||||||
<filename>~<replaceable>sshUser<replaceable>/authorized_keys</filename>
|
<filename>~<replaceable>sshUser</replaceable>/authorized_keys</filename>
|
||||||
on the remote machine.
|
on the remote machine.
|
||||||
";
|
";
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user