Jirka Kosek [Sun, 21 Nov 2004 19:53:15 +0000 (19:53 +0000)]
It is not possible to use variable reference in template match. I change it back and preserved intended semantics. But there might be more elegant way to do it, I did't have time to investigate it, I just wanted to process my document :-(
Michael Smith [Sat, 20 Nov 2004 11:49:17 +0000 (11:49 +0000)]
bug #1007414 & patch #971730 - passivetex outputs "* 0.60 + 1em"
garbage in lists (reported by Alex Roitman and James William Pye)
::PROBLEM
Literal stuff "* 0.60 + 1em" showing up in listitem PDF output
generated through passivetex
::CAUSE
Logic that outputs non-constant size expressions like "4em *
0.60 + 1em" was added to stylesheets to improve look of list
formatting. But passivetex can only handle constant sizes; so,
instead of doing the math, it spits out the literal expressions
in output.
::FIX
Added workaround - some conditional logic to fall back to
constant values if passivetex.extensions param is non-zero.
::AFFECTED AREAS
Should only affect FO output when passivetex.extensions is non-zero
Michael Smith [Fri, 19 Nov 2004 12:19:06 +0000 (12:19 +0000)]
Bug #1066753 -- subtitle is severely broken (reported by Sam Steingold)
::PROBLEM
In (X)HTML output, subtitle for the simplesect element generates an
h2 head, no matter at what level in the sectioning hiearchy the
simplesect occurs; end up with cases where a simplesect is
output with (for example), an h4 title but a h2 subtitle
::CAUSE and FIX
No template for simplesect/subtitle in the set of templates that
call the section.subtitle named template, so stylesheets fell
back to using the titlepage.mode template for subtitle
::FIX
Added simplesect/subtitle to the set of templates that
call the section.subtitle named template.
::AFFECTS
Only affects (X)HTML output of simplesect/subtitle; nothing else
Jirka Kosek [Wed, 17 Nov 2004 12:29:11 +0000 (12:29 +0000)]
Added support for windows-1252 output encoding. This is handy for generating HTML Help for Western European Languages. Now you can use windows-1252 when specifying htmlhelp.encoding or chunker.output.encoding. But please note that in order to use this encoding name, you must set the following option to your JVM: -Dencoding.windows-1252=com.nwalsh.saxon.Windows1252
Michael Smith [Mon, 25 Oct 2004 22:05:18 +0000 (22:05 +0000)]
Feature Request #1008804 (command in cmdsynopsis is not indented)
Added some CSS magic to enable the requested effect; this change:
- makes all cmdsynopses monospaced
- creates CSS floats that make a hanging indent (aka tabular
presentation) for cmdysnopsis; command name appears first
column, everything else (arg/group/synopfragment) goes to
second column
Probably should also add parameters to toggle behavior on/off...
Michael Smith [Mon, 25 Oct 2004 11:20:31 +0000 (11:20 +0000)]
Request #585543 (Quickref-style reference ToC)
Wrapped ToC refentrytitle/refname and refpurpose in
span with class values. This makes it possible to style
them using a CSS stylesheet containing something like below.
Implementing tablular look for FO output will have to wait...
Jirka Kosek [Sun, 24 Oct 2004 09:44:56 +0000 (09:44 +0000)]
Fixed bug #1005990. Column spans are now working also in entrytbl element, not only in table elements. However due to complexity of table code I am not completely sure whether I fixed it on all places.
Michael Smith [Thu, 21 Oct 2004 20:23:06 +0000 (20:23 +0000)]
Bug #1049155 (support Emphasis tag in man/groff output)
Added support for converting <emphasis>foo</emphasis> to groff italic
and <emphasis role='bold'>foo</emphasis> to bold.
Controlled by emphasis.propagates.style param, but not documented
yet using litprog system. Will do that next (planning to add some
other parameter-controllable options for hyphenation and
handling of line spacing).