[CC'ed fop-dev - please review/commit the patch]

Hi Ognjen,

On Thursday, November 14, 2013 09:09:21 AM Ognjen Blagojevic wrote:
> Alexey,
> 
> On 13.11.2013 21:46, Alexey Neyman wrote:
> > On Wednesday, November 13, 2013 03:21:47 am Ognjen Blagojevic wrote:
> >> I need to create leaders for TOC. I started with researching FOP
> >> examples (examples/fo/basic/leaders.fo), but the generated PDF doesn't
> >> contain expected results.
> 
> (...)
> 
> >> Are my expectations too high?
> > 
> > Hard to say, since you didn't attach neither sample FO code, nor the
> > resulting PDF. Leaders work for me with 1.1 on multiple Java versions,
> > 1.6.x and 1.7.x.
> Thank you for taking look at this.
> 
> I was testing with unmodified leader.fo example which is part of the FOP
> distro. Here is FO file based on that example, and the resulting PDF. I
> used FOP 1.1, Oracle JDK 1.7.0_40-b43 on Windows 7 64-bit (also other
> FOP versions and OSes, but the result is always the same).

It seems the leader.fo example lacks the text-align-last="justify" property on 
the enclosing block. Because of that, FOP assumes the same alignment ("start") 
on the line containing the leader and does not extend the leader to the end 
boundary of the reference area. See the attached diff - this makes the leaders 
work fine.

FOP developers, could someone review/commit the attached diff?

Regards,
Alexey.

> 
> > Here's an example fo:leader I am using:
> >   <fo:leader padding-left="4pt" padding-right="4pt"
> >   
> >     leader-pattern="dots" leader-pattern-width="3pt"
> >     leader-alignment="reference-area"
> >     keep-with-next.within-line="always"/>
> 
> The only difference I notice to FO file I attached are attributes
> keep-with-next.within-line, padding-left and padding-right. Adding them
> to attached example does not solve the problem in the resulting PDF.
> 
> -Ognjen
Index: examples/fo/basic/leader.fo
===================================================================
--- examples/fo/basic/leader.fo	(revision 1542026)
+++ examples/fo/basic/leader.fo	(working copy)
@@ -391,7 +391,7 @@
 
         <fo:table-row line-height="12pt">
         <fo:table-cell><fo:block text-align="end">A) </fo:block></fo:table-cell>
-        <fo:table-cell><fo:block text-align="start">This is some longer sample text<fo:leader leader-pattern="dots"
+        <fo:table-cell><fo:block text-align="start" text-align-last="justify">This is some longer sample text<fo:leader leader-pattern="dots"
                    leader-pattern-width="8pt"
                    leader-alignment="reference-area"
                    /></fo:block></fo:table-cell>
@@ -401,7 +401,7 @@
 
         <fo:table-row line-height="12pt">
         <fo:table-cell><fo:block text-align="end">B) </fo:block></fo:table-cell>
-        <fo:table-cell><fo:block text-align="start">Some text<fo:leader leader-pattern="dots"
+        <fo:table-cell><fo:block text-align="start" text-align-last="justify">Some text<fo:leader leader-pattern="dots"
                    leader-pattern-width="8pt"
                    leader-alignment="reference-area"
                    /></fo:block></fo:table-cell>
@@ -410,7 +410,7 @@
 
         <fo:table-row line-height="12pt">
         <fo:table-cell><fo:block text-align="end" >C) </fo:block></fo:table-cell>
-        <fo:table-cell><fo:block text-align="start">Text<fo:leader leader-pattern="dots"
+        <fo:table-cell><fo:block text-align="start" text-align-last="justify">Text<fo:leader leader-pattern="dots"
                    leader-pattern-width="8pt"
                    leader-alignment="reference-area"
                    /></fo:block></fo:table-cell>
@@ -419,7 +419,7 @@
 
         <fo:table-row line-height="12pt">
         <fo:table-cell><fo:block text-align="end">D) </fo:block></fo:table-cell>
-        <fo:table-cell><fo:block text-align="start">This text is even longer than the first entry <fo:leader leader-pattern="dots"
+        <fo:table-cell><fo:block text-align="start" text-align-last="justify">This text is even longer than the first entry <fo:leader leader-pattern="dots"
                    leader-pattern-width="8pt"
                    leader-alignment="reference-area"
                    /></fo:block></fo:table-cell>
@@ -428,7 +428,7 @@
 
         <fo:table-row line-height="12pt">
         <fo:table-cell><fo:block text-align="end">E) </fo:block></fo:table-cell>
-        <fo:table-cell><fo:block text-align="start">Shorter text example<fo:leader leader-pattern="dots"
+        <fo:table-cell><fo:block text-align="start" text-align-last="justify">Shorter text example<fo:leader leader-pattern="dots"
                    leader-pattern-width="8pt"
                    leader-alignment="reference-area"
                    /></fo:block></fo:table-cell>

---------------------------------------------------------------------
To unsubscribe, e-mail: fop-users-unsubscr...@xmlgraphics.apache.org
For additional commands, e-mail: fop-users-h...@xmlgraphics.apache.org

Reply via email to