http://git-wip-us.apache.org/repos/asf/couchdb/blob/1a82fd7c/share/docs/DocKit/xsl.d/docbook-xsl/INSTALL
----------------------------------------------------------------------
diff --git a/share/docs/DocKit/xsl.d/docbook-xsl/INSTALL b/share/docs/DocKit/xsl.d/docbook-xsl/INSTALL
new file mode 100644
index 0000000..72cb82b
--- /dev/null
+++ b/share/docs/DocKit/xsl.d/docbook-xsl/INSTALL
@@ -0,0 +1,88 @@
+$Id: INSTALL 6145 2006-08-06 13:13:03Z xmldoc $
+
+INSTALL file for the DocBook XSL stylesheets distribution
+
+----------------------------------------------------------------------
+Case #1: Installation using a package management system
+----------------------------------------------------------------------
+If you have installed the DocBook XSL distribution using "apt-get",
+"yum", "urpmi", or some similar package-management front-end,
+then, as part of the package installation, the stylesheets have
+already been automatically installed in the appropriate location
+for your system, and your XML catalog environment has probably
+been updated to use that location.
+
+----------------------------------------------------------------------
+Case #2: Installing manually
+----------------------------------------------------------------------
+If you have downloaded a docbook-xsl zip, tar.gz, or tar.bz2
+file, use the following steps to install it.
+
+ 1. Move the zip, tar.gz, or tar.bz2 file to the directory where
+ you'd like to install it (not to a temporary directory).
+
+ 2. unzip or untar/uncompress the file
+
+ That will create a docbook-xsl-$VERSION directory (where
+ $VERSION is the version number for the release).
+
+The remaining steps are all OPTIONAL. They are intended to
+automatically update your user environment with XML Catalog
+information about the DocBook XSL distribution. You are NOT
+REQUIRED to complete these remaining steps. However, if you do
+not, and you want to use XML catalogs with the DocBook XSL
+stylesheets, you will need to manually update your XML catalog
+environment
+
+ 3. Change to the docbook-xsl-$VERSION directory and execute the
+ install.sh script:
+
+ ./install.sh
+
+ That will launch an interactive installer, which will emit a
+ series of prompts for you to respond to.
+
+ To instead run it non-interactively without being prompted
+ for confirmation of the changes it makes, invoke it with the
+ "--batch" switch, like this:
+
+ ./install.sh --batch
+
+ After the process is complete, the installer will emit a
+ message with a command you need to run in order to source
+ your environment for use with the stylesheets.
+
+ 4. To test that he installation has updated your environment
+ correctly, execute the test.sh script:
+
+ ./test.sh
+
+ That will test your XML catalog environment, using both the
+ xmlcatalog application and the Apache XML Commons Resolver.
+
+ NOTE: The test.sh file is not created until the install.sh
+ file is run for the first time.
+
+ 5. (UNINSTALLING) If/when you want to uninstall the release,
+ execute the uninstall.sh script.
+
+ ./uninstall.sh
+
+ To instead run it non-interactively without being prompted
+ for confirmation of the changes it makes, invoke it with the
+ "--batch" switch, like this:
+
+ ./uninstall.sh --batch
+
+ NOTE: The uninstall.sh file is not created until the install.sh
+ file is run for the first time.
+
+
+----------------------------------------------------------------------
+Note to packagers
+----------------------------------------------------------------------
+The install.sh, .CatalogManager.properties.example, and .urilist
+files should not be packaged. They are useful only to users who
+are installing the stylesheets manually.
+
+The catalog.xml file should be packaged.
http://git-wip-us.apache.org/repos/asf/couchdb/blob/1a82fd7c/share/docs/DocKit/xsl.d/docbook-xsl/Makefile
----------------------------------------------------------------------
diff --git a/share/docs/DocKit/xsl.d/docbook-xsl/Makefile b/share/docs/DocKit/xsl.d/docbook-xsl/Makefile
new file mode 100644
index 0000000..a87d60b
--- /dev/null
+++ b/share/docs/DocKit/xsl.d/docbook-xsl/Makefile
@@ -0,0 +1,89 @@
+# $Id: Makefile.tests 8481 2009-07-13 20:18:41Z abdelazer $
+#
+# This makefile does a "smoketest" of stylesheets for various
+# output formats in the DocBook XSL Stylesheets release package.
+# It doesn't actually check the output -- it's just useful for
+# confirming whether each XSLT transformation actually executes
+# successfully without any errors.
+#
+# To use it, run "make check" or just "make"
+
+XSLTPROC=xsltproc
+XSLTPROC_FLAGS=
+
+TESTFILE=tests/refentry.007.xml
+TESTFILE_NS=tests/refentry.007.ns.xml
+
+NORMAL_STYLES=fo/docbook.xsl html/docbook.xsl xhtml/docbook.xsl
+NORMAL_PROFILE_STYLES=fo/profile-docbook.xsl html/profile-docbook.xsl xhtml/profile-docbook.xsl
+CHUNK_STYLES=html/chunk.xsl html/onechunk.xsl xhtml/chunk.xsl xhtml/onechunk.xsl
+HELP_STYLES=htmlhelp/htmlhelp.xsl javahelp/javahelp.xsl eclipse/eclipse.xsl
+MULTIFILE_STYLES=$(CHUNK_STYLES) $(HELP_STYLES)
+CHUNK_PROFILE_STYLES=html/profile-chunk.xsl html/profile-onechunk.xsl xhtml/profile-chunk.xsl
xhtml/profile-onechunk.xsl
+HELP_PROFILE_STYLES=htmlhelp/profile-htmlhelp.xsl eclipse/profile-eclipse.xsl javahelp/profile-javahelp.xsl
+MULTIFILE_PROFILE_STYLES=$(CHUNK_PROFILE_STYLES) $(HELP_PROFILE_STYLES)
+
+MAN_STYLE=manpages/docbook.xsl
+MAN_PROFILE_STYLE=manpages/profile-docbook.xsl
+
+TWO_PROFILE_STYLE=profiling/profile.xsl
+
+ROUNDTRIP_STYLES=roundtrip/dbk2ooo.xsl roundtrip/dbk2pages.xsl roundtrip/dbk2wordml.xsl
+SLIDES_STYLES=slides/html/default.xsl slides/xhtml/default.xsl slides/fo/plain.xsl
+WEBSITE_STYLES=website/website.xsl
+WEBSITE_CHUNK_STYLES=website/chunk-website.xsl
+
+# chunked output gets written to TMP_OUTPUT_DIR
+TMP_OUTPUT_DIR=/tmp/smoketest-output/
+# if you don't want TMP_OUTPUT_DIR and its contents deleted, unset
+# SMOKETEST_CLEAN_TARGET; e.g. "make check SMOKETEST_CLEAN_TARGET=''"
+SMOKETEST_CLEAN_TARGET=smoketest-clean
+
+check: smoketest-make-tmp-dir smoketest-normal smoketest-normal-profile smoketest-chunk smoketest-chunk-profile
smoketest-man smoketest-man-profile smoketest-two-profile $(SMOKETEST_CLEAN_TARGET)
+
+smoketest-make-tmp-dir:
+ $(RM) -r $(TMP_OUTPUT_DIR)
+ mkdir '$(TMP_OUTPUT_DIR)'
+
+smoketest-normal:
+ for stylesheet in $(NORMAL_STYLES); do \
+ echo "$(XSLT) $(TESTFILE) $$stylesheet > /dev/null"; \
+ $(XSLT) $(TESTFILE) $$stylesheet > /dev/null; \
+ echo "$(XSLT) $(TESTFILE_NS) $$stylesheet > /dev/null"; \
+ $(XSLT) $(TESTFILE_NS) $$stylesheet > /dev/null; \
+ done
+
+smoketest-normal-profile:
+ for stylesheet in $(NORMAL_PROFILE_STYLES); do \
+ echo "$(XSLT) $(TESTFILE) $$stylesheet > /dev/null"; \
+ $(XSLT) $(TESTFILE) $$stylesheet > /dev/null; \
+ echo "$(XSLT) $(TESTFILE_NS) $$stylesheet > /dev/null"; \
+ $(XSLT) $(TESTFILE_NS) $$stylesheet > /dev/null; \
+ done
+
+smoketest-chunk:
+ for stylesheet in $(MULTIFILE_STYLES) ; do \
+ $(XSLT) $(TESTFILE) $$stylesheet manifest.in.base.dir=1 base.dir=$(TMP_OUTPUT_DIR) ; \
+ $(XSLT) $(TESTFILE_NS) $$stylesheet manifest.in.base.dir=1 base.dir=$(TMP_OUTPUT_DIR) ;
\
+ done;
+
+smoketest-chunk-profile:
+ for stylesheet in $(MULTIFILE_PROFILE_STYLES) ; do \
+ $(XSLT) $(TESTFILE) $$stylesheet manifest.in.base.dir=1 base.dir=$(TMP_OUTPUT_DIR) ; \
+ $(XSLT) $(TESTFILE_NS) $$stylesheet manifest.in.base.dir=1 base.dir=$(TMP_OUTPUT_DIR) ;
\
+ done;
+
+smoketest-man:
+ $(XSLT) $(TESTFILE) $(MAN_STYLE) man.output.in.separate.dir=1 man.output.base.dir=$(TMP_OUTPUT_DIR)
; \
+ $(XSLT) $(TESTFILE_NS) $(MAN_STYLE) man.output.in.separate.dir=1 man.output.base.dir=$(TMP_OUTPUT_DIR)
;
+
+smoketest-man-profile:
+ $(XSLT) $(TESTFILE) $(MAN_PROFILE_STYLE) man.output.in.separate.dir=1 man.output.base.dir=$(TMP_OUTPUT_DIR)
; \
+ $(XSLT) $(TESTFILE_NS) $(MAN_PROFILE_STYLE) man.output.in.separate.dir=1 man.output.base.dir=$(TMP_OUTPUT_DIR)
;
+
+smoketest-two-profile:
+ $(XSLT) $(TESTFILE_NS) $(TWO_PROFILE_STYLE) > /dev/null ;
+
+smoketest-clean:
+ $(RM) -r $(TMP_OUTPUT_DIR)
+
http://git-wip-us.apache.org/repos/asf/couchdb/blob/1a82fd7c/share/docs/DocKit/xsl.d/docbook-xsl/NEWS
----------------------------------------------------------------------
diff --git a/share/docs/DocKit/xsl.d/docbook-xsl/NEWS b/share/docs/DocKit/xsl.d/docbook-xsl/NEWS
new file mode 100644
index 0000000..ed3dc54
--- /dev/null
+++ b/share/docs/DocKit/xsl.d/docbook-xsl/NEWS
@@ -0,0 +1,139 @@
+Changes since the 1.76.0 release
+
+Note: This document lists changes only since the 1.76.0 release. If you instead
+want a record of the complete list of changes for the codebase over its entire
+history, you can obtain one by running the following commands:
+
+ svn checkout https://docbook.svn.sourceforge.net/svnroot/docbook/trunk/xsl
+ svn log --xml --verbose xsl > ChangeHistory.xml
+
+━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
+
+Table of Contents
+
+Release Notes: 1.76.1
+
+ Common
+ FO
+ HTML
+ Epub
+ Webhelp
+ Params
+ Extensions
+
+Release Notes: 1.76.1
+
+The following is a list of changes that have been made since the 1.76.0
+release.
+
+Common
+
+The following changes have been made to the common code since the 1.76.0
+release.
+
+ ● Mauritz Jeanson: Makefile
+
+ Added eu.xml and gl.xml to SOURCES.
+
+ ● Jirka Kosek: l10n.xsl
+
+ Fixed bug when context was lost due to usage of xsl:key
+
+FO
+
+The following changes have been made to the fo code since the 1.76.0 release.
+
+ ● Robert Stayton: docbook.xsl; xref.xsl; fop1.xsl
+
+ Apply patch to support named destination in fop1.xsl, per Sourceforge
+ bug report #3029845.
+
+ ● dleidert: pagesetup.xsl
+
+ Remove the namespace mistakingly added with the last upload.
+
+HTML
+
+The following changes have been made to the html code since the 1.76.0 release.
+
+ ● Keith Fahlgren: highlight.xsl
+
+ Implementing handling for <b> and <i>: transform to <strong> and <em>
for XHTML outputs and do not use in the highliting output (per Mauritz Jeanson)
+
+Epub
+
+The following changes have been made to the epub code since the 1.76.0 release.
+
+ ● Keith Fahlgren: docbook.xsl
+
+ Bugfix for [#3071521] to ensure that NCX navPoints are generated for d:book root nodes
with the -NS version of the stylesheets
+
+ ● Keith Fahlgren: docbook.xsl
+
+ Remove unused NCX metadata elements
+
+ ● Keith Fahlgren: bin/spec/epub_regressions_spec.rb; docbook.xsl; bin/spec/
+ files/test_cust.x⋯
+
+ Normalizing identifier lookup between NCX and OPF
+
+ ● Keith Fahlgren: bin/dbtoepub
+
+ Reduce logging verbosity
+
+ ● Keith Fahlgren: bin/dbtoepub; bin/lib/docbook.rb
+
+ Only copy images once for the DocBook to EPUB tool to correct Windows bug reported in
[#3065489]
+
+Webhelp
+
+The following changes have been made to the webhelp code since the 1.76.0
+release.
+
+ ● David Cramer: indexer
+
+ More webhelp indexer refactoring
+
+ ● David Cramer: build.xml
+
+ Removed cruft from before webhelp indexer refactoring
+
+ ● David Cramer: indexer/src
+
+ Refactoring webhelp to separate more cleanly the xsl and java code.
+
+ ● David Cramer: indexer/lib
+
+ Refactoring webhelp to separate more cleanly the xsl and java code.
+
+ ● David Cramer: Makefile; build.xml
+
+ Refactoring webhelp to separate more cleanly the xsl and java code.
+
+ ● David Cramer: indexer/src/com/nexwave/nquindexer/IndexerTask.java;
+ build.xml; indexer/src/⋯
+
+ Merged in changes from webhelp branch to address issue #3058244 regarding the xx.html
temp file that was being created
+
+Params
+
+The following changes have been made to the params code since the 1.76.0
+release.
+
+ ● Robert Stayton: draft.mode.xml
+
+ Change default for draft.mode to 'no'.
+
+Extensions
+
+The following changes have been made to the extensions code since the 1.76.0
+release.
+
+ ● David Cramer: Makefile
+
+ More webhelp refactoring
+
+ ● David Cramer: Makefile
+
+ Refactoring webhelp to separate more cleanly the xsl and java code.
+
http://git-wip-us.apache.org/repos/asf/couchdb/blob/1a82fd7c/share/docs/DocKit/xsl.d/docbook-xsl/NEWS.html
----------------------------------------------------------------------
diff --git a/share/docs/DocKit/xsl.d/docbook-xsl/NEWS.html b/share/docs/DocKit/xsl.d/docbook-xsl/NEWS.html
new file mode 100644
index 0000000..979e2a2
--- /dev/null
+++ b/share/docs/DocKit/xsl.d/docbook-xsl/NEWS.html
@@ -0,0 +1,25 @@
+<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Changes
since the 1.76.0 release</title><meta name="generator" content="DocBook XSL Stylesheets
V1.76.1"><meta name="description" content="Note: This document lists changes only since
the 1.76.0 release. If you instead want a record of the complete list of changes for the codebase
over its entire history, you can obtain one by running the following commands: svn checkout
https://docbook.svn.sourceforge.net/svnroot/docbook/trunk/xsl svn log --xml --verbose xsl
> ChangeHistory.xml"></head><body bgcolor="white" text="black" link="#0000FF"
vlink="#840084" alink="#0000FF"><div class="article" title="Changes since the 1.76.0
release"><div class="titlepage"><div><div><h2 class="title"><a
name="id36089309"></a>Changes since the 1.76.0 release</h2></div><div><div
class="abstract" title="Abstract"><p><span class="strong"><strong>Note:</strong></span>
This
+ document lists changes only since the 1.76.0 release.
+ If you instead want a record of the complete list of
+ changes for the codebase over its entire history, you
+ can obtain one by running the following commands:
+
+</p><pre class="screen"> <code class="code">svn checkout https://docbook.svn.sourceforge.net/svnroot/docbook/trunk/xsl</code>
+ <code class="code">svn log --xml --verbose xsl > ChangeHistory.xml</code></pre></div></div></div><hr></div><div
class="toc"><p><b>Table of Contents</b></p><dl><dt><span
class="sect1"><a href="#V1.76.1">Release Notes: 1.76.1</a></span></dt><dd><dl><dt><span
class="sect2"><a href="#V1.76.1_Common">Common</a></span></dt><dt><span
class="sect2"><a href="#V1.76.1_FO">FO</a></span></dt><dt><span
class="sect2"><a href="#V1.76.1_HTML">HTML</a></span></dt><dt><span
class="sect2"><a href="#V1.76.1_Epub">Epub</a></span></dt><dt><span
class="sect2"><a href="#V1.76.1_Webhelp">Webhelp</a></span></dt><dt><span
class="sect2"><a href="#V1.76.1_Params">Params</a></span></dt><dt><span
class="sect2"><a href="#V1.76.1_Extensions">Extensions</a></span></dt></dl></dd></dl></div><div
class="sect1" title="Release Notes: 1.76.1"><div class="titlepage"><div><div><h2
class="title" style="clear: both"><a name="V1.76.1"></a>Release Notes: 1.76.1</h2></div></div></div><p>The
following is a list of changes th
at have been made
+ since the 1.76.0 release.</p><div class="sect2" title="Common"><div
class="titlepage"><div><div><h3 class="title"><a name="V1.76.1_Common"></a>Common</h3></div></div></div><p>The
following changes have been made to the
+ <code class="filename">common</code> code
+ since the 1.76.0 release.</p><div class="itemizedlist"><ul class="itemizedlist"
type="disc"><li class="listitem"><p><code class="literal">Mauritz Jeanson:
Makefile</code></p><pre class="screen"><span class="commit-message">Added
eu.xml and gl.xml to SOURCES.</span></pre></li><li class="listitem"><p><code
class="literal">Jirka Kosek: l10n.xsl</code></p><pre class="screen"><span
class="commit-message">Fixed bug when context was lost due to usage of xsl:key</span></pre></li></ul></div></div><div
class="sect2" title="FO"><div class="titlepage"><div><div><h3 class="title"><a
name="V1.76.1_FO"></a>FO</h3></div></div></div><p>The
following changes have been made to the
+ <code class="filename">fo</code> code
+ since the 1.76.0 release.</p><div class="itemizedlist"><ul class="itemizedlist"
type="disc"><li class="listitem"><p><code class="literal">Robert Stayton:
docbook.xsl; xref.xsl; fop1.xsl</code></p><pre class="screen"><span class="commit-message">Apply
patch to support named destination in fop1.xsl, per Sourceforge
+bug report #3029845.</span></pre></li><li class="listitem"><p><code
class="literal">dleidert: pagesetup.xsl</code></p><pre class="screen"><span
class="commit-message">Remove the namespace mistakingly added with the last upload.</span></pre></li></ul></div></div><div
class="sect2" title="HTML"><div class="titlepage"><div><div><h3 class="title"><a
name="V1.76.1_HTML"></a>HTML</h3></div></div></div><p>The
following changes have been made to the
+ <code class="filename">html</code> code
+ since the 1.76.0 release.</p><div class="itemizedlist"><ul class="itemizedlist"
type="disc"><li class="listitem"><p><code class="literal">Keith Fahlgren:
highlight.xsl</code></p><pre class="screen"><span class="commit-message">Implementing
handling for <b> and <i>: transform to <strong>
and <em> for XHTML outputs and do not use in the highliting output (per Mauritz
Jeanson)</span></pre></li></ul></div></div><div class="sect2"
title="Epub"><div class="titlepage"><div><div><h3 class="title"><a
name="V1.76.1_Epub"></a>Epub</h3></div></div></div><p>The
following changes have been made to the
+ <code class="filename">epub</code> code
+ since the 1.76.0 release.</p><div class="itemizedlist"><ul class="itemizedlist"
type="disc"><li class="listitem"><p><code class="literal">Keith Fahlgren:
docbook.xsl</code></p><pre class="screen"><span class="commit-message">Bugfix
for [#3071521] to ensure that NCX navPoints are generated for d:<a href="http://docbook.org/tdg5/en/html/book.html"><code
class="sgmltag-element">book</code></a> root nodes with the -NS version of
the stylesheets</span></pre></li><li class="listitem"><p><code
class="literal">Keith Fahlgren: docbook.xsl</code></p><pre class="screen"><span
class="commit-message">Remove unused NCX metadata elements</span></pre></li><li
class="listitem"><p><code class="literal">Keith Fahlgren: bin/spec/epub_regressions_spec.rb;
docbook.xsl; bin/spec/files/test_cust.x⋯</code></p><pre class="screen"><span
class="commit-message">Normalizing identifier lookup between NCX and OPF</span></pre></li><li
class="listitem"><p><code class="literal">Keith Fahlgren: bin/d
btoepub</code></p><pre class="screen"><span class="commit-message">Reduce
logging verbosity</span></pre></li><li class="listitem"><p><code
class="literal">Keith Fahlgren: bin/dbtoepub; bin/lib/docbook.rb</code></p><pre
class="screen"><span class="commit-message">Only copy images once for the DocBook
to EPUB tool to correct Windows bug reported in [#3065489]</span></pre></li></ul></div></div><div
class="sect2" title="Webhelp"><div class="titlepage"><div><div><h3
class="title"><a name="V1.76.1_Webhelp"></a>Webhelp</h3></div></div></div><p>The
following changes have been made to the
+ <code class="filename">webhelp</code> code
+ since the 1.76.0 release.</p><div class="itemizedlist"><ul class="itemizedlist"
type="disc"><li class="listitem"><p><code class="literal">David Cramer:
indexer</code></p><pre class="screen"><span class="commit-message">More
webhelp indexer refactoring</span></pre></li><li class="listitem"><p><code
class="literal">David Cramer: build.xml</code></p><pre class="screen"><span
class="commit-message">Removed cruft from before webhelp indexer refactoring</span></pre></li><li
class="listitem"><p><code class="literal">David Cramer: indexer/src</code></p><pre
class="screen"><span class="commit-message">Refactoring webhelp to separate more
cleanly the xsl and java code.</span></pre></li><li class="listitem"><p><code
class="literal">David Cramer: indexer/lib</code></p><pre class="screen"><span
class="commit-message">Refactoring webhelp to separate more cleanly the xsl and java code.</span></pre></li><li
class="listitem"><p><code class="literal">David Cramer: Makefile; build.xml</cod
e></p><pre class="screen"><span class="commit-message">Refactoring webhelp
to separate more cleanly the xsl and java code.</span></pre></li><li
class="listitem"><p><code class="literal">David Cramer: indexer/src/com/nexwave/nquindexer/IndexerTask.java;
build.xml; indexer/src/⋯</code></p><pre class="screen"><span
class="commit-message">Merged in changes from webhelp branch to <a href="http://docbook.org/tdg5/en/html/address.html"><code
class="sgmltag-element">address</code></a> issue #3058244 regarding the xx.html
temp file that was being created</span></pre></li></ul></div></div><div
class="sect2" title="Params"><div class="titlepage"><div><div><h3
class="title"><a name="V1.76.1_Params"></a>Params</h3></div></div></div><p>The
following changes have been made to the
+ <code class="filename">params</code> code
+ since the 1.76.0 release.</p><div class="itemizedlist"><ul class="itemizedlist"
type="disc"><li class="listitem"><p><code class="literal">Robert Stayton:
draft.mode.xml</code></p><pre class="screen"><span class="commit-message">Change
default for <a href="http://docbook.sourceforge.net/release/xsl/current/doc/html/draft.mode.html"><em
class="parameter"><code>draft.mode</code></em></a> to 'no'.</span></pre></li></ul></div></div><div
class="sect2" title="Extensions"><div class="titlepage"><div><div><h3
class="title"><a name="V1.76.1_Extensions"></a>Extensions</h3></div></div></div><p>The
following changes have been made to the
+ <code class="filename">extensions</code> code
+ since the 1.76.0 release.</p><div class="itemizedlist"><ul class="itemizedlist"
type="disc"><li class="listitem"><p><code class="literal">David Cramer:
Makefile</code></p><pre class="screen"><span class="commit-message">More
webhelp refactoring</span></pre></li><li class="listitem"><p><code
class="literal">David Cramer: Makefile</code></p><pre class="screen"><span
class="commit-message">Refactoring webhelp to separate more cleanly the xsl and java code.</span></pre></li></ul></div></div></div></div></body></html>
+
http://git-wip-us.apache.org/repos/asf/couchdb/blob/1a82fd7c/share/docs/DocKit/xsl.d/docbook-xsl/NEWS.xml
----------------------------------------------------------------------
diff --git a/share/docs/DocKit/xsl.d/docbook-xsl/NEWS.xml b/share/docs/DocKit/xsl.d/docbook-xsl/NEWS.xml
new file mode 100644
index 0000000..8cc04e6
--- /dev/null
+++ b/share/docs/DocKit/xsl.d/docbook-xsl/NEWS.xml
@@ -0,0 +1,145 @@
+<?xml version="1.0"?>
+
+<article>
+<info>
+<abstract>
+<para><emphasis role="strong">Note:</emphasis> This
+ document lists changes only since the 1.76.0 release.
+ If you instead want a record of the complete list of
+ changes for the codebase over its entire history, you
+ can obtain one by running the following commands:
+
+<screen> <code>svn checkout https://docbook.svn.sourceforge.net/svnroot/docbook/trunk/xsl</code>
+ <code>svn log --xml --verbose xsl > ChangeHistory.xml</code></screen></para>
+</abstract>
+</info><title>Changes since the 1.76.0 release</title>
+
+<sect1 xml:id="V1.76.1">
+<title>Release Notes: 1.76.1</title>
+<para>The following is a list of changes that have been made
+ since the 1.76.0 release.</para>
+
+<sect2 xml:id="V1.76.1_Common">
+<title>Common</title>
+<para>The following changes have been made to the
+ <filename>common</filename> code
+ since the 1.76.0 release.</para>
+<itemizedlist>
+<listitem>
+<para><literal>Mauritz Jeanson: Makefile</literal></para><screen><phrase
role="commit-message">Added eu.xml and gl.xml to SOURCES.</phrase></screen>
+</listitem>
+<listitem>
+<para><literal>Jirka Kosek: l10n.xsl</literal></para><screen><phrase
role="commit-message">Fixed bug when context was lost due to usage of xsl:key</phrase></screen>
+</listitem>
+</itemizedlist>
+</sect2><!--end of Common changes for 1.76.1-->
+
+<sect2 xml:id="V1.76.1_FO">
+<title>FO</title>
+<para>The following changes have been made to the
+ <filename>fo</filename> code
+ since the 1.76.0 release.</para>
+<itemizedlist>
+<listitem>
+<para><literal>Robert Stayton: docbook.xsl; xref.xsl; fop1.xsl</literal></para><screen><phrase
role="commit-message">Apply patch to support named destination in fop1.xsl, per Sourceforge
+bug report #3029845.</phrase></screen>
+</listitem>
+<listitem>
+<para><literal>dleidert: pagesetup.xsl</literal></para><screen><phrase
role="commit-message">Remove the namespace mistakingly added with the last upload.</phrase></screen>
+</listitem>
+</itemizedlist>
+</sect2><!--end of FO changes for 1.76.1-->
+
+<sect2 xml:id="V1.76.1_HTML">
+<title>HTML</title>
+<para>The following changes have been made to the
+ <filename>html</filename> code
+ since the 1.76.0 release.</para>
+<itemizedlist>
+<listitem>
+<para><literal>Keith Fahlgren: highlight.xsl</literal></para><screen><phrase
role="commit-message">Implementing handling for <b> and <i>:
transform to <strong> and <em> for XHTML outputs and do not use
in the highliting output (per Mauritz Jeanson)</phrase></screen>
+</listitem>
+</itemizedlist>
+</sect2><!--end of HTML changes for 1.76.1-->
+
+<sect2 xml:id="V1.76.1_Epub">
+<title>Epub</title>
+<para>The following changes have been made to the
+ <filename>epub</filename> code
+ since the 1.76.0 release.</para>
+<itemizedlist>
+<listitem>
+<para><literal>Keith Fahlgren: docbook.xsl</literal></para><screen><phrase
role="commit-message">Bugfix for [#3071521] to ensure that NCX navPoints are generated
for d:<tag>book</tag> root nodes with the -NS version of the stylesheets</phrase></screen>
+</listitem>
+<listitem>
+<para><literal>Keith Fahlgren: docbook.xsl</literal></para><screen><phrase
role="commit-message">Remove unused NCX metadata elements</phrase></screen>
+</listitem>
+<listitem>
+<para><literal>Keith Fahlgren: bin/spec/epub_regressions_spec.rb; docbook.xsl;
bin/spec/files/test_cust.x⋯</literal></para><screen><phrase role="commit-message">Normalizing
identifier lookup between NCX and OPF</phrase></screen>
+</listitem>
+<listitem>
+<para><literal>Keith Fahlgren: bin/dbtoepub</literal></para><screen><phrase
role="commit-message">Reduce logging verbosity</phrase></screen>
+</listitem>
+<listitem>
+<para><literal>Keith Fahlgren: bin/dbtoepub; bin/lib/docbook.rb</literal></para><screen><phrase
role="commit-message">Only copy images once for the DocBook to EPUB tool to correct Windows
bug reported in [#3065489]</phrase></screen>
+</listitem>
+</itemizedlist>
+</sect2><!--end of Epub changes for 1.76.1-->
+
+<sect2 xml:id="V1.76.1_Webhelp">
+<title>Webhelp</title>
+<para>The following changes have been made to the
+ <filename>webhelp</filename> code
+ since the 1.76.0 release.</para>
+<itemizedlist>
+<listitem>
+<para><literal>David Cramer: indexer</literal></para><screen><phrase
role="commit-message">More webhelp indexer refactoring</phrase></screen>
+</listitem>
+<listitem>
+<para><literal>David Cramer: build.xml</literal></para><screen><phrase
role="commit-message">Removed cruft from before webhelp indexer refactoring</phrase></screen>
+</listitem>
+<listitem>
+<para><literal>David Cramer: indexer/src</literal></para><screen><phrase
role="commit-message">Refactoring webhelp to separate more cleanly the xsl and java code.</phrase></screen>
+</listitem>
+<listitem>
+<para><literal>David Cramer: indexer/lib</literal></para><screen><phrase
role="commit-message">Refactoring webhelp to separate more cleanly the xsl and java code.</phrase></screen>
+</listitem>
+<listitem>
+<para><literal>David Cramer: Makefile; build.xml</literal></para><screen><phrase
role="commit-message">Refactoring webhelp to separate more cleanly the xsl and java code.</phrase></screen>
+</listitem>
+<listitem>
+<para><literal>David Cramer: indexer/src/com/nexwave/nquindexer/IndexerTask.java;
build.xml; indexer/src/⋯</literal></para><screen><phrase role="commit-message">Merged
in changes from webhelp branch to <tag>address</tag> issue #3058244 regarding
the xx.html temp file that was being created</phrase></screen>
+</listitem>
+</itemizedlist>
+</sect2><!--end of Webhelp changes for 1.76.1-->
+
+<sect2 xml:id="V1.76.1_Params">
+<title>Params</title>
+<para>The following changes have been made to the
+ <filename>params</filename> code
+ since the 1.76.0 release.</para>
+<itemizedlist>
+<listitem>
+<para><literal>Robert Stayton: draft.mode.xml</literal></para><screen><phrase
role="commit-message">Change default for <parameter>draft.mode</parameter>
to 'no'.</phrase></screen>
+</listitem>
+</itemizedlist>
+</sect2><!--end of Params changes for 1.76.1-->
+
+<sect2 xml:id="V1.76.1_Extensions">
+<title>Extensions</title>
+<para>The following changes have been made to the
+ <filename>extensions</filename> code
+ since the 1.76.0 release.</para>
+<itemizedlist>
+<listitem>
+<para><literal>David Cramer: Makefile</literal></para><screen><phrase
role="commit-message">More webhelp refactoring</phrase></screen>
+</listitem>
+<listitem>
+<para><literal>David Cramer: Makefile</literal></para><screen><phrase
role="commit-message">Refactoring webhelp to separate more cleanly the xsl and java code.</phrase></screen>
+</listitem>
+</itemizedlist>
+</sect2><!--end of Extensions changes for 1.76.1-->
+
+</sect1>
+</article>
+
http://git-wip-us.apache.org/repos/asf/couchdb/blob/1a82fd7c/share/docs/DocKit/xsl.d/docbook-xsl/README
----------------------------------------------------------------------
diff --git a/share/docs/DocKit/xsl.d/docbook-xsl/README b/share/docs/DocKit/xsl.d/docbook-xsl/README
new file mode 100644
index 0000000..3a5558a
--- /dev/null
+++ b/share/docs/DocKit/xsl.d/docbook-xsl/README
@@ -0,0 +1,157 @@
+----------------------------------------------------------------------
+ README file for the DocBook XSL Stylesheets
+----------------------------------------------------------------------
+$Id: README 8484 2009-07-13 20:35:34Z mzjn $
+
+These are XSL stylesheets for transforming DocBook XML document
+instances into various output formats.
+
+This README file provides only very minimal documentation on using
+the stylesheets. For more complete information, see Bob Stayton's
+book "DocBook XSL: The Complete Guide", available online at:
+
+ http://www.sagehill.net/docbookxsl/
+
+----------------------------------------------------------------------
+Installation
+----------------------------------------------------------------------
+See the INSTALL file for information about installing this release.
+
+----------------------------------------------------------------------
+How to use the stylesheets
+----------------------------------------------------------------------
+The base canonical URI for these stylesheets is:
+
+ http://docbook.sourceforge.net/release/xsl/current/
+
+You call any of the stylesheets in this distribution by doing one
+of the following:
+
+ - Use the base canonical URI in combination with one of the
+ pathnames below. For example, for "chunked" HTML, output:
+
+ http://docbook.sourceforge.net/release/xsl/current/html/chunk.xsl
+
+ If your system has a working XML Catalog or SGML Catalog setup
+ (most Linux systems do), then that URI will automatically be
+ resolved and replaced with a local pathname on your system.
+
+ - Use a "real" local system base path in combination with one of
+ the pathnames below. For example, for "chunked" HTML, output:
+
+ /usr/share/xml/docbook/stylesheet/nwalsh/html/chunk.xsl
+
+To transform documents created with the standard DocBook
+schema/DTD, use one of the following stylesheets:
+
+ fo/docbook.xsl - for XSL-FO
+
+ html/docbook.xsl - for HTML (as a single file)
+ html/chunk.xsl - for HTML (chunked into multiple files)
+ html/onechunk.xsl - for HTML (chunked output in single file)
+
+ xhtml/*.xsl - for XHTML versions of the above
+
+ xhtml-1_1/*.xsl - for XHTML 1.1 versions of the above
+
+ epub/docbook.xsl - for .epub
+
+ htmlhelp/htmlhelp.xsl - for HTML Help
+ javahelp/javahelp.xsl - for JavaHelp
+ eclipse/eclipse.xsl - for Eclipse Help
+
+ manpages/docbook.xsl - for groff/nroff man pages
+
+ */profile-* - single-pass-profiling versions of all above
+
+ roundtrip/*.xsl - for DocBook to WordML, etc., to DocBook
+
+To transform documents created with the DocBook Slides schema/DTD,
+use one of the following stylesheets:
+
+ slides/html/*.xsl - for HTML slides of various kinds
+ slides/xhtml/*.xsl - for XHTML slides of various kinds
+ slides/fo/plain.xsl - for XSL-FO slides
+ slides/htmlhelp/... - for HTML Help slides
+
+To transform documents created with the DocBook Website
+schema/DTD, use one of the following stylesheets:
+
+ website/website.xsl - for non-tabular, non-chunked output
+ website/tabular.xsl - for tabular, non-chunked output
+ website/chunk-* - for chunked output
+
+To generate a titlepage customization layer from a titlepage spec:
+
+ template/titlepage.xsl
+
+For details about creating titlepage spec files and generating and
+using titlepage customization layers, see "DocBook XSL: The
+Complete Guide" <http://www.sagehill.net/docbookxsl/>
+
+----------------------------------------------------------------------
+Manifest
+----------------------------------------------------------------------
+AUTHORS contact information
+BUGS about known problems
+COPYING copyright information
+INSTALL installation instructions
+README this file
+RELEASE.* per-release cumulative summaries of user-visible changes
+TODO about planned features not yet implemented
+VERSION release metadata, including the current version
+ number (note that the VERSION file is an XSL stylesheet)
+NEWS changes since the last public release (for a cumulative list of
+ changes, see the ChangeHistory.xml file)
+
+common/ code used among several output formats (HTML, FO, manpages,...)
+docsrc/ documentation sources
+eclipse/ for producing Eclipse Help
+epub/ for producing .epub
+extensions/ DocBook XSL Java extensions
+fo/ for producing XSL-FO
+highlighting files used for adding source-code syntax highlighting in output
+html/ for producing HTML
+htmlhelp/ for producing HTML Help
+images/ images used in callouts and graphical admonitions
+javahelp/ for producing Java Help
+lib/ utility stylesheets with schema-independent functions
+manpages/ for producing groff/troff man pages
+profiling/ for profiling (omitting/including conditional text)
+roundtrip/ for "round trip" conversion among DocBook and
+ various word-processor formats (WordML, etc.)
+slides/ for producing slides output (from Slides source)
+template/ templates for building stylesheet customization layers
+tools/ assorted supplementary tools
+website/ for producing website output (from Website source)
+xhtml/ for producing XHTML
+xhtml-1_1/ for producing (stricter) XHTML 1.1
+
+----------------------------------------------------------------------
+Changes
+----------------------------------------------------------------------
+See the NEWS file for changes made since the previous release.
+
+See the RELEASE-NOTES.html or RELEASE-NOTES.txt or RELEASE-NOTES.pdf
+files for per-release cumulative summaries of significant
+user-visible changes.
+
+For online access to a hyperlinked view of all changes made over
+the entire history of the codebase, see the following:
+
+ http://docbook.svn.sourceforge.net/viewvc/docbook/trunk/xsl/?view=log
+
+WARNING: That above change history is a very long list and may
+take a long time to load/download.
+
+You can also create an XML-formatted "ChangeHistory.xml" copy of
+the complete change history for the codebase by running the
+following commands:
+
+ svn checkout https://docbook.svn.sf.net/svnroot/docbook/trunk/xsl
+ svn log --xml --verbose xsl > ChangeHistory.xml
+
+----------------------------------------------------------------------
+Copyright information
+----------------------------------------------------------------------
+See the accompanying file named COPYING.
|