~clint-fewbar/ubuntu/precise/rabbitmq-server/fixed-upstream-tag

« back to all changes in this revision

Viewing changes to docs/html-to-website-xml.xsl

  • Committer: Elliot Murphy
  • Date: 2010-11-30 15:12:51 UTC
  • mfrom: (0.2.9 upstream)
  • Revision ID: elliot@elliotmurphy.com-20101130151251-ziiiaf3kbomv3yse
Tags: 2.2.0-0ubuntu1
* New upstream release, fixes FTBFS for 2.1.1-1ubuntu1
  - fix issue that causes cross-cluster communication to
    deadlock after sustained cluster activity
  - fix queue memory leak when using the management plugin
    or other consumers of queue statistics
  - brokers started with rabbitmq_multi.bat are now restartable
  - clustering reset no longer destroys installed plugins
  - fix race condition between queue declaration and connection
    termination that causes spurious noproc errors to appear
    in the log
  - fix memory leak when long-running channels consume and
    cancel on many queues
  - queue.declare and exchange.declare raise precondition_failed
    rather than not_allowed when attempting to redeclare a queue
    or exchange with parameters different than those currently
    known to the broker
  - automatic, lossless upgrade to new versions of RabbitMQ
    (when not clustered)
  - support per-queue message TTL. See:
    http://www.rabbitmq.com/extensions.html#queue-ttl
  - the volume of pending acks is now bounded by disk space rather
    than by memory
  - store passwords as hashes
  - allow server properties to be configured in the RabbitMQ
    config file
  - SSL connections are listed as such by rabbitmqctl
  - simplify permission configuration by removing the client
    permission scope
  - improve performance of message routing
  - removed support for basic.recover with requeue=false
  - remove build-time dependency on OTP source to allow users to
    build without the OTP source present
  - eliminate all valid dialyzer errors

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
<?xml version='1.0'?>
2
2
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
3
3
                xmlns:doc="http://www.rabbitmq.com/namespaces/ad-hoc/doc"
 
4
                xmlns="http://www.w3.org/1999/xhtml"
4
5
                version='1.0'>
5
6
 
6
7
<xsl:param name="original"/>
10
11
<xsl:template match="*"/>
11
12
 
12
13
<!-- Copy every element through -->
13
 
<xsl:template match="@*|node()">
14
 
  <xsl:copy><xsl:apply-templates select="@*|node()"/></xsl:copy>
 
14
<xsl:template match="*">
 
15
  <xsl:element name="{name()}" namespace="http://www.w3.org/1999/xhtml">
 
16
    <xsl:apply-templates select="@*|node()"/>
 
17
  </xsl:element>
15
18
</xsl:template>
16
19
 
 
20
<xsl:template match="@*">
 
21
  <xsl:copy/>
 
22
</xsl:template>
 
23
  
17
24
<!-- Copy the root node, and munge the outer part of the page -->
18
25
<xsl:template match="/html">
19
26
<xsl:processing-instruction name="xml-stylesheet">type="text/xml" href="page.xsl"</xsl:processing-instruction>
20
 
<html xmlns:doc="http://www.rabbitmq.com/namespaces/ad-hoc/doc">
 
27
<html xmlns:doc="http://www.rabbitmq.com/namespaces/ad-hoc/doc" xmlns="http://www.w3.org/1999/xhtml">
21
28
  <head>
22
29
    <title><xsl:value-of select="document($original)/refentry/refnamediv/refname"/><xsl:if test="document($original)/refentry/refmeta/manvolnum">(<xsl:value-of select="document($original)/refentry/refmeta/manvolnum"/>)</xsl:if> manual page</title>
23
30
  </head>
42
49
      </xsl:choose>
43
50
      <p>
44
51
         For more general documentation, please see the
45
 
        <a href="admin-guide.html">administrator's guide</a>.
 
52
        <a href="../admin-guide.html">administrator's guide</a>.
46
53
      </p>
47
54
 
48
55
      <doc:toc class="compact">