blob: 888260a33ac584b9e1ee8c5418c0e37d795331e8 (
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
<?xml version='1.0'?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:doc="http://www.rabbitmq.com/namespaces/ad-hoc/doc"
version='1.0'>
<xsl:output method="xml" doctype-public="bug in xslt processor requires fake doctype" doctype-system="otherwise css isn't included" />
<xsl:template match="*"/>
<!-- Copy every element through -->
<xsl:template match="@*|node()">
<xsl:copy><xsl:apply-templates select="@*|node()"/></xsl:copy>
</xsl:template>
<!-- Copy the root node, and munge the outer part of the page -->
<xsl:template match="/html">
<xsl:processing-instruction name="xml-stylesheet">type="text/xml" href="page.xsl"</xsl:processing-instruction>
<html xmlns:doc="http://www.rabbitmq.com/namespaces/ad-hoc/doc">
<head>
<title>rabbitmqctl(1) manual page</title>
</head>
<body>
<doc:div>
<p>
This is the manual page for the <code>rabbitmqctl</code> command. For
more general documentation, please see the
<a href="admin-guide.html">administrator's guide</a>.
</p>
<doc:toc class="compact">
<doc:heading>Table of Contents</doc:heading>
</doc:toc>
<xsl:apply-templates select="body/div[@class='refentry']"/>
</doc:div>
</body>
</html>
</xsl:template>
<!-- Specific instructions to revert the DocBook HTML to be more like our ad-hoc XML schema -->
<xsl:template match="div[@class='refsect1'] | div[@class='refnamediv'] | div[@class='refsynopsisdiv']">
<doc:section name="{@title}">
<xsl:apply-templates select="node()"/>
</doc:section>
</xsl:template>
<xsl:template match="div[@class='refsect2']">
<doc:subsection name="{@title}">
<xsl:apply-templates select="node()"/>
</doc:subsection>
</xsl:template>
<xsl:template match="h2 | h3">
<doc:heading>
<xsl:apply-templates select="node()"/>
</doc:heading>
</xsl:template>
<xsl:template match="pre[@class='screen']">
<pre class="sourcecode">
<xsl:apply-templates select="node()"/>
</pre>
</xsl:template>
</xsl:stylesheet>
|