public inbox for docbook-tools-discuss@sourceware.org
 help / color / mirror / Atom feed
From: "Éric Bischoff" <e.bischoff@noos.fr>
To: Peter Toft <pto@linuxbog.dk>, docbook-tools-discuss@sources.redhat.com
Subject: Re: db2html  - how to control HTML file breaks
Date: Tue, 25 Nov 2003 10:34:00 -0000	[thread overview]
Message-ID: <200311251107.18691.e.bischoff@noos.fr> (raw)
In-Reply-To: <1069713639.2459.56.camel@shogun>

Le Lundi 24 Novembre 2003 23:40, Peter Toft a écrit :
> Hi guruz
>
> How can I control the file-breaks of my HTML output from
> db2html (using DocBook XML 4.2)?
> I want to have a new HTML-file for every chapter,
> not for every sect1 og sect2 Actually - I should extend my
> question; how can I get a new HTML-file for (and only)
> * every new chapter
> * every new sect1 or chapter
> * every new sect1, sect2 or chapter

Hi Peter, long time not hearing from you.

I think it's not really a tools problem, but a DSSSL stylesheets issue. 
Redefine the chunk-element list in your customized stylesheet.

(define (chunk-element-list)
  (list (normalize "preface")
        (normalize "chapter")
        (normalize "appendix")
        (normalize "article")
        (normalize "glossary")
        (normalize "bibliography")
        (normalize "index")
        (normalize "colophon")
        (normalize "setindex")
        (normalize "reference")
        (normalize "refentry")
        (normalize "part")
        (normalize "sect1")
        (normalize "section")
        (normalize "book") ;; just in case nothing else matches...
        (normalize "set")  ;; sets are definitely chunks...
        ))

Other relevant variables :

(define %root-filename% "index") ;; name for the root html file
(define %html-ext% ".html") ;; default extension for html output files
(define %html-prefix% "") ;; prefix for all filenames generated (except root)
(define %use-id-as-filename% #t) ;; uses ID value, if present, as filename
(define use-output-dir #f) ;; output in separate directory?
(define %output-dir% "HTML") ;; if output in directory, it's called HTML

Best,

-- 
Niemand ist mehr Sklave, wie der, der sich Frei wähnt, ohne es zu Sein.
Il n'est pas plus esclave que celui qui se croit libre à tort.
None are more enslaved than those who falsely believe they are free.
  - Goethe

  reply	other threads:[~2003-11-25 10:34 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2003-11-24 22:40 Peter Toft
2003-11-25 10:34 ` Éric Bischoff [this message]
2003-11-26 21:33   ` Peter Toft
2003-11-26 22:10     ` Éric Bischoff
2003-11-26 22:13       ` Éric Bischoff
2003-11-26 22:39         ` Peter Toft

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=200311251107.18691.e.bischoff@noos.fr \
    --to=e.bischoff@noos.fr \
    --cc=docbook-tools-discuss@sources.redhat.com \
    --cc=pto@linuxbog.dk \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).