debian/0000755000000000000000000000000012150451754007172 5ustar debian/watch0000644000000000000000000000060712150421256010220 0ustar # See uscan(1) for format # # NOTE: You need to call the get-orig-source target in debian/rules. # NOTE: uupdate will *NOT* work, because upstream splits the packages. # # Because the usual sf.net watch file syntax fails, use the ftp site. version=3 opts=dversionmangle=s/\+dfsg$// \ http://sf.net/docbook/docbook-xsl-([\d\.]+)\.tar\.(?:bz2|gz) \ debian /bin/sh debian/get-orig-source.sh debian/docbook-xsl.postinst0000644000000000000000000000117411156735070013227 0ustar #! /bin/sh # postinst script for docbook-xsl # # see: dh_installdeb(1) set -e # remove old cruft, just in case if [ "$1" = configure ]; then # remove the old directory, config files now obsolete rm -rf /etc/sgml/docbook-xsl # upgrade will not replace the directory with a symlink # so test for the directory and remove it for 1.74.3 if dpkg --compare-versions "$2" lt 1.74.3 && \ [ ! -h /usr/share/xml/docbook/stylesheet/nwalsh -a -d /usr/share/xml/docbook/stylesheet/nwalsh ]; then rm -rf /usr/share/xml/docbook/stylesheet/nwalsh ln -sf docbook-xsl /usr/share/xml/docbook/stylesheet/nwalsh fi fi #DEBHELPER# exit 0 debian/docbook-xsl.examples0000644000000000000000000000006611564274163013165 0ustar debian/examples/docbook-xsl/foo.1.example_manpage.xml debian/docbook-xsl-ns.examples0000644000000000000000000000007111564274163013577 0ustar debian/examples/docbook-xsl-ns/foo.1.example_manpage.xml debian/docbook-xsl.install0000644000000000000000000000272412150451715013010 0ustar docbook-xsl/VERSION* usr/share/xml/docbook/stylesheet/docbook-xsl/ docbook-xsl/assembly usr/share/xml/docbook/stylesheet/docbook-xsl/ docbook-xsl/common usr/share/xml/docbook/stylesheet/docbook-xsl/ docbook-xsl/eclipse usr/share/xml/docbook/stylesheet/docbook-xsl/ docbook-xsl/epub/*.xsl usr/share/xml/docbook/stylesheet/docbook-xsl/epub/ docbook-xsl/epub3/*.* usr/share/xml/docbook/stylesheet/docbook-xsl/epub3/ docbook-xsl/fo usr/share/xml/docbook/stylesheet/docbook-xsl/ docbook-xsl/highlighting usr/share/xml/docbook/stylesheet/docbook-xsl/ docbook-xsl/html usr/share/xml/docbook/stylesheet/docbook-xsl/ docbook-xsl/htmlhelp usr/share/xml/docbook/stylesheet/docbook-xsl/ docbook-xsl/images usr/share/xml/docbook/stylesheet/docbook-xsl/ docbook-xsl/javahelp usr/share/xml/docbook/stylesheet/docbook-xsl/ docbook-xsl/lib usr/share/xml/docbook/stylesheet/docbook-xsl/ docbook-xsl/manpages usr/share/xml/docbook/stylesheet/docbook-xsl/ docbook-xsl/profiling usr/share/xml/docbook/stylesheet/docbook-xsl/ docbook-xsl/roundtrip usr/share/xml/docbook/stylesheet/docbook-xsl/ docbook-xsl/slides usr/share/xml/docbook/stylesheet/docbook-xsl/ docbook-xsl/template usr/share/xml/docbook/stylesheet/docbook-xsl/ docbook-xsl/website usr/share/xml/docbook/stylesheet/docbook-xsl/ docbook-xsl/xhtml* usr/share/xml/docbook/stylesheet/docbook-xsl/ debian/docbook-xsl-ns.bug-presubj0000644000000000000000000000042211661202154014173 0ustar For issues with Debian hacks (see section 5 of README.Debian) report your problem ONLY to the Debian BTS and NEVER to upstream. For general notes regarding bug-reports against the Debian package, please read section 6 of /usr/share/doc/docbook-xsl-ns/README.Debian.gz. debian/docbook-xsl-ns.docs0000644000000000000000000000007611564274163012716 0ustar docbook-xsl-ns/BUGS docbook-xsl-ns/README docbook-xsl-ns/TODO debian/README.source0000644000000000000000000000125611661155671011362 0ustar docbook-xsl and docbook-xsl-ns for Debian ----------------------------------------- This is the repackaged source of the upstream tarballs of docbook-xsl and docbook-xsl-ns. The following changes are done to the upstream tarballs (see also the get-orig-source.sh script): - call uscan with --no-symlink - removal of the extensions/ directories - source is missing JFTR: There are separate (source) packages docbook-xsl-saxon and docbook-xsl-xalan which provide the extensions and their source. - removal of the webhelp/ directories - source is missing, separate package The will be a separate package soon. -- Daniel Leidert , May 2011 debian/get-orig-source.sh0000755000000000000000000000254512150421256012544 0ustar #!/bin/sh set -ex UPSTREAM_VERSION=$2 ORIG_TARBALL=$3 REAL_TARBALL=`readlink -f ${ORIG_TARBALL}` REAL_TARBALL_NS=`echo ${REAL_TARBALL} | sed -e "s/docbook-xsl-\(${UPSTREAM_VERSION}\.tar\.\(bz2\|gz\)\)/docbook-xsl-ns-\1/g"` REAL_TARBALL_NS_STRIP=`basename ${REAL_TARBALL_NS}` WORKING_DIR=`dirname ${ORIG_TARBALL}` [ -f ${REAL_TARBALL_NS} ] || wget -P ${WORKING_DIR} http://downloads.sourceforge.net/docbook/${REAL_TARBALL_NS_STRIP} [ -f ${REAL_TARBALL_NS} ] || exit 1 ORIG_TARBALL_DFSG=`echo ${REAL_TARBALL} | sed -e "s/-\(${UPSTREAM_VERSION}\)/_\1+dfsg.orig/g"` ORIG_TARBALL_DIR=`echo ${ORIG_TARBALL_DFSG} | sed -e "s/_\(${UPSTREAM_VERSION}\)/-\1/g" -e "s/\.tar\.\(bz2\|gz\)//g"` ORIG_TARBALL_DIR_STRIP=`basename ${ORIG_TARBALL_DIR}` mkdir -p ${ORIG_TARBALL_DIR}/docbook-xsl/ ${ORIG_TARBALL_DIR}/docbook-xsl-ns/ tar --directory=${ORIG_TARBALL_DIR}/docbook-xsl/ --strip 1 -xf ${REAL_TARBALL} || exit 1 tar --directory=${ORIG_TARBALL_DIR}/docbook-xsl-ns/ --strip 1 -xf ${REAL_TARBALL_NS} || exit 1 rm -f ${ORIG_TARBALL} ${REAL_TARBALL} ${REAL_TARBALL_NS} rm -rf ${ORIG_TARBALL_DIR}/docbook-xsl/extensions/ ${ORIG_TARBALL_DIR}/docbook-xsl/webhelp \ ${ORIG_TARBALL_DIR}/docbook-xsl-ns/extensions/ ${ORIG_TARBALL_DIR}/docbook-xsl-ns/webhelp/ GZIP=-9 tar --remove-files --directory ${WORKING_DIR} -cjf ${ORIG_TARBALL_DFSG} ${ORIG_TARBALL_DIR_STRIP} || exit 1 exit 0 debian/rules0000755000000000000000000000237712150451715010260 0ustar #!/usr/bin/make -f # # export DH_VERBOSE=1 %: dh $@ --parallel override_dh_auto_build: override_dh_auto_test: xmllint --noout --noent --nonet --valid \ $(CURDIR)/debian/examples/docbook-xsl/foo.1.example_manpage.xml xmllint --noout --noent --nonet \ --relaxng http://docbook.org/xml/5.0/rng/docbook.rng \ $(CURDIR)/debian/examples/docbook-xsl-ns/foo.1.example_manpage.xml override_dh_install: dh_installxmlcatalogs # upstream ships {param,pi,table}.xml as example for DocBook # because we don't need them inside docbook-xsl, we exclude them dh_install -XREADME -Xparam.xml -Xpi.xml -Xtable.xml -XChangeLog* -X.param.* -X.lib.* -X.gitignore override_dh_installdocs: dh_installdocs for i in docbook-xsl docbook-xsl; do \ files=`find $${i} -mindepth 2 -name README`; \ for j in $${files}; do \ verz=`echo $${j} | sed -e 's#.*/\([^/]*\)/README#\1#g'`; \ GZIP=-9 gzip -c $${j} > $(CURDIR)/debian/$${i}/usr/share/doc/$${i}/README.$${verz}.gz; \ done; \ done override_dh_installchangelogs: dh_installchangelogs -p docbook-xsl docbook-xsl/RELEASE-NOTES.txt dh_installchangelogs -p docbook-xsl-ns docbook-xsl-ns/RELEASE-NOTES.txt debian/NEWS0000644000000000000000000001305311440443117007666 0ustar docbook-xsl (1.76.0~RC1+dfsg-1) experimental; urgency=low The webhelp (output) support, added in 1.76.0, will be packaged in a separate package later. -- Daniel Leidert (dale) Tue, 31 Aug 2010 22:20:51 +0200 docbook-xsl (1.75.2+dfsg-2) unstable; urgency=low dbtoepub is now shipped in its own package (#525808). -- Daniel Leidert (dale) Thu, 23 Jul 2009 15:34:44 +0200 docbook-xsl (1.74.3+dfsg-1) unstable; urgency=low IMPORTANT: The stylesheets have been moved from /usr/share/xml/docbook/stylesheet/nwalsh/ to /usr/share/xml/docbook/stylesheet/docbook-xsl/. The old directory is a symlink to the new location for compatibility reasons. Note, that I plan to drop the old location /usr/share/xml/docbook/stylesheet/nwalsh/ in the future. So plese adjust the path in your scripts, XML documents, ... or better: use the WWW resource URI and the catalog system. The patch to support reading the default papersize from /etc/papersize (#173093, #382505) has been dropped, because it creates a failure if the configuration file is not present (#511005). So use a frontend, which supports libpaper or set the paper.type parameter in your stylesheet. There is now also a new script `dbtoepub' (PoC, alpha state) to create EPUB output from DocBook books and articles. Send your suggestions. -- Daniel Leidert (dale) Fri, 20 Feb 2009 16:11:00 +0100 docbook-xsl (1.73.2.dfsg.1-2) unstable; urgency=low This release fixes the broken legalnotice and revhistory links in (X)HTML output. It further implements a design change made by upstream - you now MUST set the use.id.as.filename to create legalnotice or revhistory filenames from their ID. Otherwise the stylesheets will fall back to use generate-id() and compute a filename from the return value of this XSLT function. In the past, existing IDs were used, even if use.id.as.filename was not set. Alternatively you can also use the dbhtml filename PI to choose a name for your revhistory or legalnotice chunk(s). -- Daniel Leidert (dale) Wed, 26 Sep 2007 22:34:52 +0200 docbook-xsl (1.73.0.dfsg.1-1) unstable; urgency=low In the 1.72.0 release there was a regression regarding the backslash, dot and dash handling, that lead to several "broken" manpages, showing visible man macros. These issues wer almost caused by some non-compliant custom templates. In the following bug reports (docbook-xsl) (aptitude) (git-core) you can read more about the details and probelms. With the 1.73 release, upstream reverted this change and restored the pre-1.72 behaviour. However, whenever you need to make some text bold or italic in manpages, read the comments in /usr/share/xml/docbook/stylesheet/nwalsh/manpages/utility.xsl about the available bold/italic named templates or ask for assistence to avoid the same issues in the future. Footnote handling in the current manpages code pretty much assumes that, if you have a table or list or something in footnote, it's always preceded by some text -- like, The following list shows foo bar... ... instead of ... or .... See the release notes in /usr/share/doc/docbook-xsl/changelog.gz for a more detailed explanation and other important hints. Further a special (Debian-only) patch has been implemented to fix the bugs In these reports it was requested, that the default value of the paper.type parameter is set accordingly to the value in /etc/papersize. This patch is considered to be experimental. Don't bug upstream with issues, if you observe one - only bug me (and the Debian BTS). A further limitation is, that only the values, that are shared between the paper.type parameter values of docbook-xsl and the papersize values are currently supported. Otherwise, the code will fall back to the default 'USletter'. -- Daniel Leidert (dale) Mon, 20 Aug 2007 03:55:18 +0200 docbook-xsl (1.72.0.dfsg.1-1) unstable; urgency=low The docbook-xsl-doc package was split into 3 packages: - docbook-xsl-doc-html - containing the HTML documentation (shipped with docbook-xsl-doc in the past) - docbook-xsl-doc-pdf - containing a PDF version of the documentation - docbook-xsl-doc-text - containing a plain ASCII text version of the documentation All 3 packages conflict with docbook-xsl-doc to ease transition. -- Daniel Leidert (dale) Sat, 24 Feb 2007 01:12:26 +0100 docbook-xsl (1.73.2.dfsg.1-2) unstable; urgency=low This release fixes the broken legalnotice and revhistory links in (X)HTML output. It further implements a design change made by upstream - you now MUST set the use.id.as.filename to create legalnotice or revhistory filenames from their ID. Otherwise the stylesheets will fall back to use generate-id() and compute a filename from the return value of this XSLT function. In the past, existing IDs were used, even if use.id.as.filename was not set. Alternatively you can also use the dbhtml filename PI to choose a name for your revhistory or legalnotice chunk(s). -- Daniel Leidert (dale) Wed, 26 Sep 2007 22:34:52 +0200 debian/copyright0000644000000000000000000010024611661202670011125 0ustar This package, split of docbook-xsl, was debianized by Daniel Leidert . But docbook-xsl was debianized by Mark Johnson on Mon, 11 Oct 2004 18:37:39 -0400. It was downloaded from the Sourceforge.net download servers: http://downloads.sourceforge.net/docbook/ Copyright: Copyright (C) 1999-2007 Norman Walsh. Copyright (C) 2003 Jiří Kosek. Copyright (C) 2004-2007 Steve Ball. Copyright (C) 2005-2007 The DocBook Project. Several files in the /usr/share/xml/docbook/stylesheet/docbook-xsl/highlighting and /usr/share/xml/docbook/stylesheet/docbook-xsl-ns/highlighting directories are copyright: delphi-hl.xml, ini-hl.xml, java-hl.xml, m2-hl.xml, myxml-hl.xml, php-hl.xml: Copyright (C) 2005 Michal Molhanec. Several JavaScript files in the /usr/share/xml/docbook/stylesheet/docbook-xsl/slides/browser and /usr/share/xml/docbook/stylesheet/docbook-xsl-ns/slides/browser directories are copyright: xbLibrary.js: Copyright (C) 2000 Bob Clary. ua.js, xbDebug.js, xbDOM.js, xbStyle.js, xbStyle-css.js, xbStyle-nn4.js, xbStyle-not-supported.js: Copyright (C) 2001 The Netscape Corporation. CTOCWidget.js: Copyright (C) 2003 The Netscape Corporation. xbCollapsibleLists.js: Copyright (C) 1997 Michael Bostock (Netscape Communications). Copyright (C) 2001 Bob Clary (Netscape Communications). Copyright (C) 2001 Seth Dillingham (Macrobyte Resources). Copyright (C) 2002 Mark Filanowicz (Amdahl IT Services). Upstream Author: Norman Walsh and other docbook developers at the Sourceforge DocBook Open Repository. As you can see above, code was also derived from other sources. License and warranty for most parts of the package: MIT/X Consortium License Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. Except as contained in this notice, the names of individuals credited with contribution to this software shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from the individuals in question. Any stylesheet derived from this Software that is publicly distributed will be identified with a different name and the version strings in any derived Software will be changed so that no possibility of confusion between the derived package and this Software will exist. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL NORMAN WALSH OR ANY OTHER CONTRIBUTOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. License and warranty for delphi-hl.xml, ini-hl.xml, java-hl.xml, m2-hl.xml, myxml-hl.xml, php-hl.xml: Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. THIS SOFTWARE IS PROVIDED "AS IS", WITHOUT ANY EXPRESS OR IMPLIED WARRANTY. IN NO EVENT WILL THE AUTHORS BE HELD LIABLE FOR ANY DAMAGE ARISING FROM THE USE OF THIS SOFTWARE. License and warranty for slides.js: All-Permissive You are free to use, modify and distribute this software without limitation. THIS SOFTWARE IS PROVIDED "AS IS", WITHOUT A WARRANTY OF ANY KIND. License and warranty for xbCollapsibleLists.js: All-Permissive Netscape grants you a royalty free license to use, modify or distribute this software provided that this copyright notice appears on all copies. THIS SOFTWARE IS PROVIDED "AS IS", WITHOUT A WARRANTY OF ANY KIND. License and warranty for CTOCWidget.js, ua.js, xbDebug.js, xbDOM.js, xbLibrary.js, xbStyle.js, xbStyle-css.js, xbStyle-nn4.js, xbStyle-not-supported.js: MPL 1.1 The contents of this file are subject to the Mozilla Public License Version 1.1 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.mozilla.org/MPL/ Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. ============================================================================== The Mozilla Public License (MPL) Version 1.1 follows: MOZILLA PUBLIC LICENSE Version 1.1 --------------- 1. Definitions. 1.0.1. "Commercial Use" means distribution or otherwise making the Covered Code available to a third party. 1.1. "Contributor" means each entity that creates or contributes to the creation of Modifications. 1.2. "Contributor Version" means the combination of the Original Code, prior Modifications used by a Contributor, and the Modifications made by that particular Contributor. 1.3. "Covered Code" means the Original Code or Modifications or the combination of the Original Code and Modifications, in each case including portions thereof. 1.4. "Electronic Distribution Mechanism" means a mechanism generally accepted in the software development community for the electronic transfer of data. 1.5. "Executable" means Covered Code in any form other than Source Code. 1.6. "Initial Developer" means the individual or entity identified as the Initial Developer in the Source Code notice required by Exhibit A. 1.7. "Larger Work" means a work which combines Covered Code or portions thereof with code not governed by the terms of this License. 1.8. "License" means this document. 1.8.1. "Licensable" means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently acquired, any and all of the rights conveyed herein. 1.9. "Modifications" means any addition to or deletion from the substance or structure of either the Original Code or any previous Modifications. When Covered Code is released as a series of files, a Modification is: A. Any addition to or deletion from the contents of a file containing Original Code or previous Modifications. B. Any new file that contains any part of the Original Code or previous Modifications. 1.10. "Original Code" means Source Code of computer software code which is described in the Source Code notice required by Exhibit A as Original Code, and which, at the time of its release under this License is not already Covered Code governed by this License. 1.10.1. "Patent Claims" means any patent claim(s), now owned or hereafter acquired, including without limitation, method, process, and apparatus claims, in any patent Licensable by grantor. 1.11. "Source Code" means the preferred form of the Covered Code for making modifications to it, including all modules it contains, plus any associated interface definition files, scripts used to control compilation and installation of an Executable, or source code differential comparisons against either the Original Code or another well known, available Covered Code of the Contributor's choice. The Source Code can be in a compressed or archival form, provided the appropriate decompression or de-archiving software is widely available for no charge. 1.12. "You" (or "Your") means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 6.1. For legal entities, "You" includes any entity which controls, is controlled by, or is under common control with You. For purposes of this definition, "control" means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity. 2. Source Code License. 2.1. The Initial Developer Grant. The Initial Developer hereby grants You a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims: (a) under intellectual property rights (other than patent or trademark) Licensable by Initial Developer to use, reproduce, modify, display, perform, sublicense and distribute the Original Code (or portions thereof) with or without Modifications, and/or as part of a Larger Work; and (b) under Patents Claims infringed by the making, using or selling of Original Code, to make, have made, use, practice, sell, and offer for sale, and/or otherwise dispose of the Original Code (or portions thereof). (c) the licenses granted in this Section 2.1(a) and (b) are effective on the date Initial Developer first distributes Original Code under the terms of this License. (d) Notwithstanding Section 2.1(b) above, no patent license is granted: 1) for code that You delete from the Original Code; 2) separate from the Original Code; or 3) for infringements caused by: i) the modification of the Original Code or ii) the combination of the Original Code with other software or devices. 2.2. Contributor Grant. Subject to third party intellectual property claims, each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license (a) under intellectual property rights (other than patent or trademark) Licensable by Contributor, to use, reproduce, modify, display, perform, sublicense and distribute the Modifications created by such Contributor (or portions thereof) either on an unmodified basis, with other Modifications, as Covered Code and/or as part of a Larger Work; and (b) under Patent Claims infringed by the making, using, or selling of Modifications made by that Contributor either alone and/or in combination with its Contributor Version (or portions of such combination), to make, use, sell, offer for sale, have made, and/or otherwise dispose of: 1) Modifications made by that Contributor (or portions thereof); and 2) the combination of Modifications made by that Contributor with its Contributor Version (or portions of such combination). (c) the licenses granted in Sections 2.2(a) and 2.2(b) are effective on the date Contributor first makes Commercial Use of the Covered Code. (d) Notwithstanding Section 2.2(b) above, no patent license is granted: 1) for any code that Contributor has deleted from the Contributor Version; 2) separate from the Contributor Version; 3) for infringements caused by: i) third party modifications of Contributor Version or ii) the combination of Modifications made by that Contributor with other software (except as part of the Contributor Version) or other devices; or 4) under Patent Claims infringed by Covered Code in the absence of Modifications made by that Contributor. 3. Distribution Obligations. 3.1. Application of License. The Modifications which You create or to which You contribute are governed by the terms of this License, including without limitation Section 2.2. The Source Code version of Covered Code may be distributed only under the terms of this License or a future version of this License released under Section 6.1, and You must include a copy of this License with every copy of the Source Code You distribute. You may not offer or impose any terms on any Source Code version that alters or restricts the applicable version of this License or the recipients' rights hereunder. However, You may include an additional document offering the additional rights described in Section 3.5. 3.2. Availability of Source Code. Any Modification which You create or to which You contribute must be made available in Source Code form under the terms of this License either on the same media as an Executable version or via an accepted Electronic Distribution Mechanism to anyone to whom you made an Executable version available; and if made available via Electronic Distribution Mechanism, must remain available for at least twelve (12) months after the date it initially became available, or at least six (6) months after a subsequent version of that particular Modification has been made available to such recipients. You are responsible for ensuring that the Source Code version remains available even if the Electronic Distribution Mechanism is maintained by a third party. 3.3. Description of Modifications. You must cause all Covered Code to which You contribute to contain a file documenting the changes You made to create that Covered Code and the date of any change. You must include a prominent statement that the Modification is derived, directly or indirectly, from Original Code provided by the Initial Developer and including the name of the Initial Developer in (a) the Source Code, and (b) in any notice in an Executable version or related documentation in which You describe the origin or ownership of the Covered Code. 3.4. Intellectual Property Matters (a) Third Party Claims. If Contributor has knowledge that a license under a third party's intellectual property rights is required to exercise the rights granted by such Contributor under Sections 2.1 or 2.2, Contributor must include a text file with the Source Code distribution titled "LEGAL" which describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If Contributor obtains such knowledge after the Modification is made available as described in Section 3.2, Contributor shall promptly modify the LEGAL file in all copies Contributor makes available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Covered Code that new knowledge has been obtained. (b) Contributor APIs. If Contributor's Modifications include an application programming interface and Contributor has knowledge of patent licenses which are reasonably necessary to implement that API, Contributor must also include this information in the LEGAL file. (c) Representations. Contributor represents that, except as disclosed pursuant to Section 3.4(a) above, Contributor believes that Contributor's Modifications are Contributor's original creation(s) and/or Contributor has sufficient rights to grant the rights conveyed by this License. 3.5. Required Notices. You must duplicate the notice in Exhibit A in each file of the Source Code. If it is not possible to put such notice in a particular Source Code file due to its structure, then You must include such notice in a location (such as a relevant directory) where a user would be likely to look for such a notice. If You created one or more Modification(s) You may add your name as a Contributor to the notice described in Exhibit A. You must also duplicate this License in any documentation for the Source Code where You describe recipients' rights or ownership rights relating to Covered Code. You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Code. However, You may do so only on Your own behalf, and not on behalf of the Initial Developer or any Contributor. You must make it absolutely clear than any such warranty, support, indemnity or liability obligation is offered by You alone, and You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of warranty, support, indemnity or liability terms You offer. 3.6. Distribution of Executable Versions. You may distribute Covered Code in Executable form only if the requirements of Section 3.1-3.5 have been met for that Covered Code, and if You include a notice stating that the Source Code version of the Covered Code is available under the terms of this License, including a description of how and where You have fulfilled the obligations of Section 3.2. The notice must be conspicuously included in any notice in an Executable version, related documentation or collateral in which You describe recipients' rights relating to the Covered Code. You may distribute the Executable version of Covered Code or ownership rights under a license of Your choice, which may contain terms different from this License, provided that You are in compliance with the terms of this License and that the license for the Executable version does not attempt to limit or alter the recipient's rights in the Source Code version from the rights set forth in this License. If You distribute the Executable version under a different license You must make it absolutely clear that any terms which differ from this License are offered by You alone, not by the Initial Developer or any Contributor. You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of any such terms You offer. 3.7. Larger Works. You may create a Larger Work by combining Covered Code with other code not governed by the terms of this License and distribute the Larger Work as a single product. In such a case, You must make sure the requirements of this License are fulfilled for the Covered Code. 4. Inability to Comply Due to Statute or Regulation. If it is impossible for You to comply with any of the terms of this License with respect to some or all of the Covered Code due to statute, judicial order, or regulation then You must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be included in the LEGAL file described in Section 3.4 and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it. 5. Application of this License. This License applies to code to which the Initial Developer has attached the notice in Exhibit A and to related Covered Code. 6. Versions of the License. 6.1. New Versions. Netscape Communications Corporation ("Netscape") may publish revised and/or new versions of the License from time to time. Each version will be given a distinguishing version number. 6.2. Effect of New Versions. Once Covered Code has been published under a particular version of the License, You may always continue to use it under the terms of that version. You may also choose to use such Covered Code under the terms of any subsequent version of the License published by Netscape. No one other than Netscape has the right to modify the terms applicable to Covered Code created under this License. 6.3. Derivative Works. If You create or use a modified version of this License (which you may only do in order to apply it to code which is not already Covered Code governed by this License), You must (a) rename Your license so that the phrases "Mozilla", "MOZILLAPL", "MOZPL", "Netscape", "MPL", "NPL" or any confusingly similar phrase do not appear in your license (except to note that your license differs from this License) and (b) otherwise make it clear that Your version of the license contains terms which differ from the Mozilla Public License and Netscape Public License. (Filling in the name of the Initial Developer, Original Code or Contributor in the notice described in Exhibit A shall not of themselves be deemed to be modifications of this License.) 7. DISCLAIMER OF WARRANTY. COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. 8. TERMINATION. 8.1. This License and the rights granted hereunder will terminate automatically if You fail to comply with terms herein and fail to cure such breach within 30 days of becoming aware of the breach. All sublicenses to the Covered Code which are properly granted shall survive any termination of this License. Provisions which, by their nature, must remain in effect beyond the termination of this License shall survive. 8.2. If You initiate litigation by asserting a patent infringement claim (excluding declatory judgment actions) against Initial Developer or a Contributor (the Initial Developer or Contributor against whom You file such action is referred to as "Participant") alleging that: (a) such Participant's Contributor Version directly or indirectly infringes any patent, then any and all rights granted by such Participant to You under Sections 2.1 and/or 2.2 of this License shall, upon 60 days notice from Participant terminate prospectively, unless if within 60 days after receipt of notice You either: (i) agree in writing to pay Participant a mutually agreeable reasonable royalty for Your past and future use of Modifications made by such Participant, or (ii) withdraw Your litigation claim with respect to the Contributor Version against such Participant. If within 60 days of notice, a reasonable royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not withdrawn, the rights granted by Participant to You under Sections 2.1 and/or 2.2 automatically terminate at the expiration of the 60 day notice period specified above. (b) any software, hardware, or device, other than such Participant's Contributor Version, directly or indirectly infringes any patent, then any rights granted to You by such Participant under Sections 2.1(b) and 2.2(b) are revoked effective as of the date You first made, used, sold, distributed, or had made, Modifications made by that Participant. 8.3. If You assert a patent infringement claim against Participant alleging that such Participant's Contributor Version directly or indirectly infringes any patent where such claim is resolved (such as by license or settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses granted by such Participant under Sections 2.1 or 2.2 shall be taken into account in determining the amount or value of any payment or license. 8.4. In the event of termination under Sections 8.1 or 8.2 above, all end user license agreements (excluding distributors and resellers) which have been validly granted by You or any distributor hereunder prior to termination shall survive termination. 9. LIMITATION OF LIABILITY. UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. 10. U.S. GOVERNMENT END USERS. The Covered Code is a "commercial item," as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial computer software" and "commercial computer software documentation," as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Covered Code with only those rights set forth herein. 11. MISCELLANEOUS. This License represents the complete agreement concerning subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by California law provisions (except to the extent applicable law, if any, provides otherwise), excluding its conflict-of-law provisions. With respect to disputes in which at least one party is a citizen of, or an entity chartered or registered to do business in the United States of America, any litigation relating to this License shall be subject to the jurisdiction of the Federal Courts of the Northern District of California, with venue lying in Santa Clara County, California, with the losing party responsible for costs, including without limitation, court costs and reasonable attorneys' fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License. 12. RESPONSIBILITY FOR CLAIMS. As between Initial Developer and the Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License and You agree to work with Initial Developer and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability. 13. MULTIPLE-LICENSED CODE. Initial Developer may designate portions of the Covered Code as "Multiple-Licensed". "Multiple-Licensed" means that the Initial Developer permits you to utilize portions of the Covered Code under Your choice of the NPL or the alternative licenses, if any, specified by the Initial Developer in the file described in Exhibit A. EXHIBIT A -Mozilla Public License. ``The contents of this file are subject to the Mozilla Public License Version 1.1 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.mozilla.org/MPL/ Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. The Original Code is ______________________________________. The Initial Developer of the Original Code is ________________________. Portions created by ______________________ are Copyright (C) ______ _______________________. All Rights Reserved. Contributor(s): ______________________________________. Alternatively, the contents of this file may be used under the terms of the _____ license (the "[___] License"), in which case the provisions of [______] License are applicable instead of those above. If you wish to allow use of your version of this file only under the terms of the [____] License and not to allow others to use your version of this file under the MPL, indicate your decision by deleting the provisions above and replace them with the notice and other provisions required by the [___] License. If you do not delete the provisions above, a recipient may use your version of this file under either the MPL or the [___] License." [NOTE: The text of this Exhibit A may differ slightly from the text of the notices in the Source Code files of the Original Code. You should use the text of this Exhibit A rather than the text found in the Original Code Source Code for Your Modifications.] ============================================================================== The Debian packaging is Copyright (C) 2004 Mark Johnson Copyright (C) 2006-2011 Daniel Leidert and licensed under the GNU General Public license version 2, found at `/usr/share/common-licenses/GPL-2', or at your option any later version. The current version of the GNU General Public license can also be found at `/usr/share/common-licenses/GPL'. debian/docbook-xsl-ns.copyright0000644000000000000000000007704011564274163014003 0ustar This package was debianized by Daniel Leidert and is based on the packaging of docbook-xsl, debianized by Mark Johnson . It was downloaded from the Sourceforge.net download servers: http://downloads.sourceforge.net/docbook/ Copyright: Copyright (C) 1999-2007 Norman Walsh. Copyright (C) 2003 Jiří Kosek. Copyright (C) 2004-2007 Steve Ball. Copyright (C) 2005-2007 The DocBook Project. Several files in the /usr/share/xml/docbook/stylesheet/docbook-xsl-ns/highlighting directory are copyright: delphi-hl.xml, ini-hl.xml, java-hl.xml, m2-hl.xml, myxml-hl.xml, php-hl.xml: Copyright (C) 2005 Michal Molhanec. Several JavaScript files in the /usr/share/xml/docbook/stylesheet/docbook-xsl-ns/slides/browser directory are copyright: xbLibrary.js: Copyright (C) 2000 Bob Clary. ua.js, xbDebug.js, xbDOM.js, xbStyle.js, xbStyle-css.js, xbStyle-nn4.js, xbStyle-not-supported.js: Copyright (C) 2001 The Netscape Corporation. CTOCWidget.js: Copyright (C) 2003 The Netscape Corporation. xbCollapsibleLists.js: Copyright (C) 1997 Michael Bostock (Netscape Communications). Copyright (C) 2001 Bob Clary (Netscape Communications). Copyright (C) 2001 Seth Dillingham (Macrobyte Resources). Copyright (C) 2002 Mark Filanowicz (Amdahl IT Services). Upstream Author: Norman Walsh and other docbook developers at the Sourceforge DocBook Open Repository. As you can see above, code was also derived from other sources. License and warranty for most parts of the package: MIT/X Consortium License Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. Except as contained in this notice, the names of individuals credited with contribution to this software shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from the individuals in question. Any stylesheet derived from this Software that is publicly distributed will be identified with a different name and the version strings in any derived Software will be changed so that no possibility of confusion between the derived package and this Software will exist. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL NORMAN WALSH OR ANY OTHER CONTRIBUTOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. License and warranty for delphi-hl.xml, ini-hl.xml, java-hl.xml, m2-hl.xml, myxml-hl.xml, php-hl.xml: Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. THIS SOFTWARE IS PROVIDED "AS IS", WITHOUT ANY EXPRESS OR IMPLIED WARRANTY. IN NO EVENT WILL THE AUTHORS BE HELD LIABLE FOR ANY DAMAGE ARISING FROM THE USE OF THIS SOFTWARE. License and warranty for slides.js: All-Permissive You are free to use, modify and distribute this software without limitation. THIS SOFTWARE IS PROVIDED "AS IS", WITHOUT A WARRANTY OF ANY KIND. License and warranty for xbCollapsibleLists.js: All-Permissive Netscape grants you a royalty free license to use, modify or distribute this software provided that this copyright notice appears on all copies. THIS SOFTWARE IS PROVIDED "AS IS", WITHOUT A WARRANTY OF ANY KIND. License and warranty for CTOCWidget.js, ua.js, xbDebug.js, xbDOM.js, xbLibrary.js, xbStyle.js, xbStyle-css.js, xbStyle-nn4.js, xbStyle-not-supported.js: MPL 1.1 The contents of this file are subject to the Mozilla Public License Version 1.1 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.mozilla.org/MPL/ Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. ============================================================================== The Mozilla Public License (MPL) Version 1.1 follows: MOZILLA PUBLIC LICENSE Version 1.1 --------------- 1. Definitions. 1.0.1. "Commercial Use" means distribution or otherwise making the Covered Code available to a third party. 1.1. "Contributor" means each entity that creates or contributes to the creation of Modifications. 1.2. "Contributor Version" means the combination of the Original Code, prior Modifications used by a Contributor, and the Modifications made by that particular Contributor. 1.3. "Covered Code" means the Original Code or Modifications or the combination of the Original Code and Modifications, in each case including portions thereof. 1.4. "Electronic Distribution Mechanism" means a mechanism generally accepted in the software development community for the electronic transfer of data. 1.5. "Executable" means Covered Code in any form other than Source Code. 1.6. "Initial Developer" means the individual or entity identified as the Initial Developer in the Source Code notice required by Exhibit A. 1.7. "Larger Work" means a work which combines Covered Code or portions thereof with code not governed by the terms of this License. 1.8. "License" means this document. 1.8.1. "Licensable" means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently acquired, any and all of the rights conveyed herein. 1.9. "Modifications" means any addition to or deletion from the substance or structure of either the Original Code or any previous Modifications. When Covered Code is released as a series of files, a Modification is: A. Any addition to or deletion from the contents of a file containing Original Code or previous Modifications. B. Any new file that contains any part of the Original Code or previous Modifications. 1.10. "Original Code" means Source Code of computer software code which is described in the Source Code notice required by Exhibit A as Original Code, and which, at the time of its release under this License is not already Covered Code governed by this License. 1.10.1. "Patent Claims" means any patent claim(s), now owned or hereafter acquired, including without limitation, method, process, and apparatus claims, in any patent Licensable by grantor. 1.11. "Source Code" means the preferred form of the Covered Code for making modifications to it, including all modules it contains, plus any associated interface definition files, scripts used to control compilation and installation of an Executable, or source code differential comparisons against either the Original Code or another well known, available Covered Code of the Contributor's choice. The Source Code can be in a compressed or archival form, provided the appropriate decompression or de-archiving software is widely available for no charge. 1.12. "You" (or "Your") means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 6.1. For legal entities, "You" includes any entity which controls, is controlled by, or is under common control with You. For purposes of this definition, "control" means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity. 2. Source Code License. 2.1. The Initial Developer Grant. The Initial Developer hereby grants You a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims: (a) under intellectual property rights (other than patent or trademark) Licensable by Initial Developer to use, reproduce, modify, display, perform, sublicense and distribute the Original Code (or portions thereof) with or without Modifications, and/or as part of a Larger Work; and (b) under Patents Claims infringed by the making, using or selling of Original Code, to make, have made, use, practice, sell, and offer for sale, and/or otherwise dispose of the Original Code (or portions thereof). (c) the licenses granted in this Section 2.1(a) and (b) are effective on the date Initial Developer first distributes Original Code under the terms of this License. (d) Notwithstanding Section 2.1(b) above, no patent license is granted: 1) for code that You delete from the Original Code; 2) separate from the Original Code; or 3) for infringements caused by: i) the modification of the Original Code or ii) the combination of the Original Code with other software or devices. 2.2. Contributor Grant. Subject to third party intellectual property claims, each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license (a) under intellectual property rights (other than patent or trademark) Licensable by Contributor, to use, reproduce, modify, display, perform, sublicense and distribute the Modifications created by such Contributor (or portions thereof) either on an unmodified basis, with other Modifications, as Covered Code and/or as part of a Larger Work; and (b) under Patent Claims infringed by the making, using, or selling of Modifications made by that Contributor either alone and/or in combination with its Contributor Version (or portions of such combination), to make, use, sell, offer for sale, have made, and/or otherwise dispose of: 1) Modifications made by that Contributor (or portions thereof); and 2) the combination of Modifications made by that Contributor with its Contributor Version (or portions of such combination). (c) the licenses granted in Sections 2.2(a) and 2.2(b) are effective on the date Contributor first makes Commercial Use of the Covered Code. (d) Notwithstanding Section 2.2(b) above, no patent license is granted: 1) for any code that Contributor has deleted from the Contributor Version; 2) separate from the Contributor Version; 3) for infringements caused by: i) third party modifications of Contributor Version or ii) the combination of Modifications made by that Contributor with other software (except as part of the Contributor Version) or other devices; or 4) under Patent Claims infringed by Covered Code in the absence of Modifications made by that Contributor. 3. Distribution Obligations. 3.1. Application of License. The Modifications which You create or to which You contribute are governed by the terms of this License, including without limitation Section 2.2. The Source Code version of Covered Code may be distributed only under the terms of this License or a future version of this License released under Section 6.1, and You must include a copy of this License with every copy of the Source Code You distribute. You may not offer or impose any terms on any Source Code version that alters or restricts the applicable version of this License or the recipients' rights hereunder. However, You may include an additional document offering the additional rights described in Section 3.5. 3.2. Availability of Source Code. Any Modification which You create or to which You contribute must be made available in Source Code form under the terms of this License either on the same media as an Executable version or via an accepted Electronic Distribution Mechanism to anyone to whom you made an Executable version available; and if made available via Electronic Distribution Mechanism, must remain available for at least twelve (12) months after the date it initially became available, or at least six (6) months after a subsequent version of that particular Modification has been made available to such recipients. You are responsible for ensuring that the Source Code version remains available even if the Electronic Distribution Mechanism is maintained by a third party. 3.3. Description of Modifications. You must cause all Covered Code to which You contribute to contain a file documenting the changes You made to create that Covered Code and the date of any change. You must include a prominent statement that the Modification is derived, directly or indirectly, from Original Code provided by the Initial Developer and including the name of the Initial Developer in (a) the Source Code, and (b) in any notice in an Executable version or related documentation in which You describe the origin or ownership of the Covered Code. 3.4. Intellectual Property Matters (a) Third Party Claims. If Contributor has knowledge that a license under a third party's intellectual property rights is required to exercise the rights granted by such Contributor under Sections 2.1 or 2.2, Contributor must include a text file with the Source Code distribution titled "LEGAL" which describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If Contributor obtains such knowledge after the Modification is made available as described in Section 3.2, Contributor shall promptly modify the LEGAL file in all copies Contributor makes available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Covered Code that new knowledge has been obtained. (b) Contributor APIs. If Contributor's Modifications include an application programming interface and Contributor has knowledge of patent licenses which are reasonably necessary to implement that API, Contributor must also include this information in the LEGAL file. (c) Representations. Contributor represents that, except as disclosed pursuant to Section 3.4(a) above, Contributor believes that Contributor's Modifications are Contributor's original creation(s) and/or Contributor has sufficient rights to grant the rights conveyed by this License. 3.5. Required Notices. You must duplicate the notice in Exhibit A in each file of the Source Code. If it is not possible to put such notice in a particular Source Code file due to its structure, then You must include such notice in a location (such as a relevant directory) where a user would be likely to look for such a notice. If You created one or more Modification(s) You may add your name as a Contributor to the notice described in Exhibit A. You must also duplicate this License in any documentation for the Source Code where You describe recipients' rights or ownership rights relating to Covered Code. You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Code. However, You may do so only on Your own behalf, and not on behalf of the Initial Developer or any Contributor. You must make it absolutely clear than any such warranty, support, indemnity or liability obligation is offered by You alone, and You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of warranty, support, indemnity or liability terms You offer. 3.6. Distribution of Executable Versions. You may distribute Covered Code in Executable form only if the requirements of Section 3.1-3.5 have been met for that Covered Code, and if You include a notice stating that the Source Code version of the Covered Code is available under the terms of this License, including a description of how and where You have fulfilled the obligations of Section 3.2. The notice must be conspicuously included in any notice in an Executable version, related documentation or collateral in which You describe recipients' rights relating to the Covered Code. You may distribute the Executable version of Covered Code or ownership rights under a license of Your choice, which may contain terms different from this License, provided that You are in compliance with the terms of this License and that the license for the Executable version does not attempt to limit or alter the recipient's rights in the Source Code version from the rights set forth in this License. If You distribute the Executable version under a different license You must make it absolutely clear that any terms which differ from this License are offered by You alone, not by the Initial Developer or any Contributor. You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of any such terms You offer. 3.7. Larger Works. You may create a Larger Work by combining Covered Code with other code not governed by the terms of this License and distribute the Larger Work as a single product. In such a case, You must make sure the requirements of this License are fulfilled for the Covered Code. 4. Inability to Comply Due to Statute or Regulation. If it is impossible for You to comply with any of the terms of this License with respect to some or all of the Covered Code due to statute, judicial order, or regulation then You must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be included in the LEGAL file described in Section 3.4 and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it. 5. Application of this License. This License applies to code to which the Initial Developer has attached the notice in Exhibit A and to related Covered Code. 6. Versions of the License. 6.1. New Versions. Netscape Communications Corporation ("Netscape") may publish revised and/or new versions of the License from time to time. Each version will be given a distinguishing version number. 6.2. Effect of New Versions. Once Covered Code has been published under a particular version of the License, You may always continue to use it under the terms of that version. You may also choose to use such Covered Code under the terms of any subsequent version of the License published by Netscape. No one other than Netscape has the right to modify the terms applicable to Covered Code created under this License. 6.3. Derivative Works. If You create or use a modified version of this License (which you may only do in order to apply it to code which is not already Covered Code governed by this License), You must (a) rename Your license so that the phrases "Mozilla", "MOZILLAPL", "MOZPL", "Netscape", "MPL", "NPL" or any confusingly similar phrase do not appear in your license (except to note that your license differs from this License) and (b) otherwise make it clear that Your version of the license contains terms which differ from the Mozilla Public License and Netscape Public License. (Filling in the name of the Initial Developer, Original Code or Contributor in the notice described in Exhibit A shall not of themselves be deemed to be modifications of this License.) 7. DISCLAIMER OF WARRANTY. COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. 8. TERMINATION. 8.1. This License and the rights granted hereunder will terminate automatically if You fail to comply with terms herein and fail to cure such breach within 30 days of becoming aware of the breach. All sublicenses to the Covered Code which are properly granted shall survive any termination of this License. Provisions which, by their nature, must remain in effect beyond the termination of this License shall survive. 8.2. If You initiate litigation by asserting a patent infringement claim (excluding declatory judgment actions) against Initial Developer or a Contributor (the Initial Developer or Contributor against whom You file such action is referred to as "Participant") alleging that: (a) such Participant's Contributor Version directly or indirectly infringes any patent, then any and all rights granted by such Participant to You under Sections 2.1 and/or 2.2 of this License shall, upon 60 days notice from Participant terminate prospectively, unless if within 60 days after receipt of notice You either: (i) agree in writing to pay Participant a mutually agreeable reasonable royalty for Your past and future use of Modifications made by such Participant, or (ii) withdraw Your litigation claim with respect to the Contributor Version against such Participant. If within 60 days of notice, a reasonable royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not withdrawn, the rights granted by Participant to You under Sections 2.1 and/or 2.2 automatically terminate at the expiration of the 60 day notice period specified above. (b) any software, hardware, or device, other than such Participant's Contributor Version, directly or indirectly infringes any patent, then any rights granted to You by such Participant under Sections 2.1(b) and 2.2(b) are revoked effective as of the date You first made, used, sold, distributed, or had made, Modifications made by that Participant. 8.3. If You assert a patent infringement claim against Participant alleging that such Participant's Contributor Version directly or indirectly infringes any patent where such claim is resolved (such as by license or settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses granted by such Participant under Sections 2.1 or 2.2 shall be taken into account in determining the amount or value of any payment or license. 8.4. In the event of termination under Sections 8.1 or 8.2 above, all end user license agreements (excluding distributors and resellers) which have been validly granted by You or any distributor hereunder prior to termination shall survive termination. 9. LIMITATION OF LIABILITY. UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. 10. U.S. GOVERNMENT END USERS. The Covered Code is a "commercial item," as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial computer software" and "commercial computer software documentation," as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Covered Code with only those rights set forth herein. 11. MISCELLANEOUS. This License represents the complete agreement concerning subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by California law provisions (except to the extent applicable law, if any, provides otherwise), excluding its conflict-of-law provisions. With respect to disputes in which at least one party is a citizen of, or an entity chartered or registered to do business in the United States of America, any litigation relating to this License shall be subject to the jurisdiction of the Federal Courts of the Northern District of California, with venue lying in Santa Clara County, California, with the losing party responsible for costs, including without limitation, court costs and reasonable attorneys' fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License. 12. RESPONSIBILITY FOR CLAIMS. As between Initial Developer and the Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License and You agree to work with Initial Developer and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability. 13. MULTIPLE-LICENSED CODE. Initial Developer may designate portions of the Covered Code as "Multiple-Licensed". "Multiple-Licensed" means that the Initial Developer permits you to utilize portions of the Covered Code under Your choice of the NPL or the alternative licenses, if any, specified by the Initial Developer in the file described in Exhibit A. EXHIBIT A -Mozilla Public License. ``The contents of this file are subject to the Mozilla Public License Version 1.1 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.mozilla.org/MPL/ Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. The Original Code is ______________________________________. The Initial Developer of the Original Code is ________________________. Portions created by ______________________ are Copyright (C) ______ _______________________. All Rights Reserved. Contributor(s): ______________________________________. Alternatively, the contents of this file may be used under the terms of the _____ license (the "[___] License"), in which case the provisions of [______] License are applicable instead of those above. If you wish to allow use of your version of this file only under the terms of the [____] License and not to allow others to use your version of this file under the MPL, indicate your decision by deleting the provisions above and replace them with the notice and other provisions required by the [___] License. If you do not delete the provisions above, a recipient may use your version of this file under either the MPL or the [___] License." [NOTE: The text of this Exhibit A may differ slightly from the text of the notices in the Source Code files of the Original Code. You should use the text of this Exhibit A rather than the text found in the Original Code Source Code for Your Modifications.] debian/docbook-xsl.dirs0000644000000000000000000000004611147542023012274 0ustar usr/share/sgml/docbook/stylesheet/xsl debian/source/0000755000000000000000000000000012150451754010472 5ustar debian/source/format0000644000000000000000000000001411564261535011704 0ustar 3.0 (quilt) debian/docbook-xsl-ns.install0000644000000000000000000000311412150451715013420 0ustar docbook-xsl-ns/VERSION* usr/share/xml/docbook/stylesheet/docbook-xsl-ns/ docbook-xsl-ns/assembly usr/share/xml/docbook/stylesheet/docbook-xsl-ns/ docbook-xsl-ns/common usr/share/xml/docbook/stylesheet/docbook-xsl-ns/ docbook-xsl-ns/eclipse usr/share/xml/docbook/stylesheet/docbook-xsl-ns/ docbook-xsl-ns/epub/*.xsl usr/share/xml/docbook/stylesheet/docbook-xsl-ns/epub/ docbook-xsl-ns/epub3/*.* usr/share/xml/docbook/stylesheet/docbook-xsl-ns/epub3/ docbook-xsl-ns/fo usr/share/xml/docbook/stylesheet/docbook-xsl-ns/ docbook-xsl-ns/highlighting usr/share/xml/docbook/stylesheet/docbook-xsl-ns/ docbook-xsl-ns/html usr/share/xml/docbook/stylesheet/docbook-xsl-ns/ docbook-xsl-ns/htmlhelp usr/share/xml/docbook/stylesheet/docbook-xsl-ns/ docbook-xsl-ns/images usr/share/xml/docbook/stylesheet/docbook-xsl-ns/ docbook-xsl-ns/javahelp usr/share/xml/docbook/stylesheet/docbook-xsl-ns/ docbook-xsl-ns/lib usr/share/xml/docbook/stylesheet/docbook-xsl-ns/ docbook-xsl-ns/manpages usr/share/xml/docbook/stylesheet/docbook-xsl-ns/ docbook-xsl-ns/profiling usr/share/xml/docbook/stylesheet/docbook-xsl-ns/ docbook-xsl-ns/roundtrip usr/share/xml/docbook/stylesheet/docbook-xsl-ns/ docbook-xsl-ns/slides usr/share/xml/docbook/stylesheet/docbook-xsl-ns/ docbook-xsl-ns/template usr/share/xml/docbook/stylesheet/docbook-xsl-ns/ docbook-xsl-ns/website usr/share/xml/docbook/stylesheet/docbook-xsl-ns/ docbook-xsl-ns/xhtml* usr/share/xml/docbook/stylesheet/docbook-xsl-ns/ debian/docbook-xsl-ns.README.Debian0000644000000000000000000001213211564274163014100 0ustar docbook-xsl-ns for Debian ------------------------- (1) General (2) Extensions (3) Catalog Support (4) Getting Help (5) Debian Hacks (6) Reporting bugs (1) General =========== These stylesheets are now registered in the XML catalog system. (See also the RELEASE-NOTES.html in this directory.) You'll need an XSLT processor to use these stylesheets. The following processors are known to work with these stylesheets: - xsltproc (xsltproc, libxslt1.1) - Saxon (libsaxon-java) - Xalan (xalan, libxalan110) and Xalan 2 (libxalan2-java) - XT (libxt-java) - may not work anymore (upstream maintainers are dropping support) All of the above are part of Debian. - Many other XSLT processors may work as well, I simply haven't tested them. If you know one missing above, just let me know. Instructions for using these stylesheets with some of these XSLT processors can be found in the documentation included in docbook-xsl-doc* and in the packages mentioned above. See also "DocBook XSL: The Complete Guide" by Bob Stayton; an online html version is available at http://www.sagehill.net/docbookxsl. (2) Extensions ============== The extensions shipped with the source (xalan and saxon), missing the source, are not shipped with this package nor with the package source. Instead use the Debian packages for Xalan and Saxon. See also http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=331661. (3) Catalog Support =================== These stylesheets are now registered in the XML catalog system, and can be called via the base canonical URI in combination with one of the pathnames below. For example, for "chunked" HTML, output: http://docbook.sourceforge.net/release/xsl-ns/x.y.z/html/chunk.xsl http://docbook.sourceforge.net/release/xsl-ns/current/html/chunk.xsl (replace x, y and z with the version number of any docbook-xsl-ns release). Or use a "real" local system base path in combination with one of the pathnames. For example, for "chunked" HTML, output: /usr/share/xml/docbook/stylesheet/docbook-xsl-ns/html/chunk.xsl Read more in /usr/share/doc/docbook-xsl-ns/README. Catalog support: libxslt1.1/xsltproc: Provides catalog support for both OASIS catalog types: tr9401 and XML catalogs. xml-commons-resolver: Provides support for both SGML (aka tr9401) and XML catalogs. Can be used with saxon, xalan2 and xt. See the docs with that package for the details. (4) Getting Help ================ A good starting point is Bob Stayton's book "DocBook XSL: The Complete Guide", available online at http://www.sagehill.net/docbookxsl/ For parameter reference read the documents shipped with the docbook-xsl-doc* package file:///usr/share/doc/docbook-xsl-ns/reference.html/index.html If you still have problems or questions concerning these stylesheets, post a message to the docbook-apps mailing list. Response time is surprisingly short. For more information, visit the list archives at http://lists.oasis-open.org/archives/docbook-apps/ or the Wiki page at http://wiki.docbook.org/topic/DocBookAppsMailingList (5) Debian Hacks ================ IMPORTANT NOTE: Never bother upstream if you have issues with the following Debian hacks. Instead send your reports ONLY to the Debian BTS (http://bugs.debian.org/docbook-xsl-ns). (a) In Debian bugs #173093 and #382505 it has been requested, that the default value for the paper.type parameter is set accordingly to the system wide setting in /etc/papersize. NOTE: The patch has been dropped, because /etc/papersize is a configuration file and might not be present at the users system (#511005). A new solution to the original request is not available atm (but several frontends like xmlto support libpaper already). http://bugs.debian.org/173093 http://bugs.debian.org/382505 http://bugs.debian.org/511005 (6) Reporting bugs ================== NOTE FOR BUG REPORTS: If you think, that your bug report is not specifically related to the Debian package, and if you have an sf.net account, you may directly report your problem to the upstream bug tracker at http://sourceforge.net/tracker/?group_id=21935&atid=373747 and leave me[1] a pointer to your report. NOTE FOR WISHLIST REPORTS: Please note, that every (non-Debian specific) feature request is normally discussed with upstream. So you are well advised to report and discuss such requests via the upstream feature tracker at http://sourceforge.net/tracker/?group_id=21935&atid=373750 or the docbook-apps mailing list http://wiki.docbook.org/topic/DocBookAppsMailingList and leave me[1] a pointer to your report/discussion. [1] Send a short note to the Debian BTS including a link or the number of your bug report (in the upstream tracker) and I will monitor and care about it. Most bug-fixes need to go into the upstream code and therefor you help me/Debian and you help upstream if you are so kind to report your issue to both parties. Check the upstream ChangeLog and you'll see it works. -- Daniel Leidert , Updated in July 2009 debian/compat0000644000000000000000000000000211440443117010363 0ustar 7 debian/docbook-xsl-ns.xmlcatalogs0000644000000000000000000000070611564274163014304 0ustar local;docbook-xsl-ns/catalog.xml;/usr/share/xml/docbook/stylesheet/docbook-xsl-ns/catalog.xml root;uri;http://docbook.sourceforge.net/release/xsl-ns/ root;system;http://docbook.sourceforge.net/release/xsl-ns/ package;uri;http://docbook.sourceforge.net/release/xsl-ns/;/usr/share/xml/docbook/stylesheet/docbook-xsl-ns/catalog.xml package;system;http://docbook.sourceforge.net/release/xsl-ns/;/usr/share/xml/docbook/stylesheet/docbook-xsl-ns/catalog.xml debian/control0000644000000000000000000000556012150421256010575 0ustar Source: docbook-xsl Section: text Priority: optional Maintainer: Debian XML/SGML Group Uploaders: Daniel Leidert Build-Depends: debhelper (>> 7.2.3~), docbook-xml (>> 4.4), docbook5-xml, libxml2-utils Build-Depends-Indep: xml-core Standards-Version: 3.9.4 Homepage: http://wiki.docbook.org/DocBookXslStylesheets Vcs-Browser: http://svn.debian.org/wsvn/debian-xml-sgml/packages/docbook-xsl/trunk/ Vcs-Svn: svn://svn.debian.org/svn/debian-xml-sgml/packages/docbook-xsl/trunk/ Package: docbook-xsl Architecture: all Multi-Arch: foreign Depends: ${misc:Depends} Recommends: docbook-xml (>= 4.1.2-4) Suggests: dbtoepub, docbook-xsl-doc-html | docbook-xsl-doc-pdf | docbook-xsl-doc-text | docbook-xsl-doc, docbook-xsl-saxon, fop, libsaxon-java, libxalan2-java, libxslthl-java, xalan Description: stylesheets for processing DocBook XML to various output formats These are modular XSL stylesheets for processing documents composed with the DocBook XML DTD and its derivatives ("Simplified" DocBook XML, JRefEntry DTD, etc.). . The stylesheets provide XSLT transformations for (X)HTML, WordML, HTML Help, JavaHelp, Man page (nroff), Website, Eclipse Platform Help file and XSL Formatting Object (XSL-FO) output. The latter can be further processed to a number of print formats using FOP or TeX-based tools. . The stylesheets are modular in the sense that you can extend and, to some extent, customize them. The documentation is included in a separate package. Package: docbook-xsl-ns Architecture: all Depends: ${misc:Depends} Recommends: docbook5-xml (>> 5) Suggests: dbtoepub, docbook-xsl-doc-html | docbook-xsl-doc-pdf | docbook-xsl-doc-text | docbook-xsl-doc, docbook-xsl-saxon, fop, libsaxon-java, libxalan2-java, libxslthl-java, xalan Description: stylesheets for processing DocBook 5 XML to various output formats These are modular XSL stylesheets for processing documents composed with DocBook 5 XML and its derivatives. Unlike in docbook-xsl the DocBook namespace prefix has been added to element names in pattern matches and expressions. However processing of DocBook 4 documents is also possible with these stylesheets. For a more detailed explanation read http://www.sagehill.net/docbookxsl/ProcesingDb5.html. . The stylesheets provide XSLT transformations for (X)HTML, WordML, HTML Help, JavaHelp, Man page (nroff), Website, Eclipse Platform Help file and XSL Formatting Object (XSL-FO) output. The latter can be further processed to a number of print formats using FOP or TeX-based tools. . The stylesheets are modular in the sense that you can extend and, to some extent, customize them. The documentation is included in a separate package. debian/docbook-xsl.bug-presubj0000644000000000000000000000041711661202154013561 0ustar For issues with Debian hacks (see section 5 of README.Debian) report your problem ONLY to the Debian BTS and NEVER to upstream. For general notes regarding bug-reports against the Debian package, please read section 6 of /usr/share/doc/docbook-xsl/README.Debian.gz. debian/docbook-xsl.preinst0000644000000000000000000000057410577737772013054 0ustar #! /bin/sh # preinst script for docbook-xsl # # see: dh_installdeb(1) set -e # Skip all this if compatibility symlink exists if [ ! -h /usr/share/sgml/docbook/stylesheet/xsl/nwalsh ]; then # Remove nwalsh directory, if it exists if [ -d /usr/share/sgml/docbook/stylesheet/xsl/nwalsh ]; then rm -rf /usr/share/sgml/docbook/stylesheet/xsl/nwalsh fi fi #DEBHELPER# exit 0 debian/patches/0000755000000000000000000000000012150451754010621 5ustar debian/patches/681116_multiarch_manpage_template.patch0000644000000000000000000000325312150421256020040 0ustar Author: Daniel Leidert Bug-Debian: http://bugs.debian.org/681116 Description: Omit any date to the output file to handle source files not setting a date/pubdate as quick solution to #681116 to get a consistent manpage output in multiarch enabled packages independent from the build-time. Forwarded: no --- /dev/null +++ b/docbook-xsl-ns/manpages/docbook-multiarch.xsl @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + --- /dev/null +++ b/docbook-xsl/manpages/docbook-multiarch.xsl @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + debian/patches/series0000644000000000000000000000016212150440134012023 0ustar 577807_lang_spanish.patch 638570_lang_russian.patch 681116_multiarch_manpage_template.patch 698962_fix_typo.patch debian/patches/595703_copy_rdf_metadata.patch0000644000000000000000000000203212150421256016132 0ustar Author: Brian M. Carlson Acked-By: Daniel Leidert Description: Copy existing RDF meta data to FO output. Bug-Debian: http://bugs.debian.org/595703 --- a/docbook-xsl-ns/fo/fop1.xsl +++ b/docbook-xsl-ns/fo/fop1.xsl @@ -152,6 +152,7 @@ + --- a/docbook-xsl/fo/fop1.xsl +++ b/docbook-xsl/fo/fop1.xsl @@ -150,6 +150,7 @@ + debian/patches/638570_lang_russian.patch0000644000000000000000000000222312150421256015154 0ustar Author: Andrew O. Shadoura Reviewed-By: Daniel Leidert Description: Fixes for russion translation. Bug-Debian: http://bugs.debian.org/638570 Forwarded: not-yet --- a/docbook-xsl/common/ru.xml +++ b/docbook-xsl/common/ru.xml @@ -108,12 +108,12 @@ - - + + - - + + debian/patches/698962_fix_typo.patch0000644000000000000000000000436612150421256014355 0ustar Author: Jakub Wilk Reviewed-By: Daniel Leidert Description: Fix a few typos. Bug-Debian: http://bugs.debian.org/698962 Origin: http://docbook.svn.sourceforge.net/docbook/?rev=9775&view=rev Forwarded: yes --- a/docbook-xsl-ns/manpages/info.xsl +++ b/docbook-xsl-ns/manpages/info.xsl @@ -578,7 +578,7 @@ AUTHOR sect. - see see http://docbook.sf.net/el/contrib + see http://docbook.sf.net/el/contrib @@ -586,7 +586,7 @@ AUTHOR sect. - see see http://docbook.sf.net/el/personblurb + see http://docbook.sf.net/el/personblurb --- a/docbook-xsl/manpages/info.xsl +++ b/docbook-xsl/manpages/info.xsl @@ -577,7 +577,7 @@ AUTHOR sect. - see see http://docbook.sf.net/el/contrib + see http://docbook.sf.net/el/contrib @@ -585,7 +585,7 @@ AUTHOR sect. - see see http://docbook.sf.net/el/personblurb + see http://docbook.sf.net/el/personblurb debian/patches/577807_lang_spanish.patch0000644000000000000000000005305212150421256015150 0ustar Author: Daniel Leidert Description: Try to fix the spanish translation. Bug: https://sourceforge.net/tracker/?func=detail&aid=3055039&group_id=21935&atid=373747 Bug-Debian: http://bugs.debian.org/577807 --- a/docbook-xsl-ns/common/es.xml +++ b/docbook-xsl-ns/common/es.xml @@ -28,167 +28,167 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - + + - + - + - + - + - + - + - + - + - + - + - - + + - + - + - + - + - - + + - + --- a/docbook-xsl/common/es.xml +++ b/docbook-xsl/common/es.xml @@ -28,167 +28,167 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - + + - + - + - + - + - + - + - + - + - + - + - - + + - + - + - + - + - - + + - + debian/docbook-xsl.xmlcatalogs0000644000000000000000000000065611564274163013672 0ustar local;docbook-xsl/catalog.xml;/usr/share/xml/docbook/stylesheet/docbook-xsl/catalog.xml root;uri;http://docbook.sourceforge.net/release/xsl/ root;system;http://docbook.sourceforge.net/release/xsl/ package;uri;http://docbook.sourceforge.net/release/xsl/;/usr/share/xml/docbook/stylesheet/docbook-xsl/catalog.xml package;system;http://docbook.sourceforge.net/release/xsl/;/usr/share/xml/docbook/stylesheet/docbook-xsl/catalog.xml debian/docbook-xsl.links0000644000000000000000000000041611156735070012462 0ustar usr/share/xml/docbook/stylesheet/docbook-xsl usr/share/xml/docbook/stylesheet/nwalsh usr/share/xml/docbook/stylesheet/docbook-xsl usr/share/sgml/docbook/stylesheet/xsl/nwalsh usr/share/xml/docbook/stylesheet/docbook-xsl usr/share/sgml/docbook/stylesheet/xsl/docbook-xsl debian/examples/0000755000000000000000000000000012150451754011010 5ustar debian/examples/docbook-xsl-ns/0000755000000000000000000000000012150451754013652 5ustar debian/examples/docbook-xsl-ns/foo.1.example_manpage.xml0000644000000000000000000003062511564274163020453 0ustar ]> &dhproduct; &dhrelease; Jens Schweikhardt
schweikh@schweikhardt.net
Wrote this example manpage for the "Linux Man Page Howto", available at or .
&dhfirstname; &dhsurname;
&dhemail;
Rewrote and extended the example manpage in DocBook XML for the Debian distribution.
1995 1996 1997 1998 1999 2000 2001 2002 2003 Jens Schweikhardt 2006 &dhusername; The Howto containing this example, was offered under the following conditions: Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
&dhucpackage; &dhsection; &dhpackage; frobnicate the bar library &dhpackage; this this that file(s) &dhpackage; DESCRIPTION &dhpackage; frobnicates the bar library by tweaking internal symbol tables. By default it parses all baz segments and rearranges them in reverse order by time for the xyzzy1 linker to find them. The symdef entry is then compressed using the WBG (Whiz-Bang-Gizmo) algorithm. All files are processed in the order specified. OPTIONS Do not write busy to stdout while processing. Use the alternate system wide config-file instead of the /etc/foo.conf. This overrides any FOOCONF environment variable. In addition to the baz segments, also parse the blurfl3 headers. Recursive mode. Operates as fast as lightning at the expense of a megabyte of virtual memory. FILES /etc/foo.conf The system-wide configuration file. See foo.conf5 for further details. ${HOME}/.foo.conf The per-user configuration file. See foo.conf5 for further details. ENVIONMENT FOOCONF The full pathname for an alternate system wide configuration file foo.conf5 (see also ). Overridden by the option. DIAGNOSTICS The following diagnostics may be issued on stderr: Bad magic number. The input file does not look like an archive file. Old style baz segments. &dhpackage; can only handle new style baz segments. COBOL object libraries are not supported in this version. The following return codes can be used in scripts: Errorcode Errortext Diagnostic 0 Program exited normally. No error. Program ran successfully. 1 Bad magic number. The input file does not look like an archive file. 2 Old style baz segments. &dhpackage; can only handle new style baz segments. COBOL object libraries are not supported in this version. BUGS The command name should have been chosen more carefully to reflect its purpose. The upstreams BTS can be found at . SEE ALSO bar 1 , foo 1 , foo.conf 5 , xyzzy 1 The programs are documented fully by The Rise and Fall of a Fooish Bar available via the Info system.
debian/examples/docbook-xsl/0000755000000000000000000000000012150451754013234 5ustar debian/examples/docbook-xsl/foo.1.example_manpage.xml0000644000000000000000000003043311564274163020032 0ustar ]> &dhtitle; &dhproduct; &dhrelease; Jens Schweikhardt Wrote this example manpage for the "Linux Man Page Howto", available at or .
schweikh@schweikhardt.net
&dhfirstname; &dhsurname; Rewrote and extended the example manpage in DocBook XML for the Debian distribution.
&dhemail;
1995 1996 1997 1998 1999 2000 2001 2002 2003 Jens Schweikhardt 2006 &dhusername; The Howto containing this example, was offered under the following conditions: Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
&dhucpackage; &dhsection; &dhpackage; frobnicate the bar library &dhpackage; this this that file(s) &dhpackage; DESCRIPTION &dhpackage; frobnicates the bar library by tweaking internal symbol tables. By default it parses all baz segments and rearranges them in reverse order by time for the xyzzy1 linker to find them. The symdef entry is then compressed using the WBG (Whiz-Bang-Gizmo) algorithm. All files are processed in the order specified. OPTIONS Do not write busy to stdout while processing. Use the alternate system wide config-file instead of the /etc/foo.conf. This overrides any FOOCONF environment variable. In addition to the baz segments, also parse the blurfl3 headers. Recursive mode. Operates as fast as lightning at the expense of a megabyte of virtual memory. FILES /etc/foo.conf The system-wide configuration file. See foo.conf5 for further details. ${HOME}/.foo.conf The per-user configuration file. See foo.conf5 for further details. ENVIONMENT FOOCONF The full pathname for an alternate system wide configuration file foo.conf5 (see also ). Overridden by the option. DIAGNOSTICS The following diagnostics may be issued on stderr: Bad magic number. The input file does not look like an archive file. Old style baz segments. &dhpackage; can only handle new style baz segments. COBOL object libraries are not supported in this version. The following return codes can be used in scripts: Errorcode Errortext Diagnostic 0 Program exited normally. No error. Program ran successfully. 1 Bad magic number. The input file does not look like an archive file. 2 Old style baz segments. &dhpackage; can only handle new style baz segments. COBOL object libraries are not supported in this version. BUGS The command name should have been chosen more carefully to reflect its purpose. The upstreams BTS can be found at . SEE ALSO bar 1 , foo 1 , foo.conf 5 , xyzzy 1 The programs are documented fully by The Rise and Fall of a Fooish Bar available via the Info system.
debian/docbook-xsl.README.Debian0000644000000000000000000001210211564274163013457 0ustar docbook-xsl for Debian ---------------------- (1) General (2) Extensions (3) Catalog Support (4) Getting Help (5) Debian Hacks (6) Reporting bugs (1) General =========== These stylesheets are now registered in the XML catalog system. (See also the RELEASE-NOTES.html in this directory.) You'll need an XSLT processor to use these stylesheets. The following processors are known to work with these stylesheets: - xsltproc (xsltproc, libxslt1.1) - Saxon (libsaxon-java) - Xalan (xalan, libxalan110) and Xalan 2 (libxalan2-java) - XT (libxt-java) - may not work anymore (upstream maintainers are dropping support) All of the above are part of Debian. - Many other XSLT processors may work as well, I simply haven't tested them. If you know one missing above, just let me know. Instructions for using these stylesheets with some of these XSLT processors can be found in the documentation included in docbook-xsl-doc* and in the packages mentioned above. See also "DocBook XSL: The Complete Guide" by Bob Stayton; an online html version is available at http://www.sagehill.net/docbookxsl. (2) Extensions ============== The extensions shipped with the source (xalan and saxon), missing the source, are not shipped with this package nor with the package source. Instead use the Debian packages for Xalan and Saxon. See also http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=331661. (3) Catalog Support =================== These stylesheets are now registered in the XML catalog system, and can be called via the base canonical URI in combination with one of the pathnames below. For example, for "chunked" HTML, output: http://docbook.sourceforge.net/release/xsl/x.y.z/html/chunk.xsl http://docbook.sourceforge.net/release/xsl/current/html/chunk.xsl (replace x, y and z with the version number of any docbook-xsl release). Or use a "real" local system base path in combination with one of the pathnames. For example, for "chunked" HTML, output: /usr/share/xml/docbook/stylesheet/docbook-xsl/html/chunk.xsl Read more in /usr/share/doc/docbook-xsl/README. Catalog support: libxslt1.1/xsltproc: Provides catalog support for both OASIS catalog types: tr9401 and XML catalogs. xml-commons-resolver: Provides support for both SGML (aka tr9401) and XML catalogs. Can be used with saxon, xalan2 and xt. See the docs with that package for the details. (4) Getting Help ================ A good starting point is Bob Stayton's book "DocBook XSL: The Complete Guide", available online at http://www.sagehill.net/docbookxsl/ For parameter reference read the documents shipped with the docbook-xsl-doc* packages. file:///usr/share/doc/docbook-xsl/reference.html/index.html If you still have problems or questions concerning these stylesheets, post a message to the docbook-apps mailing list. Response time is surprisingly short. For more information, visit the list archives at http://lists.oasis-open.org/archives/docbook-apps/ or the Wiki page at http://wiki.docbook.org/topic/DocBookAppsMailingList (5) Debian Hacks ================ IMPORTANT NOTE: Never bother upstream if you have issues with the following Debian hacks. Instead send your reports ONLY to the Debian BTS (http://bugs.debian.org/docbook-xsl). (a) In Debian bugs #173093 and #382505 it has been requested, that the default value for the paper.type parameter is set accordingly to the system wide setting in /etc/papersize. NOTE: The patch has been dropped, because /etc/papersize is a configuration file and might not be present at the users system (#511005). A new solution to the original request is not available atm (but several frontends like xmlto support libpaper already). http://bugs.debian.org/173093 http://bugs.debian.org/382505 http://bugs.debian.org/511005 (6) Reporting bugs ================== NOTE FOR BUG REPORTS: If you think, that your bug report is not specifically related to the Debian package, and if you have an sf.net account, you may directly report your problem to the upstream bug tracker at http://sourceforge.net/tracker/?group_id=21935&atid=373747 and leave me[1] a pointer to your report. NOTE FOR WISHLIST REPORTS: Please note, that every (non-Debian specific) feature request is normally discussed with upstream. So you are well advised to report and discuss such requests via the upstream feature tracker at http://sourceforge.net/tracker/?group_id=21935&atid=373750 or the docbook-apps mailing list http://wiki.docbook.org/topic/DocBookAppsMailingList and leave me[1] a pointer to your report/discussion. [1] Send a short note to the Debian BTS including a link or the number of your bug report (in the upstream tracker) and I will monitor and care about it. Most bug-fixes need to go into the upstream code and therefor you help me/Debian and you help upstream if you are so kind to report your issue to both parties. Check the upstream ChangeLog and you'll see it works. -- Daniel Leidert , Updated in March 2009 debian/docbook-xsl.docs0000644000000000000000000000006511564274163012276 0ustar docbook-xsl/BUGS docbook-xsl/README docbook-xsl/TODO debian/changelog0000644000000000000000000015062312150451736011053 0ustar docbook-xsl (1.78.1+dfsg-1) unstable; urgency=low * New upstream release (closes: #696929). - Fixes fo:* element sequences in FO output (closes: #605198). - Removed passivetex extensions code (closes: #207601, #650786). - XHTML conversion scripts have been fixed (closes: #654338). - Handle book/info elements of DB5 correctly (closes: #666068). - Fixed orientation of footnotes in blockquote (closes: #684381). - Fixed manual page output (closes: #695742). * debian/control: Added Multi-Arch: foreign. Dropped DM-Upload-Allowed. (Uploaders): Fixed my address. (Standards-Version): Bumped to 3.9.4. * debian/docbook-xsl.install, debian/docbook-xsl-ns.install: Added new and missing (VERSION.xsl) files. * debian/get-orig-source.sh: Minor fixes after upstream changed to bzip. * debian/rules: Install README files to documentation. * debian/watch: Check for bzip2 archives too (closes: #703514). * debian/patches/611924_html_same_ids_for_quote.patch: Dropped. * debian/patches/605696_fix_section_name_for_lexgrog.patch: Ditto. * debian/patches/577807_lang_spanish.patch: Added. - Fix spanish template generated text (closes: #577807). * debian/patches/638570_lang_russian.patch: Added. - Fix two translations (closes: #638570). * debian/patches/681116_multiarch_manpage_template.patch: Added. - Offer a way to omit build-time outpout to manpages (closes: #681116). * debian/patches/698962_fix_typo.patch: Added. - Fix a few typos (closes: #698962). * debian/patches/series: Adjusted. -- Daniel Leidert Sun, 26 May 2013 20:26:30 +0200 docbook-xsl (1.76.1+dfsg-1) unstable; urgency=low * New upstream release. - Fixed bug when context was lost (closes: #602537). * Copied some files from docbook-xsl-ns. * debian/control: Added docbook-xsl-ns. (Vcs-Browser, Vcs-Svn): Adjusted for unstable. (Build-Depends): Dropped dpatch in favour of source format 3.0 (quilt). Added docbook5-xml for docbook-xsl-ns. Increased debhelper version for dh_bugfiles. (Standards-Version): Bumped to 3.9.2. (Homepage): Fixed not-longer-existing URL. (Description): Mention XSL-FO (closes: #604004, #623977). (Recommends): Downgrade docbook-xsl-doc* packages to Suggests (closes: #610726, #623976). * debian/copyright: Adjusted and added parts of docbook-xsl-ns. * debian/docbook-xsl.docs: Adjusted source paths. * debian/docbook-xsl.examples: Ditto. * debian/docbook-xsl.install: Ditto. * debian/docbook-xsl.xmlcatalogs: Ditto. * debian/docbook-xsl-ns.copyright: Copied and removed. * debian/docbook-xsl-ns.docs: Copied and adjusted source paths. * debian/docbook-xsl-ns.examples: Ditto. * debian/docbook-xsl-ns.install: Ditto. * debian/docbook-xsl-ns.xmlcatalogs: Ditto. * debian/docbook-xsl-ns.README.Debian: Copied. * debian/get-orig-source.sh: Create one source package for docbook-xsl and docbook-xsl-ns. * debian/presubj: Renamed to debian/docbook-xsl.bug-presubj. * debian/rules: Dropped dpatch and useless get-orig-source target. (override_dh_auto_test): Run the check-xml target. (check-xml): Added the --nonet switch to avoid internet access. Added check of DocBook 5 example (copied from docbook-xsl-ns). (override_dh_installchangelogs): Adjusted source paths. (.PHONY): Added the check-xml target. * debian/watch: Added line for docbook-xsl-ns. * debian/README.Debian: Renamed to debian/docbook-xsl.README.Debian. * debian/README.source: Adjusted after dropping dpatch and after merging docbook-xsl and docbook-xsl-ns. Added information about multiple upstream tarballs. * debian/bugs/docbook-xsl-ns/presubj: Copied and renamed to debian/docbook-xsl-ns.bug-presubj. Typo fix. * debian/examples/foo.1.example_manpage.xml: Renamed to debian/examples/docbook-xsl/foo.1.example_manpage.xml. * debian/examples/docbook-xsl-ns/foo.1.example_manpage.xml: Copied. * debian/source/format: Changed to 3.0 (quilt). * debian/patches/605696_fix_section_name_for_lexgrog.patch: Added. - */common/es.xml: Fix Spanish translation for RefName to make it being recognized by lexgrog (closes: #605696). * debian/patches/611924_html_same_ids_for_quote.patch: Added. - */*html/inline.xsl (quote): Don't call the anchor template to not duplicate IDs (closes: #611924). * debian/patches/620556_fo_segmentedlist_with_segtitles.patch: Added. - */fo/lists.xsl (segmentedlist): Create the number of columns needed in table mode (closes: #620556). * debian/patches/00list: Renamed to debian/patches/series and adjusted. * debian/patches/00options, debian/patches/00template: Dropped. -- Daniel Leidert (dale) Thu, 17 Nov 2011 14:04:56 +0100 docbook-xsl (1.76.0~RC1+dfsg-1) experimental; urgency=low * First release candidate of the upcoming 1.76.0 release based on r8900. - Apostroph fix applied at all places (closes: #507673). - Refer to local image path (closes: #561590). - Handles simpara in footnote for manpages correctly (closes: #580305). - Improved French translation (closes: #594649). * debian/compat: Increased to 7. * debian/control (Vcs-Browser, Vcs-Svn): Adjusted for experimental. (Build-Depends): Increased dh version to >7. (Standards-Version): Bumped to 3.9.1. (Suggests): Added libxslthl-java (closes: #576831). * debian/rules: Rewritten for dh 7. * debian/get-orig-source.sh: Also remove newly released webhelp directory. * debian/README.source: Added note about webhelp. * debian/patches/561590_param_local_draft_image.dpatch: Dropped (r8810). * debian/patches/562227_xhtml_fix_saxon_ns_leakage.dpatch: Ditto (r8808). * debian/patches/8530_manpages_lists_indentation_fix.dpatch: Ditto. * debian/patches/8539_554441_xhtml11_fix_ulink_param_target.dpatch: Ditto. * debian/patches/8563_562816_german_translation_fix.dpatch: Ditto. * debian/patches/portable_apostrophe_fix.dpatch: Ditto (r8841). * debian/patches/00list: Adjusted. -- Daniel Leidert (dale) Tue, 31 Aug 2010 22:52:27 +0200 docbook-xsl (1.75.2+dfsg-5) unstable; urgency=low * debian/patches/514030_debianize_dbtoepub.dpatch: Dropped. This patch leads to inclusion of the docbook-xsl stylesheets and misses to match the elements in a DB5 document (closes: #567859). * debian/patches/00list: Adjusted. -- Daniel Leidert (dale) Sun, 31 Jan 2010 22:44:03 +0100 docbook-xsl (1.75.2+dfsg-4) unstable; urgency=low * debian/patches/8539_554441_xhtml11_fix_ulink_param_target.dpatch: Added. - xhtml-1_1/param.xsl: Empty ulink.target to not create target attribute in anchor element (closes: #554441). * debian/patches/561590_param_local_draft_image.dpatch: Added. - */param.xsl: Use a local path for the draft image (closes: #561590). * debian/patches/562227_xhtml_fix_saxon_ns_leakage.dpatch: Added. - xhtml/html.xsl, xhtml-1_1/html.xsl: Fix leakage of xmlns:saxon namespace in XHTML output (closes: #562227). * debian/patches/8563_562816_german_translation_fix.dpatch: Added. - common/de.xml: Fix an incorrect German translation (closes: #562816). * debian/patches/00list: Adjusted. -- Daniel Leidert (dale) Fri, 22 Jan 2010 16:24:15 +0100 docbook-xsl (1.75.2+dfsg-3) unstable; urgency=low * debian/patches/514030_debianize_dbtoepub.dpatch: Adjusted. - Removed patchset according to scripts. This is stuff for dbtoepub. * debian/patches/8530_manpages_lists_indentation_fix.dpatch: Added. - manpages/lists.xsl: Fix two indentation issues (closes: #519438, #527309). * debian/patches/portable_apostrophe_fix.dpatch: Added. - manpages/docbook.xsl, manpages/other.xsl: Add some code to portably represent a straight apostrophe (closes: #507673). * debian/patches/00list: Adjusted. -- Daniel Leidert (dale) Wed, 04 Nov 2009 01:15:13 +0100 docbook-xsl (1.75.2+dfsg-2) unstable; urgency=low * debian/control (Description): Unify short description for docbook-xsl-ns. (Standards-Version): Bumped to 3.8.3. (Recommends): Dropped dbtoepub related dependencies. (Suggests): Added dbtoepub. * debian/copyright: Paths adjusted (s/nwalsh/docbook-xsl). * debian/dbtoepub.1: Dropped. * debian/docbook-xsl.install: Don't install files shipped with dbtoepub. * debian/rules: Minor cleaning. Added rule to validate XML. (binary-indep): Dropped dbtoepub stuff. -- Daniel Leidert (dale) Mon, 31 Aug 2009 23:53:37 +0200 docbook-xsl (1.75.2+dfsg-1) unstable; urgency=low * New upstream release 1.75.2. - Fixed rendering of copyright in manual pages (closes: #534853). - Fixed rendering of ulink with leading spaces (closes: #519442). - Improved Japanese translations (closes: #517078, #537603). - Fixed Polish alphabet (closes: #534052). - Removed dead link in README (closes: #530942). * debian/control (Standards-Version): Bumped to 3.8.2. * debian/README.Debian: Fixed typo (closes: #534849). * debian/patches/514030_debianize_dbtoepub.dpatch: Adjusted. -- Daniel Leidert (dale) Thu, 23 Jul 2009 15:19:05 +0200 docbook-xsl (1.75.1+dfsg-1) unstable; urgency=low * New upstream release 1.75.1. * debian/patches/528004_apply_simpara_content.dpatch: Dropped (applied upstream). * debian/patches/528132_fix_epub_container.dpatch: Ditto. * debian/patches/00list: Adjusted. -- Daniel Leidert (dale) Sat, 30 May 2009 22:21:40 +0200 docbook-xsl (1.75.0+dfsg-4) unstable; urgency=low * debian/patches/528132_fix_epub_container.dpatch: Added. - epub/docbook.xsl: Remove odfc namespace prefix to fix container.xml (closes: #528132). * debian/patches/00list: Adjusted. -- Daniel Leidert (dale) Mon, 11 May 2009 13:19:04 +0200 docbook-xsl (1.75.0+dfsg-3) unstable; urgency=low * debian/patches/528004_apply_simpara_content.dpatch: Added. - (x)html(-1_1)/lists.html (listitem/simpara): Apply contents of the simpara elements (closes: #528004). * debian/patches/00list: Adjusted. -- Daniel Leidert (dale) Sun, 10 May 2009 13:46:10 +0200 docbook-xsl (1.75.0+dfsg-2) unstable; urgency=low * debian/control (Depends, Recommends): Move dbtoepub related packages from Depends to Recommends (closes: #525808). -- Daniel Leidert (dale) Sun, 10 May 2009 05:16:50 +0200 docbook-xsl (1.75.0+dfsg-1) unstable; urgency=low * New upstream release 1.75.0. * debian/dbtoepub.1: Updated. -- Daniel Leidert (dale) Sat, 09 May 2009 14:33:57 +0200 docbook-xsl (1.74.3+dfsg-1) unstable; urgency=low * New upstream release 1.74.3 (closes: #514030). - Ships new and fixed localizations (closes: #492608). - Fixed missing brackets for paramdef in HTML output (closes: #500456). * Source split into the docbook-xsl and docbook-xsl-doc (because docbook-xsl-ns needs the same documentation files). * debian/control: Removed docbook-xsl-doc* binary package fields. (Standards-Version): Bumped to 3.8.1. (Recommends): Adjusted for doc-packages without .dfsg version part. (Vcs-Browser): Fixed. (Depends): Added ruby, xsltproc and zip for dbtoepub. (Suggests): Added docbook-xsl-saxon for extensions. Removed xsltproc which is now a runtime dependency. * debian/dbtoepub.1: Added for dbtoepub inclusion. * debian/docbook-xsl.dirs: Removed trailing slash. * debian/docbook-xsl.install: Include new epub stylesheets and dbtoepub. Install everything into /usr/share/xml/docbook/stylesheet/docbook-xsl/. * debian/docbook-xsl.links: Adjusted. Added compatibility symlink. Added docbook-xsl symlink in /usr/share/sgml/docbook/stylesheet/xsl/. * debian/docbook-xsl.postinst: /usr/share/xml/docbook/stylesheet/nwalsh/ becomes a symlink - so remove the directory. * debian/docbook-xsl.xmlcatalogs: Likewise. * debian/docbook-xsl-doc*: Removed docbook-xsl-doc* related debhelper files. * debian/get-orig-source.sh: Added script to replace get-orig-source target in debian/rules. * debian/rules (binary-indep): Removed doc-packages related debhelper calls. Further exclude .gitignore files. Install the manual page. Fix permissions. (get-orig-source): Use the new script. * debian/watch: Fixed after changing to dfsg-version without period. Added script support. * debian/README.Debian: Note the removal of patch 02_use_global_papersize_conf and its reasons (#173093, #382505, #511005). Further update for the new stylesheet and documentation locations. * debian/README.source: Added to comply to our policy. Further document repackaging. * debian/examples/foo.1.example_manpage.xml: Fixed encoding declaration. * debian/patches/7*.dpatch, debian/patches/8*.dpatch: Removed (applied upstream). * debian/patches/02_use_global_papersize_conf.dpatch: Removed (closes: #495644). /etc/papersize may not be present on the users system as it is a configuration file (closes: #511005). * debian/patches/514030_debianize_dbtoepub.dpatch: Added. - The dbtoepub script needs a few minor changes for a "real" installation - not lying around in the stylesheet path. * debian/patches/00list: Adjusted. -- Daniel Leidert (dale) Sat, 25 Apr 2009 14:52:35 +0200 docbook-xsl (1.73.2.dfsg.1-5) unstable; urgency=low * debian/presubj: Fixed a small typo. * debian/patches/02_use_global_papersize_conf.dpatch: Fixed a small typo (closes: #495644). * debian/patches/8162_fo_gentext_for_pubdate.dpatch: Added. - gentext should map to pubdate instead of published (closes: #505790). -- Daniel Leidert (dale) Sun, 16 Nov 2008 15:28:16 +0100 docbook-xsl (1.73.2.dfsg.1-4) unstable; urgency=low * debian/docbook-xsl-doc-html.doc-base (Section): Fixed accordingly to version 0.8.10 of the doc-base manual. * debian/docbook-xsl-doc-pdf.doc-base (Section): Ditto. * debian/docbook-xsl-doc-text.doc-base (Section): Ditto. * debian/patches/7668_locale_update_and_fix_norwegian_bokmal.dpatch: Small fix (adds startquote). * debian/patches/7681_fo_fix_colsep_in_entrytbl.dpatch: Added. - Fixed to make colsep in entrytbl working. * debian/patches/7698_html_fix_rowsep_in_entrytbl.dpatch: Added. - Fixed to make rowsep apply to the last row of thead in entrytbl. * debian/patches/7731_man_prepend_dots_with_zero_width_char.dpatch: Added. - Fixed a regression in the handling of dots. Prepend them with a zero width character. * debian/patches/7740_man_replace_spaces_in_refname_with_underscores.dpatch: Added. - Replace any spaces in the refname(s) with underscores for man-page name to be compliant with lexgrog and other tools not able to handle spaces in filenames. * debian/patches/7806_man_fix_non_breaking_space_output.dpatch: Added. - Fixed a regression in the conversion of non-breaking spaces (closes: #473244). * debian/patches/7901_fo_fix_inline_or_block_template.dpatch: Added. - Fixed non-working inline.or.block template for indexterm wrappers. * debian/patches/7939_html_add_exslt_ns_for_pi.dpatch: Added. - Add exslt namespace to (x)html/docbook.xsl. Otherwise there seems to be a problem using the profiled version of the stylesheet. * debian/patches/00list: Adjusted. -- Daniel Leidert (dale) Sun, 30 Mar 2008 20:36:37 +0200 docbook-xsl (1.73.2.dfsg.1-3) unstable; urgency=low * debian/presubj: Shorten the general note about bug-reporting (put it into README.Debian; closes: #445901). Added a pointer for issues with Debian hacks. * debian/control: Vcs fields transition. Added DM-Upload-Allowed. (Vcs-Svn): Fixed location. (Standards-Version): Raised to 3.7.3. * debian/copyright: Fixed typo. Thanks to lintian. * debian/docbook-xsl-doc-html.copyright: Ditto. * debian/docbook-xsl-doc-pdf.copyright: Ditto. * debian/docbook-xsl-doc-text.copyright: Ditto. * debian/rules (binary-indep): Fixed a possible bashism (LP: #173145). * debian/README.Debian: Added new sections to document Debian-only hacks and bug reporting (see #447958). * debian/patches/02_use_global_papersize_conf.dpatch: Adjusted. - fo/docbook.xsl (root.messages): Outsource the information into README.Debian and just print a pointer (closes: #447958). * debian/patches/7528_common_fix_too_many_nested_elements.dpatch: Added. - common/titles.xsl (xref[no.anchor.mode]): Added test to workaround "too many nested apply-templates". * debian/patches/7564_fo_fix_typo.dpatch: Added. - fo/refentry.xsl (format.refentry.subheading): Fixed element typo. * debian/patches/7623_man_support_for_processing_structfield.dpatch: Added. - manpages/inline.xsl (replaceable|varname): Added support for structfield, which appeared in tags in ROFF output. * debian/patches/7629_man_fix_escaped_dots_in_filenames.dpatch: Added. - manpages/other.xsl (write.stubs): Fixed escaped dots in resulting file-names (closes: #449582). Thanks to LI Daobing for the resport. * debian/patches/7656_html_component_title_in_info_elements.dpatch: Added. - html/component.xsl (chapter/title, appendix/title): Fix bug where component titles inside info elements were not handled properly. * debian/patches/7674_man_fix_unescaped_dash_in_whatis_entry.dpatch: Added. - manpages/refentry.xsl (refnamediv): Fixed the unescaped dash between refname and refpurpose content in the whatis entry (closes: #465820). * debian/patches/7668_locale_update_and_fix_norwegian_bokmal.dpatch: Added. - The `no' language code is obsoleted in favour of `nb'. Further update the translation (closes: #464708). Thanks to Hans F. Nordhaug for the report and the patch. * debian/patches/00list: Adjusted accordingly. -- Daniel Leidert (dale) Sun, 17 Feb 2008 02:04:49 +0100 docbook-xsl (1.73.2.dfsg.1-2) unstable; urgency=low * debian/control: Homepage field transition. Added XS-Vcs-Browser and XS-Vcs-Svn fields. * debian/watch: Changed to use the QA redirectory after the directory is back on heanet.dl.sf.net. * debian/patches/7436_html_fo_fix_empty_index_entries.dpatch: Added. - fo/autoidx.xsl (reference): Removed the [&scope;] predicate from the target variable, that caused missing index backlinks when @zone and @type were used on indexterms with index.on.type=1. Fixes SF.net bug 1680836. - (x)html/autoidx.xsl (reference): Ditto. * debian/patches/7440_fo_normalize_space.dpatch: Added. - fo/inline.xsl (glossterm): Use normalize-space() in glossterm comparisons. * debian/patches/7441_html_fix_legalnotice_filename_creation.dpatch: Added. - (x)html/chunk-common.xsl, (x)html/titlepage.xsl: Fix the filename creation for legalnotice and revhistory output (fixes broken links). Fixes SF.net bug 1790495. * debian/patches/00list: Adjusted. -- Daniel Leidert (dale) Wed, 26 Sep 2007 22:34:59 +0200 docbook-xsl (1.73.2.dfsg.1-1) unstable; urgency=low * New upstream release 1.73.2. - Stable bug-fix release for the 1.73 series. [ Daniel Leidert ] * debian/copyright: Updated copyright information. * debian/rules (binary-indep): Removed permissions fix as this has been fixed upstream. * debian/patches/01_create_debian_catalog.dpatch: Removed. The customization is not necessary, so we can use the upstream catalog. * debian/patches/10_fo_fix_footnote_numbering.dpatch: Removed. Applied upstream. * debian/patches/00list: Adjusted. -- Daniel Leidert (dale) Thu, 30 Aug 2007 21:09:28 +0200 docbook-xsl (1.73.1.dfsg.1-1) unstable; urgency=low * New upstream release 1.73.1. - Stable bug-fix release for the 1.73 series. [ Daniel Leidert ] * debian/rules (binary-indep): Fix permissions of SVGs and a stylesheet, that do not need to be executable. * debian/patches/01_create_debian_catalog.dpatch: Adjusted. * debian/patches/02_use_global_papersize_conf.dpatch: Adjusted. * debian/patches/10_7129_fix_abstract_title_condition_check.dpatch: Removed. Applied upstream. * debian/patches/11_charmap_imports_fix.dpatch: Ditto. * debian/patches/10_fo_fix_footnote_numbering.dpatch: Added. - A regression was discovered in the footnote numbering fix, that is fixed with this patch. * debian/patches/00list: Adjusted. -- Daniel Leidert (dale) Tue, 21 Aug 2007 12:54:16 +0200 docbook-xsl (1.73.0.dfsg.1-1) UNRELEASED; urgency=low * New upstream release 1.73.0. - Upstream reverted backslash, dot and dash escaping. You can now use e.g. '\fX' again in your templates (closes: #415488). [ Daniel Leidert ] * debian/control (Recommends): Removed recommending a web-server (closes: #431096). * debian/docbook-xsl.examples: Removed the Makefiles. * debian/rules (binary-indep): Added more files, that can be ignored. * debian/watch: Added. * debian/examples/foo.1.example_manpage.xml: Removed the tag (automatically produced by docbook-xsl) - thanks to Charles Plessy. Also fixed the description. * debian/patches/01_create_debian_catalog.dpatch: Updated for this release. * debian/patches/10_man_fix_indentation_issues.dpatch: Removed. Applied upstream. * debian/patches/11_html_xalan_transformerexception_fix.dpatch: Ditto. * debian/patches/12_fo_fix_master_name_in_crop_mark_templ[..].dpatch: Ditto. * debian/patches/13_fo_fix_missing_attribute_set_for_proc[..].dpatch: Ditto. * debian/patches/14_html_fo_fix_sfnet_1652360_empty_link_[..].dpatch: Ditto. * debian/patches/15_common_fix_sfnet_1668629_valign_on_tb[..].dpatch: Ditto. * debian/patches/16_html_fix_outputting_empty_height_attr[..].dpatch: Ditto. * debian/patches/17_fo_fix_number_test_in_termlength_when_NaN.dpatch: Ditto. * debian/patches/18_html_fo_fixed_calllout_typo_in_callou[..].dpatch: Ditto. * debian/patches/19_common_fix_caption_plus_title_in_cals[..].dpatch: Ditto. * debian/patches/20_html_fo_fix_sfnet_1680755_incorrect_k[..].dpatch: Ditto. * debian/patches/21_fix_xlink_namespace_declaration_into_html.dpatch: Ditto. * debian/patches/22_html_fix_sfnet_1644874_missing_space_[..].dpatch: Ditto. * debian/patches/23_eclipse_javahelp_normalize_space_to_s[..].dpatch: Ditto. * debian/patches/24_html_fixed_sfnet_1717196_footnoteref_[..].dpatch: Ditto. * debian/patches/25_xhtml_fix_misalignments.dpatch: Ditto. * debian/patches/26_roundtrip_fix_debian_429219_undefined[..].dpatch: Ditto. * debian/patches/80_common_locale_fixes.dpatch: Ditto. * debian/patches/81_common_xalan_bug_workaround.dpatch: Ditto. * debian/patches/82_fix_doc_typos.dpatch: Ditto. * debian/patches/02_use_global_papersize_conf.dpatch: Added. - The default value for page.type is read from /etc/papersize (closes: #173093, #382505). * debian/patches/10_7129_fix_abstract_title_condition_check.dpatch: Added. - Fixed test for abstract.notitle.enabled to work accordingly to the documentation. * debian/patches/11_charmap_imports_fix.dpatch: Added. - Import the missing stylesheet. * debian/patches/00list: Adjusted. -- Daniel Leidert (dale) Mon, 20 Aug 2007 03:31:00 +0200 docbook-xsl (1.72.0.dfsg.1-2) unstable; urgency=low * debian/control (Recommends, Enhances): Replaced obsolete ${Source-Version} variable with ${source:Version}. * debian/rules: Added get-orig-source target to document the creation of the tarball. [ Patches ] * debian/patches/14_html_fo_fix_sfnet_1652360_empty_link_[..].dpatch: Added. - fo/xref.xsl (link): Fixed SF.net bug #1652360: empty link with xlink:href. - (x)html/xref.xsl (link): Ditto. * debian/patches/15_common_fix_sfnet_1668629_valign_on_tb[..].dpatch: Added. - common/table.xsl (inherited.table.attribute): Fix SF.net bug #1668629: valign on tbody not inherited. * debian/patches/16_html_fix_outputting_empty_height_attr[..].dpatch: Added. - (x)html/graphics.xsl (process.image.attributes): Fix bug in contentdepth outputting empty height attribute. * debian/patches/17_fo_fix_number_test_in_termlength_when_NaN.dpatch: Added. - common/titles.xsl (variablelist[vl.as.list]): Fix number test in termlength when NaN. * debian/patches/18_html_fo_fixed_calllout_typo_in_callou[..].dpatch: Added. - fo/lists.xsl: Fix 'calllout' typos. - (x)html/lists.xsl: Ditto. * debian/patches/19_common_fix_caption_plus_title_in_cals[..].dpatch: Added. - common/titles.xsl (table[title.markup]): Fix caption plus title in cals table producing double caption. * debian/patches/20_html_fo_fix_sfnet_1680755_incorrect_k[..].dpatch: Added. - fo/inline.xsl (keycombo): Fix SF.net bug #1680755: keycombo joinchar default incorrect. - (x)html/inline.xsl (keycombo): Ditto. * debian/patches/21_fix_xlink_namespace_declaration_into_html.dpatch: Added. - (x)html/xref.xsl (exclude-result-prefixes): Do not output xlink namespace declaration into HTML output. * debian/patches/22_html_fix_sfnet_1644874_missing_space_[..].dpatch: Added. - (x)html/titlepage.xsl (contrib[titlepage.mode]): Fix SF.net bug #1669601: Missing space in othercredit (x)html output. * debian/patches/23_eclipse_javahelp_normalize_space_to_s[..].dpatch: Added. - eclipse/eclipse.xsl: Add normalize-space around titles and index entries to work around whitespace problems. - javahelp/javahelp.xsl: Ditto. * debian/patches/24_html_fixed_sfnet_1717196_footnoteref_[..].dpatch: Added. - (x)html/footnote.xsl (footnoteref): Fixed SF.net bug #1717196: footnoteref not finding the right chunk for the target. * debian/patches/25_xhtml_fix_misalignments.dpatch: Added. - xhtml/lists.xsl (varlistentry[varlist-table], callout): Added

element around callouts and terms in variablelist to avoid misalignment of callout/term and listitem in xhtml (non-quirks mode) output. - xhtml/qandaset.xsl (question): Likewise for question and answer labels to avoid misalignment of label and listitem. * debian/patches/26_roundtrip_fix_debian_429219_undefined[..].dpatch: Added. - roundtrip/dbk2wp.xsl (entry[doc:body]): Fixed template name. (doc:handle-linebreaks-aux): Fixed undefined $text (closes: #429219). Thanks to Roland Stigge for the report. * debian/patches/80_common_locale_fixes.dpatch: Changed. - Add updates and fixes for Serbian, Mongolian, Esperanto and Czech translation. * debian/patches/00list: Adjusted accordingly. -- Daniel Leidert (dale) Sun, 17 Jun 2007 23:33:21 +0200 docbook-xsl (1.72.0.dfsg.1-1) unstable; urgency=low * New upstream release 1.72.0. - Upstream added man.output.lang.in.name.enabled parameter to enable output of filenames like $NAME.$LANG.$SECTION (closes: #310895). Thanks to Philippe Batailler for the suggestion of this feature. - Upstream added initial support in manpages output for footnote, annotation and alt instances (closes: #386580). Thanks to Jakub Wilk for the suggestion of this feature. For more read /usr/share/doc/docbook-xsl/changelog.gz. [ Daniel Leidert (package) ] * debian/copyright: Removed hint about comment in common localization files, because upstream fixed the comment(s) in these files, so misinterpretation as an unchangeable file should be impossible. * debian/docbook-xsl.dirs: Removed obsolete directory. * debian/docbook-xsl.docs: debian/docbook-xsl.links: debian/README.Debian: Re-added some upstream docs after upstream updated and cleaned them (thanks to Michael(tm) Smith). The content of these files has been removed from README.Debian. * debian/docbook-xsl.examples: Added one more Makefile. * debian/docbook-xsl.install: Fixed in respect to wordml -> rountrip renaming. * debian/control: debian/rules: Split docbook-xsl-doc package into a HTML (-html), a PDF (-pdf) and a pure ASCII text (-text) documentation package (the two latter were added initially). * debian/docbook-xsl-doc.doc-base: debian/docbook-xsl-doc.docs: debian/docbook-xsl-doc.links: Removed for above reason. * debian/docbook-xsl-doc-html.copyright: debian/docbook-xsl-doc-html.doc-base: debian/docbook-xsl-doc-html.docs: debian/docbook-xsl-doc-html.links: debian/docbook-xsl-doc-pdf.copyright: debian/docbook-xsl-doc-pdf.doc-base: debian/docbook-xsl-doc-pdf.docs: debian/docbook-xsl-doc-text.copyright: debian/docbook-xsl-doc-text.doc-base: debian/docbook-xsl-doc-text.docs: Added for above reason. * debian/docbook-xsl.preinst: debian/docbook-xsl.postinst: debian/docbook-xsl.prerm: debian/docbook-xsl.links: Changed the creation of the compatibility symlink. It is not longer created by the postinst script. Instead a newly introduced preinst script removes the existing directory. That makes it possible to install a symlink with the package (content) and this symlink is removed automatically during package removal/purge, so the prerm script becomes obsolete. So it was removed. This IMO enhances the solution for bug #393726. * debian/rules: Cleaned up the file a bit (upstream removed empty files and fixed file permissions). [ Daniel Leidert (patches) ] * debian/patches/01_create_debian_catalog.dpatch: Adjusted for this release. * debian/patches/10_man_fix_indentation_issues.dpatch: Added. - manpages/lists.xsl: All listitems should be separated by an empty line. Removes the extra indentation, that can result in a broken indentation level. * debian/patches/11_html_xalan_transformerexception_fix.dpatch: Added. - html/glossary.xsl: Adds curly braces around the $language attribute values to prevent Xalan 2.70 from throwing an exception. - xhtml/glossary.xsl: Ditto. * debian/patches/12_fo_fix_master_name_in_crop_mark_template_call.dpatch: Added. - fo/pagesetup.xsl: Fixed master-name used in axf crop mark template call. * debian/patches/13_fo_fix_missing_attribute_set_for_procedure.dpatch: Added. - fo/lists.xsl: Adds the missing procedure.properties attribute set. * debian/patches/80_common_locale_fixes.dpatch: Adjusted. Removed fixes, that were merged into upstream. Added fixes. - common/it.xml: Improvements and fixes. - common/ja.xml: Ditto. - common/uk.xml: Ditto. * debian/patches/81_common_xalan_bug_workaround.dpatch: Added. - common/pi.xsl: Try to workaround a Xalan quirk. * debian/patches/82_fix_doc_typos.dpatch: Added. - doc/manpages/man.string.subst.map.html: Simple typo fix. * debian/patches/10_manpages_fix_bold_author_markup.dpatch: * debian/patches/11_fo_fix_recursion_depth_bug_for_long_programlistings.dpatch: * debian/patches/12_fo_axf_attribute_before_fotex.dpatch: * debian/patches/13_fo_typo_fixes.dpatch: * debian/patches/14_fo_empty_rows_fix.dpatch: * debian/patches/15_html_fixed_namespace_declarations.dpatch: * debian/patches/16_slides_fix_foil_numbers_for_foilgroups.dpatch: * debian/patches/17_fo_html_add_space_between_orgname_and_orgdiv.dpatch: * debian/patches/18_common_fix_olink_database_access_for_saxon_and_db5.dpatch: * debian/patches/19_manpages_fix_output_formatting_bugs.dpatch: * debian/patches/20_html_handle_xalan_quirk.dpatch: * debian/patches/21_common_copyof_instead_valueof.dpatch: * debian/patches/22_common_fix_extra_white_space_introduced_by_olink.dpatch: * debian/patches/23_common_fo_html_use_number_function_for_comparison.dpatch: * debian/patches/24_html_fix_sgmltag_class_attribute.dpatch: * debian/patches/25_manpages_typo_fixes.dpatch: * debian/patches/26_fo_html_fix_no_space_between_package_and_classname.dpatch: * debian/patches/27_fo_html_fix_citation_linking_to_biblioentry.dpatch: * debian/patches/28_template_added_xalan_workaround.dpatch: Removed. Fixes were merged into upstream. * debian/patches/90_fix_readme_contents.dpatch: Removed. Upstream reorganized READMEs and README content. Thanks to Michael(tm) Smith for this Debian-friendly work. * debian/patches/00list: Adjusted accordingly. -- Daniel Leidert (dale) Sat, 24 Feb 2007 00:41:57 +0100 docbook-xsl (1.71.0.dfsg.1-2) unstable; urgency=medium * Acknowledge NMU (closes: #393726, #393808). Thanks to Loic Minier. * debian/patches/11_fo_fix_recursion_depth_bug_for_long_programlistings.dpatch: Added. - fo/verbatim.xsl: Adds two-stage recursion for hyphenate.verbatim to fix recursion depth bug for long programlistings. Revision 6280. * debian/patches/12_fo_axf_attribute_before_fotex.dpatch: Added. - fo/component.xsl: Create axf attribute before adding fotex element. Revision 6293. * debian/patches/13_fo_typo_fixes.dpatch: Added. - fo/inline.xsl: Fix typo bug (xlink.href should be xlink:href). Revision 6312. * debian/patches/14_fo_empty_rows_fix.dpatch: Added. - fo/table.xsl: Empty rows aren't allowed. Revision 6337. * debian/patches/15_html_fixed_namespace_declarations.dpatch: Added. - html/autoidx-kimber.xsl, html/autoidx-kosek.xsl, html/callout.xsl, html/chunker.xsl, html/graphics.xsl, html/oldchunker.xsl, html/table.xsl, html/verbatim.xsl, xhtml/autoidx-kimber.xsl, xhtml/autoidx-kosek.xsl, xhtml/callout.xsl, xhtml/chunker.xsl, xhtml/graphics.xsl, xhtml/oldchunker.xsl, xhtml/table.xsl, xhtml/verbatim.xsl: Made changes in namespace declarations to prevent xmllint's canonicalizer from treating them as relative namespace URIs. Revision 6306. * debian/patches/16_slides_fix_foil_numbers_for_foilgroups.dpatch: Added. - slides/html/slides-common.xsl, slides/xhtml/slides-common.xsl: Foil number is show only on foils not on foilgroups which are not counted at all. Revision 6281. * debian/patches/17_fo_html_add_space_between_orgname_and_orgdiv.dpatch: Added. - fo/titlepage.xsl, html/titlepage.xsl, xhtml/titlepage.xsl: Fixed bug 1566358 (sf.net bug tracker) to add space between orgname and orgdiv. Revision 6347. * debian/patches/18_common_fix_olink_database_access_for_saxon_and_db5.dpatch: Added. - common/olink.xsl: Fixed olink database access for Saxon and DB5. Revision 6348. * debian/patches/19_manpages_fix_output_formatting_bugs.dpatch: Added. - manpages/block.xsl: Make sure there's always a newline before .sp macro in output from simpara. Revision 6359. - manpages/synop.xsl: Fix bug: change to . Revision 6453. * debian/patches/20_html_handle_xalan_quirk.dpatch: Added. - html/db5strip.xsl, xhtml/db5strip.xsl: Handle Xalan quirk as special case. Revision 6397. * debian/patches/21_common_copyof_instead_valueof.dpatch: Added. - common/olink.xsl: Use copy-of instead of value-of for xreftext to preserve markup. Revision 6412. * debian/patches/22_common_fix_extra_white_space_introduced_by_olink.dpatch: Added. - common/targets.xsl: Fix bug 1596737 (sf.net bug tracker) extra white space introduced by olink. Now output indent="no" for target data. Revision 6413. * debian/patches/23_common_fo_html_use_number_function_for_comparison.dpatch: Added. - common/table.xsl, fo/table.xsl, html/table.xsl, xhtml/table.xsl: Use number() in some comparisons to ensure number data type. Revision 6417. * debian/patches/24_html_fix_sgmltag_class_attribute.dpatch: Added. - html/inline.xsl, xhtml/inline.xsl: Fix class attribute on sgmltag. Revision 6436. * debian/patches/25_manpages_typo_fixes.dpatch: Added. - manpages/utility.xsl: Fixed two element name typos. Revision 6444. * debian/patches/26_fo_html_fix_no_space_between_package_and_classname.dpatch: Added. - fo/synop.xsl, html/synop.xsl, xhtml/synop.xsl: Fixed bug 1603790 (sf.net bug tracker) no space between package and classname. Revision 6446. * debian/patches/27_fo_html_fix_citation_linking_to_biblioentry.dpatch: Added. - fo/inline.xsl, html/inline.xsl, xhtml/inline.xsl: Fix bug 1614469 (sf.net bug tracker) for citation linking to biblioentry. Revision 6451. * debian/patches/28_template_added_xalan_workaround.dpatch: Added. - template/titlepage.xsl: Added workaround for Xalan bug: use for-each and copy instead of copy-of. Closes 1604770 (sf.net bug tracker). Revision 6452. * debian/patches/80_common_locale_fixes.dpatch: Added. - common/am.xml, common/bn.xml, common/gu.xml, common/kn.xml, common/pa.xml, common/pt_br.xml, common/sr.xml, common/sv.xml, common/ta.xml, common/vi.xml, common/xh.xml, common/zh_tw.xml: Added HTMLHelp langcodes to several files. Revision 6290. - common/pt.xml: Fixed bug 1583790 (sf.net bug tracker) glossary entry character. Revision 6384. * debian/patches/00list: Adjusted. -- Daniel Leidert (dale) Fri, 29 Dec 2006 04:57:23 +0100 docbook-xsl (1.71.0.dfsg.1-1.1) unstable; urgency=low * Non-maintainer upload. * Remove compatibility symlink in /usr/share/sgml/docbook/stylesheet/xsl/nwalsh and its parent directories on removal; closes: #393726. -- Loic Minier Tue, 17 Oct 2006 22:26:46 +0200 docbook-xsl (1.71.0.dfsg.1-1) unstable; urgency=low * New maintainer. See http://lists.alioth.debian.org/pipermail/debian-xml-sgml-devel/2006-August/000687.html. * Acknowledge NMU (closes: #172996, #175681, #175734, #184673, #186836, #199517, #225192, #232192, #236960, #238517, #270155, #276136, #276471, #304011, #310245, #322686, #330129, #334874, #360029, #367694, #382576). * New upstream release 1.71.0. - Fixed handling of verbatims (address, screen, etc.) within listitem instances in varlistentry and glossentry (closes: #385940). Thanks to Jakub Wilk for the report. - Added normalization in several places in *info output that lacked it (closes: #383874). Thanks to Andreas Hoenen for the report. * After further testing the following bugs are not longer reproducible: - Linebreaks are preserved in environments (closes: #375503). - The escape sign (the backslash) is now correctly escaped in the groff source, so it appears correctly in manpage output (closes: #160235). - is now understood and handled as bold element by the stylesheets (closes: #332474). - an element following CDATA[\newline\tab]+ does not longer result in manpage output, missing at least one space between the CDATA and the elements content (closes: #345750). [ Daniel Leidert ] * debian/changelog: Added the missing '#' sign to bug-numbers in the changelog entry of 1.70.1.dfsg.1-0.1, so the link to the report can be automatically created. * debian/compat: Raised debhelper compatibility level to 5. * debian/control: Fixed Maintainer and Uploaders fields (see http://lists.alioth.debian.org/pipermail/debian-xml-sgml-devel/2006-August/000687.html). Adjusted debhelper build-dependency version. Extended package description for docbook-xsl (also informing about the formats "addeid recently"). * debian/copyright: Removed the paragraph about the l10n files in common/ (upstream changed this paragraph accordingly). Added copyright, license and warranty information for the files in highlighting. * debian/docbook-xsl.examples: Install the manpage example debian/examples/foo.1.example_manpage.xml too. * debian/docbook-xsl.install: Also install highlighting/*. * debian/docbook-xsl.links: Added links for README in /usr/share/xml/*/nwalsh/* to /usr/share/doc/docbook-xsl. * debian/docbook-xsl.prerm: Removed (empty file). * debian/docbook-xsl-doc.doc-base: Also added reference in text and pdf format. * debian/rules: Also avoid installation of the outdated testtemplate.xml. For the moment also avoid an installation of the reference in pdf and text format (would increase the size of docbook-xsl-doc to the 4x of the current size). * debian/README.Debian: Updated some outdated information I missed earlier. Added references to README.*, where available. * debian/examples/foo.1.example_manpage.xml: Added. This file is a sample manpage written in XML to help manpage writers with an example that shows the full power of the current docbook-xsl package (it was added in relation to bug #383495). * Adjusted patches: - debian/patches/01_create_debian_catalog.dpatch: Adjusted. * Removed patches: - debian/patches/10_html_use_copy_of_parameter_value.dpatch: Removed. Fixed in upstream. - debian/patches/11_html_make_x_html_output_valid.dpatch: Ditto. - debian/patches/12_html_add_sectioninfo_keywordsets_meta.dpatch: Ditto. - debian/patches/13_man_process_every_copyright_element.dpatch: Ditto. - debian/patches/90_common_l10n_updates.dpatch: Ditto. * Added patches: - debian/patches/10_manpages_fix_bold_author_markup.dpatch: Added. - manpages/info.xsl: Fixes the missing formatting in AUTHORS, that was lost with the normalization fix. - debian/patches/90_fix_readme_contents.dpatch: Added. - template/README: Added the installation directoy to avoid confusion when a user reads the link /usr/share/doc/docbook-xsl/README.template. - wordml/README: Similar. * debian/patches/00list: Adjusted accordingly. -- Daniel Leidert (dale) Mon, 11 Sep 2006 22:47:41 +0200 docbook-xsl (1.70.1.dfsg.1-0.2) unstable; urgency=high * NMU [ Daniel Leidert ] * debian/control: - Re-added ${misc:Depends} to make dh_installxmlcatalog and the postinst & prerm scripts work properly (closes: #382576). -- Daniel Leidert (dale) Sun, 13 Aug 2006 21:50:44 +0200 docbook-xsl (1.70.1.dfsg.1-0.1) unstable; urgency=high * NMU * New upstream release 1.70.1 (closes: #322686, #367694). * This release contains many fixes. Several bugs reported to the BTS are not longer reproducible: - The tag now produces a TOC when XSL(T) conversion is done on the provided example website.xml (closes: #172996). - Hyphenation of URLs in manpages is now suppressed by default - see also the man.hyphenate.urls parameter reference (closes: #175681). - The element is formatted bold by default in manpages (closes: #175734). - Using the element no longer misses a "SYNOPSIS" section in FO output (closes: #184673). - Generated XHTML contains a DOCTYPE (closes: #186836). - Improved troff translation of the element (closes: #199517). - A work-around for the broken passivetex list-item-body rendering was added by upstream to FO stylesheets (closes: #225192, #232192). - The element is not longer ignored when used as children of the , or elements (closes: #236960). - Mapping of unicode symbols and special characters is now handled corresponding to groff escape sequences using the "character map" format described in the XSLT 2.0 specification (closes: #238517, #334874). - The handling of elements has been improved in many ways, including indentation and styling-options (closes: #270155). - Linking the next chunk in bibliographies no longer fails (closes: #276136). - Information given during manpage generation can be suppressed now, so that the process runs quietly - see also the man.output.quietly and the refentry.meta.get.quietly parameter reference (closes: #304011). - Nesting italic and bold formatted elements in manpages no longer produces a wrongly formatted/broken output (closes: #330129). [ Daniel Leidert ] * debian/control: - Changed to standards version 3.7.2 (fixed build-dependecies to fit section 7.6). - Split the package into a package containing the stylesheets (docbook-xsl) and the documentation (docbook-xsl-doc). - Fixed recommended packages for docbook-xsl-doc (closes: #276471). - Fixed 'Homepage' URL (closes: #310245, #360029). - Fixed a typo. * debian/copyright: - Adjusted and completed copyright and license information. - Added a text copy of the Mozilla Public License (MPL) version 1.1. * debian/rules: - Added dpatch stuff. - Removed all empty files (param.html, pi.html) to fix a Lintian/linda warning. - Removed all outdated ChangeLog* files and the *.xweb and param.{ent,xml} files, we don't need. * debian/catalog.xml, docbook-xsl.xmlcatalogs, debian/patches/01_create_debian_catalog.dpatch: - Upstream now ships a catalog, so debian/catalog.xml can be removed and catalog.xml patched instead. * debian/docbook-xsl.docs, debian/docbook-xsl-doc.docs, debian/docbook-xsl.doc-base, debian/docbook-xsl-doc.doc-base, debian/README.Debian: - Package was split, so documentation and doc-base control file go to docbook-xsl-doc package. - Updated README.Debian and added the bits of information TODO, BUGS etc. contain (it's not that much, that shipping these file is necessary). * debian/docbook-xsl.install: - Added slides/, website/ and wordml/ directories. * debian/docbook-xsl.examples: - Added the Makefiles. * debian/patches/10_html_use_copy_of_parameter_value.dpatch: Added. - html/biblio.xsl: Added patch to use xsl:copy-of for biblioentry.item.separator. - xhtml/biblio.xsl: Ditto. * debian/patches/11_html_make_x_html_output_valid.dpatch: Added. - html/biblio.xsl: Fixed an issue when processing a bibliolist element, that leads to invalid HTML output. - xhtml/biblio.xsl: Ditto. - html/qandaset.xsl: Fixed an issue when processing the answer element, containing one or more qandaentry elements. This issue also leads to invalid HTML output. - xhtml/qandaset.xsl: Ditto. * debian/patches/12_html_add_sectioninfo_keywordsets_meta.dpatch: Added. - html/docbook.xsl: Fixed a missing processing instruction for keywordsets inside sectioninfo elements. This issue leads to an incomplete keyword META tag. - xhtml/docbook.xsl: Ditto. * debian/patches/13_man_process_every_copyright_element.dpatch: Added. - manpages/info.xsl: Process every copyright and legalnotice element, not just the first one, so the legal information is correct. * debian/patches/90_common_l10n_updates.dpatch: Added. - common/fr.xml: Updates from SVN. - common/pl.xml: Ditto. -- Daniel Leidert (dale) Sat, 20 May 2006 15:37:11 +0200 docbook-xsl (1.68.1.dfsg.1-0.2) unstable; urgency=low * NMU * Add -p to mkdir call in postinst to avoid falling if the directory does not exist yet. Thanks Julien Louis for the patch. This fix #232428 which was reintroduced by previous upload, but in a better way. -- Bill Allombert Sun, 7 May 2006 15:37:39 +0200 docbook-xsl (1.68.1.dfsg.1-0.1) unstable; urgency=low * NMU * new "upstream" tarball: - Remove the extensions directory that contains the xalan and saxon JAVA extensions we are missing the source for. (closes: #331661). (Do not forget to remove them from future new upstream versions.) * debian/control: - Remove reference to these extensions in the description. * debian/docbook-xsl.install debian/docbook-xsl.links debian/docbook-xsl.dirs debian/rules: - do not install the removed extensions. -- Bill Allombert Thu, 4 May 2006 19:38:18 +0200 docbook-xsl (1.68.1-0.1) unstable; urgency=low * NMU: latest version. -- Jaldhar H. Vyas Sun, 1 May 2005 15:10:58 -0400 docbook-xsl (1.66.1-1) unstable; urgency=low * New upstream release -- Mark Johnson Mon, 11 Oct 2004 15:44:36 -0400 docbook-xsl (1.64.1.0-4.2) unstable; urgency=low * NMU with permission of Mark Johnson * make the postinst idempotent by rebuilding with dh_installxmlcatalogs from xml-core 0.07 (closes: #232682) -- Jochen Voss Wed, 25 Feb 2004 14:05:23 +0000 docbook-xsl (1.64.1.0-4.1) unstable; urgency=low * NMU with permission of Mark Johnson * make the package build again by adding a xml-core build dependency (closes: #232601) * make the package install again by creating the missing installation directory (closes: #232428) * change Build-Depends into Build-Depends-Indep to make lintian happy * fix the short package description (closes: #232603) * remove obsolete local variables section from changelog -- Jochen Voss Tue, 24 Feb 2004 19:23:44 +0000 docbook-xsl (1.64.1.0-4) unstable; urgency=low * Really fixed /usr/share/sgml compatibility symlink. * (closes: #230454) (closes: #231336) * Added <*system> entries to xml catalogs. (closes: #230562) -- Mark Johnson Sun, 8 Feb 2004 21:27:50 -0500 docbook-xsl (1.64.1.0-3) unstable; urgency=low * Set passivetex.extensions parameter back to default. * (closes: #230433) * Fixed /usr/share/sgml compatibilty symlink. (closes: #230454) -- Mark Johnson Fri, 30 Jan 2004 20:03:45 -0500 docbook-xsl (1.64.1.0-2) unstable; urgency=low * Removed Recommends: xsltproc | libsaxon-java | libxalan2-java * (closes: #230154) -- Mark Johnson Wed, 28 Jan 2004 18:21:06 -0500 docbook-xsl (1.64.1.0-1) unstable; urgency=low * Set passivetex.extensions parameter to 1. (closes: #224267) * xalan & saxon extension are now installed in /usr/share/java. * Removed blank lines at end of debian/control. closes: #205567 #225377 * Added xml catalog support. (closes: #142894) * Changed long description to reflect possible output formats. * (closes: #219035) -- Mark Johnson Mon, 26 Jan 2004 19:07:24 -0500 docbook-xsl (1.64.1-1) unstable; urgency=low * New upstream release. (closes: #224267) * Discontinued config files in /etx/sgml/docbook-xsl: too complex to maintain. * Discontinue installation of upstream ChangeLogs into docs dir. -- Mark Johnson Wed, 24 Dec 2003 13:50:02 -0500 docbook-xsl (1.62.4.0-1) unstable; urgency=low * Replaced empty common/fr.xml with working version -- Mark Johnson Sat, 15 Nov 2003 15:20:02 -0500 docbook-xsl (1.62.4-1) unstable; urgency=low * New upstream release -- Mark Johnson Sun, 2 Nov 2003 19:28:04 -0500 docbook-xsl (1.60.1-1) unstable; urgency=low * New upstream release -- Mark Johnson Mon, 27 Jan 2003 01:57:59 -0600 docbook-xsl (1.56.1-2) unstable; urgency=low * Added omitted manpages directory (closes: bug#166192) * Updated policy version to 3.5.7 -- Mark Johnson Thu, 24 Oct 2002 13:26:28 -0500 docbook-xsl (1.56.1-1) unstable; urgency=low * New upstream release (closes: bug#165644, bug#144402, bug#162525, bug#161105) -- Mark Johnson Wed, 23 Oct 2002 11:49:06 -0500 docbook-xsl (1.54.1-0.1) unstable; urgency=low * Non-maintainer upload * New upstream release (closes: bug#139966) * Added contents to the profiling directory (closes: bug#148510) -- Susan Kleinmann Thu, 5 Sep 2002 21:31:16 -0400 docbook-xsl (1.50.0-2) unstable; urgency=low * Added symlinks for images in user docs -- Mark Johnson Thu, 28 Mar 2002 15:19:00 -0500 docbook-xsl (1.50.0-1) unstable; urgency=low * New upstream release (closes: bug#130783, bug#131224) * Fixed Description spelling error (closes: #124562) * Config files now in /etc/sgml/docbook-xsl and symlinked * Updated README.Debian -- Mark Johnson Thu, 28 Mar 2002 13:35:22 -0500 docbook-xsl (1.45-1) unstable; urgency=low * New upstream release -- Mark Johnson Tue, 2 Oct 2001 11:38:36 -0400 docbook-xsl (1.44-1) unstable; urgency=low * New upstream release. (closes: bug#108066, bug#112482) * Changed package name to conform with upstream and dsssl stylesheets. -- Mark Johnson Fri, 21 Sep 2001 03:02:58 -0400 docbook-xsl-stylesheets (1.40-1) unstable; urgency=low * New upstream release -- Mark Johnson Mon, 18 Jun 2001 02:16:49 -0400 docbook-xsl-stylesheets (1.39-1) unstable; urgency=low * New upstream release. New file layout. * Provides/Conflicts/Replaces doc package. (closes: #98126) -- Mark Johnson Fri, 15 Jun 2001 16:13:54 -0400 docbook-xsl-stylesheets (1.29-2) unstable; urgency=low * Merged docs into package. Moved html files to doc directory. Closes: bug#94946, bug#88816 -- Mark Johnson Thu, 17 May 2001 07:34:46 -0400 docbook-xsl-stylesheets (1.29-1) unstable; urgency=low * Initial Release. * Fixed paths in upstream bin files. Closes: bug#79024 -- Mark Johnson Thu, 1 Mar 2001 22:56:49 -0500