[xml/sgml-pkgs] Bug#258525: marked as done (docbook2html outputs bizarrely-named html files)
Debian Bug Tracking System
owner@bugs.debian.org
Tue, 09 Nov 2004 03:03:11 -0800
Your message dated Tue, 9 Nov 2004 11:55:23 +0100
with message-id <200411091155.23324.peter_e@gmx.net>
and subject line docbook2html outputs bizarrely-named html files
has caused the attached Bug report to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere. Please contact me immediately.)
Debian bug tracking system administrator
(administrator, Debian Bugs database)
--------------------------------------
Received: (at submit) by bugs.debian.org; 10 Jul 2004 02:03:32 +0000
>From hshane@austin.rr.com Fri Jul 09 19:03:32 2004
Return-path: <hshane@austin.rr.com>
Received: from ms-smtp-01.texas.rr.com (ms-smtp-01-eri0.texas.rr.com) [24.93.47.40]
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1Bj7DA-0003ns-00; Fri, 09 Jul 2004 19:03:32 -0700
Received: from K7 (cs24344-167.austin.rr.com [24.243.44.167])
by ms-smtp-01-eri0.texas.rr.com (8.12.10/8.12.7) with ESMTP id i6A23JQ1017656
for <submit@bugs.debian.org>; Fri, 9 Jul 2004 21:03:19 -0500 (CDT)
Date: Fri, 9 Jul 2004 21:03:34 -0500
From: Howard Shane <hshane@austin.rr.com>
To: submit@bugs.debian.org
Subject: docbook2html outputs bizarrely-named html files
Message-ID: <20040710020334.GA21358@K7.austin.rr.com>
Mime-Version: 1.0
Content-Type: text/plain; Format=Flowed; DelSp=Yes; charset=ISO-8859-1
Content-Disposition: inline
Content-Transfer-Encoding: 8bit
X-Mailer: Balsa 2.0.17
Lines: 28
X-Virus-Scanned: Symantec AntiVirus Scan Engine
Delivered-To: submit@bugs.debian.org
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-5.2 required=4.0 tests=BAYES_40,HAS_PACKAGE
autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level:
Package: docbook-utils
Version: 0.6.13-7
Hi,
I recently upgraded from the previous version of docbook-utils, and
docbook2html was working fine previously. Now when I run docbook2html,
instead of outputting chunks of the sgml file into individual html
files named for the section it instead names them in the form 'x#.
html;' for example, before upgrading
$ docbook2html file.sgml
yielded index.html, firstsect.html, secondsect.html, thirdsect.html,
etc., whereas now I get bizarre names like the following.
$ docbook2html file.sgml
gives the following: index.html x242.html x328.html x379.html x404.
html x418.html x472.html x92.html
The links all work between pages even though the names of the files are
wrong, and testing on files that previously processed normally
reproduces the problem.
Thanks
hs
---------------------------------------
Received: (at 258525-done) by bugs.debian.org; 9 Nov 2004 10:55:35 +0000
>From peter_e@gmx.net Tue Nov 09 02:55:35 2004
Return-path: <peter_e@gmx.net>
Received: from credativ.com (curie.credativ.org) [217.160.209.18]
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1CRTew-00032n-00; Tue, 09 Nov 2004 02:55:34 -0800
Received: from localhost (localhost [127.0.0.1])
by curie.credativ.org (Postfix) with ESMTP id 3AD02564A9
for <258525-done@bugs.debian.org>; Tue, 9 Nov 2004 11:55:33 +0100 (CET)
Received: from www.credativ.de (pD950049C.dip0.t-ipconnect.de [217.80.4.156])
(using TLSv1 with cipher EDH-RSA-DES-CBC3-SHA (168/168 bits))
(No client certificate requested)
by curie.credativ.org (Postfix) with ESMTP id 81D4055B6B
for <258525-done@bugs.debian.org>; Tue, 9 Nov 2004 11:55:32 +0100 (CET)
Received: from bell.credativ.de (bell.credativ.de [172.26.14.16])
by www.credativ.de (Postfix) with ESMTP id B7C8B1C0025
for <258525-done@bugs.debian.org>; Tue, 9 Nov 2004 11:55:28 +0100 (CET)
From: Peter Eisentraut <peter_e@gmx.net>
To: 258525-done@bugs.debian.org
Subject: Re: docbook2html outputs bizarrely-named html files
Date: Tue, 9 Nov 2004 11:55:23 +0100
User-Agent: KMail/1.6.2
MIME-Version: 1.0
Content-Disposition: inline
Content-Type: text/plain;
charset="us-ascii"
Content-Transfer-Encoding: 7bit
Message-Id: <200411091155.23324.peter_e@gmx.net>
X-Virus-Scanned: by AMaViS at credativ.com
Delivered-To: 258525-done@bugs.debian.org
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-3.0 required=4.0 tests=BAYES_00 autolearn=no
version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level:
This is behaving as designed. The stylesheet docbook-utils.dsl explicitly
turns off %use-id-as-filename%. If you want files named after element IDs,
use
db2html -V '%use-id-as-filename%' file.sgml
as previously suggested.