From bugzilla at redhat.com Fri Jul 1 02:08:42 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Thu, 30 Jun 2011 22:08:42 -0400 Subject: [publican-list] [Bug 718102] New: [RFE] -- use the force option for cvs-import.sh Message-ID: Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. Summary: [RFE] -- use the force option for cvs-import.sh https://bugzilla.redhat.com/show_bug.cgi?id=718102 Summary: [RFE] -- use the force option for cvs-import.sh Product: Publican Version: 2.5 Platform: Unspecified OS/Version: Unspecified Status: NEW Severity: unspecified Priority: unspecified Component: publican AssignedTo: jfearn at redhat.com ReportedBy: r.landmann at redhat.com QAContact: rlandman at redhat.com CC: mmcallis at redhat.com, publican-list at redhat.com Classification: Other Story Points: --- -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Fri Jul 1 11:03:23 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Fri, 1 Jul 2011 07:03:23 -0400 Subject: [publican-list] [Bug 661551] Publican does not catch failed PDF builds when creating packages In-Reply-To: References: Message-ID: <201107011103.p61B3NQA027389@bzweb01.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=661551 --- Comment #2 from Jeff Fearn 2011-07-01 07:03:22 EDT --- Back ported to branches/publican-2x Committed revision 1795. -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Fri Jul 1 11:16:54 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Fri, 1 Jul 2011 07:16:54 -0400 Subject: [publican-list] [Bug 662907] Publican reformats
when it cleans XML In-Reply-To: References: Message-ID: <201107011116.p61BGsBT019785@bzweb02.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=662907 Jeff Fearn changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jfearn at redhat.com --- Comment #2 from Jeff Fearn 2011-07-01 07:16:53 EDT --- Back ported to branches/publican-2x Committed revision 1796. -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Fri Jul 1 11:24:14 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Fri, 1 Jul 2011 07:24:14 -0400 Subject: [publican-list] [Bug 672439] Anchors are not set on In-Reply-To: References: Message-ID: <201107011124.p61BOEaZ020979@bzweb02.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=672439 Jeff Fearn changed: What |Removed |Added ---------------------------------------------------------------------------- Status|VERIFIED |MODIFIED --- Comment #4 from Jeff Fearn 2011-07-01 07:24:12 EDT --- Back ported to branches/publican-2x Committed revision 1797. -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Mon Jul 4 11:57:33 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Mon, 4 Jul 2011 07:57:33 -0400 Subject: [publican-list] [Bug 653432] line numbering of broken In-Reply-To: References: Message-ID: <201107041157.p64BvX1I013072@bzweb01.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=653432 Jeff Fearn changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |718717 -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Mon Jul 4 11:57:33 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Mon, 4 Jul 2011 07:57:33 -0400 Subject: [publican-list] [Bug 718717] New: line numbering of broken Message-ID: Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. Summary: line numbering of broken https://bugzilla.redhat.com/show_bug.cgi?id=718717 Summary: line numbering of broken Product: Publican Version: 2.5 Platform: Unspecified OS/Version: Unspecified Status: NEW Severity: medium Priority: low Component: publican AssignedTo: jfearn at redhat.com ReportedBy: jfearn at redhat.com QAContact: rlandman at redhat.com CC: jfearn at redhat.com, mmcallis at redhat.com, publican-list at redhat.com, r.landmann at redhat.com, Klaus.Malorny at knipp.de Depends on: 653432 Classification: Other Story Points: --- Clone Of: 653432 +++ This bug was initially created as a clone of Bug #653432 +++ This applies to publican 2.3: if the linenumbering="numbered" attribute is being set, various problems occur: * syntax highlighting (via language attribute) no longer works * line numbering starts a 0 (startinglinenumber not honoured anyway) * if the content contains < and & (either via CDATA or numeric entities), they are literally interpreted as XML, causing parsing errors The problems can be traced down to the numberLines function in Builder.pm: * the node list converted to a string. I guess that syntax highlighting happens before, so all generated markup is lost due to this conversion * the $count variable is initialized to zero, the line number generation uses $count++, causing the 0 * the augmented content is then converted back to a document fragment by simply parsing the content with an XML parser. As special characters (<, &) are not escaped, they are interpreted as XML --- Additional comment from jfearn at redhat.com on 2011-03-13 07:11:40 EDT --- Hi Klaus, I've committed fixes to startinglinenumber and the use of <, >, etc. The code highlight fix will take a bit longer, the modified tree isn't being passed to the function so I'll need to track down why it's getting stale data passed in from XSLT. -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Mon Jul 4 12:01:39 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Mon, 4 Jul 2011 08:01:39 -0400 Subject: [publican-list] [Bug 653432] line numbering of broken In-Reply-To: References: Message-ID: <201107041201.p64C1dGj014063@bzweb01.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=653432 Jeff Fearn changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |MODIFIED -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Mon Jul 4 12:00:49 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Mon, 4 Jul 2011 08:00:49 -0400 Subject: [publican-list] [Bug 718717] line numbering of broken In-Reply-To: References: Message-ID: <201107041200.p64C0n4V013901@bzweb01.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=718717 --- Comment #1 from Jeff Fearn 2011-07-04 08:00:48 EDT --- I've cloned this bug to separate the line numbering and sql escaping (653432) from the line numbering + highlighting not working (this bug). -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Mon Jul 4 12:01:24 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Mon, 4 Jul 2011 08:01:24 -0400 Subject: [publican-list] [Bug 653432] line numbering of broken In-Reply-To: References: Message-ID: <201107041201.p64C1OW7014013@bzweb01.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=653432 --- Comment #2 from Jeff Fearn 2011-07-04 08:01:23 EDT --- I've cloned this bug to separate the line numbering and sql escaping (this bug) from the line numbering + highlighting not working (717817) back ported fix to branches/publican-2x -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Mon Jul 4 12:04:03 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Mon, 4 Jul 2011 08:04:03 -0400 Subject: [publican-list] [Bug 697370] set keep-id on In-Reply-To: References: Message-ID: <201107041204.p64C43HR012802@bzweb02.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=697370 --- Comment #2 from Jeff Fearn 2011-07-04 08:04:02 EDT --- back ported fix to branches/publican-2x Committed revision 1798. -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Mon Jul 4 12:02:28 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Mon, 4 Jul 2011 08:02:28 -0400 Subject: [publican-list] [Bug 684509] Non-regression test t/perlcritic.t fails with recent versions of Perl::Crititc In-Reply-To: References: Message-ID: <201107041202.p64C2SvQ012605@bzweb02.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=684509 --- Comment #2 from Jeff Fearn 2011-07-04 08:02:27 EDT --- back ported fix to branches/publican-2x Committed revision 1798. -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Mon Jul 4 12:03:18 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Mon, 4 Jul 2011 08:03:18 -0400 Subject: [publican-list] [Bug 697382] support epub-embedded-fonts parameter in docbook-style-xsl 1.76.1 In-Reply-To: References: Message-ID: <201107041203.p64C3I4v014415@bzweb01.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=697382 --- Comment #2 from Jeff Fearn 2011-07-04 08:03:17 EDT --- back ported fix to branches/publican-2x Committed revision 1798. -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Tue Jul 5 09:27:39 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Tue, 5 Jul 2011 05:27:39 -0400 Subject: [publican-list] [Bug 663206] [RFE] publican creates invalid spec files In-Reply-To: References: Message-ID: <201107050927.p659RdbB009180@bzweb01.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=663206 --- Comment #2 from Jeff Fearn 2011-07-05 05:27:38 EDT --- Back ported to branches/publican-2x Committed revision 1800. -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Tue Jul 5 09:26:57 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Tue, 5 Jul 2011 05:26:57 -0400 Subject: [publican-list] [Bug 663203] [RFE] mock SRPM validation In-Reply-To: References: Message-ID: <201107050926.p659Qv7W009022@bzweb02.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=663203 --- Comment #2 from Jeff Fearn 2011-07-05 05:26:56 EDT --- Back ported to branches/publican-2x Committed revision 1800. -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Tue Jul 5 09:43:00 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Tue, 5 Jul 2011 05:43:00 -0400 Subject: [publican-list] [Bug 662897] Publican does not set name_label when rebuilding previously packaged books In-Reply-To: References: Message-ID: <201107050943.p659h0fE012899@bzweb01.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=662897 --- Comment #2 from Jeff Fearn 2011-07-05 05:42:59 EDT --- Back ported to branches/publican-2x Committed revision 1801. -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Tue Jul 5 11:29:02 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Tue, 5 Jul 2011 07:29:02 -0400 Subject: [publican-list] [Bug 673402] Creating a (distributed) set creates invalid docbook In-Reply-To: References: Message-ID: <201107051129.p65BT2it004273@bzweb02.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=673402 Jeff Fearn changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jfearn at redhat.com --- Comment #4 from Jeff Fearn 2011-07-05 07:29:01 EDT --- Back ported to branches/publican-2x Committed revision 1803. -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Tue Jul 5 11:37:56 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Tue, 5 Jul 2011 07:37:56 -0400 Subject: [publican-list] [Bug 689347] Even when building a works ... brewing it doesn't. In-Reply-To: References: Message-ID: <201107051137.p65BbuiE006406@bzweb01.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=689347 --- Comment #2 from Jeff Fearn 2011-07-05 07:37:55 EDT --- Back ported to branches/publican-2x Committed revision 1804. -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Wed Jul 6 04:41:41 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Wed, 6 Jul 2011 00:41:41 -0400 Subject: [publican-list] [Bug 719214] New: Non-ASCII characters are not presented properly in site navigation Message-ID: Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. Summary: Non-ASCII characters are not presented properly in site navigation https://bugzilla.redhat.com/show_bug.cgi?id=719214 Summary: Non-ASCII characters are not presented properly in site navigation Product: Publican Version: 2.5 Platform: Unspecified OS/Version: Unspecified Status: NEW Severity: unspecified Priority: unspecified Component: publican AssignedTo: jfearn at redhat.com ReportedBy: r.landmann at redhat.com QAContact: rlandman at redhat.com CC: mmcallis at redhat.com, publican-list at redhat.com Classification: Other Story Points: --- Description of problem: When Publican presents the translated title of a book in the site table of contents, any non-ASCII characters in the title are garbled. Version-Release number of selected component (if applicable): 2.5 How reproducible: 100% Steps to Reproduce: 1. Install a translated book in a language that uses non-ASCII characters to a Publican-generated website from an RPM package Actual results: Non-ASCII characters garbled Expected results: Non-ASCII characters represented correctly Additional info: I confirmed that the characters are garbled in the HTML files on the server; it's not just a server configuration problem. Then I found that the entries for the translated titles were garbled in the sqlite database itself. -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Wed Jul 6 23:22:27 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Wed, 6 Jul 2011 19:22:27 -0400 Subject: [publican-list] [Bug 719458] New: xsl variable $pop_name contains underscores Message-ID: Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. Summary: xsl variable $pop_name contains underscores https://bugzilla.redhat.com/show_bug.cgi?id=719458 Summary: xsl variable $pop_name contains underscores Product: Publican Version: 2.5 Platform: Unspecified OS/Version: Unspecified Status: NEW Severity: unspecified Priority: unspecified Component: publican AssignedTo: jfearn at redhat.com ReportedBy: rlerch at redhat.com QAContact: rlandman at redhat.com CC: mmcallis at redhat.com, publican-list at redhat.com Classification: Other Story Points: --- I am trying to use the following in a custom brand: to display the name of a document in a custom header. However, the value that is returned contains underscores ("_") instead of spaces. -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Thu Jul 7 03:00:51 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Wed, 6 Jul 2011 23:00:51 -0400 Subject: [publican-list] [Bug 719458] xsl variable $pop_name contains underscores In-Reply-To: References: Message-ID: <201107070300.p6730phG021068@bzweb01.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=719458 Jeff Fearn changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |CLOSED Resolution| |NOTABUG Last Closed| |2011-07-06 23:00:50 --- Comment #1 from Jeff Fearn 2011-07-06 23:00:50 EDT --- This can be done in XSL: - + -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Thu Jul 7 05:27:10 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Thu, 7 Jul 2011 01:27:10 -0400 Subject: [publican-list] [Bug 718717] enabling line numbering disables code highlighting In-Reply-To: References: Message-ID: <201107070527.p675RAni020257@bzweb01.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=718717 Jeff Fearn changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|line numbering of |enabling line numbering | broken |disables code highlighting -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Thu Jul 7 05:26:29 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Thu, 7 Jul 2011 01:26:29 -0400 Subject: [publican-list] [Bug 718717] line numbering of broken In-Reply-To: References: Message-ID: <201107070526.p675QTcG004132@bzweb02.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=718717 Jeff Fearn changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on|653432 | -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Thu Jul 7 05:26:30 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Thu, 7 Jul 2011 01:26:30 -0400 Subject: [publican-list] [Bug 653432] line numbering of broken In-Reply-To: References: Message-ID: <201107070526.p675QUK3004139@bzweb02.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=653432 Jeff Fearn changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks|718717 | -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Thu Jul 7 09:37:54 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Thu, 7 Jul 2011 05:37:54 -0400 Subject: [publican-list] [Bug 688447] stdout, stderr and exit codes In-Reply-To: References: Message-ID: <201107070937.p679bsHm008958@bzweb01.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=688447 Jeff Fearn changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |MODIFIED -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Thu Jul 7 09:37:42 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Thu, 7 Jul 2011 05:37:42 -0400 Subject: [publican-list] [Bug 688447] stdout, stderr and exit codes In-Reply-To: References: Message-ID: <201107070937.p679bgZm026920@bzweb02.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=688447 Jeff Fearn changed: What |Removed |Added ---------------------------------------------------------------------------- Status|CLOSED |ASSIGNED Resolution|WORKSFORME | Keywords| |Reopened --- Comment #3 from Jeff Fearn 2011-07-07 05:37:41 EDT --- back ported to branches/publican-2x Committed revision 1809. -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Thu Jul 7 10:16:44 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Thu, 7 Jul 2011 06:16:44 -0400 Subject: [publican-list] [Bug 694698] Request for "publican rename" feature In-Reply-To: References: Message-ID: <201107071016.p67AGirE016978@bzweb01.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=694698 --- Comment #8 from Jeff Fearn 2011-07-07 06:16:42 EDT --- Back ported to branches/publican-2x Committed revision 1810. -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Thu Jul 7 10:16:16 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Thu, 7 Jul 2011 06:16:16 -0400 Subject: [publican-list] [Bug 688585] Accented letters in book or article title In-Reply-To: References: Message-ID: <201107071016.p67AGGwM002530@bzweb02.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=688585 --- Comment #5 from Jeff Fearn 2011-07-07 06:16:14 EDT --- Back ported to branches/publican-2x Committed revision 1810. -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Thu Jul 7 10:32:00 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Thu, 7 Jul 2011 06:32:00 -0400 Subject: [publican-list] [Bug 688286] whitespace included at the end of the tag In-Reply-To: References: Message-ID: <201107071032.p67AW0tH020901@bzweb01.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=688286 --- Comment #3 from Jeff Fearn 2011-07-07 06:31:58 EDT --- Back ported to branches/publican-2x Committed revision 1811. -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Thu Jul 7 11:00:07 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Thu, 7 Jul 2011 07:00:07 -0400 Subject: [publican-list] [Bug 662162] show_unknown parameter problem In-Reply-To: References: Message-ID: <201107071100.p67B07vc012442@bzweb02.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=662162 --- Comment #2 from Jeff Fearn 2011-07-07 07:00:06 EDT --- Back ported to branches/publican-2x Committed revision 1812. -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Thu Jul 7 10:59:43 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Thu, 7 Jul 2011 06:59:43 -0400 Subject: [publican-list] [Bug 661948] Updating the database for packaged books is fragile In-Reply-To: References: Message-ID: <201107071059.p67AxhlI012368@bzweb02.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=661948 --- Comment #2 from Jeff Fearn 2011-07-07 06:59:41 EDT --- Back ported to branches/publican-2x Committed revision 1812. -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Thu Jul 7 11:00:39 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Thu, 7 Jul 2011 07:00:39 -0400 Subject: [publican-list] [Bug 702550] Docs with version 0 do not show in nav toc In-Reply-To: References: Message-ID: <201107071100.p67B0djY026369@bzweb01.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=702550 --- Comment #2 from Jeff Fearn 2011-07-07 07:00:38 EDT --- Back ported to branches/publican-2x Committed revision 1812. -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Thu Jul 7 11:08:50 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Thu, 7 Jul 2011 07:08:50 -0400 Subject: [publican-list] [Bug 705956] publican print_unused parses all files in the en-US and subfolders In-Reply-To: References: Message-ID: <201107071108.p67B8omv027966@bzweb01.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=705956 --- Comment #3 from Jeff Fearn 2011-07-07 07:08:49 EDT --- Back ported to branches/publican-2x Committed revision 1813. -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Thu Jul 7 11:16:02 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Thu, 7 Jul 2011 07:16:02 -0400 Subject: [publican-list] [Bug 719573] New: RFE: allow control of updating website navigation for installed/removed books Message-ID: Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. Summary: RFE: allow control of updating website navigation for installed/removed books https://bugzilla.redhat.com/show_bug.cgi?id=719573 Summary: RFE: allow control of updating website navigation for installed/removed books Product: Publican Version: future Platform: Unspecified OS/Version: Unspecified Status: NEW Severity: urgent Priority: unspecified Component: publican AssignedTo: jfearn at redhat.com ReportedBy: jfearn at redhat.com QAContact: rlandman at redhat.com CC: mmcallis at redhat.com, publican-list at redhat.com Classification: Other Story Points: --- Description of problem: When many books are added or removed in a batch then updating the TOC for every book creates a lot of lag. Add a site parameter allowing this to be disabled so the user can control when the TOC is regenerated. Version-Release number of selected component (if applicable): 2.5 How reproducible: Always Steps to Reproduce: 1. Build many book rpms 2. Install all new packages in one yum call Actual results: Much lag as the toc is continually regenerated Expected results: TOC gets regenerated once. Additional info: -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Thu Jul 7 11:53:21 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Thu, 7 Jul 2011 07:53:21 -0400 Subject: [publican-list] [Bug 719573] RFE: allow control of updating website navigation for installed/removed books In-Reply-To: References: Message-ID: <201107071153.p67BrLFC005027@bzweb01.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=719573 Jeff Fearn changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |MODIFIED --- Comment #1 from Jeff Fearn 2011-07-07 07:53:20 EDT --- Added manual_toc_update config for web-sites. Sites that set this must run `publican update_site` to update the web-site navigation. Added to trunk and branches/publican-2x Committed revision 1816. -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Thu Jul 7 12:02:48 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Thu, 7 Jul 2011 08:02:48 -0400 Subject: [publican-list] [Bug 718102] [RFE] -- use the force option for cvs-import.sh In-Reply-To: References: Message-ID: <201107071202.p67C2mYB026116@bzweb02.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=718102 Jeff Fearn changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |MODIFIED --- Comment #1 from Jeff Fearn 2011-07-07 08:02:47 EDT --- Added --force to cvs import script. Added to trunk and branches/publican-2x Committed revision 1818. -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Fri Jul 8 02:05:32 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Thu, 7 Jul 2011 22:05:32 -0400 Subject: [publican-list] [Bug 710304] ing to Appendix does not create a link in html-single In-Reply-To: References: Message-ID: <201107080205.p6825WaW016796@bzweb01.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=710304 Ruediger Landmann changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |r.landmann at redhat.com Flag| |needinfo?(rnewton at redhat.co | |m) --- Comment #1 from Ruediger Landmann 2011-07-07 22:05:31 EDT --- Hi Bec, we don't seem to be able to reproduce this on RHEL6 or F15; could you please point us to a book that displays this behaviour? Cheers Rudi -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Fri Jul 8 02:23:47 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Thu, 7 Jul 2011 22:23:47 -0400 Subject: [publican-list] [Bug 715158] No spacing below admonitions using FOP 1.0-16.fc15 In-Reply-To: References: Message-ID: <201107080223.p682NldZ021496@bzweb01.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=715158 --- Comment #2 from Jeff Fearn 2011-07-07 22:23:46 EDT --- Back ported to branches/publican-2x, tested OK on FOP 0.95. Committed revision 1820. -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Fri Jul 8 02:42:33 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Thu, 7 Jul 2011 22:42:33 -0400 Subject: [publican-list] [Bug 713669] Using the indexterm tag causes a line split in rendered PDF files. In-Reply-To: References: Message-ID: <201107080242.p682gXPH017856@bzweb02.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=713669 Jeff Fearn changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |MODIFIED --- Comment #1 from Jeff Fearn 2011-07-07 22:42:32 EDT --- Fixed override to apply style change better. Applied to trunk and branches/publican-2x Committed revision 1822. -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Fri Jul 8 05:54:07 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Fri, 8 Jul 2011 01:54:07 -0400 Subject: [publican-list] [Bug 708278] RFE: support translation memory In-Reply-To: References: Message-ID: <201107080554.p685s7jA028580@bzweb02.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=708278 Jeff Fearn changed: What |Removed |Added ---------------------------------------------------------------------------- Flag| |needinfo?(r.landmann at redhat | |.com) --- Comment #2 from Jeff Fearn 2011-07-08 01:54:06 EDT --- Please open a separate bug for 'have some way to "freeze" a version' since it's unrelated to translation memory. Please supply more detail in what is required with regard to translation memory. i.e integration with specific translation memory tools or standards, or implementing a system in Publican specifically for documentation. If the later then please supply details of the functionality required. -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Fri Jul 8 06:19:02 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Fri, 8 Jul 2011 02:19:02 -0400 Subject: [publican-list] [Bug 719832] New: RFE: support git for distributed sets Message-ID: Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. Summary: RFE: support git for distributed sets https://bugzilla.redhat.com/show_bug.cgi?id=719832 Summary: RFE: support git for distributed sets Product: Publican Version: future Platform: Unspecified OS/Version: Unspecified Status: NEW Severity: unspecified Priority: unspecified Component: publican AssignedTo: jfearn at redhat.com ReportedBy: jfearn at redhat.com QAContact: rlandman at redhat.com CC: mmcallis at redhat.com, publican-list at redhat.com Classification: Other Story Points: --- GIT is the new black, so it'd be nice to be able to use git for distributed sets. -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Fri Jul 8 06:22:41 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Fri, 8 Jul 2011 02:22:41 -0400 Subject: [publican-list] [Bug 719834] New: RFE: support git for remote packaging Message-ID: Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. Summary: RFE: support git for remote packaging https://bugzilla.redhat.com/show_bug.cgi?id=719834 Summary: RFE: support git for remote packaging Product: Publican Version: future Platform: Unspecified OS/Version: Unspecified Status: NEW Severity: unspecified Priority: unspecified Component: publican AssignedTo: jfearn at redhat.com ReportedBy: jfearn at redhat.com QAContact: rlandman at redhat.com CC: mmcallis at redhat.com, publican-list at redhat.com Classification: Other Story Points: --- Since Fedora has moved it's packaging from CVS to GIT it's no longer possible to use `publican package --cvs` to import new packages. Need a --git option to re-enable this work flow. -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Fri Jul 8 06:27:41 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Fri, 8 Jul 2011 02:27:41 -0400 Subject: [publican-list] [Bug 719835] New: RFE: support multiple repositories for distributed sets Message-ID: Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. Summary: RFE: support multiple repositories for distributed sets https://bugzilla.redhat.com/show_bug.cgi?id=719835 Summary: RFE: support multiple repositories for distributed sets Product: Publican Version: future Platform: Unspecified OS/Version: Unspecified Status: NEW Severity: unspecified Priority: unspecified Component: publican AssignedTo: jfearn at redhat.com ReportedBy: jfearn at redhat.com QAContact: rlandman at redhat.com CC: mmcallis at redhat.com, publican-list at redhat.com Classification: Other Story Points: --- Currently books used in distributed sets all have to be in the same directory of a repository, it would be nice to be able to have books in separate repositories, to allow truly distributed sets. -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Sun Jul 10 22:38:21 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Sun, 10 Jul 2011 18:38:21 -0400 Subject: [publican-list] [Bug 710304] ing to Appendix does not create a link in html-single In-Reply-To: References: Message-ID: <201107102238.p6AMcLI8029279@bzweb02.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=710304 Rebecca Newton changed: What |Removed |Added ---------------------------------------------------------------------------- Flag|needinfo?(rnewton at redhat.co | |m) | --- Comment #2 from Rebecca Newton 2011-07-10 18:38:21 EDT --- Hi Rudi, it was the Spring Developer Guide for WFK but it seems to actually be working now. I haven't rebuilt it since the stage overhaul though, and I am still on F14. -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Mon Jul 11 03:31:27 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Sun, 10 Jul 2011 23:31:27 -0400 Subject: [publican-list] [Bug 687894] rendering of steps inside stepalternatives In-Reply-To: References: Message-ID: <201107110331.p6B3VR9x026814@bzweb01.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=687894 Ryan Lerch changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|rlerch at redhat.com |mprpic at redhat.com -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Mon Jul 11 03:31:54 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Sun, 10 Jul 2011 23:31:54 -0400 Subject: [publican-list] [Bug 671304] Increase appearance of book titles in ToC In-Reply-To: References: Message-ID: <201107110331.p6B3VsFD026900@bzweb01.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=671304 Ryan Lerch changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|rlerch at redhat.com |mprpic at redhat.com -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Mon Jul 11 03:32:14 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Sun, 10 Jul 2011 23:32:14 -0400 Subject: [publican-list] [Bug 671304] Increase appearance of book titles in ToC In-Reply-To: References: Message-ID: <201107110332.p6B3WEcT027391@bzweb02.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=671304 Ryan Lerch changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|mprpic at redhat.com |rlerch at redhat.com -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Tue Jul 12 05:19:05 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Tue, 12 Jul 2011 01:19:05 -0400 Subject: [publican-list] [Bug 673402] Creating a (distributed) set creates invalid docbook In-Reply-To: References: Message-ID: <201107120519.p6C5J5m5031070@bzweb01.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=673402 Rebecca Newton changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |VERIFIED --- Comment #5 from Rebecca Newton 2011-07-12 01:19:04 EDT --- Warnings are evident in the Publican output when building a set for the first time. This highlights the sections that need to change. -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Tue Jul 12 05:34:55 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Tue, 12 Jul 2011 01:34:55 -0400 Subject: [publican-list] [Bug 705956] publican print_unused parses all files in the en-US and subfolders In-Reply-To: References: Message-ID: <201107120534.p6C5Yt9J004717@bzweb02.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=705956 Jared Morgan changed: What |Removed |Added ---------------------------------------------------------------------------- Status|MODIFIED |VERIFIED -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Tue Jul 12 05:45:43 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Tue, 12 Jul 2011 01:45:43 -0400 Subject: [publican-list] [Bug 662162] show_unknown parameter problem In-Reply-To: References: Message-ID: <201107120545.p6C5jhaH005598@bzweb01.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=662162 Jared Morgan changed: What |Removed |Added ---------------------------------------------------------------------------- Status|MODIFIED |VERIFIED CC| |jmorgan at redhat.com -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Tue Jul 12 05:51:28 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Tue, 12 Jul 2011 01:51:28 -0400 Subject: [publican-list] [Bug 713669] Using the indexterm tag causes a line split in rendered PDF files. In-Reply-To: References: Message-ID: <201107120551.p6C5pS4Q006717@bzweb01.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=713669 Rebecca Newton changed: What |Removed |Added ---------------------------------------------------------------------------- Status|MODIFIED |VERIFIED CC| |rnewton at redhat.com --- Comment #2 from Rebecca Newton 2011-07-12 01:51:27 EDT --- Verified. The text appears as one line in a PDF when using . -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Tue Jul 12 05:59:51 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Tue, 12 Jul 2011 01:59:51 -0400 Subject: [publican-list] [Bug 672439] Anchors are not set on In-Reply-To: References: Message-ID: <201107120559.p6C5xpZh010182@bzweb02.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=672439 Rebecca Newton changed: What |Removed |Added ---------------------------------------------------------------------------- Status|MODIFIED |VERIFIED CC| |rnewton at redhat.com --- Comment #5 from Rebecca Newton 2011-07-12 01:59:50 EDT --- Verified! Clicking the xref link takes you to the task it is linking to. -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Tue Jul 12 06:35:21 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Tue, 12 Jul 2011 02:35:21 -0400 Subject: [publican-list] [Bug 718102] [RFE] -- use the force option for cvs-import.sh In-Reply-To: References: Message-ID: <201107120635.p6C6ZLcP019170@bzweb01.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=718102 Jared Morgan changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jmorgan at redhat.com -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Tue Jul 12 06:43:03 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Tue, 12 Jul 2011 02:43:03 -0400 Subject: [publican-list] [Bug 694698] Request for "publican rename" feature In-Reply-To: References: Message-ID: <201107120643.p6C6h3Jr020979@bzweb02.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=694698 --- Comment #9 from Rebecca Newton 2011-07-12 02:43:01 EDT --- Hi Jeff, I'm just testing this to make the stage all better, and I'm not sure what the expected behavior of this is. I thought it would rename the actual local .ent and .xml files or even the folder itself, but all I can see is it changing the , and in the Book_Info.xml. I have probably completely misunderstood, haven't I? -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Tue Jul 12 06:51:19 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Tue, 12 Jul 2011 02:51:19 -0400 Subject: [publican-list] [Bug 694698] Request for "publican rename" feature In-Reply-To: <bug-694698-264938@bugzilla.redhat.com> References: <bug-694698-264938@bugzilla.redhat.com> Message-ID: <201107120651.p6C6pJgg023020@bzweb02.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=694698 --- Comment #10 from Jeff Fearn <jfearn at redhat.com> 2011-07-12 02:51:18 EDT --- (In reply to comment #9) > Hi Jeff, I'm just testing this to make the stage all better, and I'm not sure > what the expected behavior of this is. I thought it would rename the actual > local .ent and .xml files or even the folder itself, but all I can see is it > changing the <productname>, <productnumber> and <title> in the Book_Info.xml. > > I have probably completely misunderstood, haven't I? Hi, changing the file names would mean having to work out what SCM was being used then supporting every SCM to rename the file and not lose history. This was deemed too error prone. So what we do is modify the publican config so that it uses the new book name and the old book file, meaning we keep SCM history and don't need to rename files. Building the package should use the new book name. Cheers, Jeff. -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Tue Jul 12 22:14:39 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Tue, 12 Jul 2011 18:14:39 -0400 Subject: [publican-list] [Bug 718102] [RFE] -- use the force option for cvs-import.sh In-Reply-To: <bug-718102-264938@bugzilla.redhat.com> References: <bug-718102-264938@bugzilla.redhat.com> Message-ID: <201107122214.p6CMEdZF024831@bzweb02.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=718102 Jared Morgan <jmorgan at redhat.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|MODIFIED |VERIFIED --- Comment #3 from Jared Morgan <jmorgan at redhat.com> 2011-07-12 18:14:38 EDT --- Jeff added a fix to the trunk which I'm about to re-test as part of this ticket. Confirmed: The check required to confirm the cvs diff no longer presents as part of a brew build. You still need to insert a commit message, which is still expected behaviour AFAICT. -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Tue Jul 12 23:07:10 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Tue, 12 Jul 2011 19:07:10 -0400 Subject: [publican-list] [Bug 688286] whitespace included at the end of the <productname> tag In-Reply-To: <bug-688286-264938@bugzilla.redhat.com> References: <bug-688286-264938@bugzilla.redhat.com> Message-ID: <201107122307.p6CN7Ams003522@bzweb02.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=688286 Jared Morgan <jmorgan at redhat.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|MODIFIED |VERIFIED CC| |jmorgan at redhat.com --- Comment #4 from Jared Morgan <jmorgan at redhat.com> 2011-07-12 19:07:08 EDT --- Well, I've verified that the bug reported no longer presents. I used the same syntactical structure the reporter used, and there is no whitespace issue. Tested on HTML-single and PDF. I'm not sure whether stylisticly the text should have any style applied to it, such as bold, or italics. This is likely outside the scope of this issue. -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Tue Jul 12 23:36:11 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Tue, 12 Jul 2011 19:36:11 -0400 Subject: [publican-list] [Bug 694698] Request for "publican rename" feature In-Reply-To: <bug-694698-264938@bugzilla.redhat.com> References: <bug-694698-264938@bugzilla.redhat.com> Message-ID: <201107122336.p6CNaBUX007343@bzweb01.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=694698 Rebecca Newton <rnewton at redhat.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|MODIFIED |VERIFIED --- Comment #11 from Rebecca Newton <rnewton at redhat.com> 2011-07-12 19:36:10 EDT --- Okay, thanks. In that case, I can verify that this works as expected! -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Wed Jul 13 00:01:37 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Tue, 12 Jul 2011 20:01:37 -0400 Subject: [publican-list] [Bug 697370] set keep-id on <step> In-Reply-To: <bug-697370-264938@bugzilla.redhat.com> References: <bug-697370-264938@bugzilla.redhat.com> Message-ID: <201107130001.p6D01beI014608@bzweb02.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=697370 Rebecca Newton <rnewton at redhat.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|MODIFIED |VERIFIED CC| |rnewton at redhat.com --- Comment #3 from Rebecca Newton <rnewton at redhat.com> 2011-07-12 20:01:36 EDT --- Huzzah! I can verify that this behaves as expected. -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Wed Jul 13 00:40:59 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Tue, 12 Jul 2011 20:40:59 -0400 Subject: [publican-list] [Bug 663206] [RFE] publican creates invalid spec files In-Reply-To: <bug-663206-264938@bugzilla.redhat.com> References: <bug-663206-264938@bugzilla.redhat.com> Message-ID: <201107130040.p6D0ex2G019894@bzweb01.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=663206 Rebecca Newton <rnewton at redhat.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |rnewton at redhat.com --- Comment #3 from Rebecca Newton <rnewton at redhat.com> 2011-07-12 20:40:57 EDT --- Hi Jeff, I'm trying to build a set and I am getting: WARNING: You can not create RPM packages with a blank subtitle. Skipping RPM creation. pushd tmp Use of uninitialized value in subroutine entry at /usr/bin/publican line 910. Can't locate srpm, CVS import aborted at /usr/bin/publican line 912 This is expected, due to this update, but both the Set_Info.xml and the Book_Info.xmls for the included books HAVE subtitles, so this error probably shouldn't show up, should it? -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Wed Jul 13 00:48:30 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Tue, 12 Jul 2011 20:48:30 -0400 Subject: [publican-list] [Bug 662907] Publican reformats <address> when it cleans XML In-Reply-To: <bug-662907-264938@bugzilla.redhat.com> References: <bug-662907-264938@bugzilla.redhat.com> Message-ID: <201107130048.p6D0mUI9021091@bzweb01.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=662907 Rebecca Newton <rnewton at redhat.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|MODIFIED |VERIFIED CC| |rnewton at redhat.com --- Comment #3 from Rebecca Newton <rnewton at redhat.com> 2011-07-12 20:48:29 EDT --- I can verify that this fix is working as expected. -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Wed Jul 13 00:54:36 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Tue, 12 Jul 2011 20:54:36 -0400 Subject: [publican-list] [Bug 697382] support epub-embedded-fonts parameter in docbook-style-xsl 1.76.1 In-Reply-To: <bug-697382-264938@bugzilla.redhat.com> References: <bug-697382-264938@bugzilla.redhat.com> Message-ID: <201107130054.p6D0sa4O024350@bzweb02.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=697382 Rebecca Newton <rnewton at redhat.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|MODIFIED |VERIFIED CC| |rnewton at redhat.com --- Comment #3 from Rebecca Newton <rnewton at redhat.com> 2011-07-12 20:54:35 EDT --- I can successfully build and open an EPUB, so it must have worked! Verified. -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Wed Jul 13 00:58:37 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Tue, 12 Jul 2011 20:58:37 -0400 Subject: [publican-list] [Bug 663206] [RFE] publican creates invalid spec files In-Reply-To: <bug-663206-264938@bugzilla.redhat.com> References: <bug-663206-264938@bugzilla.redhat.com> Message-ID: <201107130058.p6D0wbfe025172@bzweb02.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=663206 --- Comment #4 from Rebecca Newton <rnewton at redhat.com> 2011-07-12 20:58:36 EDT --- It does work fine for books, though. -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Wed Jul 13 01:18:22 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Tue, 12 Jul 2011 21:18:22 -0400 Subject: [publican-list] [Bug 705956] publican print_unused parses all files in the en-US and subfolders In-Reply-To: <bug-705956-264938@bugzilla.redhat.com> References: <bug-705956-264938@bugzilla.redhat.com> Message-ID: <201107130118.p6D1IMPq029621@bzweb02.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=705956 Jared Morgan <jmorgan at redhat.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|VERIFIED |MODIFIED --- Comment #5 from Jared Morgan <jmorgan at redhat.com> 2011-07-12 21:18:21 EDT --- I've tried this on another older book, the Messaging Guide for EAP 4.3 and the problem has manifested itself again: SVN: https://svn.devel.redhat.com/repos/ecs/JBoss_Enterprise_Application_Platform/trunk/4.3/Messaging_User_Guide This book has two xi:includes that reference .xml code samples with markup present. Running publican print_unused results in the following exception: [jmorgan at jmorgan Messaging_User_Guide]$ publican print_unused DEBUG: Publican: config loaded Couldn't open Messaging_User_Guide.xml: No such file or directory at /usr/share/perl5/XML/TreeBuilder.pm line 192 This is the same error. -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Wed Jul 13 01:43:06 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Tue, 12 Jul 2011 21:43:06 -0400 Subject: [publican-list] [Bug 705956] publican print_unused parses all files in the en-US and subfolders In-Reply-To: <bug-705956-264938@bugzilla.redhat.com> References: <bug-705956-264938@bugzilla.redhat.com> Message-ID: <201107130143.p6D1h6K8002485@bzweb02.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=705956 Jared Morgan <jmorgan at redhat.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|MODIFIED |VERIFIED -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Wed Jul 13 02:06:32 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Tue, 12 Jul 2011 22:06:32 -0400 Subject: [publican-list] [Bug 715158] No spacing below admonitions using FOP 1.0-16.fc15 In-Reply-To: <bug-715158-264938@bugzilla.redhat.com> References: <bug-715158-264938@bugzilla.redhat.com> Message-ID: <201107130206.p6D26WFp008545@bzweb02.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=715158 --- Comment #3 from Tim Hildred <thildred at redhat.com> 2011-07-12 22:06:32 EDT --- Created attachment 512548 --> https://bugzilla.redhat.com/attachment.cgi?id=512548 screenshot of properly space admonitions -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Wed Jul 13 02:07:13 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Tue, 12 Jul 2011 22:07:13 -0400 Subject: [publican-list] [Bug 715158] No spacing below admonitions using FOP 1.0-16.fc15 In-Reply-To: <bug-715158-264938@bugzilla.redhat.com> References: <bug-715158-264938@bugzilla.redhat.com> Message-ID: <201107130207.p6D27DqJ008652@bzweb02.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=715158 Tim Hildred <thildred at redhat.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|MODIFIED |VERIFIED CC| |thildred at redhat.com --- Comment #4 from Tim Hildred <thildred at redhat.com> 2011-07-12 22:07:12 EDT --- tested in fedora 15 with fop 1.0-16.fc15, works. -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Wed Jul 13 03:47:49 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Tue, 12 Jul 2011 23:47:49 -0400 Subject: [publican-list] [Bug 688585] Accented letters in book or article title In-Reply-To: <bug-688585-264938@bugzilla.redhat.com> References: <bug-688585-264938@bugzilla.redhat.com> Message-ID: <201107130347.p6D3lneY026850@bzweb01.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=688585 Rebecca Newton <rnewton at redhat.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|MODIFIED |VERIFIED CC| |rnewton at redhat.com --- Comment #6 from Rebecca Newton <rnewton at redhat.com> 2011-07-12 23:47:48 EDT --- This works! -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Wed Jul 13 04:55:05 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Wed, 13 Jul 2011 00:55:05 -0400 Subject: [publican-list] [Bug 689347] Even when building a <set> works ... brewing it doesn't. In-Reply-To: <bug-689347-264938@bugzilla.redhat.com> References: <bug-689347-264938@bugzilla.redhat.com> Message-ID: <201107130455.p6D4t5iZ007773@bzweb01.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=689347 Rebecca Newton <rnewton at redhat.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|MODIFIED |VERIFIED --- Comment #3 from Rebecca Newton <rnewton at redhat.com> 2011-07-13 00:55:04 EDT --- Verified! My set brews for the first time, huzzah! -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Wed Jul 13 04:54:33 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Wed, 13 Jul 2011 00:54:33 -0400 Subject: [publican-list] [Bug 663206] [RFE] publican creates invalid spec files In-Reply-To: <bug-663206-264938@bugzilla.redhat.com> References: <bug-663206-264938@bugzilla.redhat.com> Message-ID: <201107130454.p6D4sXNU007699@bzweb01.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=663206 Rebecca Newton <rnewton at redhat.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|MODIFIED |VERIFIED --- Comment #7 from Rebecca Newton <rnewton at redhat.com> 2011-07-13 00:54:32 EDT --- Fix verified. I can't reproduce the earlier bug. I must have been looking at it wrong. -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Wed Jul 13 06:02:44 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Wed, 13 Jul 2011 02:02:44 -0400 Subject: [publican-list] [Bug 697362] Cannot build text format on its own In-Reply-To: <bug-697362-264938@bugzilla.redhat.com> References: <bug-697362-264938@bugzilla.redhat.com> Message-ID: <201107130602.p6D62iNG022387@bzweb01.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=697362 Ruediger Landmann <r.landmann at redhat.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |CLOSED Resolution| |WORKSFORME Last Closed| |2011-07-13 02:02:43 --- Comment #1 from Ruediger Landmann <r.landmann at redhat.com> 2011-07-13 02:02:43 EDT --- publican build -f txt -l en-US works as expected. -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Wed Jul 13 06:05:19 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Wed, 13 Jul 2011 02:05:19 -0400 Subject: [publican-list] [Bug 697360] Stray characters in text format In-Reply-To: <bug-697360-264938@bugzilla.redhat.com> References: <bug-697360-264938@bugzilla.redhat.com> Message-ID: <201107130605.p6D65Jxg025799@bzweb02.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=697360 Ruediger Landmann <r.landmann at redhat.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |CLOSED Resolution| |DUPLICATE Last Closed| |2011-07-13 02:05:18 --- Comment #1 from Ruediger Landmann <r.landmann at redhat.com> 2011-07-13 02:05:18 EDT --- *** This bug has been marked as a duplicate of bug 673855 *** -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Thu Jul 14 04:38:08 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Thu, 14 Jul 2011 00:38:08 -0400 Subject: [publican-list] [Bug 671304] Increase appearance of book titles in <set> ToC In-Reply-To: <bug-671304-264938@bugzilla.redhat.com> References: <bug-671304-264938@bugzilla.redhat.com> Message-ID: <201107140438.p6E4c8hX012932@bzweb01.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=671304 --- Comment #1 from Rebecca Newton <rnewton at redhat.com> 2011-07-14 00:38:07 EDT --- Created attachment 512795 --> https://bugzilla.redhat.com/attachment.cgi?id=512795 set mockup Hey Ryan, is there likely to be any movement on this in the nearish future? I've made a (very very very basic) mockup of what I think it needs. All I think needs to be done is increase the indent of the chapters and maybe raise the size of the font. -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Thu Jul 14 05:15:20 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Thu, 14 Jul 2011 01:15:20 -0400 Subject: [publican-list] [Bug 663399] PUG 3.7.1.1. "Source RPM packages and binary RPM packages" needs review In-Reply-To: <bug-663399-264938@bugzilla.redhat.com> References: <bug-663399-264938@bugzilla.redhat.com> Message-ID: <201107140515.p6E5FKF8019957@bzweb01.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=663399 Ruediger Landmann <r.landmann at redhat.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |MODIFIED CC| |r.landmann at redhat.com --- Comment #5 from Ruediger Landmann <r.landmann at redhat.com> 2011-07-14 01:15:18 EDT --- Thanks once again for the detailed feedback and suggestions Luigi; I've incorporated the vast majority of them into the Guide for 2.6. -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Thu Jul 14 05:39:35 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Thu, 14 Jul 2011 01:39:35 -0400 Subject: [publican-list] [Bug 657132] [RFE] Handling for multiple config files in brew In-Reply-To: <bug-657132-264938@bugzilla.redhat.com> References: <bug-657132-264938@bugzilla.redhat.com> Message-ID: <201107140539.p6E5dZD1024971@bzweb01.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=657132 Ruediger Landmann <r.landmann at redhat.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |MODIFIED --- Comment #3 from Ruediger Landmann <r.landmann at redhat.com> 2011-07-14 01:39:34 EDT --- Confirmed that the nominated alternative config file is used to generate the publican.cfg file that gets packaged. Advice added to "3.8. Conditional tagging" in the PUG: If you maintain two versions of a book in the same repository, we recommend using a separate config file for each version. For example, the upstream.cfg file might contain the condition condition: upstream and the enterprise.cfg file might contain the condition condition: enterprise. You could then specify the version of the document to build or package with the --config; for example, publican package --lang en-US --config upstream.cfg. Using two separate config files saves you from having to edit the one config file each time you build or package a document. Committed revision 1831. -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Mon Jul 18 00:28:21 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Sun, 17 Jul 2011 20:28:21 -0400 Subject: [publican-list] [Bug 722800] New: RFE: Search Box Display Results into iFrame Message-ID: <bug-722800-264938@bugzilla.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. Summary: RFE: Search Box Display Results into iFrame https://bugzilla.redhat.com/show_bug.cgi?id=722800 Summary: RFE: Search Box Display Results into iFrame Product: Publican Version: 2.5 Platform: Unspecified OS/Version: Unspecified Status: NEW Severity: low Priority: unspecified Component: publican AssignedTo: jfearn at redhat.com ReportedBy: mhideo at redhat.com QAContact: rlandman at redhat.com CC: mmcallis at redhat.com, publican-list at redhat.com Classification: Other Story Points: --- Description of problem: Currently, the search box on docs.redhat.com over-writes the entire display. Would it be possible to include the output of the search into the frame where the content is displayed? This will make it easier to see where content is coming from on the left hand toc when one clicks multiple times on search results to see what product it is coming from. For example, searching for cluster could bring up content from clustering/storage or the application server. Low priority, adds itself to useability and is cosmetic by and large. - Mike -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From mhideo at redhat.com Mon Jul 18 00:46:11 2011 From: mhideo at redhat.com (Mike Hideo) Date: Mon, 18 Jul 2011 10:46:11 +1000 Subject: [publican-list] [QUERY] Anyone Integrate Video Message-ID: <4E238253.40300@redhat.com> Has anyone experimented or deployed integrating video with docbook? Either within a publican package or linking to youtube/vimeo ? cheers, Mike From bugzilla at redhat.com Mon Jul 18 04:13:39 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Mon, 18 Jul 2011 00:13:39 -0400 Subject: [publican-list] [Bug 661551] Publican does not catch failed PDF builds when creating packages In-Reply-To: <bug-661551-264938@bugzilla.redhat.com> References: <bug-661551-264938@bugzilla.redhat.com> Message-ID: <201107180413.p6I4DdN0018575@bzweb01.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=661551 Ruediger Landmann <r.landmann at redhat.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|MODIFIED |VERIFIED CC| |r.landmann at redhat.com -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Mon Jul 18 04:38:48 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Mon, 18 Jul 2011 00:38:48 -0400 Subject: [publican-list] [Bug 653432] line numbering of <programlisting> broken In-Reply-To: <bug-653432-264938@bugzilla.redhat.com> References: <bug-653432-264938@bugzilla.redhat.com> Message-ID: <201107180438.p6I4cmbk012737@bzweb02.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=653432 Ruediger Landmann <r.landmann at redhat.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|MODIFIED |VERIFIED --- Comment #3 from Ruediger Landmann <r.landmann at redhat.com> 2011-07-18 00:38:47 EDT --- Verified in build 2.5-2.fc15.t14 linenumbering and startinglinenumber attributes working as expected; < and > correctly escaped. -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Mon Jul 18 05:34:08 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Mon, 18 Jul 2011 01:34:08 -0400 Subject: [publican-list] [Bug 661948] Updating the database for packaged books is fragile In-Reply-To: <bug-661948-264938@bugzilla.redhat.com> References: <bug-661948-264938@bugzilla.redhat.com> Message-ID: <201107180534.p6I5Y81i022788@bzweb02.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=661948 Ruediger Landmann <r.landmann at redhat.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |r.landmann at redhat.com --- Comment #3 from Ruediger Landmann <r.landmann at redhat.com> 2011-07-18 01:34:06 EDT --- I tested this in build 2.5-2.fc15.t14 When I tried to update a package, yum gave me: Error in PREUN scriptlet in rpm package Documentation-0806-0-web-en-US Documentation-0806-0-web-en-US-0-0.el5.noarch was supposed to be removed but is not! so then I tried to remove the existing package with RPM and got: Unknown option: add Unknown option: lang Unknown option: formats Unknown option: name Unknown option: version Unknown option: product Unknown option: subtitle Unknown option: abstract I recognised these as the options for the update_db action, so I thought I'd just try "publican update_db" on the command line, which gave me: 'update_db' is an unknown action! Valid actions are: <followed by a list of valid publican actions, update_db not among them> -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Mon Jul 18 06:17:07 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Mon, 18 Jul 2011 02:17:07 -0400 Subject: [publican-list] [Bug 661948] Updating the database for packaged books is fragile In-Reply-To: <bug-661948-264938@bugzilla.redhat.com> References: <bug-661948-264938@bugzilla.redhat.com> Message-ID: <201107180617.p6I6H7Gw030587@bzweb02.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=661948 --- Comment #4 from Ruediger Landmann <r.landmann at redhat.com> 2011-07-18 02:17:07 EDT --- However, another package installed and uninstalled cleanly: Red_Hat_Enterprise_Linux-Power_Management_Guide-6-web-de-DE.noarch 0:1.0-4.fc15 -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Mon Jul 18 06:26:39 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Mon, 18 Jul 2011 02:26:39 -0400 Subject: [publican-list] [Bug 661948] Updating the database for packaged books is fragile In-Reply-To: <bug-661948-264938@bugzilla.redhat.com> References: <bug-661948-264938@bugzilla.redhat.com> Message-ID: <201107180626.p6I6QdGa012106@bzweb01.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=661948 --- Comment #5 from Ruediger Landmann <r.landmann at redhat.com> 2011-07-18 02:26:38 EDT --- (In reply to comment #4) > However, another package installed and uninstalled cleanly: > > Red_Hat_Enterprise_Linux-Power_Management_Guide-6-web-de-DE.noarch 0:1.0-4.fc15 Heh; of course this used the raw perl command because I just built it with rpmbuild --rebuild... D'oh! -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Mon Jul 18 06:40:58 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Mon, 18 Jul 2011 02:40:58 -0400 Subject: [publican-list] [Bug 661948] Updating the database for packaged books is fragile In-Reply-To: <bug-661948-264938@bugzilla.redhat.com> References: <bug-661948-264938@bugzilla.redhat.com> Message-ID: <201107180640.p6I6ew47003600@bzweb02.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=661948 --- Comment #6 from Jeff Fearn <jfearn at redhat.com> 2011-07-18 02:40:57 EDT --- Oops, missed the action entry when back porting this code. Committed revision 1837. $ publican update_db --help update_db Add or remove database entries. Used for processing pre-build books, such as when building packages. Options: --help Display help message --config=s Use a nonstandard config file --common_config=s Override path to Common_Config directory --common_content=s Override path to Common_Content directory --nocolours Disable ANSI colourisation of logging. --quiet Disable all logging. --site_config=<SITE_CONFIG> WebSite configuration file to use or create. --add Add a database enrty --del Delete a database entry --lang=<LANG> The language the XML will be written in --product=<PRODUCT> The name of the product --version=<VERSION> The version of the product --name=<NAME> The name of the book, article, set, or brand --formats=<FORMATS> Comma-separated list of formats, for example: html,pdf,html-single,html-desktop,txt,epub --subtitle=<SUBTITLE> Sub title for a book --abstract=<ABSTRACT> Abstract for a book --product_label=<PRODUCT_LABEL> product label for a book --version_label=<VERSION_LABEL> version label for a book --name_label=<NAME_LABEL> name label for a book -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Mon Jul 18 06:49:21 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Mon, 18 Jul 2011 02:49:21 -0400 Subject: [publican-list] [Bug 688447] stdout, stderr and exit codes In-Reply-To: <bug-688447-264938@bugzilla.redhat.com> References: <bug-688447-264938@bugzilla.redhat.com> Message-ID: <201107180649.p6I6nLGI005077@bzweb02.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=688447 Ruediger Landmann <r.landmann at redhat.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|MODIFIED |VERIFIED CC| |r.landmann at redhat.com --- Comment #4 from Ruediger Landmann <r.landmann at redhat.com> 2011-07-18 02:49:20 EDT --- Verified in build 2.5-2.fc15.t14 * output is on STDOUT * Publican croaks on CVS errors -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Mon Jul 18 23:02:48 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Mon, 18 Jul 2011 19:02:48 -0400 Subject: [publican-list] [Bug 702550] Docs with version 0 do not show in nav toc In-Reply-To: <bug-702550-264938@bugzilla.redhat.com> References: <bug-702550-264938@bugzilla.redhat.com> Message-ID: <201107182302.p6IN2mkr010586@bzweb02.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=702550 Ruediger Landmann <r.landmann at redhat.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|MODIFIED |VERIFIED CC| |r.landmann at redhat.com --- Comment #3 from Ruediger Landmann <r.landmann at redhat.com> 2011-07-18 19:02:48 EDT --- Verified with 2.5-2.fc15.t17 -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Wed Jul 20 22:10:51 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Wed, 20 Jul 2011 18:10:51 -0400 Subject: [publican-list] [Bug 723725] New: RFE: Allow brands to prevent TOC from being embedded in web formats Message-ID: <bug-723725-264938@bugzilla.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. Summary: RFE: Allow brands to prevent TOC from being embedded in web formats https://bugzilla.redhat.com/show_bug.cgi?id=723725 Summary: RFE: Allow brands to prevent TOC from being embedded in web formats Product: Publican Version: future Platform: Unspecified OS/Version: Unspecified Status: NEW Severity: unspecified Priority: unspecified Component: publican AssignedTo: jfearn at redhat.com ReportedBy: jfearn at redhat.com QAContact: rlandman at redhat.com CC: mmcallis at redhat.com, publican-list at redhat.com Classification: Other Story Points: --- Description of problem: Since not all web sites are created the same Brands should be able to disable TOC embedding and creation for website packages. Version-Release number of selected component (if applicable): 2.5 -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From jmorgan at redhat.com Thu Jul 21 04:29:13 2011 From: jmorgan at redhat.com (Jared Morgan) Date: Thu, 21 Jul 2011 00:29:13 -0400 (EDT) Subject: [publican-list] [QUERY] Anyone Integrate Video In-Reply-To: <4E238253.40300@redhat.com> Message-ID: <36e86eb4-d734-45e8-8d3e-c58978e1f204@jmorgan.bne.redhat.com> Hi Mike You can embed video from youTube right now: <mediaobject> <videoobject> <videodata fileref="http://www.youtube.com/embed/ySyPIoyXJ-k?rel=0" contentwidth="560" contentdepth="450"/> </videoobject> <caption>The Red Hat Way video, hosted on youTube.</caption> </mediaobject> Put that into some book code, and you'll get embedded video. :D Cheers Jared ----- Original Message ----- From: "Mike Hideo" <mhideo at redhat.com> To: publican-list at redhat.com Sent: Monday, July 18, 2011 10:46:11 AM Subject: [publican-list] [QUERY] Anyone Integrate Video Has anyone experimented or deployed integrating video with docbook? Either within a publican package or linking to youtube/vimeo ? cheers, Mike _______________________________________________ publican-list mailing list publican-list at redhat.com https://www.redhat.com/mailman/listinfo/publican-list Wiki: https://fedorahosted.org/publican From djorm at redhat.com Thu Jul 21 04:32:39 2011 From: djorm at redhat.com (David Jorm) Date: Thu, 21 Jul 2011 00:32:39 -0400 (EDT) Subject: [publican-list] [QUERY] Anyone Integrate Video In-Reply-To: <36e86eb4-d734-45e8-8d3e-c58978e1f204@jmorgan.bne.redhat.com> Message-ID: <953174777.1482833.1311222759434.JavaMail.root@zmail01.collab.prod.int.phx2.redhat.com> What do you see in the PDF/epub when you do this? -- David Jorm / Red Hat Security Response Team ----- Original Message ----- From: "Jared Morgan" <jmorgan at redhat.com> To: "Publican discussions" <publican-list at redhat.com> Sent: Thursday, July 21, 2011 2:29:13 PM Subject: Re: [publican-list] [QUERY] Anyone Integrate Video Hi Mike You can embed video from youTube right now: <mediaobject> <videoobject> <videodata fileref="http://www.youtube.com/embed/ySyPIoyXJ-k?rel=0" contentwidth="560" contentdepth="450"/> </videoobject> <caption>The Red Hat Way video, hosted on youTube.</caption> </mediaobject> Put that into some book code, and you'll get embedded video. :D Cheers Jared ----- Original Message ----- From: "Mike Hideo" <mhideo at redhat.com> To: publican-list at redhat.com Sent: Monday, July 18, 2011 10:46:11 AM Subject: [publican-list] [QUERY] Anyone Integrate Video Has anyone experimented or deployed integrating video with docbook? Either within a publican package or linking to youtube/vimeo ? cheers, Mike _______________________________________________ publican-list mailing list publican-list at redhat.com https://www.redhat.com/mailman/listinfo/publican-list Wiki: https://fedorahosted.org/publican _______________________________________________ publican-list mailing list publican-list at redhat.com https://www.redhat.com/mailman/listinfo/publican-list Wiki: https://fedorahosted.org/publican From jmorgan at redhat.com Thu Jul 21 04:37:28 2011 From: jmorgan at redhat.com (Jared Morgan) Date: Thu, 21 Jul 2011 00:37:28 -0400 (EDT) Subject: [publican-list] [QUERY] Anyone Integrate Video In-Reply-To: <953174777.1482833.1311222759434.JavaMail.root@zmail01.collab.prod.int.phx2.redhat.com> Message-ID: <88a84fd0-d2e3-4c6c-9d2d-9a78c84cb7f6@jmorgan.bne.redhat.com> You see the Caption: The Red Hat Way video, hosted on youTube Which means you can put the direct URL in the caption to direct off-line users to the video. ----- Original Message ----- From: "David Jorm" <djorm at redhat.com> To: "Publican discussions" <publican-list at redhat.com> Sent: Thursday, July 21, 2011 2:32:39 PM Subject: Re: [publican-list] [QUERY] Anyone Integrate Video What do you see in the PDF/epub when you do this? -- David Jorm / Red Hat Security Response Team ----- Original Message ----- From: "Jared Morgan" <jmorgan at redhat.com> To: "Publican discussions" <publican-list at redhat.com> Sent: Thursday, July 21, 2011 2:29:13 PM Subject: Re: [publican-list] [QUERY] Anyone Integrate Video Hi Mike You can embed video from youTube right now: <mediaobject> <videoobject> <videodata fileref="http://www.youtube.com/embed/ySyPIoyXJ-k?rel=0" contentwidth="560" contentdepth="450"/> </videoobject> <caption>The Red Hat Way video, hosted on youTube.</caption> </mediaobject> Put that into some book code, and you'll get embedded video. :D Cheers Jared ----- Original Message ----- From: "Mike Hideo" <mhideo at redhat.com> To: publican-list at redhat.com Sent: Monday, July 18, 2011 10:46:11 AM Subject: [publican-list] [QUERY] Anyone Integrate Video Has anyone experimented or deployed integrating video with docbook? Either within a publican package or linking to youtube/vimeo ? cheers, Mike _______________________________________________ publican-list mailing list publican-list at redhat.com https://www.redhat.com/mailman/listinfo/publican-list Wiki: https://fedorahosted.org/publican _______________________________________________ publican-list mailing list publican-list at redhat.com https://www.redhat.com/mailman/listinfo/publican-list Wiki: https://fedorahosted.org/publican _______________________________________________ publican-list mailing list publican-list at redhat.com https://www.redhat.com/mailman/listinfo/publican-list Wiki: https://fedorahosted.org/publican From bugzilla at redhat.com Thu Jul 21 09:10:11 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Thu, 21 Jul 2011 05:10:11 -0400 Subject: [publican-list] [Bug 723725] RFE: Allow brands to prevent TOC from being embedded in web formats In-Reply-To: <bug-723725-264938@bugzilla.redhat.com> References: <bug-723725-264938@bugzilla.redhat.com> Message-ID: <201107210910.p6L9ABWt029137@bzweb01.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=723725 Jeff Fearn <jfearn at redhat.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |MODIFIED --- Comment #1 from Jeff Fearn <jfearn at redhat.com> 2011-07-21 05:10:11 EDT --- Add no_embedtoc config for brands. Setting this variable in any brand config file will prevent the navigation TOC iframe being embedded in HTML generated in web packages. Added to trunk and branches/publican-2x. Committed revision 1844. -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Thu Jul 21 10:24:29 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Thu, 21 Jul 2011 06:24:29 -0400 Subject: [publican-list] [Bug 511404] RFE: support stepalternatives In-Reply-To: <bug-511404-264938@bugzilla.redhat.com> References: <bug-511404-264938@bugzilla.redhat.com> Message-ID: <201107211024.p6LAOTqe009962@bzweb02.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=511404 Jeff Fearn <jfearn at redhat.com> changed: What |Removed |Added ---------------------------------------------------------------------------- See Also| |https://bugzilla.redhat.com | |/show_bug.cgi?id=687894 -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Thu Jul 21 10:24:28 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Thu, 21 Jul 2011 06:24:28 -0400 Subject: [publican-list] [Bug 687894] rendering of steps inside stepalternatives In-Reply-To: <bug-687894-264938@bugzilla.redhat.com> References: <bug-687894-264938@bugzilla.redhat.com> Message-ID: <201107211024.p6LAOSha009954@bzweb02.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=687894 Jeff Fearn <jfearn at redhat.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jfearn at redhat.com See Also| |https://bugzilla.redhat.com | |/show_bug.cgi?id=511404 --- Comment #1 from Jeff Fearn <jfearn at redhat.com> 2011-07-21 06:24:27 EDT --- The style for this was removed in 511404 after discussion off list. Please discuss any proposed changes on the publican list to get consensus for change. -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Thu Jul 21 10:29:11 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Thu, 21 Jul 2011 06:29:11 -0400 Subject: [publican-list] [Bug 715382] Add switch to enable TOC in appendix In-Reply-To: <bug-715382-264938@bugzilla.redhat.com> References: <bug-715382-264938@bugzilla.redhat.com> Message-ID: <201107211029.p6LATB2V030938@bzweb01.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=715382 --- Comment #1 from Jeff Fearn <jfearn at redhat.com> 2011-07-21 06:29:10 EDT --- It is unlikely we will do this. There are too many XSLT options in docbook to provide an option for everyone on a per book basis. This kind of decision should be made at the brand level, where it is a simple change to include tocs at many levels. -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Thu Jul 21 10:36:53 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Thu, 21 Jul 2011 06:36:53 -0400 Subject: [publican-list] [Bug 719214] Non-ASCII characters are not presented properly in site navigation In-Reply-To: <bug-719214-264938@bugzilla.redhat.com> References: <bug-719214-264938@bugzilla.redhat.com> Message-ID: <201107211036.p6LAargl002521@bzweb01.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=719214 Jeff Fearn <jfearn at redhat.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED AssignedTo|jfearn at redhat.com |rlandman at redhat.com --- Comment #1 from Jeff Fearn <jfearn at redhat.com> 2011-07-21 06:36:53 EDT --- This should be fixed by 661948, which is in trunk and branches/publican-2x. -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Thu Jul 21 22:37:34 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Thu, 21 Jul 2011 18:37:34 -0400 Subject: [publican-list] [Bug 722800] RFE: Search Box Display Results into iFrame In-Reply-To: <bug-722800-264938@bugzilla.redhat.com> References: <bug-722800-264938@bugzilla.redhat.com> Message-ID: <201107212237.p6LMbYVK017885@bzweb02.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=722800 Michael Hideo <mhideo at redhat.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |CLOSED Resolution| |NOTABUG Last Closed| |2011-07-21 18:37:34 -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Thu Jul 21 22:47:55 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Thu, 21 Jul 2011 18:47:55 -0400 Subject: [publican-list] [Bug 662897] Publican does not set name_label when rebuilding previously packaged books In-Reply-To: <bug-662897-264938@bugzilla.redhat.com> References: <bug-662897-264938@bugzilla.redhat.com> Message-ID: <201107212247.p6LMltlm020493@bzweb02.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=662897 Ruediger Landmann <r.landmann at redhat.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|MODIFIED |VERIFIED --- Comment #3 from Ruediger Landmann <r.landmann at redhat.com> 2011-07-21 18:47:54 EDT --- Verified in build 2.5-2.fc15.t17: * package translated book with publican package --binary * install book and verify that translated title appears in ToC * extract sources from src.rpm * edit spec file to bump release number * rebuild with rpmbuild * update book and verify that translated title still appears. -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Thu Jul 21 23:14:10 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Thu, 21 Jul 2011 19:14:10 -0400 Subject: [publican-list] [Bug 719573] RFE: allow control of updating website navigation for installed/removed books In-Reply-To: <bug-719573-264938@bugzilla.redhat.com> References: <bug-719573-264938@bugzilla.redhat.com> Message-ID: <201107212314.p6LNEA0X008186@bzweb01.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=719573 Ruediger Landmann <r.landmann at redhat.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|MODIFIED |VERIFIED CC| |r.landmann at redhat.com --- Comment #2 from Ruediger Landmann <r.landmann at redhat.com> 2011-07-21 19:14:10 EDT --- Verified in build 2.5-2.fc15.t17: * set "manual_toc_update: 1" in /etc/publican-website.cfg * installed book and verified that book did not appear on site ToC * ran publican update_site and verified that book now appeared in site ToC -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Fri Jul 22 00:21:16 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Thu, 21 Jul 2011 20:21:16 -0400 Subject: [publican-list] [Bug 724842] New: RFE: Social Media - Print - Email buttons in Brand Message-ID: <bug-724842-264938@bugzilla.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. Summary: RFE: Social Media - Print - Email buttons in Brand https://bugzilla.redhat.com/show_bug.cgi?id=724842 Summary: RFE: Social Media - Print - Email buttons in Brand Product: Publican Version: 2.5 Platform: Unspecified OS/Version: Unspecified Status: NEW Severity: unspecified Priority: unspecified Component: publican-redhat AssignedTo: rlandman at redhat.com ReportedBy: mhideo at redhat.com QAContact: jfearn at redhat.com CC: publican-list at redhat.com Classification: Other Story Points: --- Type: --- Created attachment 514600 --> https://bugzilla.redhat.com/attachment.cgi?id=514600 media Description of request: How difficult would it be to integrate the attached buttons on the top of each HTML page in the brand packages? Cheers, Mike -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Fri Jul 22 01:18:18 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Thu, 21 Jul 2011 21:18:18 -0400 Subject: [publican-list] [Bug 724850] New: RFE: print_unused images? Message-ID: <bug-724850-264938@bugzilla.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. Summary: RFE: print_unused images? https://bugzilla.redhat.com/show_bug.cgi?id=724850 Summary: RFE: print_unused images? Product: Publican Version: future Platform: Unspecified OS/Version: Unspecified Status: NEW Severity: unspecified Priority: unspecified Component: publican AssignedTo: jfearn at redhat.com ReportedBy: sgordon at redhat.com QAContact: rlandman at redhat.com CC: mmcallis at redhat.com, publican-list at redhat.com Classification: Other Story Points: --- Type: --- Description of problem: The command `publican print_unused` prints any and all xml files which are not linked into what publican would build, read they are orphaned. It would be useful if this functionality either extend to, or was available through an additional verb, for unreferenced image files. -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Fri Jul 22 02:18:13 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Thu, 21 Jul 2011 22:18:13 -0400 Subject: [publican-list] [Bug 724842] RFE: Social Media - Print - Email buttons in Brand In-Reply-To: <bug-724842-264938@bugzilla.redhat.com> References: <bug-724842-264938@bugzilla.redhat.com> Message-ID: <201107220218.p6M2IDss021799@bzweb01.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=724842 Ruediger Landmann <r.landmann at redhat.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED CC| |r.landmann at redhat.com -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From niceredfrog at yahoo.com Fri Jul 22 08:15:42 2011 From: niceredfrog at yahoo.com (Jessica [Hart] Tomechak) Date: Fri, 22 Jul 2011 01:15:42 -0700 (PDT) Subject: [publican-list] Please help: conditional text works in reverse and ignores actual condition tags Message-ID: <1311322542.31042.YahooMailClassic@web162016.mail.bf1.yahoo.com> Hello all, I have been using Publican to create html and PDF output for about 3 months. I can not get conditional tagging to work. When I add a condition: anything line to the publican.cfg, every XML element in my book that has any condition="whatever" attribute is EXcluded from the document. For example, my publican.cfg might contain this: condition: v1.1 And my XML files might contain these: <section condition="v1.1"> ... </section> <phrase condition="comments"> ... </phrase> When I build the file, both the section and the phrase are omitted from the output. This occurs no matter what value I assign to condition in publican.cfg, whether it's a comma-delimited list, whether it includes dots or underscores, whether it's enclosed in double quotes, or whether the value is omitted entirely, like this: condition: ...if the condition: line is present, all conditional-tagged content is omitted, regardless of the actual conditional tag value. This occurs when using Publican on Windows and on Ubuntu. Any advice would be much appreciated. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://listman.redhat.com/archives/publican-list/attachments/20110722/8d007c69/attachment.htm> From bugzilla at redhat.com Mon Jul 25 04:04:31 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Mon, 25 Jul 2011 00:04:31 -0400 Subject: [publican-list] [Bug 663203] [RFE] mock SRPM validation In-Reply-To: <bug-663203-264938@bugzilla.redhat.com> References: <bug-663203-264938@bugzilla.redhat.com> Message-ID: <201107250404.p6P44Vna024544@bzweb01.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=663203 Ruediger Landmann <r.landmann at redhat.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|MODIFIED |VERIFIED CC| |r.landmann at redhat.com --- Comment #3 from Ruediger Landmann <r.landmann at redhat.com> 2011-07-25 00:04:30 EDT --- Verified on Publican 2.6-0.t2 -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Mon Jul 25 14:57:56 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Mon, 25 Jul 2011 10:57:56 -0400 Subject: [publican-list] [Bug 687894] rendering of steps inside stepalternatives In-Reply-To: <bug-687894-264938@bugzilla.redhat.com> References: <bug-687894-264938@bugzilla.redhat.com> Message-ID: <201107251457.p6PEvuBO018105@bzweb01.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=687894 Martin Prpic <mprpic at redhat.com> changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|mprpic at redhat.com |rlerch at redhat.com -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Mon Jul 25 20:47:05 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Mon, 25 Jul 2011 16:47:05 -0400 Subject: [publican-list] [Bug 687894] rendering of steps inside stepalternatives In-Reply-To: <bug-687894-264938@bugzilla.redhat.com> References: <bug-687894-264938@bugzilla.redhat.com> Message-ID: <201107252047.p6PKl5su004318@bzweb02.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=687894 Lana Brindley <lbrindle at redhat.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |lbrindle at redhat.com --- Comment #2 from Lana Brindley <lbrindle at redhat.com> 2011-07-25 16:47:04 EDT --- >From what I can see in 511404, the original request was to replace bullet points on alternative steps with alphabetic characters, and to add a text tag ("optional" or similar). I agree that it shouldn't have a text tag, but can we get the alphabetic characters added in please? Thanks, LKB -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From r.landmann at redhat.com Tue Jul 26 00:42:19 2011 From: r.landmann at redhat.com (Ruediger Landmann) Date: Tue, 26 Jul 2011 10:42:19 +1000 Subject: [publican-list] Publican 2.6 is out Message-ID: <4E2E0D6B.4050604@redhat.com> Hi all; Publican 2.6 is now available. This release rolls up a long list of bugfixes and enhancements originally scheduled for inclusion with Publican 3.0. The decision to provide DocBook 5 support in Publican 3.0 has meant a delay in preparing that version for release, so 2.6 is our way of addressing a number of problems that we've known about for a while now. Many of the changes in 2.6 address problems with building RPM packages in which to ship documents, and building websites with these RPM packages. These changes include: * ensure that packages don't try to ship non-existent PDFs (BZ#661551) * ensure that RPM spec files are valid and sane (BZ#663206, BZ#663203) * make the publishing process a lot more robust, which also fixed a problem non-ASCII characters in tables of contents (BZ#661948) * ensure that translated titles in tables of contents don't get lost when packages are rebuilt from SRPMs (BZ#662897) * fix packaging for stand-alone sets (BZ#689347) * make products with version number "0" display on website tables of contents (BZ#702550) * support a new parameter in site config files to disable automatic updating of tables of contents; this is useful for large or busy sites where it makes more sense to update the tables of contents after installing a group of packages rather than update them after each package is installed. (BZ#719573) Other highlights include: * a new "publican rename" action to assist in renaming books to new titles, or for new products, or for new product versions (BZ#694698) * a new "mainfile" parameter for publican.cfg that allows you to specify the XML file in which the root XML node is to be found (BZ#688585) A full set of Release Notes is available at: http://jfearn.fedorapeople.org/en-US/Publican/2.6/html/Release_Notes/index.html and the Users' Guide for 2.6 is at http://jfearn.fedorapeople.org/en-US/Publican/2.6/html/Users_Guide/index.html Special thanks this time go out to: * Jared Morgan from Red Hat's Middleware documentation team for testing many of the changes that went into this version * Bec Newton, also from the Middleware documentation team, for testing many changes, plus contributing better documentation for stand-alone <set>s for the Users' Guide, and for writing the Release Notes. * Yuri Chornoivan, from the Fedora Localization Project, for catching multiple typos in Publican's output * Luigi Votta, from the Fedora Documentation Project, for extensive proofreading and corrections to the Users' Guide You can download the source from: https://fedorahosted.org/releases/p/u/publican/Publican-2.6.tar.gz Expect to see Publican 2.6 in Fedora very shortly; I'll send out a separate email when it's available in the testing repos. Cheers! Rudi From bugzilla at redhat.com Tue Jul 26 00:42:43 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Mon, 25 Jul 2011 20:42:43 -0400 Subject: [publican-list] [Bug 663203] [RFE] mock SRPM validation In-Reply-To: <bug-663203-264938@bugzilla.redhat.com> References: <bug-663203-264938@bugzilla.redhat.com> Message-ID: <201107260042.p6Q0gh5V024479@bzweb01.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=663203 Jeff Fearn <jfearn at redhat.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|VERIFIED |CLOSED Fixed In Version| |2.6 Resolution| |CURRENTRELEASE Last Closed| |2011-07-25 20:42:42 -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Tue Jul 26 00:42:34 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Mon, 25 Jul 2011 20:42:34 -0400 Subject: [publican-list] [Bug 662162] show_unknown parameter problem In-Reply-To: <bug-662162-264938@bugzilla.redhat.com> References: <bug-662162-264938@bugzilla.redhat.com> Message-ID: <201107260042.p6Q0gYc1024428@bzweb01.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=662162 Jeff Fearn <jfearn at redhat.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|VERIFIED |CLOSED Fixed In Version| |2.6 Resolution| |CURRENTRELEASE Last Closed| |2011-07-25 20:42:34 -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Tue Jul 26 00:42:45 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Mon, 25 Jul 2011 20:42:45 -0400 Subject: [publican-list] [Bug 697370] set keep-id on <step> In-Reply-To: <bug-697370-264938@bugzilla.redhat.com> References: <bug-697370-264938@bugzilla.redhat.com> Message-ID: <201107260042.p6Q0gj58024497@bzweb01.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=697370 Jeff Fearn <jfearn at redhat.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|VERIFIED |CLOSED Fixed In Version| |2.6 Resolution| |CURRENTRELEASE Last Closed| |2011-07-25 20:42:45 -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Tue Jul 26 00:42:51 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Mon, 25 Jul 2011 20:42:51 -0400 Subject: [publican-list] [Bug 672439] Anchors are not set on <task id=""> In-Reply-To: <bug-672439-264938@bugzilla.redhat.com> References: <bug-672439-264938@bugzilla.redhat.com> Message-ID: <201107260042.p6Q0gpU8024542@bzweb01.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=672439 Jeff Fearn <jfearn at redhat.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|VERIFIED |CLOSED Fixed In Version| |2.6 Resolution| |CURRENTRELEASE Last Closed| |2011-07-25 20:42:51 -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Tue Jul 26 00:42:32 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Mon, 25 Jul 2011 20:42:32 -0400 Subject: [publican-list] [Bug 663206] [RFE] publican creates invalid spec files In-Reply-To: <bug-663206-264938@bugzilla.redhat.com> References: <bug-663206-264938@bugzilla.redhat.com> Message-ID: <201107260042.p6Q0gWsl024416@bzweb01.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=663206 Jeff Fearn <jfearn at redhat.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|VERIFIED |CLOSED Fixed In Version| |2.6 Resolution| |CURRENTRELEASE Last Closed| |2011-07-25 20:42:32 -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Tue Jul 26 00:42:38 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Mon, 25 Jul 2011 20:42:38 -0400 Subject: [publican-list] [Bug 653432] line numbering of <programlisting> broken In-Reply-To: <bug-653432-264938@bugzilla.redhat.com> References: <bug-653432-264938@bugzilla.redhat.com> Message-ID: <201107260042.p6Q0gc4v024448@bzweb01.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=653432 Jeff Fearn <jfearn at redhat.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|VERIFIED |CLOSED Fixed In Version| |2.6 Resolution| |CURRENTRELEASE Last Closed| |2011-07-25 20:42:37 -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Tue Jul 26 00:42:42 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Mon, 25 Jul 2011 20:42:42 -0400 Subject: [publican-list] [Bug 694698] Request for "publican rename" feature In-Reply-To: <bug-694698-264938@bugzilla.redhat.com> References: <bug-694698-264938@bugzilla.redhat.com> Message-ID: <201107260042.p6Q0ggTx024471@bzweb01.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=694698 Jeff Fearn <jfearn at redhat.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|VERIFIED |CLOSED Fixed In Version| |2.6 Resolution| |CURRENTRELEASE Last Closed| |2011-07-25 20:42:42 -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Tue Jul 26 00:42:44 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Mon, 25 Jul 2011 20:42:44 -0400 Subject: [publican-list] [Bug 662907] Publican reformats <address> when it cleans XML In-Reply-To: <bug-662907-264938@bugzilla.redhat.com> References: <bug-662907-264938@bugzilla.redhat.com> Message-ID: <201107260042.p6Q0giXR024483@bzweb01.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=662907 Jeff Fearn <jfearn at redhat.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|VERIFIED |CLOSED Fixed In Version| |2.6 Resolution| |CURRENTRELEASE Last Closed| |2011-07-25 20:42:43 -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Tue Jul 26 00:42:35 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Mon, 25 Jul 2011 20:42:35 -0400 Subject: [publican-list] [Bug 661948] Updating the database for packaged books is fragile In-Reply-To: <bug-661948-264938@bugzilla.redhat.com> References: <bug-661948-264938@bugzilla.redhat.com> Message-ID: <201107260042.p6Q0gZtp024433@bzweb01.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=661948 Jeff Fearn <jfearn at redhat.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|MODIFIED |CLOSED Fixed In Version| |2.6 Resolution| |CURRENTRELEASE Last Closed| |2011-07-25 20:42:35 -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Tue Jul 26 00:42:50 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Mon, 25 Jul 2011 20:42:50 -0400 Subject: [publican-list] [Bug 688447] stdout, stderr and exit codes In-Reply-To: <bug-688447-264938@bugzilla.redhat.com> References: <bug-688447-264938@bugzilla.redhat.com> Message-ID: <201107260042.p6Q0goQu024532@bzweb01.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=688447 Jeff Fearn <jfearn at redhat.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|VERIFIED |CLOSED Fixed In Version| |2.6 Resolution| |CURRENTRELEASE Last Closed|2011-04-11 18:28:25 |2011-07-25 20:42:49 -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Tue Jul 26 00:42:34 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Mon, 25 Jul 2011 20:42:34 -0400 Subject: [publican-list] [Bug 702550] Docs with version 0 do not show in nav toc In-Reply-To: <bug-702550-264938@bugzilla.redhat.com> References: <bug-702550-264938@bugzilla.redhat.com> Message-ID: <201107260042.p6Q0gY32024423@bzweb01.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=702550 Jeff Fearn <jfearn at redhat.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|VERIFIED |CLOSED Fixed In Version| |2.6 Resolution| |CURRENTRELEASE Last Closed| |2011-07-25 20:42:33 -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Tue Jul 26 00:42:31 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Mon, 25 Jul 2011 20:42:31 -0400 Subject: [publican-list] [Bug 688585] Accented letters in book or article title In-Reply-To: <bug-688585-264938@bugzilla.redhat.com> References: <bug-688585-264938@bugzilla.redhat.com> Message-ID: <201107260042.p6Q0gVwl024409@bzweb01.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=688585 Jeff Fearn <jfearn at redhat.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|VERIFIED |CLOSED Fixed In Version| |2.6 Resolution| |CURRENTRELEASE Last Closed| |2011-07-25 20:42:31 -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Tue Jul 26 00:42:49 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Mon, 25 Jul 2011 20:42:49 -0400 Subject: [publican-list] [Bug 718102] [RFE] -- use the force option for cvs-import.sh In-Reply-To: <bug-718102-264938@bugzilla.redhat.com> References: <bug-718102-264938@bugzilla.redhat.com> Message-ID: <201107260042.p6Q0gn1r024526@bzweb01.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=718102 Jeff Fearn <jfearn at redhat.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|VERIFIED |CLOSED Fixed In Version| |2.6 Resolution| |CURRENTRELEASE Last Closed| |2011-07-25 20:42:48 -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Tue Jul 26 00:42:48 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Mon, 25 Jul 2011 20:42:48 -0400 Subject: [publican-list] [Bug 715158] No spacing below admonitions using FOP 1.0-16.fc15 In-Reply-To: <bug-715158-264938@bugzilla.redhat.com> References: <bug-715158-264938@bugzilla.redhat.com> Message-ID: <201107260042.p6Q0gmAf024522@bzweb01.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=715158 Jeff Fearn <jfearn at redhat.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|VERIFIED |CLOSED Fixed In Version| |2.6 Resolution| |CURRENTRELEASE Last Closed| |2011-07-25 20:42:48 -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Tue Jul 26 00:42:52 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Mon, 25 Jul 2011 20:42:52 -0400 Subject: [publican-list] [Bug 661551] Publican does not catch failed PDF builds when creating packages In-Reply-To: <bug-661551-264938@bugzilla.redhat.com> References: <bug-661551-264938@bugzilla.redhat.com> Message-ID: <201107260042.p6Q0gqvk024548@bzweb01.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=661551 Jeff Fearn <jfearn at redhat.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|VERIFIED |CLOSED Fixed In Version| |2.6 Resolution| |CURRENTRELEASE Last Closed| |2011-07-25 20:42:51 -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Tue Jul 26 00:42:50 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Mon, 25 Jul 2011 20:42:50 -0400 Subject: [publican-list] [Bug 688286] whitespace included at the end of the <productname> tag In-Reply-To: <bug-688286-264938@bugzilla.redhat.com> References: <bug-688286-264938@bugzilla.redhat.com> Message-ID: <201107260042.p6Q0gobV024537@bzweb01.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=688286 Jeff Fearn <jfearn at redhat.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|VERIFIED |CLOSED Fixed In Version| |2.6 Resolution| |CURRENTRELEASE Last Closed| |2011-07-25 20:42:50 -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Tue Jul 26 00:42:41 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Mon, 25 Jul 2011 20:42:41 -0400 Subject: [publican-list] [Bug 673402] Creating a (distributed) set creates invalid docbook In-Reply-To: <bug-673402-264938@bugzilla.redhat.com> References: <bug-673402-264938@bugzilla.redhat.com> Message-ID: <201107260042.p6Q0gfUi024461@bzweb01.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=673402 Jeff Fearn <jfearn at redhat.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|VERIFIED |CLOSED Fixed In Version| |2.6 Resolution| |CURRENTRELEASE Last Closed| |2011-07-25 20:42:40 -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Tue Jul 26 00:42:45 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Mon, 25 Jul 2011 20:42:45 -0400 Subject: [publican-list] [Bug 671291] QE Review: Legal Notice Address In-Reply-To: <bug-671291-264938@bugzilla.redhat.com> References: <bug-671291-264938@bugzilla.redhat.com> Message-ID: <201107260042.p6Q0gjin024492@bzweb01.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=671291 Bug 671291 depends on bug 662907, which changed state. Bug 662907 Summary: Publican reformats <address> when it cleans XML https://bugzilla.redhat.com/show_bug.cgi?id=662907 What |Old Value |New Value ---------------------------------------------------------------------------- Status|MODIFIED |VERIFIED Status|VERIFIED |CLOSED Resolution| |CURRENTRELEASE -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Tue Jul 26 00:42:47 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Mon, 25 Jul 2011 20:42:47 -0400 Subject: [publican-list] [Bug 689347] Even when building a <set> works ... brewing it doesn't. In-Reply-To: <bug-689347-264938@bugzilla.redhat.com> References: <bug-689347-264938@bugzilla.redhat.com> Message-ID: <201107260042.p6Q0glrL024515@bzweb01.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=689347 Jeff Fearn <jfearn at redhat.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|VERIFIED |CLOSED Fixed In Version| |2.6 Resolution| |CURRENTRELEASE Last Closed| |2011-07-25 20:42:47 -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Tue Jul 26 00:42:30 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Mon, 25 Jul 2011 20:42:30 -0400 Subject: [publican-list] [Bug 705956] publican print_unused parses all files in the en-US and subfolders In-Reply-To: <bug-705956-264938@bugzilla.redhat.com> References: <bug-705956-264938@bugzilla.redhat.com> Message-ID: <201107260042.p6Q0gUEn024403@bzweb01.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=705956 Jeff Fearn <jfearn at redhat.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|VERIFIED |CLOSED Fixed In Version| |2.6 Resolution| |CURRENTRELEASE Last Closed| |2011-07-25 20:42:30 -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Tue Jul 26 00:42:46 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Mon, 25 Jul 2011 20:42:46 -0400 Subject: [publican-list] [Bug 662897] Publican does not set name_label when rebuilding previously packaged books In-Reply-To: <bug-662897-264938@bugzilla.redhat.com> References: <bug-662897-264938@bugzilla.redhat.com> Message-ID: <201107260042.p6Q0gkwq024504@bzweb01.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=662897 Jeff Fearn <jfearn at redhat.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|VERIFIED |CLOSED Fixed In Version| |2.6 Resolution| |CURRENTRELEASE Last Closed| |2011-07-25 20:42:46 -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Tue Jul 26 00:42:47 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Mon, 25 Jul 2011 20:42:47 -0400 Subject: [publican-list] [Bug 697382] support epub-embedded-fonts parameter in docbook-style-xsl 1.76.1 In-Reply-To: <bug-697382-264938@bugzilla.redhat.com> References: <bug-697382-264938@bugzilla.redhat.com> Message-ID: <201107260042.p6Q0gldb024509@bzweb01.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=697382 Jeff Fearn <jfearn at redhat.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|VERIFIED |CLOSED Fixed In Version| |2.6 Resolution| |CURRENTRELEASE Last Closed| |2011-07-25 20:42:46 -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Tue Jul 26 00:42:37 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Mon, 25 Jul 2011 20:42:37 -0400 Subject: [publican-list] [Bug 723725] RFE: Allow brands to prevent TOC from being embedded in web formats In-Reply-To: <bug-723725-264938@bugzilla.redhat.com> References: <bug-723725-264938@bugzilla.redhat.com> Message-ID: <201107260042.p6Q0gbni024445@bzweb01.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=723725 Jeff Fearn <jfearn at redhat.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|MODIFIED |CLOSED Fixed In Version| |2.6 Resolution| |CURRENTRELEASE Last Closed| |2011-07-25 20:42:36 -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Tue Jul 26 00:42:41 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Mon, 25 Jul 2011 20:42:41 -0400 Subject: [publican-list] [Bug 713669] Using the indexterm tag causes a line split in rendered PDF files. In-Reply-To: <bug-713669-264938@bugzilla.redhat.com> References: <bug-713669-264938@bugzilla.redhat.com> Message-ID: <201107260042.p6Q0gfFK024465@bzweb01.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=713669 Jeff Fearn <jfearn at redhat.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|VERIFIED |CLOSED Fixed In Version| |2.6 Resolution| |CURRENTRELEASE Last Closed| |2011-07-25 20:42:41 -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Tue Jul 26 00:42:40 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Mon, 25 Jul 2011 20:42:40 -0400 Subject: [publican-list] [Bug 684509] Non-regression test t/perlcritic.t fails with recent versions of Perl::Crititc In-Reply-To: <bug-684509-264938@bugzilla.redhat.com> References: <bug-684509-264938@bugzilla.redhat.com> Message-ID: <201107260042.p6Q0geKo024458@bzweb01.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=684509 Jeff Fearn <jfearn at redhat.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|MODIFIED |CLOSED Fixed In Version| |2.6 Resolution| |CURRENTRELEASE Last Closed| |2011-07-25 20:42:38 -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Tue Jul 26 00:42:33 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Mon, 25 Jul 2011 20:42:33 -0400 Subject: [publican-list] [Bug 719573] RFE: allow control of updating website navigation for installed/removed books In-Reply-To: <bug-719573-264938@bugzilla.redhat.com> References: <bug-719573-264938@bugzilla.redhat.com> Message-ID: <201107260042.p6Q0gXFp024419@bzweb01.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=719573 Jeff Fearn <jfearn at redhat.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|VERIFIED |CLOSED Fixed In Version| |2.6 Resolution| |CURRENTRELEASE Last Closed| |2011-07-25 20:42:33 -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Tue Jul 26 07:02:01 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Tue, 26 Jul 2011 03:02:01 -0400 Subject: [publican-list] [Bug 687894] rendering of steps inside stepalternatives In-Reply-To: <bug-687894-264938@bugzilla.redhat.com> References: <bug-687894-264938@bugzilla.redhat.com> Message-ID: <201107260702.p6Q7219L001450@bzweb01.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=687894 --- Comment #3 from Douglas Silas <dhensley at redhat.com> 2011-07-26 03:02:00 EDT --- What I originally wrote here follows, but at least with Publican 2.6, which I installed just an hour ago, steps inside <stepalternatives> are being rendered with letters again. Is it just me, or is this bug now fixed? <original> I agree with Lana that the alphabetic letters should be added back to stepalternatives, which would allow them to at least be used again (they're unusable at present because there's no visual demarcation of steps inside of them). Text labels re easily added by the author. A text tag on stepalternatives should be the focus of a discussion/upstream change/separate RFE bug, but that shouldn't hold back their functional re-enablement (this bug). Thanks, Silas -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Tue Jul 26 12:56:17 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Tue, 26 Jul 2011 08:56:17 -0400 Subject: [publican-list] [Bug 687894] rendering of steps inside stepalternatives In-Reply-To: <bug-687894-264938@bugzilla.redhat.com> References: <bug-687894-264938@bugzilla.redhat.com> Message-ID: <201107261256.p6QCuHHB007471@bzweb02.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=687894 --- Comment #4 from Douglas Silas <dhensley at redhat.com> 2011-07-26 08:56:16 EDT --- Nevermind comment 3! As Jarek pointed out, I was looking at <stepalternatives> inside a <step> with <substeps> and got dizzy. So this bug is not resolved. -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Tue Jul 26 15:22:42 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Tue, 26 Jul 2011 11:22:42 -0400 Subject: [publican-list] [Bug 715158] No spacing below admonitions using FOP 1.0-16.fc15 In-Reply-To: <bug-715158-264938@bugzilla.redhat.com> References: <bug-715158-264938@bugzilla.redhat.com> Message-ID: <201107261522.p6QFMg6D015085@bzweb02.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=715158 Norman Dunbar <norman at dunbar-it.co.uk> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |norman at dunbar-it.co.uk --- Comment #5 from Norman Dunbar <norman at dunbar-it.co.uk> 2011-07-26 11:22:42 EDT --- Sorry to be a nit picker here, but looking at the PDF version of the Publican 2.6 User's Guide, I see huge gaps underneath all the admonitions now. (Sorry!) -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Thu Jul 28 22:07:26 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Thu, 28 Jul 2011 18:07:26 -0400 Subject: [publican-list] [Bug 696834] Choose format icon In-Reply-To: <bug-696834-264938@bugzilla.redhat.com> References: <bug-696834-264938@bugzilla.redhat.com> Message-ID: <201107282207.p6SM7Qhs023881@bzweb01.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=696834 Misty Stanley-Jones <misty at redhat.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC|misty at redhat.com | -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Thu Jul 28 22:16:26 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Thu, 28 Jul 2011 18:16:26 -0400 Subject: [publican-list] [Bug 628754] Front matter rendered improperly if title, product, and/or authors list is too long In-Reply-To: <bug-628754-264938@bugzilla.redhat.com> References: <bug-628754-264938@bugzilla.redhat.com> Message-ID: <201107282216.p6SMGQhs023418@bzweb02.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=628754 Misty Stanley-Jones <misty at redhat.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Flag| |needinfo? --- Comment #3 from Misty Stanley-Jones <misty at redhat.com> 2011-07-28 18:16:26 EDT --- What's going on with this one? -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Thu Jul 28 23:54:06 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Thu, 28 Jul 2011 19:54:06 -0400 Subject: [publican-list] [Bug 726548] New: <superscript> tags display an "Unvalidated Tag Warning" Message-ID: <bug-726548-264938@bugzilla.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. Summary: <superscript> tags display an "Unvalidated Tag Warning" https://bugzilla.redhat.com/show_bug.cgi?id=726548 Summary: <superscript> tags display an "Unvalidated Tag Warning" Product: Publican Version: 2.6 Platform: All OS/Version: Linux Status: NEW Severity: low Priority: unspecified Component: publican AssignedTo: jfearn at redhat.com ReportedBy: mhusnain at redhat.com QAContact: rlandman at redhat.com CC: mmcallis at redhat.com, publican-list at redhat.com Classification: Other Story Points: --- Type: --- Description of problem: Usage of the <superscript> tags results in a warning when building the book: *WARNING: Unvalidated tag: 'superscript'. This tag may not be displayed correctly, may generate invalid xhtml, or may breach Section 508 Accessibility standards. Used in this case to mark up the following: "... for the n<superscript>th</superscript> node ..." The output in en-US html-single using Chrome and Firefox displays correctly as superscript, but the text included in this tag is colored grey instead of black. Version-Release number of selected component (if applicable): How reproducible: Everytime. Steps to Reproduce: 1. Create a publican book. 2. Mark up text with <superscript> and </superscript> 3. Build the book (in the reported instance, using html-single and en-US). Actual results: 1. Warning during build. 2. Odd coloring for marked up text in the tmp/en-US/html-single/index.html file. Expected results: 1. If tags are valid, no warning should display when building the book. 2. The marked up text should be located higher and be smaller in size than normal text and retain the default black color used for normal text. Additional info: I am informed that "Unvalidated" means that no QA has ever been done on that tag and the presentation is not known. -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Fri Jul 29 04:47:41 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Fri, 29 Jul 2011 00:47:41 -0400 Subject: [publican-list] [Bug 726575] New: Cannot <xref> between books in a <set> Message-ID: <bug-726575-264938@bugzilla.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. Summary: Cannot <xref> between books in a <set> https://bugzilla.redhat.com/show_bug.cgi?id=726575 Summary: Cannot <xref> between books in a <set> Product: Publican Version: future Platform: Unspecified OS/Version: Unspecified Status: NEW Severity: unspecified Priority: unspecified Component: publican AssignedTo: jfearn at redhat.com ReportedBy: rnewton at redhat.com QAContact: rlandman at redhat.com CC: mmcallis at redhat.com, publican-list at redhat.com Classification: Other Story Points: --- Type: --- Description of problem: <xi:include>s work fine between books in a set but <xref>s don't. Just doing the <xref> normally, like this: <xref linkend="sect-your-mother-was-a-hamster-"/> Publican just can't see it, the same as normal when there's no corresponding section in your book. If you specify the direct path, like when <xi:include>ing, like this: <xref linkend="../../The_Holy_Grail/en-US/sect-your-mother-was-a-hamster"/> You get validation errors, AND the usual I Can't See It error. I've also tried specifying the chapter.xml as well, and the path without escaping two dirs. Version-Release number of selected component (if applicable): How reproducible: Create two books in a standalone set and try to <xref> to a section in the other book. Steps to Reproduce: 1. 2. 3. Actual results: Errors described above. Expected results: <xref> are valid between books. Additional info: -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. From bugzilla at redhat.com Fri Jul 29 05:06:08 2011 From: bugzilla at redhat.com (bugzilla at redhat.com) Date: Fri, 29 Jul 2011 01:06:08 -0400 Subject: [publican-list] [Bug 726575] Cannot <xref> between books in a <set> In-Reply-To: <bug-726575-264938@bugzilla.redhat.com> References: <bug-726575-264938@bugzilla.redhat.com> Message-ID: <201107290506.p6T568LJ001235@bzweb02.app.bz.hst.phx2.redhat.com> Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=726575 --- Comment #1 from Jeff Fearn <jfearn at redhat.com> 2011-07-29 01:06:08 EDT --- At a guess I think you are hitting the forced run of clean_ids that publican does to avoid id clashes when building sets. To confirm, try running: $ grep -r 'id-that-you-want' tmp/en-US/xml/* If that's it then you could try running clean_ids before you build to see if that works. -- Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.