backup: Wire up qemu full pull backup commands over QMP
[libvirt/ericb.git] / docs / site.xsl
blobc9d41f2c93af67b4e45e78d32673aef6e8389672
1 <?xml version="1.0"?>
2 <xsl:stylesheet
3 xmlns:html="http://www.w3.org/1999/xhtml"
4 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
5 xmlns:exsl="http://exslt.org/common"
6 exclude-result-prefixes="xsl exsl"
7 version="1.0">
9 <xsl:import href="page.xsl"/>
11 <xsl:output
12 method="xml"
13 encoding="UTF-8"
14 indent="yes"/>
16 <xsl:variable name="href_base">
17 <xsl:choose>
18 <xsl:when test="$pagename = '404.html'">
19 <xsl:value-of select="'/'"/>
20 </xsl:when>
21 <xsl:otherwise>
22 <xsl:value-of select="''"/>
23 </xsl:otherwise>
24 </xsl:choose>
25 </xsl:variable>
27 <xsl:template match="/">
28 <xsl:apply-templates select="." mode="page">
29 <xsl:with-param name="pagename" select="$pagename"/>
30 <xsl:with-param name="timestamp" select="$timestamp"/>
31 </xsl:apply-templates>
32 </xsl:template>
34 </xsl:stylesheet>