R: Problems with FOP and internal links

2002-01-11 Thread Stefano Angelici
Michael, thank you for your suggestion, but I can't still make my script
working right.
Maybe I have to quit with internal links :-)
Best regards.

Stefano

-Messaggio originale-
Da: Smethurst, Michael [mailto:[EMAIL PROTECTED]
Inviato: venerdì 11 gennaio 2002 11.44
A: '[EMAIL PROTECTED]'
Oggetto: RE: Problems with FOP and internal links


I'm not sure if this is the same problem i've had because your code was
a
little too complex to work through but...
i've found that you can't create internal links between elements in
different page-sequences.

as far as i can see this is a bug and i've submitted it to bugzilla; see

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=5718

hopefully it may one day be fixed...

[EMAIL PROTECTED]


Vertical alignment question

2002-01-11 Thread Jonathan O'Keeffe
Hello -

I have a question about vertical alignment within a block.  I have a
fixed-height block with a variable number of short lines, and I want the
first (n - 1) lines grouped together at the top of the block, and line (n)
aligned to the bottom of the block - something like this:

--- Top of block
Line 1
Line 2
Line 3


Line 4
--- Bottom of block

This is produced with FO something like this

fo:block height=30mm id=OUTER
fo:block id=A
fo:blockLine 1/fo:block
fo:blockLine 2/fo:block
fo:blockLine 3/fo:block
/fo:block
fo:block id=B
fo:blockLine 4/fo:block
/fo:block
/fo:block

(the id attributes are only for illustration here).  Basically I want block
A to be aligned to the top of block OUTER, and block B to be aligned to the
bottom of block OUTER.  This is subject to the constraint that block A (and
also probably eventually block B) could have variable numbers of rows in
them - otherwise I would just use fixed-height rows in a table, or
something like that.

Thanks in advance for any assistance.

- Jonathan