summaryrefslogtreecommitdiff
path: root/textproc/docbook-xsl
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2007-02-02 19:13:49 +0000
committerwiz <wiz@pkgsrc.org>2007-02-02 19:13:49 +0000
commit7e61b8303a303e45fcbb630b1bcee64cbf207cb7 (patch)
tree02686f064c361c008133bac8c9f19538f0898210 /textproc/docbook-xsl
parenta8fcb00745441fe88800ff82449e9c4dda1c816a (diff)
downloadpkgsrc-7e61b8303a303e45fcbb630b1bcee64cbf207cb7.tar.gz
Update to 1.72.0:
Common The following changes have been made to the common code since the 1.71.1 release. * Add empty template for sidebar in label.markup mode. * Add utility template tabstyle to return the tabstyle from any table element. * Add support for arabicindic numbering to autolabel.format template. * Moved the index entity declarations to a separate common file. * Add title.markup mode for glossdiv to support info/title. * Remove link.title.attribute, replaced in html/html.xsl * Fixed typo in xsl:with-param * Use number() in some comparisons to ensure number data type. * Fix bug #1596737 extra white space introduced by olink. Now output indent="no" for target data. * Use copy-of instead of value-of for xreftext to preserve markup. * Add template link.title.attribute. * Modify gentext.template to respect parameter verbose = 0. Modify gentext.template.exists to use gentext.template with verbose = 0. * Finish support for @xml:id everywhere @id is used. * replace name() with local-name() in most cases. * Add support for info. * Fixed add-xml-base for Windows and Xalan case. * Added NodeInfo prefix to list of exclude-result-prefixes FO The following changes have been made to the fo code since the 1.71.1 release. * Added index.page.number.properties attribute set to the set of reference documentation for the FO stylesheets. * Changed VERSION file to include distro title (DocBook XSL Stylesheets), and updated HTML, FO, and manpages stylesheets to use that in their metadata sections (e.g., in HTML, the <meta name="generator" ...> contents). * Remove duplicate orgname template. Switch org templates to using inline.charseq which handles simple.xlink. * Add index.page.number.properties attribute-set to format page numbers. * Pass the toc-context down to the toc.line template. * Fixed bug in use of isogen key. * Add support for crop marks in Antenna House. * Obsolete now that info is supported. * Move show-destination="replace" property from template to attribute-set so it can be customized. * Add table.row.properties template to customize table rows. * Moved the entities declarations to a separate common file. * Add support for sorting glossary entries * Remove obsolete dobookng.xsl, since info now supported. * Fix bug #1614469 for citation linking to biblioentry. * Moved all properties to attribute-sets so can be customized more easily. * Fixed bug #1603790: no space between package and classname. * include stub file for annotations.xsl * Add simple.xlink processing to term and member elements. * Initial checkin of file for annotation processing. * Some more inlines to use simple.xlink. * xref now supports xlink:href, using simple.xlink template. * modified link template to use simple.xlink now. * Use number() in some comparisons to ensure number data type. * Rewrote simple.xlink, and call it with all charseq templates. * Finish support for @xml:id everywhere @id is used. * replace name() with local-name() in most cases. * Add support for info element. * support title in info too. HTML The following changes have been made to the html code since the 1.71.1 release. * Changed VERSION file to include distro title (DocBook XSL Stylesheets), and updated HTML, FO, and manpages stylesheets to use that in their metadata sections (e.g., in HTML, the <meta name="generator" ...> contents). * Add support in imageobjectco for otherunits="imagemap" to allow direct authoring of imagemap units. * Use areaspec id as imagemap map name. * Fixed imagemaps so they work properly going from calspair coords to HTML area coords. * qandaset was not outputting an anchor id, now it is. * Obsolete now that info is supported. * Moved the entities declarations to a separate common file. * Add support for sorting glossary entries * Remove docbookng.xsl since info now supported. * Add support for qanda.in.toc to add qandaentry questions to document TOC. * Fix bug #1614469 for citation linking to biblioentry. * Fixed bug #1603790: no space between package and classname. * Fixed two next/prev bugs. * *.propagates.style now handled in class.attribute mode. * add simple.xlink support to variablelist term and simplelist member. * fix class attribute on sgmltag. * add class parameter to class.attribute mode to set default class. * Convert all class attributes to use the class.attribute mode so class names can be customized more easily. * Add class.attribute mode to generate class attributes. * Added simple.xlink to most remaining inlines. Changed class attributes to applying class.attributes mode. * Changed xref template to use simple.xlink tempalte. * Improve generate.html.title to work with link targets too. * Improved simple.xlink to support link and xref. * Use number() in some comparisons to ensure number data type. * Convert link element template to use simple.xlink. * Improvements in simple.xlink. * Use new link.title.attribute now. * Rewrote simple.xlink to handle linkend also. Better computation of title attribute on link too. * Fix syntax errors. * Finish support for @xml:id everywhere @id is used. * replace name() with local-name() in most cases. * Handle Xalan quirk as special case. * Add support for info. Manpages The following changes have been made to the manpages code since the 1.71.1 release. * Changed VERSION file to include distro title (DocBook XSL Stylesheets), and updated HTML, FO, and manpages stylesheets to use that in their metadata sections (e.g., in HTML, the <meta name="generator" ...> contents). * Removed single-pass namespace stripping from manpages stylesheet. To process DocBook 5 instances, either use the experimental namespace-aware DocBook 5 XSL 1.0 stylesheets, or pre-process your source to do the namespace stripping (two-pass processing). * Added doc for man.output.lang.in.name.enabled parameter. This checkin completes support for writing file/pathnames for man-pages with $lang include in the names. Closes #1585967. knightly accolades to Daniel Leidert for providing the feature request. * Added new param man.output.lang.in.name.enabled, which controls whether $LANG value is included in manpages filenames and pathnames. It works like this: If the value of man.output.lang.in.name.enabled is non-zero, man-page files are output with the $lang value included in their filenames or pathnames as follows; - if man.output.subdirs.enabled is non-zero, each file is output to, e.g., a /$lang/man8/foo.8 pathname - if man.output.subdirs.enabled is zero, each file is output with a foo.$lang.8 filename * Use "\e" instead of "\\" for backslash output, because the groff docs say that's the correct thing to do; also because testing (thanks, Paul Dubois) shows that "\\" doesn't always work as expected; for example, "\\" within a table seems to mess things up. * Added the man.string.subst.map.local.pre and man.string.subst.map.local.post parameters. Those parameters enable local additions and changes to string-substitution mappings without the need to change the value of man.string.subst.map parameter (which is for standard system mappings). Closes #1456738. Thanks to Sam Steingold for constructing a true stylesheet torture test (the clisp docs) that exposed the need for these params. * Use U+2592 as an internal marker for linebreak around sbr output (to prevent the break from getting eaten by some normalization that the stylesheet does on synopses). Use U+2580 as an internal marker for no-break space (to work around a similar issue). Closes bug #1612808. Thanks to Simon Walter for reporting it (the sbr bug). * Adjusted manpages stylesheet to use U+2593 as the internal representation for the backslash character within the stylesheet. This prevents backslashes in source content from getting eaten. Closes #1609425. Thanks to Paul DuBois for reporting the bug. * Changed manpages stylesheet to always output a U+2591 character as the internal representation of a dash. The string-substitution map is then used to output a real dash when the final contents are serialized. Also, made a change that causes dots and dashes in the top comment to be unescaped. * Output newline after admonitions (Note, Warning, etc.) * Added the Markup element to the list of elements that get output in bold. Thanks to Eric S. Raymond. * Changed dot output to mark end of tbl(1) table format sections (changed from real dot to internal U+2302 representation). * Replaced all dots in roff requests with U+2302 ("house" character), and added escaping in output for all instances of dot that are not in roff requests. This fixes the problem case where a string beginning with a dot (for example, the string ".bashrc") might occur at the beginning of a line in output, in which case would mistakenly get interpreted as a roff request. Thanks to Eric S. Raymond for pushing to fix this. * This is a first attempt at ensuring that list content nested in itemizedlist and orderedlist instances is properly indented. This is a switch from using .TP to format those lists to using .RS/.RE to format them instead (because .TP does not allow nesting). This probably breaks something else and therefore will likely need some refinement after more testing. Closes bug #1602616. Thanks to Daniel Leidert. * Fix bug: change <text> to <xsl:text> * Fixed two element name typos. Params The following changes have been made to the params code since the 1.71.1 release. * Repaired bizarro-superman talk. * Added doc for man.output.lang.in.name.enabled parameter. This checkin completes support for writing file/pathnames for man-pages with $lang include in the names. Closes #1585967. knightly accolades to Daniel Leidert for providing the feature request. * Use "\e" instead of "\\" for backslash output, because the groff docs say that's the correct thing to do; also because testing (thanks, Paul Dubois) shows that "\\" doesn't always work as expected; for example, "\\" within a table seems to mess things up. * Added the man.string.subst.map.local.pre and man.string.subst.map.local.post parameters. Those parameters enable local additions and changes to string-substitution mappings without the need to change the value of man.string.subst.map parameter (which is for standard system mappings). Closes #1456738. Thanks to Sam Steingold for constructing a true stylesheet torture test (the clisp docs) that exposed the need for these params. * Use U+2592 as an internal marker for linebreak around sbr output (to prevent the break from getting eaten by some normalization that the stylesheet does on synopses). Use U+2580 as an internal marker for no-break space (to work around a similar issue). Closes bug #1612808. Thanks to Simon Walter for reporting it (the sbr bug). * Changed order of string replacements so that backslash is escaped and replaced after backslash and dot (as it needs to be). * Adjusted manpages stylesheet to use U+2593 as the internal representation for the backslash character within the stylesheet. This prevents backslashes in source content from getting eaten. Closes #1609425. Thanks to Paul DuBois for reporting the bug. * Changed manpages stylesheet to always output a U+2591 character as the internal representation of a dash. The string-substitution map is then used to output a real dash when the final contents are serialized. Also, made a change that causes dots and dashes in the top comment to be unescaped. * output "\&." instead of just plain "\." (because plain "\." does not work...) * Fixed problem where newlines were dropped before dots. * Only escape dot if it actually occurs at the beginning of a line. * fixed well-formedness errors * Replaced all dots in roff requests with U+2302 ("house" character), and added escaping in output for all instances of dot that are not in roff requests. This fixes the problem case where a string beginning with a dot (for example, the string ".bashrc") might occur at the beginning of a line in output, in which case would mistakenly get interpreted as a roff request. Thanks to Eric S. Raymond for pushing to fix this. * Add index.page.number.properties by default. * Added to allow customizations of page numbers in indexes. * Improved wording. * Move show-destination="replace" property from template to attribute-set so it can be customized. * dd support for sorting glossary entries * Improved wording. * Add option to include qanda in tables of contents. * This is a first attempt at ensuring that list content nested in itemizedlist and orderedlist instances is properly indented. This is a switch from using .TP to format those lists to using .RS/.RE to format them instead (because .TP does not allow nesting). This probably breaks something else and therefore will likely need some refinement after more testing. Closes bug #1602616. Thanks to Daniel Leidert. * Moved all properties to attribute-sets so can be customized more easily. Template The following changes have been made to the template code since the 1.71.1 release. * Added workaround for Xalan bug: use for-each and copy instead of copy-of (#1604770). Tools The following changes have been made to the tools code since the 1.71.1 release. * Updated master makefile to enable docbook5-xsl build and packaging. * Updated automated xsl-param markup system to handle wordml->roundtrip name change. * wordml->roundtrip name change * Replaced all dots in roff requests with U+2302 ("house" character), and added escaping in output for all instances of dot that are not in roff requests. This fixes the problem case where a string beginning with a dot (for example, the string ".bashrc") might occur at the beginning of a line in output, in which case would mistakenly get interpreted as a roff request. Thanks to Eric S. Raymond for pushing to fix this. Roundtrip The following changes have been made to the roundtrip code since the 1.71.1 release. * wordml->roundtrip name change * rename to roundtrip, add OpenOffice support
Diffstat (limited to 'textproc/docbook-xsl')
-rw-r--r--textproc/docbook-xsl/Makefile6
-rw-r--r--textproc/docbook-xsl/PLIST129
-rw-r--r--textproc/docbook-xsl/distinfo8
3 files changed, 114 insertions, 29 deletions
diff --git a/textproc/docbook-xsl/Makefile b/textproc/docbook-xsl/Makefile
index b3985aeefc7..0164d91071d 100644
--- a/textproc/docbook-xsl/Makefile
+++ b/textproc/docbook-xsl/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.44 2006/11/03 19:17:39 joerg Exp $
+# $NetBSD: Makefile,v 1.45 2007/02/02 19:13:49 wiz Exp $
#
-DISTNAME= docbook-xsl-1.71.1
+DISTNAME= docbook-xsl-1.72.0
CATEGORIES= textproc
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=docbook/}
EXTRACT_SUFX= .tar.bz2
@@ -23,7 +23,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 wordml xhtml
+ lib manpages params profiling roundtrip slides website xhtml
XML_CATALOGS= ${XSLDIR}/catalog.xml
diff --git a/textproc/docbook-xsl/PLIST b/textproc/docbook-xsl/PLIST
index 1ab8fc21d5b..1adfd359ccc 100644
--- a/textproc/docbook-xsl/PLIST
+++ b/textproc/docbook-xsl/PLIST
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.20 2006/10/22 12:36:53 wiz Exp $
+@comment $NetBSD: PLIST,v 1.21 2007/02/02 19:13:49 wiz Exp $
share/examples/docbook-xsl/titlepage.xsl
@comment in xmlcatmgr: share/xml/catalog
share/xsl/docbook/VERSION
@@ -20,6 +20,7 @@ share/xsl/docbook/common/da.xml
share/xsl/docbook/common/de.xml
share/xsl/docbook/common/el.xml
share/xsl/docbook/common/en.xml
+share/xsl/docbook/common/entities.ent
share/xsl/docbook/common/es.xml
share/xsl/docbook/common/et.xml
share/xsl/docbook/common/eu.xml
@@ -150,6 +151,7 @@ share/xsl/docbook/extensions/xalan27/src/com/nwalsh/xalan/Table.java
share/xsl/docbook/extensions/xalan27/src/com/nwalsh/xalan/Text.java
share/xsl/docbook/extensions/xalan27/src/com/nwalsh/xalan/Verbatim.java
share/xsl/docbook/fo/admon.xsl
+share/xsl/docbook/fo/annotations.xsl
share/xsl/docbook/fo/autoidx-kimber.xsl
share/xsl/docbook/fo/autoidx-kosek.xsl
share/xsl/docbook/fo/autoidx-ng.xsl
@@ -162,7 +164,6 @@ share/xsl/docbook/fo/callout.xsl
share/xsl/docbook/fo/component.xsl
share/xsl/docbook/fo/division.xsl
share/xsl/docbook/fo/docbook.xsl
-share/xsl/docbook/fo/docbookng.xsl
share/xsl/docbook/fo/ebnf.xsl
share/xsl/docbook/fo/fo-patch-for-fop.xsl
share/xsl/docbook/fo/fo-rtf.xsl
@@ -231,7 +232,6 @@ share/xsl/docbook/html/component.xsl
share/xsl/docbook/html/db5strip.xsl
share/xsl/docbook/html/division.xsl
share/xsl/docbook/html/docbook.xsl
-share/xsl/docbook/html/docbookng.xsl
share/xsl/docbook/html/ebnf.xsl
share/xsl/docbook/html/footnote.xsl
share/xsl/docbook/html/formal.xsl
@@ -506,6 +506,7 @@ share/xsl/docbook/params/generate.section.toc.level.xml
share/xsl/docbook/params/generate.toc.xml
share/xsl/docbook/params/glossary.as.blocks.xml
share/xsl/docbook/params/glossary.collection.xml
+share/xsl/docbook/params/glossary.sort.xml
share/xsl/docbook/params/glossentry.show.acronym.xml
share/xsl/docbook/params/glosslist.as.blocks.xml
share/xsl/docbook/params/glossterm.auto.link.xml
@@ -596,6 +597,7 @@ share/xsl/docbook/params/index.method.xml
share/xsl/docbook/params/index.number.separator.xml
share/xsl/docbook/params/index.on.role.xml
share/xsl/docbook/params/index.on.type.xml
+share/xsl/docbook/params/index.page.number.properties.xml
share/xsl/docbook/params/index.prefer.titleabbrev.xml
share/xsl/docbook/params/index.preferred.page.properties.xml
share/xsl/docbook/params/index.range.separator.xml
@@ -659,11 +661,14 @@ share/xsl/docbook/params/man.links.list.heading.xml
share/xsl/docbook/params/man.output.base.dir.xml
share/xsl/docbook/params/man.output.encoding.xml
share/xsl/docbook/params/man.output.in.separate.dir.xml
+share/xsl/docbook/params/man.output.lang.in.name.enabled.xml
share/xsl/docbook/params/man.output.manifest.enabled.xml
share/xsl/docbook/params/man.output.manifest.filename.xml
share/xsl/docbook/params/man.output.quietly.xml
share/xsl/docbook/params/man.output.subdirs.enabled.xml
share/xsl/docbook/params/man.segtitle.suppress.xml
+share/xsl/docbook/params/man.string.subst.map.local.post.xml
+share/xsl/docbook/params/man.string.subst.map.local.pre.xml
share/xsl/docbook/params/man.string.subst.map.xml
share/xsl/docbook/params/man.subheading.divider.enabled.xml
share/xsl/docbook/params/man.subheading.divider.xml
@@ -751,6 +756,7 @@ share/xsl/docbook/params/profile.value.xml
share/xsl/docbook/params/profile.vendor.xml
share/xsl/docbook/params/punct.honorific.xml
share/xsl/docbook/params/qanda.defaultlabel.xml
+share/xsl/docbook/params/qanda.in.toc.xml
share/xsl/docbook/params/qanda.inherit.numeration.xml
share/xsl/docbook/params/qanda.nested.in.toc.xml
share/xsl/docbook/params/qanda.title.level1.properties.xml
@@ -894,8 +900,85 @@ 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/roundtrip/blocks-spec.xml
+share/xsl/docbook/roundtrip/dbk2ooo.xsl
+share/xsl/docbook/roundtrip/dbk2pages.xsl
+share/xsl/docbook/roundtrip/dbk2wordml.xsl
+share/xsl/docbook/roundtrip/dbk2wp.xsl
+share/xsl/docbook/roundtrip/docbook-pages.xsl
+share/xsl/docbook/roundtrip/docbook.xsl
+share/xsl/docbook/roundtrip/pages-normalise.xsl
+share/xsl/docbook/roundtrip/param.xsl
+share/xsl/docbook/roundtrip/sections-spec.xml
+share/xsl/docbook/roundtrip/specifications.xml
+share/xsl/docbook/roundtrip/supported.xml
+share/xsl/docbook/roundtrip/template-pages.xml
+share/xsl/docbook/roundtrip/template.dot
+share/xsl/docbook/roundtrip/template.xml
+share/xsl/docbook/roundtrip/wordml-blocks.xsl
+share/xsl/docbook/roundtrip/wordml-final.xsl
+share/xsl/docbook/roundtrip/wordml-normalise.xsl
+share/xsl/docbook/roundtrip/wordml-sections.xsl
+share/xsl/docbook/roundtrip/wordml.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
@@ -919,7 +1002,20 @@ 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.xsl
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
@@ -927,6 +1023,8 @@ 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/rss.xsl
share/xsl/docbook/website/tabular.xsl
share/xsl/docbook/website/toc-tabular.xsl
@@ -935,22 +1033,6 @@ 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
@@ -972,7 +1054,6 @@ share/xsl/docbook/xhtml/component.xsl
share/xsl/docbook/xhtml/db5strip.xsl
share/xsl/docbook/xhtml/division.xsl
share/xsl/docbook/xhtml/docbook.xsl
-share/xsl/docbook/xhtml/docbookng.xsl
share/xsl/docbook/xhtml/ebnf.xsl
share/xsl/docbook/xhtml/footnote.xsl
share/xsl/docbook/xhtml/formal.xsl
@@ -1011,17 +1092,21 @@ 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/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/roundtrip
@dirrm share/xsl/docbook/profiling
@dirrm share/xsl/docbook/params
@dirrm share/xsl/docbook/manpages
diff --git a/textproc/docbook-xsl/distinfo b/textproc/docbook-xsl/distinfo
index 3e882a3a5d1..56fc186ae6d 100644
--- a/textproc/docbook-xsl/distinfo
+++ b/textproc/docbook-xsl/distinfo
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.19 2006/10/22 12:36:53 wiz Exp $
+$NetBSD: distinfo,v 1.20 2007/02/02 19:13:49 wiz Exp $
-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
+SHA1 (docbook-xsl-1.72.0.tar.bz2) = d2b4411652b14842ff77fc51fd675408f76e8147
+RMD160 (docbook-xsl-1.72.0.tar.bz2) = 4df75842c4cda825ba5f36f5e5235e796e49b1bb
+Size (docbook-xsl-1.72.0.tar.bz2) = 1594244 bytes