Michael Smith [Thu, 9 Mar 2006 11:04:07 +0000 (11:04 +0000)]
Fixed handling of admonitions that are children of Para element.
Previously, handling of Caution, Important, Note, Tip, Warning
fails if they are children of Para. The reason is that they are
not included in the list of elements that we check when handling
"mixed block" content. Fixed by adding them to the list.
Closes bug #1446282. Thanks to Daniel Leidert for reporting.
Michael Smith [Wed, 8 Mar 2006 12:08:37 +0000 (12:08 +0000)]
Changed to store uncompressed snapshot contents on build host
instead of uploading to remote host (SF web server). (Because
uncompressed docbook-xsl distro now runs to 20Mb, which cuts
pretty deep into the 100Mb disk-space quota for the project.) I
set up Apache rewrites in .htaccess files in the snapshots/xsl and
snapshots/xsl2 dirs at the SF site to redirect requests for those
to docbook.xml-doc.org/snapshots instead.
Michael Smith [Wed, 8 Mar 2006 11:57:07 +0000 (11:57 +0000)]
Made adjustments to deal with relatively recent changes that have
apparently been made in GNU tar: (1) rearranged args into an order
acceptable to the new tar, and (2) added the "P" switch to stop it
from complaining about about the absolute path name specified for
the tar.exclude file.
David Cramer [Mon, 6 Mar 2006 22:19:20 +0000 (22:19 +0000)]
Number figures, examples, and tables from book if there is no prefix (i.e. if chapter.autolabel is set to 0). This avoids having the list of figures where the figures mysteriously restart their numeration periodically when chapter.autolabel is set to 0.
Bob Stayton [Mon, 6 Mar 2006 17:59:53 +0000 (17:59 +0000)]
Added meta name="keywords", same as meta name="keyword",
because DaveP says plural is more common usage. Kept old
meta in case someone is dependent on it.
Jirka Kosek [Mon, 6 Mar 2006 07:47:42 +0000 (07:47 +0000)]
Profiling now works together with namespace stripping (V5 documents). Namespace striping should work with all stylesheets named profile-, even if they are not supporting namespace stripping in a non-profiling variant.
Norman Walsh [Fri, 3 Mar 2006 10:31:51 +0000 (10:31 +0000)]
Convert class to type on refmiscinfo; fix bug in title support for reference; support new class/otherclass attribute co-constraints; fix pubsnumber class on biblioid; changed version to 5.0; convert entityref to fileref
Norman Walsh [Thu, 2 Mar 2006 16:33:40 +0000 (16:33 +0000)]
Fixed RFE 1416903 (added cover); corrected "pubnumber" typo; allow
title/titleabbrev/subtitle anywhere in info, not just at the
beginning; renamed "sgmlcomment" to just "comment"; renamed the
class attribute of refmiscinfo to type; added descriptions for
many more attribute values.
Michael Smith [Tue, 28 Feb 2006 15:24:37 +0000 (15:24 +0000)]
xmldepend.xsl - Find files that an XML document refers to/depends on.
From Paul DuBois <paul@kitebird.com>
Can be used to build Makefile dependency lists.
Dependencies are defined as:
- Files named in <xi:xinclude> elements. These must be traversed to
find any subdependencies, unless parse attribute is "text".
- Files named by the fileref attribute of any other element.
Jirka Kosek [Tue, 6 Dec 2005 21:43:12 +0000 (21:43 +0000)]
Moved profiling stage out of templates. This make possible to reuse profiled content by several templates and still maintaing node indentity (needed for example for HTML Help where content is processed multiple times).
I don't know why this was not on the top level before. Maybe some XSLT processors choked on it. I hope this will be OK now.