daemon: Move TLS initialization to virInitialize
[libvirt/zwu.git] / docs / hacking1.xsl
blob982fa8df22444c98cc3b709dfe4c82f0921da028
1 <?xml version="1.0"?>
2 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
4 <xsl:output method="xml" encoding="UTF-8" indent="no"/>
8 <xsl:template match="/">
9 <xsl:apply-templates/>
10 </xsl:template>
14 <xsl:template match="@*|node()">
15 <xsl:copy>
16 <xsl:apply-templates select="@*|node()"/>
17 </xsl:copy>
18 </xsl:template>
22 <!-- resolve b/i/code tags in a first pass, because they interfere with line
23 wrapping in the second pass -->
24 <xsl:template match="b">*<xsl:apply-templates/>*</xsl:template>
25 <xsl:template match="i">'<xsl:apply-templates/>'</xsl:template>
26 <xsl:template match="code">"<xsl:apply-templates/>"</xsl:template>
28 </xsl:stylesheet>