Your message dated Wed, 07 Nov 2012 17:17:35 +0000
with message-id <[email protected]>
and subject line Bug#683166: fixed in dblatex 0.3.4-3
has caused the Debian Bug report #683166,
regarding dblatex: Creating parts also when it should not
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 this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
683166: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=683166
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: dblatex
Version: 0.3-2
While working on a book project, I ran into a problem with the <part>
handling in dblatex. See
<URL: https://github.com/petterreinholdtsen/free-culture-lessig > for
the complete book project.
The problem I experience is that the chapters at the end of the book,
after the last <part>, are added into the last part in the content
list instead of showing up as independent chapters. I discovered a
similar problem with the example docbook file available from
<URL: https://trac.v2.nl/export/7884/v2fo/trunk/v2fo/lib/docbook/test/book.xml
>.
There the appendixes show up as parts instead of as simple appendixes.
I changed the XML slightly like this to get it to verify with xmllint:
--- book.xml.1 2003-03-26 13:05:41.000000000 +0100
+++ book.xml 2012-07-29 12:49:38.000000000 +0200
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
-<!DOCTYPE book
- PUBLIC "-//Norman Walsh//DTD DocBk XML V3.1.7//EN"
- "http://nwalsh.com/docbook/xml/3.1.7/docbookx.dtd">
+
+<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
+"http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" >
<!-- test document -->
@@ -28,12 +28,12 @@
</preface>
<part>
-<docinfo>
+<partinfo>
<title>Part One Title</title>
<legalnotice>
<para>Foo! A legal notice in a part!</para>
</legalnotice>
-</docinfo>
+</partinfo>
<title>Part One Title</title>
<partintro>
<title>PartIntro Title</title>
@@ -72,8 +72,8 @@
</part>
<chapter>
- <docinfo><title>First Chapter</title><subtitle>Chapter Subtitle</subtitle>
- </docinfo><title>First Chapter</title>
+ <chapterinfo><title>First Chapter</title><subtitle>Chapter
Subtitle</subtitle>
+ </chapterinfo><title>First Chapter</title>
<para>This is a test paragraph.</para>
<figure id="testfig3"><title>Test Figure</title>
<programlisting>This is a
Is this behaviour a bug in dblatex, or am I using it wrong? Is there
something I can do to get a chapter to show up after a part without
becoming included in the part?
Attaching the example XML for future reference.
--
Happy hacking
Petter Reinholdtsen
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
"http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" >
<!-- test document -->
<book><title>Book Test Document Title</title>
<bookinfo>
<title>Bookinfo Test Document Title</title>
<subtitle>Book Subtitle</subtitle>
<authorgroup>
<author><firstname>Norman</firstname><surname>Walsh</surname></author>
</authorgroup>
</bookinfo>
<dedication><title>First Dedication</title>
<para>Just a test. “What about—this?”</para>
</dedication>
<dedication>
<para>Just a test.</para>
</dedication>
<preface><title>Foreword</title>
<?dbhtml filename="forward.htm"?>
<para>This is a test paragraph.</para>
</preface>
<part>
<partinfo>
<title>Part One Title</title>
<legalnotice>
<para>Foo! A legal notice in a part!</para>
</legalnotice>
</partinfo>
<title>Part One Title</title>
<partintro>
<title>PartIntro Title</title>
<para>Partintro content<footnote>
<para>This is a footnote in a partintro.</para>
</footnote>.</para>
<sect1>
<title>PartIntro Section</title>
<para>PartIntros can actually have section content as well.</para>
</sect1>
</partintro>
<chapter id="chapter">
<title id="chaptertitle">Section Tests</title>
<sect1><title>First Sect1</title>
<para>Paragraph.</para>
<figure id="testfig1"><title>Test Figure</title>
<programlisting>This is a
ProgramListing
</programlisting>
</figure>
</sect1>
<sect1><title>Second Sect1</title>
<para>Paragraph.</para>
</sect1>
<sect1><title>Third Sect1</title>
<para>Paragraph.</para>
<figure id="testfig2"><title>Test Figure</title>
<programlisting>This is a
ProgramListing
</programlisting>
</figure>
</sect1>
</chapter>
</part>
<chapter>
<chapterinfo><title>First Chapter</title><subtitle>Chapter Subtitle</subtitle>
</chapterinfo><title>First Chapter</title>
<para>This is a test paragraph.</para>
<figure id="testfig3"><title>Test Figure</title>
<programlisting>This is a
ProgramListing
</programlisting>
</figure>
</chapter>
<chapter><title>Second Chapter</title>
<para>This is a test paragraph.
<indexterm>
<primary>ap1</primary>
</indexterm>
<indexterm>
<primary>ap2</primary>
</indexterm>
<indexterm>
<primary>bp1</primary>
<secondary>bp1bs1</secondary>
</indexterm>
<indexterm>
<primary>bp2</primary>
</indexterm>
<indexterm>
<primary>cp1</primary>
<secondary>cp1cs1</secondary>
<tertiary>cp1cs1ct1</tertiary>
</indexterm>
<indexterm>
<primary>cp2</primary>
</indexterm>
<indexterm>
<primary>cp2see</primary><see>cp2</see>
</indexterm>
<indexterm>
<primary>dp1</primary>
<secondary>dp1ds1</secondary>
</indexterm>
<indexterm>
<primary>dp1</primary>
<secondary>dp1ds2</secondary>
</indexterm>
<indexterm>
<primary>dp2</primary>
</indexterm></para>
</chapter>
<chapter><title>Third Chapter</title>
<para>This is a test paragraph.</para>
</chapter>
<appendix><title>First Appendix</title>
<para>This is just a test.</para>
<figure id="testfig4"><title>Test Figure</title>
<programlisting>This is a
ProgramListing
</programlisting>
</figure>
</appendix>
<appendix><title>Second Appendix</title>
<para>This is just a test.
<indexterm>
<primary>ap1</primary>
</indexterm>
<indexterm>
<primary>ap2</primary>
</indexterm>
<indexterm>
<primary>bp1</primary>
<secondary>bp1bs1</secondary>
</indexterm>
<indexterm>
<primary>bp2</primary>
</indexterm>
<indexterm>
<primary>cp1</primary>
<secondary>cp1cs1</secondary>
<tertiary>cp1cs1ct1</tertiary>
</indexterm>
<indexterm>
<primary>cp2</primary>
</indexterm>
<indexterm>
<primary>dp1</primary>
<secondary>dp1ds1</secondary>
</indexterm>
<indexterm>
<primary>dp1</primary>
<secondary>dp1ds2</secondary>
</indexterm>
<indexterm>
<primary>dp2</primary>
</indexterm></para>
</appendix>
</book>
--- End Message ---
--- Begin Message ---
Source: dblatex
Source-Version: 0.3.4-3
We believe that the bug you reported is fixed in the latest version of
dblatex, which is due to be installed in the Debian FTP archive.
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Andreas Hoenen <[email protected]> (supplier of updated dblatex
package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Format: 1.8
Date: Sat, 03 Nov 2012 09:21:25 +0100
Source: dblatex
Binary: dblatex
Architecture: source all
Version: 0.3.4-3
Distribution: unstable
Urgency: low
Maintainer: Andreas Hoenen <[email protected]>
Changed-By: Andreas Hoenen <[email protected]>
Description:
dblatex - Produces DVI, PostScript, PDF documents from DocBook sources
Closes: 682901 683166 684393
Changes:
dblatex (0.3.4-3) unstable; urgency=low
.
* 20_xetex_index_page_range.patch:
Also with XeTeX backend show page ranges in index with ndash (–) instead of
double hyphen (--). Thanks to Petter Reinholdtsen for reporting.
Closes: #682901
* 20_chapter_after_part.patch:
In the PDF document structure don't include chapters after a book part
in the part. Thanks to Petter Reinholdtsen for reporting and for his ideas
how to solve this in TeX. Closes: #683166
* 20_nn_quotes_in_title.patch:
Don't crash on quotation marks in titles of Norwegian Nynorsk documents.
Thanks to Petter Reinholdtsen for reporting. Closes: #684393
* Adapt 20_norwegian_bokmal.patch regarding quotes as told by Petter
Reinholdtsen (http://bugs.debian.org/684391#26).
* debian/rules:
+ Drop target override_dh_auto_install as superfluous.
+ Simplify documentation installation/cleanup.
Thanks to Raphaël Hertzog for the suggestions.
Checksums-Sha1:
43885ccf2a99d9c0afff19d6a752c582dbac8768 1684 dblatex_0.3.4-3.dsc
d89cddb40f89e07b6de2873dc5bb70d555e740c9 27756 dblatex_0.3.4-3.debian.tar.gz
d3853d892ba716b7f87d3d74448db6b177877b89 1906840 dblatex_0.3.4-3_all.deb
Checksums-Sha256:
89cecc80caa608b371b064e2a76dddea62ced466a843be03e4264e76f2326bcd 1684
dblatex_0.3.4-3.dsc
3a5ad40d0ba43bae5addb4f579d4170bad524206a351ce58b2895fb06c43832d 27756
dblatex_0.3.4-3.debian.tar.gz
23d35dd3d663e84b1837abdbdd1e53235a85cdacc5c5f0f97970bb6c540a2d9f 1906840
dblatex_0.3.4-3_all.deb
Files:
5f1a5902b74cecc2da6c089df3f9e456 1684 text optional dblatex_0.3.4-3.dsc
66d38ccb507b0cfc9cd0ec1bbe396b8b 27756 text optional
dblatex_0.3.4-3.debian.tar.gz
851cefb49bc1bbe5e33f78e943a559eb 1906840 text optional dblatex_0.3.4-3_all.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (GNU/Linux)
iQEcBAEBAgAGBQJQmpbMAAoJEIAhAkTu07wNG34H/2o66f2HPCnVr6+i5PjTHdcq
1Y1Rrksy+zL2eCzwaXh0LC/NCp3Ou4b56m04U9Ih8hKFwRBkiuXTRdFy13F3HhOk
i73eF7J99hCtIBDY1x1Nx7Sbp9jYxyNstnrE0Ta+PG22XFrHD9hUp+vzFd8dLc4L
UUPZqbDRknQaPN39y95Mvc6spI0jrYv8IDwFtltU8DtgoTnuX2PqKXUxyaNrW2b/
GP+tFPYwIkLVjPdAyLIl8wun+tyW3XzsrIqoD9r2IexxdvYhGogUarF/mkc7/4jJ
P/cgUpYGBc1e+li5hKn22WE/4CnP+6OnozQm7k4uvJgu7UL17mdGKDSYjRN2Tr0=
=/bY7
-----END PGP SIGNATURE-----
--- End Message ---