* [PATCH] [KERNEL-DOC] fix tex error when building pdfdocs
@ 2007-04-12 20:38 Borislav Petkov
2007-04-12 23:48 ` Randy Dunlap
0 siblings, 1 reply; 5+ messages in thread
From: Borislav Petkov @ 2007-04-12 20:38 UTC (permalink / raw)
To: Randy Dunlap; +Cc: lkml
When building pdfdocs, the db2pdf converter bails out because of an
latex-reserved token - '#' - in the intermediary .tex file which ends up in a
conversion error with the following error message:
<log>
[15.0.32])
! Incomplete \iffalse; all text was ignored after line 8154.
<inserted text>
\fi
<*> kernel-hacking.tex
</log>
This is a rather arbitrary fix, so suggest away.
Signed-off-by: Borislav Petkov <bbpetkov@yahoo.de>
Index: 21-rc6/Documentation/DocBook/kernel-hacking.tmpl
===================================================================
--- 21-rc6.orig/Documentation/DocBook/kernel-hacking.tmpl
+++ 21-rc6/Documentation/DocBook/kernel-hacking.tmpl
@@ -1138,7 +1138,7 @@ static struct block_device_operations op
</sect1>
<sect1 id="conventions-ifdef">
- <title>#if</title>
+ <title>Prepocessor Conditionals</title>
<para>
It is generally considered cleaner to use macros in header files
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] [KERNEL-DOC] fix tex error when building pdfdocs
2007-04-12 20:38 [PATCH] [KERNEL-DOC] fix tex error when building pdfdocs Borislav Petkov
@ 2007-04-12 23:48 ` Randy Dunlap
2007-04-13 6:35 ` Borislav Petkov
0 siblings, 1 reply; 5+ messages in thread
From: Randy Dunlap @ 2007-04-12 23:48 UTC (permalink / raw)
To: Borislav Petkov; +Cc: lkml
On Thu, 12 Apr 2007 22:38:42 +0200 Borislav Petkov wrote:
> When building pdfdocs, the db2pdf converter bails out because of an
> latex-reserved token - '#' - in the intermediary .tex file which ends up in a
> conversion error with the following error message:
>
> <log>
> [15.0.32])
> ! Incomplete \iffalse; all text was ignored after line 8154.
> <inserted text>
> \fi
> <*> kernel-hacking.tex
> </log>
>
> This is a rather arbitrary fix, so suggest away.
Hi,
I don't have a problem with the change, but I don't get that tex error either.
Here is an extract from the .tex file:
{\def\Element%
{451}\def\ProcessingMode%
{title-sosofo-mode}}\#if\endNode{}\endSeq{}\endLink{}\Seq%
{}\Leader%
{}.\endLeader{}\Link%
> Signed-off-by: Borislav Petkov <bbpetkov@yahoo.de>
>
> Index: 21-rc6/Documentation/DocBook/kernel-hacking.tmpl
> ===================================================================
> --- 21-rc6.orig/Documentation/DocBook/kernel-hacking.tmpl
> +++ 21-rc6/Documentation/DocBook/kernel-hacking.tmpl
> @@ -1138,7 +1138,7 @@ static struct block_device_operations op
> </sect1>
>
> <sect1 id="conventions-ifdef">
> - <title>#if</title>
> + <title>Prepocessor Conditionals</title>
>
> <para>
> It is generally considered cleaner to use macros in header files
>
> -
---
~Randy
*** Remember to use Documentation/SubmitChecklist when testing your code ***
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] [KERNEL-DOC] fix tex error when building pdfdocs
2007-04-12 23:48 ` Randy Dunlap
@ 2007-04-13 6:35 ` Borislav Petkov
2007-04-13 15:20 ` Randy Dunlap
0 siblings, 1 reply; 5+ messages in thread
From: Borislav Petkov @ 2007-04-13 6:35 UTC (permalink / raw)
To: Randy Dunlap; +Cc: lkml
On Thu, Apr 12, 2007 at 04:48:51PM -0700, Randy Dunlap wrote:
> On Thu, 12 Apr 2007 22:38:42 +0200 Borislav Petkov wrote:
>
> > When building pdfdocs, the db2pdf converter bails out because of an
> > latex-reserved token - '#' - in the intermediary .tex file which ends up in a
> > conversion error with the following error message:
> >
> > <log>
> > [15.0.32])
> > ! Incomplete \iffalse; all text was ignored after line 8154.
> > <inserted text>
> > \fi
> > <*> kernel-hacking.tex
> > </log>
> >
> > This is a rather arbitrary fix, so suggest away.
>
> Hi,
>
> I don't have a problem with the change, but I don't get that tex error either.
> Here is an extract from the .tex file:
>
>
> {\def\Element%
> {451}\def\ProcessingMode%
> {title-sosofo-mode}}\#if\endNode{}\endSeq{}\endLink{}\Seq%
> {}\Leader%
> {}.\endLeader{}\Link%
>
<snip>
Actually this is the TOC-piece of .tex code around line 1622. The offending line
is way down (ca. 8152) at the actual chapter heading and it looks like this:
{\def\Element%
{0:451}\def\ProcessingMode%
{title-sosofo-mode}}\#if\endNode{}\def\HeadingText{%
10.7. \if}%
\endHeadPar{}\endSeq{}\Node%
and I think it is the fourth line that causes the problem for the # sign is
stripped and the title is converted to a tex conditional - \if - which isn't
terminated, but I'm not so sure. The thing is, the docbook2tex converts the
.tmpl file to .tex file ok but db2pdf chokes. What docbook-utils are you using?
Mine are version 0.6.14-1 of debian unstable.
By the way, were you going to send me some kernel-doc todo's...?
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] [KERNEL-DOC] fix tex error when building pdfdocs
2007-04-13 6:35 ` Borislav Petkov
@ 2007-04-13 15:20 ` Randy Dunlap
2007-04-14 8:14 ` Borislav Petkov
0 siblings, 1 reply; 5+ messages in thread
From: Randy Dunlap @ 2007-04-13 15:20 UTC (permalink / raw)
To: bbpetkov; +Cc: lkml
On Fri, 13 Apr 2007 08:35:00 +0200 Borislav Petkov wrote:
> On Thu, Apr 12, 2007 at 04:48:51PM -0700, Randy Dunlap wrote:
> > On Thu, 12 Apr 2007 22:38:42 +0200 Borislav Petkov wrote:
> >
> > > When building pdfdocs, the db2pdf converter bails out because of an
> > > latex-reserved token - '#' - in the intermediary .tex file which ends up in a
> > > conversion error with the following error message:
> > >
> > > <log>
> > > [15.0.32])
> > > ! Incomplete \iffalse; all text was ignored after line 8154.
> > > <inserted text>
> > > \fi
> > > <*> kernel-hacking.tex
> > > </log>
> > >
> > > This is a rather arbitrary fix, so suggest away.
> >
> > Hi,
> >
> > I don't have a problem with the change, but I don't get that tex error either.
> > Here is an extract from the .tex file:
> >
> >
> > {\def\Element%
> > {451}\def\ProcessingMode%
> > {title-sosofo-mode}}\#if\endNode{}\endSeq{}\endLink{}\Seq%
> > {}\Leader%
> > {}.\endLeader{}\Link%
> >
> <snip>
>
> Actually this is the TOC-piece of .tex code around line 1622. The offending line
> is way down (ca. 8152) at the actual chapter heading and it looks like this:
>
> {\def\Element%
> {0:451}\def\ProcessingMode%
> {title-sosofo-mode}}\#if\endNode{}\def\HeadingText{%
> 10.7. \if}%
> \endHeadPar{}\endSeq{}\Node%
>
> and I think it is the fourth line that causes the problem for the # sign is
> stripped and the title is converted to a tex conditional - \if - which isn't
> terminated, but I'm not so sure. The thing is, the docbook2tex converts the
> .tmpl file to .tex file ok but db2pdf chokes. What docbook-utils are you using?
> Mine are version 0.6.14-1 of debian unstable.
I'm using: docbook-utils-0.6.14-79 (SLED 10)
and the corrected :) lines contain an additional '#':
{1}}10.7. \Node%
{\def\Element%
{451}\def\ProcessingMode%
{title-sosofo-mode}}\#if\endNode{}\def\HeadingText{%
10.7. \#if}%
\endHeadPar{}\endSeq{}\Node%
{\def\Element%
{451}}\endNode{}\Node%
---
~Randy
*** Remember to use Documentation/SubmitChecklist when testing your code ***
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] [KERNEL-DOC] fix tex error when building pdfdocs
2007-04-13 15:20 ` Randy Dunlap
@ 2007-04-14 8:14 ` Borislav Petkov
0 siblings, 0 replies; 5+ messages in thread
From: Borislav Petkov @ 2007-04-14 8:14 UTC (permalink / raw)
To: Randy Dunlap; +Cc: linux-kernel
On Fri, Apr 13, 2007 at 08:20:49AM -0700, Randy Dunlap wrote:
> On Fri, 13 Apr 2007 08:35:00 +0200 Borislav Petkov wrote:
>
> > On Thu, Apr 12, 2007 at 04:48:51PM -0700, Randy Dunlap wrote:
> > > On Thu, 12 Apr 2007 22:38:42 +0200 Borislav Petkov wrote:
> > >
> > > > When building pdfdocs, the db2pdf converter bails out because of an
> > > > latex-reserved token - '#' - in the intermediary .tex file which ends up in a
> > > > conversion error with the following error message:
> > > >
> > > > <log>
> > > > [15.0.32])
> > > > ! Incomplete \iffalse; all text was ignored after line 8154.
> > > > <inserted text>
> > > > \fi
> > > > <*> kernel-hacking.tex
> > > > </log>
> > > >
> > > > This is a rather arbitrary fix, so suggest away.
> > >
> > > Hi,
> > >
> > > I don't have a problem with the change, but I don't get that tex error either.
> > > Here is an extract from the .tex file:
> > >
> > >
> > > {\def\Element%
> > > {451}\def\ProcessingMode%
> > > {title-sosofo-mode}}\#if\endNode{}\endSeq{}\endLink{}\Seq%
> > > {}\Leader%
> > > {}.\endLeader{}\Link%
> > >
> > <snip>
> >
> > Actually this is the TOC-piece of .tex code around line 1622. The offending line
> > is way down (ca. 8152) at the actual chapter heading and it looks like this:
> >
> > {\def\Element%
> > {0:451}\def\ProcessingMode%
> > {title-sosofo-mode}}\#if\endNode{}\def\HeadingText{%
> > 10.7. \if}%
> > \endHeadPar{}\endSeq{}\Node%
> >
> > and I think it is the fourth line that causes the problem for the # sign is
> > stripped and the title is converted to a tex conditional - \if - which isn't
> > terminated, but I'm not so sure. The thing is, the docbook2tex converts the
> > .tmpl file to .tex file ok but db2pdf chokes. What docbook-utils are you using?
> > Mine are version 0.6.14-1 of debian unstable.
>
> I'm using: docbook-utils-0.6.14-79 (SLED 10)
>
> and the corrected :) lines contain an additional '#':
>
> {1}}10.7. \Node%
> {\def\Element%
> {451}\def\ProcessingMode%
> {title-sosofo-mode}}\#if\endNode{}\def\HeadingText{%
> 10.7. \#if}%
> \endHeadPar{}\endSeq{}\Node%
> {\def\Element%
> {451}}\endNode{}\Node%
I got it, the problem is in that we use different DSSSL engines. Mine was
openjade, therefore the different section numbers like {0:451} vs. jade's {451},
i.e. without the leading zero. I switched to jade and kernel-hacking.tex converts fine.
The thereby generated tex code looks also differently:
{\def\Element%
{451}\def\ProcessingMode%
{title-sosofo-mode}}\#if\endNode{}\endPar{}\endSeq{}\Node%
{\def\Element%
{451}}\endNode{}\Node%
--
Regards/Gruß,
Boris.
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2007-04-14 8:15 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-04-12 20:38 [PATCH] [KERNEL-DOC] fix tex error when building pdfdocs Borislav Petkov
2007-04-12 23:48 ` Randy Dunlap
2007-04-13 6:35 ` Borislav Petkov
2007-04-13 15:20 ` Randy Dunlap
2007-04-14 8:14 ` Borislav Petkov
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®