I have found one error now. The pdf:dictionary definition works only if
it is placed in the fo:root only and before the fo:page-sequence. If you
place it into the fo:layout-master-set or after the fo:page-sequence it
doesn't work. See the example in the attachment.
Jiri
Jiri Tyr wrote:
Hi Andreas,
I just tested your patch and it works well for me!!!!! Thank you very
much for your effort!
What's necessary to do to add this patch to the main FOP branch?
Cheers,
Jiri
Andreas Delmelle wrote:
On Jul 11, 2008, at 22:13, Andreas Delmelle wrote:
On Jul 11, 2008, at 17:13, paul womack wrote:
Hi
<snip />
All splendid ideas! Now let's hope someone finds the time to do
something with them.
... and so I found some time myself to look into it.
I've opened Bugzilla #45390, and attached a prototype patch there.
Still some questionable things remaining, but it does work basically.
At least interested parties now have a starting-point.
HTH!
Cheers
Andreas
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
------------------------------------------------------------------------
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<?xml version="1.0" encoding="utf-8"?>
<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
<fo:layout-master-set>
<pdf:dictionary type="catalog" xmlns:pdf="http://xmlgraphics.apache.org/fop/extensions/pdf">
<pdf:entry name="PageMode">FullScreen</pdf:entry>
</pdf:dictionary>
<fo:simple-page-master master-name="A4" page-height="29.7cm" page-width="21cm" margin="2cm">
<fo:region-body/>
</fo:simple-page-master>
</fo:layout-master-set>
<fo:page-sequence master-reference="A4">
<fo:flow flow-name="xsl-region-body">
<fo:block>Hello World!</fo:block>
</fo:flow>
</fo:page-sequence>
</fo:root>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]