Michael Smith [Tue, 26 Feb 2008 10:06:02 +0000 (10:06 +0000)]
use make.subheading template to make subheadings for AUTHORS and
COPYRIGHT sections (instead of harcoding roff markup)
Michael Smith [Tue, 26 Feb 2008 10:04:49 +0000 (10:04 +0000)]
put code font around programlisting etc.
Michael Smith [Tue, 26 Feb 2008 10:03:27 +0000 (10:03 +0000)]
embed custom macro definitions in man pages, plus wrap synopsis in
code font
Michael Smith [Tue, 26 Feb 2008 10:00:51 +0000 (10:00 +0000)]
use the make.subheading template to generated SH subheading for
endnotes section.
Michael Smith [Tue, 26 Feb 2008 09:58:56 +0000 (09:58 +0000)]
Added some templates for generating if-then-else conditional
markup in groff, so let's use those instead of hard-coding it in
multiple places...
Michael Smith [Tue, 26 Feb 2008 09:55:32 +0000 (09:55 +0000)]
Initial checkin of some changes related to making PS/PDF output
from "man -l -Tps" look better. The current changes:
- render synopsis and verbatim sections in a monospace/code font
- put a light-grey background behind all programlisting, screen,
and literallayout instances
- prevent SH heads in PS output from being rendered in uppercase
(as they are in console output)
- also display xrefs to SH heads in PS output in normal case
(instead of uppercase)
- draw a line under SH heads in PS output
The changes made to the code to support the above features were:
- added some embedded/custom macros: one for conditionally
upper-casing SH x-refs, one for redefining the SH macro
itself, with some conditional handling for PS output, and
finally a macro for putting a background/screen (filled box)
around a block of text (e.g., a program listing) in PS output
- added utility templates for wrapping blocks of text in code
font; also templates for inline code font
Mauritz Jeanson [Fri, 22 Feb 2008 15:45:36 +0000 (15:45 +0000)]
Added information on how the filename is computed.
Steve Ball [Fri, 22 Feb 2008 06:11:49 +0000 (06:11 +0000)]
Added support for edition.
Steve Ball [Fri, 22 Feb 2008 06:09:58 +0000 (06:09 +0000)]
Removed stylesheets for old, deprecated conversion method.
Steve Ball [Fri, 22 Feb 2008 06:07:31 +0000 (06:07 +0000)]
Added support for Open Office, added edition element, improved list and table support in Word and Pages
Bob Stayton [Thu, 21 Feb 2008 21:37:56 +0000 (21:37 +0000)]
refpurpose nodes now get apply-templates instead of just normalize-space().
Mauritz Jeanson [Thu, 21 Feb 2008 17:25:57 +0000 (17:25 +0000)]
Added preliminary README information for libxslt extensions.
The adjustColumnWidths() function works well for me (tested on
Windows XP with Python 2.5).
Mauritz Jeanson [Thu, 21 Feb 2008 17:10:10 +0000 (17:10 +0000)]
Added a fix to make rowsep apply to the last row of thead in entrytbl.
Mauritz Jeanson [Thu, 21 Feb 2008 16:48:31 +0000 (16:48 +0000)]
Clarified PI usage.
Michael Smith [Thu, 21 Feb 2008 08:40:47 +0000 (08:40 +0000)]
Fixed alignment of first lined of text for each listitem in
orderedlist output for TTY. Existing code seemed to have been
causing an extra undesirable space to appear.
Michael Smith [Thu, 21 Feb 2008 08:37:13 +0000 (08:37 +0000)]
Wrapped some roff conditionals around roff markup for orderedlist
and itemizedlist output, so that the lists look acceptable in PS
output as well as TTY.
Michael Smith [Thu, 21 Feb 2008 04:10:17 +0000 (04:10 +0000)]
Simplified and streamlined handling of output for ANSI-style
funcprototype output, to correct a problem that was causing type
data to be lost in the output parameter definitions. For example,
for an instance like this:
<paramdef>void *<parameter>dataptr</parameter>[]</paramdef>
... the brackets (indicating an array type) were being dropped.
Michael Smith [Wed, 20 Feb 2008 16:49:45 +0000 (16:49 +0000)]
Changed HTML handling of K&R-style paramdef output. The parameter
definitions are no longer output in a table (though the prototype
still is). The reason for the change is that the
kr-tabular-funcsynopsis-mode template was causing type data to be
lost in the output parameter definitions. For example, for an
instance like this:
<paramdef>void *<parameter>dataptr</parameter>[]</paramdef>
... the brackets (indicating an array type) were being dropped.
The easiest way to deal with the problem is to not try to chop up
the parameter definitions and display them in table format, but to
instead just output them as-is. May not look quite as pretty, but
at least we can be sure no information is being lost...
Michael Smith [Wed, 20 Feb 2008 11:42:45 +0000 (11:42 +0000)]
Added the man.funcsynopsis.style parameter. Has the same effect in
manpages output as the funcsynopsis.style parameter has in HTML
output -- except that its default value is 'ansi' instead of 'kr'.
Michael Smith [Wed, 20 Feb 2008 07:00:18 +0000 (07:00 +0000)]
Reworked handling of K&R funcprototype output. It no longer relies
on the HTML kr-tabular templates, but instead just does direct
transformation to roff. For K&R output, it displays the paramdef
output in an indented list following the prototype.
Mauritz Jeanson [Tue, 19 Feb 2008 18:52:35 +0000 (18:52 +0000)]
Made attribute-sets members of the param list. This enables links to attribute-sets in the
reference documentation.
Mauritz Jeanson [Tue, 19 Feb 2008 17:47:30 +0000 (17:47 +0000)]
Fixed typo.
Michael Smith [Mon, 18 Feb 2008 03:38:38 +0000 (03:38 +0000)]
Properly integrated handling for K&R output into manpages
stylesheet. The choice between K&R output and ANSI output is
currently controlled through use of the (HTML) funcsynopsis.style
parameter. Note that because the mechanism does currently rely on
funcsynopsis.style, the default in manpages output is now K&R
(because that's the default of that param). But I suppose I ought
to create a man.funcsynopsis.style and make the default for that
ANSI (to preserve the existing default behavior).
Michael Smith [Mon, 18 Feb 2008 03:32:17 +0000 (03:32 +0000)]
added manpages/pi.xsl file
Michael Smith [Mon, 18 Feb 2008 03:31:15 +0000 (03:31 +0000)]
use .BI handling in K&R funsynopsis output for manpages, just as
we do already of ANSI output
Michael Smith [Mon, 18 Feb 2008 01:51:37 +0000 (01:51 +0000)]
Added "dbman funcsynopsis-style" PI and incorporated it into the
doc build.
Michael Smith [Mon, 18 Feb 2008 01:50:02 +0000 (01:50 +0000)]
updated wording of doc for funcsynopsis-style PI
Michael Smith [Mon, 18 Feb 2008 01:48:15 +0000 (01:48 +0000)]
further change needed for switch from no locale to nb.
Michael Smith [Mon, 18 Feb 2008 00:15:12 +0000 (00:15 +0000)]
ignore nb.xml
Mauritz Jeanson [Sun, 17 Feb 2008 19:08:14 +0000 (19:08 +0000)]
Fixed bug #
1891965 (colsep in entytbl not working).
Michael Smith [Sun, 17 Feb 2008 14:04:36 +0000 (14:04 +0000)]
Corrected language code for nb locale, and restored missing
"startquote" key.
Michael Smith [Sun, 17 Feb 2008 13:26:47 +0000 (13:26 +0000)]
Removed the funcsynopsis.tabular.threshold param. It's no longer
being used in the code and hasn't been since mid 2006.
Michael Smith [Sat, 16 Feb 2008 21:57:31 +0000 (21:57 +0000)]
Implemented initial support for handling tabular K&R output of
funcprototype in manpages output. Accomplished by adding more
templates to the intermediate HTML-to-roff stylesheet that the
build uses to create the manpages/html-synop.xsl stylesheet.
Mauritz Jeanson [Fri, 15 Feb 2008 19:31:59 +0000 (19:31 +0000)]
Added support for title in revhistory. Closes bug #
1842847.
Mauritz Jeanson [Fri, 15 Feb 2008 17:59:16 +0000 (17:59 +0000)]
Added support for the img.src.path parameter for SVG graphics. Closes bug #
1888169.
Mauritz Jeanson [Fri, 15 Feb 2008 17:54:34 +0000 (17:54 +0000)]
Set keep-together.within-column to "auto". This seems to be the most sensible
default value for tables.
Michael Smith [Fri, 15 Feb 2008 06:41:31 +0000 (06:41 +0000)]
Fixed regression that caused an unescaped dash to be output
between refname and refpurpose content. Closes bug #
1894244.
Thanks to Daniel Leidert.
Michael Smith [Fri, 15 Feb 2008 02:58:44 +0000 (02:58 +0000)]
Committed changes to ja locale file, from Akagi Kobayashi. Adds
bracket quotes around many xref instances that did not have them
before.
Jirka Kosek [Wed, 13 Feb 2008 11:55:47 +0000 (11:55 +0000)]
Added support for showing foil number
Michael Smith [Wed, 13 Feb 2008 02:49:55 +0000 (02:49 +0000)]
Added support for orgname in authorgroup. Thanks to Camille
Bégnis.
Michael Smith [Tue, 12 Feb 2008 15:12:34 +0000 (15:12 +0000)]
"no" locale is now "nb"
Michael Smith [Tue, 12 Feb 2008 15:10:32 +0000 (15:10 +0000)]
"no" locale is now "nb"
Michael Smith [Tue, 12 Feb 2008 14:59:44 +0000 (14:59 +0000)]
Update Norwegian Bokmål translation. Thanks to Hans F. Nordhaug.
Michael Smith [Tue, 12 Feb 2008 14:50:40 +0000 (14:50 +0000)]
per message from Hans F. Nordhaug, correct identifier for
Norwegian Bokmål is "nb" (not "no") and has been for quite some
time now...
Mauritz Jeanson [Wed, 6 Feb 2008 19:46:32 +0000 (19:46 +0000)]
Small doc cleanup (dbfo float-type).
Mauritz Jeanson [Wed, 6 Feb 2008 19:34:43 +0000 (19:34 +0000)]
Added missing space.
Mauritz Jeanson [Mon, 4 Feb 2008 19:27:05 +0000 (19:27 +0000)]
Insert commas between multiple copyright holders.
Mauritz Jeanson [Mon, 4 Feb 2008 17:31:14 +0000 (17:31 +0000)]
Several small documentation fixes.
Norman Walsh [Sat, 2 Feb 2008 00:29:28 +0000 (00:29 +0000)]
Fix bug where component titles inside info elements were not handled properly
Michael Smith [Thu, 31 Jan 2008 12:26:27 +0000 (12:26 +0000)]
Converted ja.xml source file to use real unicode characters so
that the actual glyphs so up when you edit it in a text editor
(instead of the character references).
Michael Smith [Thu, 31 Jan 2008 12:05:40 +0000 (12:05 +0000)]
Checked in changes to ja.xml locale file. Thanks to Akagi Kobayashi.
Michael Smith [Wed, 16 Jan 2008 11:04:07 +0000 (11:04 +0000)]
Moved dbhtml_stop-chunking embedded doc into alphabetical order,
fixed text of TCG section it see-also'ed.
Mauritz Jeanson [Tue, 15 Jan 2008 17:09:11 +0000 (17:09 +0000)]
Corrected repository URL.
David Cramer [Mon, 14 Jan 2008 18:44:30 +0000 (18:44 +0000)]
Added support for <?dbhtml stop-chunking?> processing instruction
David Cramer [Mon, 14 Jan 2008 16:57:11 +0000 (16:57 +0000)]
Added support for <?dbhtml stop-chunking?> processing instruction
Steve Ball [Wed, 9 Jan 2008 20:48:30 +0000 (20:48 +0000)]
Fixed bug in WordML table handling, improved table handling for Pages 08, synchronised WordML and Pages templates.
Michael Smith [Wed, 9 Jan 2008 11:16:59 +0000 (11:16 +0000)]
Don't build reference.pdf file except for official releases
(because it takes too damn long to build...)
Michael Smith [Wed, 9 Jan 2008 11:15:51 +0000 (11:15 +0000)]
Make sure to remove RELEASE-NOTES-TMP.xml after build of HTML for
release notes; when building catalog.xml file, use --output flag
with xmllint instead of shell redirect (because catalog.xml build
seems to be choking otherwise...)
Mauritz Jeanson [Sat, 5 Jan 2008 16:06:30 +0000 (16:06 +0000)]
Added modifications to support nested set elements. See bug #
1853172.
David Cramer [Mon, 31 Dec 2007 18:37:28 +0000 (18:37 +0000)]
Added normalize-space to xsl:sorts to avoid missorting of glossterms due to stray leading spaces.
David Cramer [Mon, 31 Dec 2007 18:33:28 +0000 (18:33 +0000)]
Fixed bug #
1854199: glossary.xsl should use the sortas attribute on glossentry. Also added normalize-space to avoid missorting due to stray leading spaces.
David Cramer [Mon, 31 Dec 2007 17:47:44 +0000 (17:47 +0000)]
Fixed bug #
1854199: glossary.xsl should use the sortas attribute on glossentry
Michael Smith [Sat, 29 Dec 2007 12:27:31 +0000 (12:27 +0000)]
Fixed problem with dots being escaped in filenames of generated
man files. Closes #
1827195. Thanks to Daniel Leidert.
Michael Smith [Fri, 28 Dec 2007 04:49:48 +0000 (04:49 +0000)]
Clarify which parts of the release-notes source file need to be
added/edited for each release.
Michael Smith [Fri, 28 Dec 2007 04:47:31 +0000 (04:47 +0000)]
Also set the release type to "snapshot" when the version number
contains the string "-pre"
Michael Smith [Thu, 27 Dec 2007 17:51:25 +0000 (17:51 +0000)]
Fixed problem with snapshot build of partial release-notes file.
Michael Smith [Wed, 26 Dec 2007 17:40:49 +0000 (17:40 +0000)]
Added support for processing structfield (was appearing in roff
output surrounded by HTML <em> tags; fixed so that it gets roff
ital markup). Closes bug #
1858329. Thanks to Sam Varshavchik.
Mauritz Jeanson [Fri, 21 Dec 2007 16:28:18 +0000 (16:28 +0000)]
Added a template for citebiblioid. The hyperlink target is the parent of the referenced biblioid,
and the "hot text" is the biblioid itself enclosed in brackets.
Bob Stayton [Wed, 19 Dec 2007 21:23:30 +0000 (21:23 +0000)]
Fixed bug #
1850340 that added namespace to numerical character
references.
Mauritz Jeanson [Wed, 19 Dec 2007 18:27:33 +0000 (18:27 +0000)]
Wording fixes.
Mauritz Jeanson [Wed, 19 Dec 2007 17:52:39 +0000 (17:52 +0000)]
An update to r7601: changed $w to [\w.]+ to ensure that the setup-language-variable entity is not
modified by xslns-build.
Jirka Kosek [Mon, 17 Dec 2007 13:56:23 +0000 (13:56 +0000)]
Preparing for 1.0.1 release
Norman Walsh [Sun, 16 Dec 2007 17:13:38 +0000 (17:13 +0000)]
Support Saxon 9
Mauritz Jeanson [Fri, 14 Dec 2007 18:06:11 +0000 (18:06 +0000)]
Removed the template matching "ng:link|db:link" (in order to make @xlink:show
work with <link> elements). As far as I can tell, this template is no longer needed.
Mauritz Jeanson [Fri, 14 Dec 2007 17:48:38 +0000 (17:48 +0000)]
Added support for @xlink:show in the simple.xlink template. The "new" and "replace"
values are supported (corresponding to values of "_blank" and "_top" for the
ulink.target parameter). I have assumed that @xlink:show should override ulink.target
for external URI links. This closes bugs #
1762023 and #
1727498.
Mauritz Jeanson [Wed, 12 Dec 2007 20:07:57 +0000 (20:07 +0000)]
Moved declaration of comment.block.parents entity to common/entities.ent.
Mauritz Jeanson [Wed, 12 Dec 2007 20:01:02 +0000 (20:01 +0000)]
Changed \w+ to $w in the regexp that matches entity declarations (indexentitydecl subroutine).
The reason is that \w+ does not match entity names that contain periods. See bug #
1847825.
Marta Vaclavikova [Mon, 10 Dec 2007 12:47:20 +0000 (12:47 +0000)]
error message
Marta Vaclavikova [Mon, 10 Dec 2007 12:46:43 +0000 (12:46 +0000)]
error message
Marta Vaclavikova [Mon, 10 Dec 2007 12:34:27 +0000 (12:34 +0000)]
assing correct parameters
Marta Vaclavikova [Sun, 9 Dec 2007 23:56:45 +0000 (23:56 +0000)]
version of xsl
Marta Vaclavikova [Sun, 9 Dec 2007 23:54:34 +0000 (23:54 +0000)]
parsing errors
Marta Vaclavikova [Sun, 9 Dec 2007 23:54:02 +0000 (23:54 +0000)]
add message
Marta Vaclavikova [Sun, 9 Dec 2007 23:36:50 +0000 (23:36 +0000)]
reaction on missing type
Marta Vaclavikova [Sun, 9 Dec 2007 23:25:40 +0000 (23:25 +0000)]
changed style of file loading
Marta Vaclavikova [Sun, 9 Dec 2007 23:25:26 +0000 (23:25 +0000)]
changed style of file loading
Marta Vaclavikova [Sun, 9 Dec 2007 22:48:13 +0000 (22:48 +0000)]
decimal point
Marta Vaclavikova [Sun, 9 Dec 2007 22:22:32 +0000 (22:22 +0000)]
no longer needed
Jirka Kosek [Thu, 6 Dec 2007 14:43:30 +0000 (14:43 +0000)]
Improved description of setup process
Jirka Kosek [Tue, 4 Dec 2007 21:53:30 +0000 (21:53 +0000)]
Moving to proper place
Jirka Kosek [Tue, 4 Dec 2007 10:39:01 +0000 (10:39 +0000)]
Added new rules to profile all content generated by HTML Help (including alias files)
Mauritz Jeanson [Mon, 3 Dec 2007 17:43:24 +0000 (17:43 +0000)]
Updated message about unmatched element.
Mauritz Jeanson [Mon, 3 Dec 2007 17:02:33 +0000 (17:02 +0000)]
Added link to profiling chapter of TCG.
David Cramer [Mon, 3 Dec 2007 03:22:06 +0000 (03:22 +0000)]
Use sortas attributes (if they exist) when sorting indexterms
Michael Smith [Sat, 1 Dec 2007 23:13:01 +0000 (23:13 +0000)]
Use grep to filter out xml declaration generated in output from
grabbing values from VERSION and .svninfo.xml files with XSLT.
Mauritz Jeanson [Fri, 30 Nov 2007 17:22:54 +0000 (17:22 +0000)]
Added an update the fix made in revision 7528 (handling of xref/link in no.anchor.mode mode).
Having xref in title is not a problem as long as the target is not an ancestor element.
Closes bug #
1838136.
Note that an xref that is in a title and whose target is an ancestor element is still not
rendered in the TOC. This could be considered a bug, but on the other hand I cannot really
see the point in having such an xref in a document.
Michael Smith [Sat, 24 Nov 2007 15:57:13 +0000 (15:57 +0000)]
Remove xsl:output and omit-xml-declaration element, because it
seems to be causing problems with xsltproc. Closes bug #
1785732.
Thanks to Denis Gillain for reporting.
I remember that the reason I added this originally was to work
around some other but in xsltproc (I think it was that it was
emitting an xml declaration even when output method is set to
text, or something) so this change is going to probably going to
cause a regression of that, but oh well
Michael Smith [Fri, 23 Nov 2007 09:13:01 +0000 (09:13 +0000)]
Changes from Federico Zenith
Mauritz Jeanson [Mon, 19 Nov 2007 18:38:43 +0000 (18:38 +0000)]
Fixed typo (refsynopsysdiv -> refsynopsisdiv).
Steve Ball [Tue, 6 Nov 2007 12:32:39 +0000 (12:32 +0000)]
fix caption, attributes