List:Internals« Previous MessageNext Message »
From:paul Date:September 13 2004 4:38pm
Subject:bk commit - mysqldoc tree (paul:1.2103)
View as plain text  
Below is the list of changes that have just been committed into a local
mysqldoc repository of paul. When paul does a push these changes will
be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://www.mysql.com/doc/I/n/Installing_source_tree.html

ChangeSet
  1.2103 04/09/13 11:38:18 paul@stripped +1 -0
  link-to-xref.xsl:
    new file

  DocsX/link-to-xref.xsl
    1.1 04/09/13 11:38:04 paul@stripped +33 -0

  DocsX/link-to-xref.xsl
    1.0 04/09/13 11:38:04 paul@stripped +0 -0
    BitKeeper file /src/extern/MySQL/bk/mysqldoc/DocsX/link-to-xref.xsl

# This is a BitKeeper patch.  What follows are the unified diffs for the
# set of deltas contained in the patch.  The rest of the patch, the part
# that BitKeeper cares about, is below these diffs.
# User:	paul
# Host:	kite-hub.kitebird.com
# Root:	/src/extern/MySQL/bk/mysqldoc
--- New file ---
+++ DocsX/link-to-xref.xsl	04/09/13 11:38:04
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<!--
Identity transform, with the following exception:
- <link> is mapped to <xref>. The attributes are retained, the
  content is discarded.
-->

<!-- define xml declaration and DOCTYPE information -->

<xsl:output
  method="xml"
  version="1.0"
  encoding="ISO-8859-1"
  standalone="no"
  doctype-public="-//OASIS//DTD DocBook XML V4.3//EN"
  doctype-system="http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd"
/>

<xsl:template match="link">
  <xref>
    <xsl:copy-of select="@*"/>
  </xref>
</xsl:template>

<xsl:template match="/ | node() | @* | comment() | processing-instruction()">
  <xsl:copy>
    <xsl:apply-templates select="@* | node()"/>
  </xsl:copy>
</xsl:template>

</xsl:stylesheet>

Thread
bk commit - mysqldoc tree (paul:1.2103)paul13 Sep