]> granicus.if.org Git - docbook-dsssl/log
docbook-dsssl
19 years agoRemoved "install.sh" as dependency. It is not necessary for all
Michael Smith [Fri, 7 Oct 2005 04:49:18 +0000 (04:49 +0000)]
Removed "install.sh" as dependency. It is not necessary for all
releases (not for css-xml, for example).

19 years agoA <screen> that has 20+ callouts. Useful for testing rendering of
Michael Smith [Fri, 7 Oct 2005 01:34:14 +0000 (01:34 +0000)]
A <screen> that has 20+ callouts. Useful for testing rendering of
callout bugs that go above 10 (or 15).

19 years agoMove the stripns code to a common location; update @fileref and @entityref attributes...
Norman Walsh [Thu, 6 Oct 2005 16:27:40 +0000 (16:27 +0000)]
Move the stripns code to a common location; update @fileref and @entityref attributes in an attempt to handle the fact that the base URI gets mangled by the stripping copy.

19 years agoPick better defaults
Norman Walsh [Thu, 6 Oct 2005 12:01:28 +0000 (12:01 +0000)]
Pick better defaults

19 years agoWe've switched to ant for building these class files
Norman Walsh [Thu, 6 Oct 2005 11:47:54 +0000 (11:47 +0000)]
We've switched to ant for building these class files

19 years agoCorrected IDs of linkend attributes in some callouts.
Michael Smith [Thu, 6 Oct 2005 04:09:20 +0000 (04:09 +0000)]
Corrected IDs of linkend attributes in some callouts.

19 years agoCorrected minor copy-paste error (orderedlist template picking up
Michael Smith [Thu, 6 Oct 2005 04:08:08 +0000 (04:08 +0000)]
Corrected minor copy-paste error (orderedlist template picking up
value of itemizedlist.label.width instead of orderedlist.label.width).

19 years agoSupport default label width parameters for itemized and ordered lists
Norman Walsh [Wed, 5 Oct 2005 21:05:13 +0000 (21:05 +0000)]
Support default label width parameters for itemized and ordered lists

19 years agoComment out debugging message
Norman Walsh [Wed, 5 Oct 2005 21:04:21 +0000 (21:04 +0000)]
Comment out debugging message

19 years agoSupport article/info/title (DocBook 5.0)
Jirka Kosek [Wed, 5 Oct 2005 15:56:04 +0000 (15:56 +0000)]
Support article/info/title (DocBook 5.0)

19 years agoProblem::
Michael Smith [Wed, 5 Oct 2005 07:23:19 +0000 (07:23 +0000)]
Problem::
In output of <xref endterm="foo"/> to top-level sections, titles
are not rendered in all caps.

Cause::
<xref endterm="foo"/> is handled in the HTML stylesheets by a
different mode than that used for normal Xref output.

Fix::
Added mode template for processing output of first-level section
titles when the are referred to via Endterm.

Closes #1215547. Thanks to Jens Granseuer for reporting the
problem.

19 years agoProblem::
Michael Smith [Wed, 5 Oct 2005 07:00:57 +0000 (07:00 +0000)]
Problem::
Number generated for Synopfragref output, but no number generated
in Synopfragment output.

Cause::
manpages stylesheets import the HTML stylesheets. manpages
stylesheets do not include a Synopfragref template, so they were
just picking up the HTML one. However, the manpages stylesheet
did have a Synopfragment template, which overrode the HTML one.
Problem is that the manpages Synopfragment was not complete.

Fix::
Correctly "ported" Synopfragment template from HTML stylesheets
and added manpages-specific character markup and features. As a
result of these changes, in the output now:

  - correct numbers a generated for Synopfragment output

  - Synopfragref contentes are italicized, as they should be

  - Synopfragment output is output with a hanging indent (similar
    to the hanging indent used for Cmysynopsis output)

  - for cases where there are a group of Synopfragments together,
    a line of vertical space is generated only before first, and
    suppressed before subsequent ones.

Closes #599439. Thanks to Dennis Grace for reporting the problem
(long, long ago) and for submitting a patch (which was used as-is
but neverthelesss provided some insights).

19 years agoProblem::
Michael Smith [Wed, 5 Oct 2005 05:28:49 +0000 (05:28 +0000)]
Problem::
Extra space added before Arg output Cmdsynopsis in some cases
where the Arg contents appear at the beginning of a line.

  bdmond [-s, --start]
          [-k, --stop]
          [-h, --help]
          [-V, --version]

Cause::
Some other fix made around the time of v1.68.0 introduced a
regression in behavior for cases where an Arg is preceded by an
Sbr. The Sbr produces a line break as expected, but the line break
is followed by a space and then the contents of the following Arg.

Fix::
The code for processing Args now checks to see if the first
preceding sibling of the Arg is an Sbr. If so, it does not output
the additional space; otherwise, it outputs the space.

-  <xsl:if test="position()>1"><xsl:value-of select="$sepchar"/></xsl:if>
+  <xsl:if test="position()>1 and
+                not(preceding-sibling::*[1][self::sbr])"
+          ><xsl:value-of select="$sepchar"/></xsl:if>

Closes #1313481. Thanks to Costin Stroie for reporting the problem
and pointing out where the cause was in the code.

19 years agoNo need to run chmod on gz files that aren't there any more.
Michael Smith [Mon, 3 Oct 2005 09:57:55 +0000 (09:57 +0000)]
No need to run chmod on gz files that aren't there any more.

19 years agoOnly upload bz2 and zip files, and delete bz2 after upload.
Michael Smith [Mon, 3 Oct 2005 09:50:37 +0000 (09:50 +0000)]
Only upload bz2 and zip files, and delete bz2 after upload.

19 years agoIgnore .make-catalog.xsl
Michael Smith [Mon, 3 Oct 2005 08:18:13 +0000 (08:18 +0000)]
Ignore .make-catalog.xsl

19 years agoReverted previous change and added DIFFTAG check. Problem was not
Michael Smith [Mon, 3 Oct 2005 08:09:45 +0000 (08:09 +0000)]
Reverted previous change and added DIFFTAG check. Problem was not
in cvs2cl invocation; error occurred because no value was found
for DIFFTAG; in that case, we just want to skip generating
LatestChanges.

19 years agoRemove redundant and incorrect invocation of cvs2cl.
Michael Smith [Mon, 3 Oct 2005 07:41:02 +0000 (07:41 +0000)]
Remove redundant and incorrect invocation of cvs2cl.

19 years agoDon't need to build gentext (distros build the files).
Michael Smith [Mon, 3 Oct 2005 06:54:00 +0000 (06:54 +0000)]
Don't need to build gentext (distros build the files).

19 years agoinstall.sh now depends on catalog.xml also
Michael Smith [Mon, 3 Oct 2005 06:52:39 +0000 (06:52 +0000)]
install.sh now depends on catalog.xml also

19 years agoMade make-catalog.xsl general-purpose and moved to releasetools
Michael Smith [Mon, 3 Oct 2005 04:54:27 +0000 (04:54 +0000)]
Made make-catalog.xsl general-purpose and moved to releasetools
dir so it can be used with other modules.

19 years agoAdded support for case when personname doesn't contain specific name markup (as allow...
Jirka Kosek [Sun, 2 Oct 2005 15:55:50 +0000 (15:55 +0000)]
Added support for case when personname doesn't contain specific name markup (as allowed in DocBook 5.0)

19 years agoGenerate localized title for Refsynopsisdiv if no appropriate
Michael Smith [Thu, 29 Sep 2005 15:00:45 +0000 (15:00 +0000)]
Generate localized title for Refsynopsisdiv if no appropriate
Title descendant found in source. Closes #1212398. This change
makes behavior for the Synopsis title consistent with the behavior
of HTML and manpages output.

Also, added xsl:use-attribute-sets="normal.para.spacing" to block
generated for Cmdsynopsis output. Previously, that block had no
spacing at all specified, which resulted it being crammed up to
closely to the Synopsis head.

19 years agoAdded support for localizing punctuation in index entries.
Bob Stayton [Thu, 29 Sep 2005 09:42:42 +0000 (09:42 +0000)]
Added support for localizing punctuation in index entries.

19 years agoAdded parameters to support localization of index item
Bob Stayton [Thu, 29 Sep 2005 07:19:43 +0000 (07:19 +0000)]
Added parameters to support localization of index item
punctuation.

19 years agoAdded index.number.separator, index.range.separator, and
Bob Stayton [Thu, 29 Sep 2005 07:18:37 +0000 (07:18 +0000)]
Added index.number.separator, index.range.separator, and
index.term.separator parameters to support localization
of punctuation in index entries.

19 years agoAdded parameters to localize punctuation in indexes.
Bob Stayton [Thu, 29 Sep 2005 07:11:37 +0000 (07:11 +0000)]
Added parameters to localize punctuation in indexes.

19 years agoFixed syntax of date templates to not use text attribute but
Bob Stayton [Thu, 29 Sep 2005 05:29:09 +0000 (05:29 +0000)]
Fixed syntax of date templates to not use text attribute but
use text element content.

19 years agoAdded "Cross References" section in HTML doc (for consistency with
Michael Smith [Thu, 29 Sep 2005 05:01:55 +0000 (05:01 +0000)]
Added "Cross References" section in HTML doc (for consistency with
the FO doc). Also, moved the existing FO "Cross References"
section to follow the "Linking" section.

19 years agoAdded ID attribues to all Reference elements (e.g., id="tables"
Michael Smith [Thu, 29 Sep 2005 04:52:05 +0000 (04:52 +0000)]
Added ID attribues to all Reference elements (e.g., id="tables"
for the doc for section on Table params). So pages for all
subsections of ref docs now have stable filenames instead of
arbitrary generated filenames.

19 years agoRemoved misguided code intended for normalizing whitespace in term
Michael Smith [Wed, 28 Sep 2005 18:26:23 +0000 (18:26 +0000)]
Removed misguided code intended for normalizing whitespace in term
output for HTML and FO. (It's not necessary for those, though it is
still needed in manpages output because we're using the .TP macro,
and first line following that is treated differently than the
subsequent lines. So we need to get rid of any embedded line
breaks from within the Term source.)

19 years agoAdded two new parameters for handling of multi-term varlistentry
Michael Smith [Wed, 28 Sep 2005 09:36:46 +0000 (09:36 +0000)]
Added two new parameters for handling of multi-term varlistentry
elements:

variablelist.term.break.after:
  When the variablelist.term.break.after is non-zero, it will
  generate a line break after each term multi-term varlistentry.

variablelist.term.separator:
  When a varlistentry contains multiple term elements, the string
  specified in the value of the variablelist.term.separator
  parameter is placed after each term except the last. The default
  is ", " (a comma followed by a space). To suppress rendering of
  the separator, set the value of variablelist.term.separator to
  the empty string ("").

These parameters are primarily intended to be useful if you have
multi-term varlistentries that have long terms.

Closes #1306676. Thanks to Sam Steingold for providing an example
"lots of long terms" doc that demonstrated the value of having
these options.

Also, added normalize-space() call to processing of each term.

This change affects all output formats (HTML, PDF, manpages). The
default behavior should pretty much remain the same as before, but
it is possible (as always) that the change may introduce some new
bugginess.

19 years agoAdded a nested variablelist with a varlistentry that contains
Michael Smith [Wed, 28 Sep 2005 06:47:30 +0000 (06:47 +0000)]
Added a nested variablelist with a varlistentry that contains
multiple terms. (For testing handling of
variablelist.term.separator and variablelist.term.break.after).

19 years agoFixed bug #1306070 set with 2 books: wrong page numbering on 2nd book.
Bob Stayton [Wed, 28 Sep 2005 06:38:19 +0000 (06:38 +0000)]
Fixed bug #1306070 set with 2 books: wrong page numbering on 2nd book.

19 years agoProblem:
Michael Smith [Wed, 28 Sep 2005 02:23:47 +0000 (02:23 +0000)]
Problem:
Garbage characters appear in content of Title attribute in HTML
output.

Cause:
Contents of Alt element, including line breaks, were being copied
over "as is" to value of Title attribute in HTML output. Line
breaks in Title appear a garbage characters when displayed as
pop-up "tool text".

Fix:
Added call to normalize-space() when transforming content of Alt
for HTML output. Closes #1254532. Thanks to Sam Steingold for
reporting the problem.

19 years agoAdded "wrapper-name" param to inline.charseq named template,
Michael Smith [Tue, 27 Sep 2005 04:37:56 +0000 (04:37 +0000)]
Added "wrapper-name" param to inline.charseq named template,
enabling it to output inlines other than just "span". Acronym and
Abbrev templates now use inline.charseq to output HTML "acronym"
and "abbr" elements (instead of "span"). Closes #1305468. Thanks
to Sam Steingold for suggesting the change.

19 years agoFixed bug [ 1292052 ] acronym/remark in qandaentry/question TOC.
Bob Stayton [Sun, 25 Sep 2005 20:36:07 +0000 (20:36 +0000)]
Fixed bug [ 1292052 ] acronym/remark in qandaentry/question TOC.

19 years agoMoved olink page number reference template to xref.xsl.
Bob Stayton [Sun, 25 Sep 2005 01:59:14 +0000 (01:59 +0000)]
Moved olink page number reference template to xref.xsl.

19 years agoMoved olink page citation template to xref.xsl.
Bob Stayton [Sun, 25 Sep 2005 01:58:16 +0000 (01:58 +0000)]
Moved olink page citation template to xref.xsl.

19 years agoAdd sidebar titlepage placeholder attset for styles.
Bob Stayton [Sun, 25 Sep 2005 01:57:22 +0000 (01:57 +0000)]
Add sidebar titlepage placeholder attset for styles.

19 years agoFixed incorrect variable name.
Bob Stayton [Sun, 25 Sep 2005 01:56:12 +0000 (01:56 +0000)]
Fixed incorrect variable name.

19 years agoFixed bug [ 1256277 ] sidebarinfo not supported, so now sidebarinfo
Bob Stayton [Sun, 25 Sep 2005 01:55:26 +0000 (01:55 +0000)]
Fixed bug [ 1256277 ] sidebarinfo not supported, so now sidebarinfo
is supported.

19 years agoAdd titlepage for sidebar.
Bob Stayton [Sun, 25 Sep 2005 01:37:28 +0000 (01:37 +0000)]
Add titlepage for sidebar.

19 years agoFixed bug [ 1261896 ] Section title's footnotes in page header.
Bob Stayton [Sat, 24 Sep 2005 23:34:37 +0000 (23:34 +0000)]
Fixed bug [ 1261896 ] Section title's footnotes in page header.

19 years agoFixed bug [ 1261811 ] Redundant output of b and anchor element with identical id.
Bob Stayton [Sat, 24 Sep 2005 23:03:41 +0000 (23:03 +0000)]
Fixed bug [ 1261811 ] Redundant output of b and anchor element with identical id.

19 years agoFixed handling of %p in olink xrefstyle templates.
Bob Stayton [Fri, 23 Sep 2005 23:10:33 +0000 (23:10 +0000)]
Fixed handling of %p in olink xrefstyle templates.

19 years agoFixed set.flow.properties to match on draft page-masters too.
Bob Stayton [Wed, 21 Sep 2005 19:18:20 +0000 (19:18 +0000)]
Fixed set.flow.properties to match on draft page-masters too.

19 years agoConvert 'no' to string in default value.
Bob Stayton [Wed, 21 Sep 2005 00:31:28 +0000 (00:31 +0000)]
Convert 'no' to string in default value.

19 years agoImplemented RFE #1292615.
Jirka Kosek [Tue, 20 Sep 2005 19:42:57 +0000 (19:42 +0000)]
Implemented RFE #1292615.

Added bunch of new parameters (attribute sets) that affect list presentation: list.block.properties, itemizedlist.properties, orderedlist.properties, itemizedlist.label.properties and orderedlist.label.properties. Default behaviour of stylesheets has not been changed but further customizations will be much more easier.

19 years agoFixed handling of groff font requests output for Refsect1/Title
Michael Smith [Tue, 20 Sep 2005 11:30:45 +0000 (11:30 +0000)]
Fixed handling of groff font requests output for Refsect1/Title
instances. Closes #1296252. Thanks to Paul DuBois for reporting.

Problem:
Instances of \\FB (instead of \\fB) in output for
Refsect1/Title.

Cause:
All content of Refsect1/Title gets uppercased (including any groff
requests that end up in the output.

Fix:
Added s/\\FB/\fB/, etc., matches to value of man.string.subst.map
param. (man.string.subst.map is basically used for "cleaning up"
borked groff markup output from initial formatting pass).

Affects:
This affects output of titles for all Refsect1-level headings in
manpages output.

19 years agoMade some minor changes to get deal with a couple corner cases.
Michael Smith [Tue, 20 Sep 2005 05:42:26 +0000 (05:42 +0000)]
Made some minor changes to get deal with a couple corner cases.

If somebody (say, Mike) checks in the VERSION file twice with the
same change description, it's possible for the merged changelog to
end with up something like:

  * VERSION, VERSION: Version 1.69.1 released.

The existing version of mergechangelogs got confused by that, so I
added a regex match to catch instances like that.

Also, in running the snapshot builds, with the way I have the
snapshot build currently set up, it's useful for the build to just
automatically assume we are at version X.XX.1 if the previous
version was X.XX.0.
----------------------------------------------------------------------

19 years agofixed handling linebreaks when generating WordML
Steve Ball [Mon, 19 Sep 2005 13:06:15 +0000 (13:06 +0000)]
fixed handling linebreaks when generating WordML
added Apple Pages support

19 years agoImplemented RFE #1242092.
Jirka Kosek [Fri, 16 Sep 2005 14:07:35 +0000 (14:07 +0000)]
Implemented RFE #1242092.

You can enable crop marks in your document by setting crop.marks=1 and xep.extensions=1.
Appearance of crop marks can be controlled by parameters crop.mark.bleed (6pt), crop.mark.offset (24pt) and crop.mark.width (0.5pt).

Also there is new named template called user-xep-pis. You can overwrite it in order to produce some PIs that can control XEP as described in http://www.renderx.com/reference.html#Output_Formats

19 years agoHandle the case where the imageFn is actually a URI. This still needs work.
Norman Walsh [Fri, 16 Sep 2005 12:40:37 +0000 (12:40 +0000)]
Handle the case where the imageFn is actually a URI. This still needs work.

19 years agoApplied patch #1048856 from techtonik. HTML output is used instead of d-o-e and text...
Jirka Kosek [Fri, 16 Sep 2005 08:17:11 +0000 (08:17 +0000)]
Applied patch #1048856 from techtonik. HTML output is used instead of d-o-e and text method.

19 years agoRemoved colspan on tr elements since it is invalid and
Bob Stayton [Mon, 12 Sep 2005 08:10:03 +0000 (08:10 +0000)]
Removed colspan on tr elements since it is invalid and
already on the td anyway.  Fixes bug 1261832.

19 years agoCan you say infinite loop? I knew you could.
Norman Walsh [Sun, 11 Sep 2005 22:53:19 +0000 (22:53 +0000)]
Can you say infinite loop? I knew you could.

19 years agoarbortext.extensions supports the url(...) syntax.
Bob Stayton [Fri, 9 Sep 2005 18:50:49 +0000 (18:50 +0000)]
arbortext.extensions supports the url(...) syntax.

19 years agoAdded colon to list of delimiters for parsing datetime strings
Michael Smith [Fri, 9 Sep 2005 03:58:58 +0000 (03:58 +0000)]
Added colon to list of delimiters for parsing datetime strings
into tokens. Closes #1285053. Thanks to Jeroen Ruigrok for the bug
report, and to Mauritz Jeanson for spotting the cause.

19 years agoAppendixes inside article are considered for ToC
Jirka Kosek [Wed, 7 Sep 2005 16:52:57 +0000 (16:52 +0000)]
Appendixes inside article are considered for ToC

19 years agoRemoved catalog.xml from version control and updated build to
Michael Smith [Fri, 2 Sep 2005 06:50:52 +0000 (06:50 +0000)]
Removed catalog.xml from version control and updated build to
automatically generate it. (To ensure it always contains the
correct version number for the release.) Thanks to John L. Clark
for the suggestion.

19 years agoProcess not only subelements of book, but all content including PI (possibly custom).
Jirka Kosek [Thu, 1 Sep 2005 20:56:46 +0000 (20:56 +0000)]
Process not only subelements of book, but all content including PI (possibly custom).

19 years agoChanged version attribute on xsl:stylesheet from 1.1 to 1.0
Michael Smith [Sun, 28 Aug 2005 15:26:33 +0000 (15:26 +0000)]
Changed version attribute on xsl:stylesheet from 1.1 to 1.0

19 years agoFixed typo
Michael Smith [Sat, 27 Aug 2005 04:11:10 +0000 (04:11 +0000)]
Fixed typo

19 years agoChanged short descriptions in doc for *autolabel* params to match
Michael Smith [Sat, 27 Aug 2005 04:05:32 +0000 (04:05 +0000)]
Changed short descriptions in doc for *autolabel* params to match
new autolabel behavior.

19 years agoAttempt to support @dir more effectively
Norman Walsh [Wed, 24 Aug 2005 14:04:55 +0000 (14:04 +0000)]
Attempt to support @dir more effectively

19 years agoFixed bug in char attribute, where text-align was being set to
Bob Stayton [Tue, 16 Aug 2005 19:26:31 +0000 (19:26 +0000)]
Fixed bug in char attribute, where text-align was being set to
any char value, even if the align attribute was not 'char'.
The CALS spec says text-align set to the value of char only
if the align attribute is 'char'.

19 years agoVersion 1.69.1 released.
Michael Smith [Thu, 11 Aug 2005 23:31:07 +0000 (23:31 +0000)]
Version 1.69.1 released.

19 years agoVersion 1.69.1 released.
Michael Smith [Thu, 11 Aug 2005 23:29:01 +0000 (23:29 +0000)]
Version 1.69.1 released.

19 years agoUpdated for 1.69.1 release.
Michael Smith [Thu, 11 Aug 2005 23:27:13 +0000 (23:27 +0000)]
Updated for 1.69.1 release.

19 years agoSet default value of annotation.support param to 0 (off). Also,
Michael Smith [Thu, 11 Aug 2005 05:29:15 +0000 (05:29 +0000)]
Set default value of annotation.support param to 0 (off). Also,
wrapped contents of the apply-annotations template in a "if"
statement, so that those contents get evaluated only if
annotation.support is non-zero.

The reason for these changes was a report from Doug du Boulay (on
the docbook-apps list) that processing of the apply-annotations
template was consuming 75% of the total processing time for a
2.5Mb file. Anatoly Techtonik followed with a comment that with
1.69.0, "Compiling took about full working day on 12Mb file while
earlier it was about 2-4 hours".

19 years agoFixed check for first following siblings in lists.
Michael Smith [Thu, 11 Aug 2005 04:42:26 +0000 (04:42 +0000)]
Fixed check for first following siblings in lists.

19 years agoFix bug 1247565: missing attribute set on symbol entries.
Bob Stayton [Tue, 9 Aug 2005 09:40:21 +0000 (09:40 +0000)]
Fix bug 1247565: missing attribute set on symbol entries.

19 years agofo:table-body and fo:table-header now set start-indent and
Bob Stayton [Tue, 9 Aug 2005 09:30:44 +0000 (09:30 +0000)]
fo:table-body and fo:table-header now set start-indent and
end-indent to zero to reset the table reference areas.

19 years agoOutput .sp macro in mixed blocks where we were outputting
Michael Smith [Tue, 9 Aug 2005 09:11:02 +0000 (09:11 +0000)]
Output .sp macro in mixed blocks where we were outputting
completely blank line before. Thanks (again) to Costin Stroie for
pointing out the problems and providing a test case.

Also, corrected the test for checking first preceding siblings of
text nodes in mixed blocks (the test is used for determining
whether or not we need to insert a line break before those nodes.)

19 years agoAdded support for Apple Pages application
Steve Ball [Sat, 6 Aug 2005 04:01:46 +0000 (04:01 +0000)]
Added support for Apple Pages application

19 years agoFixed bug #1244478. Indexterms in informal objects are now getting correct page refer...
Jirka Kosek [Fri, 5 Aug 2005 19:20:50 +0000 (19:20 +0000)]
Fixed bug #1244478. Indexterms in informal objects are now getting correct page reference.

19 years agoKruft removal.
Michael Smith [Fri, 5 Aug 2005 08:52:51 +0000 (08:52 +0000)]
Kruft removal.

19 years agoFixed bug that caused literal .sp to show up in output. (Thanks to
Michael Smith [Fri, 5 Aug 2005 08:09:50 +0000 (08:09 +0000)]
Fixed bug that caused literal .sp to show up in output. (Thanks to
Costin Stroie for reporting).

WARNING: One of the consequences of this change is that the
stylesheet no longer generates spaces at the end of certain lines.
I had it doing that as a sort of hack to prevent certain kinds of
problems in output. It seems like the hack my no longer be
necessary. But if I am wrong, this change may cause spaces to show
up at the beginning of some lines in "mixed content". If you see
those, then this change has introduced a regression, and I will
need to go back and figure out the right way to fix it (instead of
the kludgy way I was doing it before.

Also, instances like the following were showing up in some cases.

  .PP
  .sp

That is, a .PP macro immediately followed by a .sp macro. I can
think of no good read to ever generate that, and I am not sure why
it is getting generated. So I have taked the lazy way out and
caused the stylesheet to now strip out the .sp from all such
instances, leaving just the .PP

19 years agoAdd cf to exclude-result-prefixes because it is for internal use only.
Bob Stayton [Thu, 4 Aug 2005 07:03:47 +0000 (07:03 +0000)]
Add cf to exclude-result-prefixes because it is for internal use only.

19 years agoUpdated for Public Review Draft
Norman Walsh [Thu, 28 Jul 2005 20:32:31 +0000 (20:32 +0000)]
Updated for Public Review Draft

19 years agoChanged default part numbering format back to 'I'.
Bob Stayton [Thu, 28 Jul 2005 03:57:58 +0000 (03:57 +0000)]
Changed default part numbering format back to 'I'.

19 years agoFixed starting page number for first part element in single-sided output.
Bob Stayton [Wed, 27 Jul 2005 17:16:36 +0000 (17:16 +0000)]
Fixed starting page number for first part element in single-sided output.

19 years agoFixed handling of lists with titles. Also reworked handling of
Michael Smith [Sun, 24 Jul 2005 14:10:31 +0000 (14:10 +0000)]
Fixed handling of lists with titles. Also reworked handling of
space around lists. (Closes #1243003 and 1241371).

Among other things, this change "normalizes" line space before and
after verbatims. For most cases, the stylesheet now attempts to
ensure each verbatim is preceded and followed by exactly one line
of space.

19 years agoDocBook NG: The PTO Release
Norman Walsh [Sun, 24 Jul 2005 13:46:02 +0000 (13:46 +0000)]
DocBook NG: The PTO Release

19 years agoDocBook NG: The PTO Release
Norman Walsh [Sat, 23 Jul 2005 20:51:46 +0000 (20:51 +0000)]
DocBook NG: The PTO Release

19 years agoDeal with the case where a pattern has an implicit group
Norman Walsh [Sat, 23 Jul 2005 20:10:54 +0000 (20:10 +0000)]
Deal with the case where a pattern has an implicit group

19 years agoMake sure the choice doesn't get lost when doing the includes
Norman Walsh [Sat, 23 Jul 2005 20:06:31 +0000 (20:06 +0000)]
Make sure the choice doesn't get lost when doing the includes

19 years agoThe htmlform.rnc module moved in the DocBook sources
Norman Walsh [Sat, 23 Jul 2005 19:58:22 +0000 (19:58 +0000)]
The htmlform.rnc module moved in the DocBook sources

19 years agoUpdate patterns to reflect changes in DocBook section patterns (as of Mezcal)
Norman Walsh [Sat, 23 Jul 2005 19:44:39 +0000 (19:44 +0000)]
Update patterns to reflect changes in DocBook section patterns (as of Mezcal)

19 years agoAllow simplesect after sect1
Norman Walsh [Fri, 22 Jul 2005 11:22:38 +0000 (11:22 +0000)]
Allow simplesect after sect1

19 years agoWe're not rebuilding docbookxi.rnc so don't delete it.
Norman Walsh [Thu, 21 Jul 2005 21:35:28 +0000 (21:35 +0000)]
We're not rebuilding docbookxi.rnc so don't delete it.

19 years agoDon't rebuild defguide.rnc
Norman Walsh [Thu, 21 Jul 2005 21:34:52 +0000 (21:34 +0000)]
Don't rebuild defguide.rnc

19 years agoDon't rebuild docbookxi.rnc automatically
Norman Walsh [Thu, 21 Jul 2005 21:20:55 +0000 (21:20 +0000)]
Don't rebuild docbookxi.rnc automatically

19 years agoDocumentation improvements.
Norman Walsh [Thu, 21 Jul 2005 20:52:07 +0000 (20:52 +0000)]
Documentation improvements.

19 years agoUpdated
Norman Walsh [Thu, 21 Jul 2005 20:45:58 +0000 (20:45 +0000)]
Updated

19 years agoAllow simplesect to occur after section elements
Norman Walsh [Thu, 21 Jul 2005 20:45:22 +0000 (20:45 +0000)]
Allow simplesect to occur after section elements

19 years agoRefactor XInclude support
Norman Walsh [Thu, 21 Jul 2005 20:43:05 +0000 (20:43 +0000)]
Refactor XInclude support

19 years agoMake appendixes use upperalpha numeration
Norman Walsh [Wed, 20 Jul 2005 13:57:01 +0000 (13:57 +0000)]
Make appendixes use upperalpha numeration

19 years agoMade a couple of fixes for handling release uploads correctly.
Michael Smith [Mon, 18 Jul 2005 05:44:43 +0000 (05:44 +0000)]
Made a couple of fixes for handling release uploads correctly.