summaryrefslogtreecommitdiff
path: root/textproc/docbook-xsl
diff options
context:
space:
mode:
authorwiz <wiz>2006-10-22 12:36:53 +0000
committerwiz <wiz>2006-10-22 12:36:53 +0000
commit35b90146f4dcca4375a8dbb97457d54979f1df5e (patch)
treec9c2e1e1df4ea1e81ad03e9a3c7e5ccfba069d76 /textproc/docbook-xsl
parent22157821ee3854b684683aa9b35825a89d5a12cd (diff)
downloadpkgsrc-35b90146f4dcca4375a8dbb97457d54979f1df5e.tar.gz
Update to 1.71.1:
Release: 1.71.1 This is a minor update to the 1.71.0 release. Along with a number of bug fixes, it includes two feature changes: * Added support for profiling based on xml:lang and status attributes. * Added initial support in manpages output for footnote, annotation, and alt instances. Basically, they all now get handled the same way ulink instances are. They are treated as a class as "note sources": A numbered marker is generated at the place in the main text flow where they occur, then their contents are displayed in an endnotes section at the end of the man page. Common The following changes have been made to the common code since the 1.71.1 release. * For backward compatability autoidx-ng.xsl is invoking "kosek" indexing method again. * Add support for Xalan generating a root xml:base like saxon. FO The following changes have been made to the fo code since the 1.71.1 release. * For backward compatability autoidx-ng.xsl is invoking "kosek" indexing method again. * Add support for Xalan to add root node xml:base for db5 docs. * Added support for profiling based on xml:lang and status attributes. HTML The following changes have been made to the html code since the 1.71.1 release. * For backward compatability autoidx-ng.xsl is invoking "kosek" indexing method again. * Add support for Xalan to add root node xml:base for db5 docs. * Added support for profiling based on xml:lang and status attributes. * Made changes in namespace declarations to prevent xmllint's canonicalizer from treating them as relative namespace URIs. - Changed xmlns:k="java:com.isogen.saxoni18n.Saxoni18nService" to xmlns:k="http://www.isogen.com/functions/com.isogen.saxoni18n.Saxoni18nService"; Saxon accepts either form (see http://www.saxonica.com/documentation/extensibility/functions.html); to Saxon, "the part of the URI before the final '/' is immaterial". - Changed, e.g. xmlns:xverb="com.nwalsh.xalan.Verbatim" to xmlns:xverb="xalan://com.nwalsh.xalan.Verbatim"; Xalan accepts either form (see http://xml.apache.org/xalan-j/extensions.html#java-namespace-declare); just as Saxon does, it will "simply use the string to the right of the rightmost forward slash as the Java class name". - Changed xmlns:xalanredirect="org.apache.xalan.xslt.extensions.Redirect" to xmlns:redirect="http://xml.apache.org/xalan/redirect", and adjusted associated code to make the current Xalan redirect spec. (see http://xml.apache.org/xalan-j/apidocs/org/apache/xalan/lib/Redirect.html) * Added the html.append and chunk.append parameters. By default, the value of both is empty; but the internal DocBook XSL stylesheets build sets their value to "<xsl:text>&#x0a;</xsl:text>", in order to ensure that all files in the docbook-xsl-doc package end in a newline character. (Because diff and some other tools may emit error messages and/or not behave as expected when processing files that are not newline-terminated.) Highlighting The following changes have been made to the highlighting code since the 1.71.1 release. * Added license information Manpages The following changes have been made to the manpages code since the 1.71.1 release. * Added initial support in manpages output for footnote, annotation, and alt instances. Basically, they all now get handled the same way ulink instances are. They are treated as a class as "note sources": A numbered marker is generated at the place in the main text flow where they occur, then their contents are displayed in an endnotes section at the end of the man page (currently titled REFERENCES, for English output, but will be changed to NOTES). This support is not yet complete. It works for most "normal" cases, but probably mishandles a good number of cases. More testing will be needed to expose the problems. It may well also introduce some bugs and regressions in other areas, including basic paragraph handling, handling of "mixed block" content, handling of other indented content, and handling of authorblurb and personblurb in the AUTHORS section. Params The following changes have been made to the params code since the 1.71.1 release. * Added support for profiling based on xml:lang and status attributes. * Added the html.append and chunk.append parameters. By default, the value of both is empty; but the internal DocBook XSL stylesheets build sets their value to "<xsl:text>&#x0a;</xsl:text>", in order to ensure that all files in the docbook-xsl-doc package end in a newline character. (Because diff and some other tools may emit error messages and/or not behave as expected when processing files that are not newline-terminated.) Profiling The following changes have been made to the profiling code since the 1.71.1 release. * Added support for profiling based on xml:lang and status attributes.
Diffstat (limited to 'textproc/docbook-xsl')
-rw-r--r--textproc/docbook-xsl/Makefile7
-rw-r--r--textproc/docbook-xsl/PLIST122
-rw-r--r--textproc/docbook-xsl/distinfo8
3 files changed, 30 insertions, 107 deletions
diff --git a/textproc/docbook-xsl/Makefile b/textproc/docbook-xsl/Makefile
index 1410c830087..3dc2d7005d0 100644
--- a/textproc/docbook-xsl/Makefile
+++ b/textproc/docbook-xsl/Makefile
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.42 2006/09/12 12:39:13 joerg Exp $
+# $NetBSD: Makefile,v 1.43 2006/10/22 12:36:53 wiz Exp $
#
-DISTNAME= docbook-xsl-1.71.0
-PKGREVISION= 1
+DISTNAME= docbook-xsl-1.71.1
CATEGORIES= textproc
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=docbook/}
EXTRACT_SUFX= .tar.bz2
@@ -22,7 +21,7 @@ REPLACE_PERL+= fo/pdf2index
EGDIR= ${PREFIX}/share/examples/docbook-xsl
XSLDIR= ${PREFIX}/share/xsl/docbook
XSLMODS= common extensions fo highlighting html htmlhelp images javahelp \
- lib manpages params profiling slides website xhtml
+ lib manpages params profiling slides website wordml xhtml
XML_CATALOGS= ${XSLDIR}/catalog.xml
diff --git a/textproc/docbook-xsl/PLIST b/textproc/docbook-xsl/PLIST
index 550826cfbb8..1ab8fc21d5b 100644
--- a/textproc/docbook-xsl/PLIST
+++ b/textproc/docbook-xsl/PLIST
@@ -1,7 +1,4 @@
-@comment $NetBSD: PLIST,v 1.19 2006/09/12 12:39:13 joerg Exp $
-share/examples/docbook-xsl/README
-share/examples/docbook-xsl/biblioentry.xsl
-share/examples/docbook-xsl/testtemplate.xml
+@comment $NetBSD: PLIST,v 1.20 2006/10/22 12:36:53 wiz Exp $
share/examples/docbook-xsl/titlepage.xsl
@comment in xmlcatmgr: share/xml/catalog
share/xsl/docbook/VERSION
@@ -11,7 +8,6 @@ share/xsl/docbook/common/am.xml
share/xsl/docbook/common/ar.xml
share/xsl/docbook/common/autoidx-kimber.xsl
share/xsl/docbook/common/autoidx-kosek.xsl
-share/xsl/docbook/common/autoidx-ng.xsl
share/xsl/docbook/common/az.xml
share/xsl/docbook/common/bg.xml
share/xsl/docbook/common/bn.xml
@@ -186,10 +182,7 @@ share/xsl/docbook/fo/keywords.xsl
share/xsl/docbook/fo/lists.xsl
share/xsl/docbook/fo/math.xsl
share/xsl/docbook/fo/pagesetup.xsl
-share/xsl/docbook/fo/param.ent
-share/xsl/docbook/fo/param.xml
share/xsl/docbook/fo/param.xsl
-share/xsl/docbook/fo/param.xweb
share/xsl/docbook/fo/passivetex.xsl
share/xsl/docbook/fo/pdf2index
share/xsl/docbook/fo/pi.xsl
@@ -258,10 +251,7 @@ share/xsl/docbook/html/manifest.xsl
share/xsl/docbook/html/math.xsl
share/xsl/docbook/html/oldchunker.xsl
share/xsl/docbook/html/onechunk.xsl
-share/xsl/docbook/html/param.ent
-share/xsl/docbook/html/param.xml
share/xsl/docbook/html/param.xsl
-share/xsl/docbook/html/param.xweb
share/xsl/docbook/html/pi.xsl
share/xsl/docbook/html/profile-chunk-code.xsl
share/xsl/docbook/html/profile-chunk.xsl
@@ -352,25 +342,18 @@ share/xsl/docbook/images/warning.svg
share/xsl/docbook/images/warning.tif
share/xsl/docbook/javahelp/javahelp.xsl
share/xsl/docbook/javahelp/profile-javahelp.xsl
-share/xsl/docbook/lib/lib.xml
share/xsl/docbook/lib/lib.xsl
-share/xsl/docbook/lib/lib.xweb
share/xsl/docbook/manpages/ChangeLog.20020917
-share/xsl/docbook/manpages/README
share/xsl/docbook/manpages/block.xsl
share/xsl/docbook/manpages/charmap.groff.xsl
share/xsl/docbook/manpages/docbook.xsl
share/xsl/docbook/manpages/html-synop.xsl
-share/xsl/docbook/manpages/html2roff.xsl
share/xsl/docbook/manpages/info.xsl
share/xsl/docbook/manpages/inline.xsl
share/xsl/docbook/manpages/links.xsl
share/xsl/docbook/manpages/lists.xsl
share/xsl/docbook/manpages/other.xsl
-share/xsl/docbook/manpages/param.ent
-share/xsl/docbook/manpages/param.xml
share/xsl/docbook/manpages/param.xsl
-share/xsl/docbook/manpages/param.xweb
share/xsl/docbook/manpages/refentry.xsl
share/xsl/docbook/manpages/synop.xsl
share/xsl/docbook/manpages/table.xsl
@@ -425,6 +408,7 @@ share/xsl/docbook/params/callout.unicode.start.character.xml
share/xsl/docbook/params/callout.unicode.xml
share/xsl/docbook/params/callouts.extension.xml
share/xsl/docbook/params/chapter.autolabel.xml
+share/xsl/docbook/params/chunk.append.xml
share/xsl/docbook/params/chunk.first.sections.xml
share/xsl/docbook/params/chunk.quietly.xml
share/xsl/docbook/params/chunk.section.depth.xml
@@ -538,6 +522,7 @@ share/xsl/docbook/params/header.table.height.xml
share/xsl/docbook/params/headers.on.blank.pages.xml
share/xsl/docbook/params/highlight.default.language.xml
share/xsl/docbook/params/highlight.source.xml
+share/xsl/docbook/params/html.append.xml
share/xsl/docbook/params/html.base.xml
share/xsl/docbook/params/html.cellpadding.xml
share/xsl/docbook/params/html.cellspacing.xml
@@ -760,6 +745,7 @@ share/xsl/docbook/params/profile.revisionflag.xml
share/xsl/docbook/params/profile.role.xml
share/xsl/docbook/params/profile.security.xml
share/xsl/docbook/params/profile.separator.xml
+share/xsl/docbook/params/profile.status.xml
share/xsl/docbook/params/profile.userlevel.xml
share/xsl/docbook/params/profile.value.xml
share/xsl/docbook/params/profile.vendor.xml
@@ -908,65 +894,8 @@ share/xsl/docbook/profiling/profile-mode.xsl
share/xsl/docbook/profiling/profile.xsl
share/xsl/docbook/profiling/strip-attributes.xsl
share/xsl/docbook/profiling/xsl2profile.xsl
-share/xsl/docbook/slides/browser/CTOCWidget.js
-share/xsl/docbook/slides/browser/overlay.js
-share/xsl/docbook/slides/browser/slides-default.css
-share/xsl/docbook/slides/browser/slides-frames.css
-share/xsl/docbook/slides/browser/slides-plain.css
-share/xsl/docbook/slides/browser/slides-table.css
-share/xsl/docbook/slides/browser/slides-w3c.css
-share/xsl/docbook/slides/browser/slides.css
-share/xsl/docbook/slides/browser/slides.js
-share/xsl/docbook/slides/browser/ua.js
-share/xsl/docbook/slides/browser/xbCollapsibleLists.js
-share/xsl/docbook/slides/browser/xbDOM.js
-share/xsl/docbook/slides/browser/xbDebug.js
-share/xsl/docbook/slides/browser/xbLibrary.js
-share/xsl/docbook/slides/browser/xbStyle-css.js
-share/xsl/docbook/slides/browser/xbStyle-nn4.js
-share/xsl/docbook/slides/browser/xbStyle-not-supported.js
-share/xsl/docbook/slides/browser/xbStyle.js
share/xsl/docbook/slides/fo/plain-titlepage.xml
-share/xsl/docbook/slides/fo/plain-titlepage.xsl
share/xsl/docbook/slides/fo/plain.xsl
-share/xsl/docbook/slides/graphics/active/arr-next.png
-share/xsl/docbook/slides/graphics/active/arr-prev.png
-share/xsl/docbook/slides/graphics/active/but-fforward.png
-share/xsl/docbook/slides/graphics/active/but-info.png
-share/xsl/docbook/slides/graphics/active/but-next.png
-share/xsl/docbook/slides/graphics/active/but-prev.png
-share/xsl/docbook/slides/graphics/active/but-rewind.png
-share/xsl/docbook/slides/graphics/active/nav-home.png
-share/xsl/docbook/slides/graphics/active/nav-next.png
-share/xsl/docbook/slides/graphics/active/nav-prev.png
-share/xsl/docbook/slides/graphics/active/nav-toc.png
-share/xsl/docbook/slides/graphics/active/nav-up.png
-share/xsl/docbook/slides/graphics/active/w3c-next.png
-share/xsl/docbook/slides/graphics/active/w3c-prev.png
-share/xsl/docbook/slides/graphics/active/w3c-toc.png
-share/xsl/docbook/slides/graphics/arrow.gif
-share/xsl/docbook/slides/graphics/blank.gif
-share/xsl/docbook/slides/graphics/blank.png
-share/xsl/docbook/slides/graphics/hidetoc.gif
-share/xsl/docbook/slides/graphics/inactive/but-fforward.png
-share/xsl/docbook/slides/graphics/inactive/but-info.png
-share/xsl/docbook/slides/graphics/inactive/but-next.png
-share/xsl/docbook/slides/graphics/inactive/but-prev.png
-share/xsl/docbook/slides/graphics/inactive/but-rewind.png
-share/xsl/docbook/slides/graphics/inactive/nav-home.png
-share/xsl/docbook/slides/graphics/inactive/nav-next.png
-share/xsl/docbook/slides/graphics/inactive/nav-prev.png
-share/xsl/docbook/slides/graphics/inactive/nav-toc.png
-share/xsl/docbook/slides/graphics/inactive/nav-up.png
-share/xsl/docbook/slides/graphics/inactive/w3c-next.png
-share/xsl/docbook/slides/graphics/inactive/w3c-prev.png
-share/xsl/docbook/slides/graphics/inactive/w3c-toc.png
-share/xsl/docbook/slides/graphics/plus.gif
-share/xsl/docbook/slides/graphics/pointer.png
-share/xsl/docbook/slides/graphics/showtoc.gif
-share/xsl/docbook/slides/graphics/toc/bullet.png
-share/xsl/docbook/slides/graphics/toc/closed.png
-share/xsl/docbook/slides/graphics/toc/open.png
share/xsl/docbook/slides/html/css.xsl
share/xsl/docbook/slides/html/default.xsl
share/xsl/docbook/slides/html/flat.xsl
@@ -990,22 +919,7 @@ share/xsl/docbook/slides/keynote/xsltsl/stdlib.xsl
share/xsl/docbook/slides/keynote/xsltsl/string.xsl
share/xsl/docbook/slides/keynote/xsltsl/svg.xsl
share/xsl/docbook/slides/keynote/xsltsl/uri.xsl
-share/xsl/docbook/slides/param.xml
-share/xsl/docbook/slides/param.xsl
-share/xsl/docbook/slides/param.xweb
share/xsl/docbook/slides/svg/default.xsl
-share/xsl/docbook/slides/xhtml/css.xsl
-share/xsl/docbook/slides/xhtml/default.xsl
-share/xsl/docbook/slides/xhtml/flat.xsl
-share/xsl/docbook/slides/xhtml/frames.xsl
-share/xsl/docbook/slides/xhtml/graphics.xsl
-share/xsl/docbook/slides/xhtml/html2xhtml.xsl
-share/xsl/docbook/slides/xhtml/jscript.xsl
-share/xsl/docbook/slides/xhtml/plain.xsl
-share/xsl/docbook/slides/xhtml/slides-common.xsl
-share/xsl/docbook/slides/xhtml/tables.xsl
-share/xsl/docbook/slides/xhtml/vslides.xsl
-share/xsl/docbook/slides/xhtml/w3c.xsl
share/xsl/docbook/website/autolayout.xsl
share/xsl/docbook/website/chunk-common.xsl
share/xsl/docbook/website/chunk-tabular.xsl
@@ -1013,9 +927,6 @@ share/xsl/docbook/website/chunk-website.xsl
share/xsl/docbook/website/head.xsl
share/xsl/docbook/website/makefile-dep.xsl
share/xsl/docbook/website/olink.xsl
-share/xsl/docbook/website/param.xml
-share/xsl/docbook/website/param.xsl
-share/xsl/docbook/website/param.xweb
share/xsl/docbook/website/rss.xsl
share/xsl/docbook/website/tabular.xsl
share/xsl/docbook/website/toc-tabular.xsl
@@ -1024,6 +935,22 @@ share/xsl/docbook/website/website-common.xsl
share/xsl/docbook/website/website-targets.xsl
share/xsl/docbook/website/website.xsl
share/xsl/docbook/website/xbel.xsl
+share/xsl/docbook/wordml/blocks-spec.xml
+share/xsl/docbook/wordml/docbook-pages.xsl
+share/xsl/docbook/wordml/docbook.xsl
+share/xsl/docbook/wordml/pages-normalise.xsl
+share/xsl/docbook/wordml/param.xsl
+share/xsl/docbook/wordml/sections-spec.xml
+share/xsl/docbook/wordml/specifications.xml
+share/xsl/docbook/wordml/supported.xml
+share/xsl/docbook/wordml/template-pages.xml
+share/xsl/docbook/wordml/template.dot
+share/xsl/docbook/wordml/template.xml
+share/xsl/docbook/wordml/wordml-blocks.xsl
+share/xsl/docbook/wordml/wordml-final.xsl
+share/xsl/docbook/wordml/wordml-normalise.xsl
+share/xsl/docbook/wordml/wordml-sections.xsl
+share/xsl/docbook/wordml/wordml.xsl
share/xsl/docbook/xhtml/admon.xsl
share/xsl/docbook/xhtml/annotations.xsl
share/xsl/docbook/xhtml/autoidx-kimber.xsl
@@ -1084,19 +1011,16 @@ share/xsl/docbook/xhtml/toc.xsl
share/xsl/docbook/xhtml/verbatim.xsl
share/xsl/docbook/xhtml/xref.xsl
@dirrm share/xsl/docbook/xhtml
+@dirrm share/xsl/docbook/wordml
@dirrm share/xsl/docbook/website
+@exec ${MKDIR} %D/share/xsl/docbook/slides/xhtml
@dirrm share/xsl/docbook/slides/xhtml
@dirrm share/xsl/docbook/slides/svg
@dirrm share/xsl/docbook/slides/keynote/xsltsl
-@dirrm share/xsl/docbook/slides/keynote/
+@dirrm share/xsl/docbook/slides/keynote
@dirrm share/xsl/docbook/slides/htmlhelp
@dirrm share/xsl/docbook/slides/html
-@dirrm share/xsl/docbook/slides/graphics/toc
-@dirrm share/xsl/docbook/slides/graphics/inactive
-@dirrm share/xsl/docbook/slides/graphics/active
-@dirrm share/xsl/docbook/slides/graphics
@dirrm share/xsl/docbook/slides/fo
-@dirrm share/xsl/docbook/slides/browser
@dirrm share/xsl/docbook/slides
@dirrm share/xsl/docbook/profiling
@dirrm share/xsl/docbook/params
diff --git a/textproc/docbook-xsl/distinfo b/textproc/docbook-xsl/distinfo
index a2b47e47f28..3e882a3a5d1 100644
--- a/textproc/docbook-xsl/distinfo
+++ b/textproc/docbook-xsl/distinfo
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.18 2006/09/10 18:28:52 wiz Exp $
+$NetBSD: distinfo,v 1.19 2006/10/22 12:36:53 wiz Exp $
-SHA1 (docbook-xsl-1.71.0.tar.bz2) = c9a09d1ba54f2c97bbd7cc478ac134c05df9d93e
-RMD160 (docbook-xsl-1.71.0.tar.bz2) = a8dddc7de3ac5fd2894a1fc5c796501cf7a9dd94
-Size (docbook-xsl-1.71.0.tar.bz2) = 1571635 bytes
+SHA1 (docbook-xsl-1.71.1.tar.bz2) = de7199a9e55ced7a2a212e9902eff747103e4a24
+RMD160 (docbook-xsl-1.71.1.tar.bz2) = 198d8ba1ce1bd8e9f2a730bb285aa1c164a3e10a
+Size (docbook-xsl-1.71.1.tar.bz2) = 1473510 bytes