Re: xsl:choice

2001-12-07 Thread Matt Savino

Sorry, I didn't read the bottom. 

You can only include one  as a child of . (There
is no concept of a case switch or elsif in XSLT.)

test="//eraname" returns true if there is an element  anywhere
in the document. To search only the children of the current node, take
out the '//' part. 

To do what you want try this (anyone knows of a more elegant method,
please chime in):

   
 
   


 
   
 
 
  
 


   
   
 History of the World
   
 
   


> Edward Dowgiallo wrote:
> 
> I seem to be not getting the intended use of xsl:choice.
> 
> The following stylesheet segment causes fop to terminate with the
> message: ...; Line 78 Column 25; [ERROR]: null
> 
>text-align="end">
> 
>   
> 
>   
>   
> 
>   
>   
> History of the World
>   
> 
>   
> 1st, a more verbose error message would be useful.
> 
> 2nd, What I am trying to do is find out if the current element
> contains an element named "eraname", if it does I want to use the
> value of the element "eraname"
> If it doesn't I want to check if the current element contains a child
> element named "conflictname", if it does I want to use the value of
> the element "conflictname".
> If it doesn't I want to slap in some boiler plate text.
> 
> The xml file being processed when this fails does contain the child
> element "eraname".
> 
> I'd be more than happy to use a workaround here.
> 
> Thank you,
> Ed

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




Re: xsl:choice

2001-12-07 Thread Matt Savino

Try xsl:choose.

I'm available for consulting.


> Edward Dowgiallo wrote:
> 
> I seem to be not getting the intended use of xsl:choice.
> 
> The following stylesheet segment causes fop to terminate with the
> message: ...; Line 78 Column 25; [ERROR]: null
> 
>text-align="end">
> 
>   
> 
>   
>   
> 
>   
>   
> History of the World
>   
> 
>   
> 1st, a more verbose error message would be useful.
> 
> 2nd, What I am trying to do is find out if the current element
> contains an element named "eraname", if it does I want to use the
> value of the element "eraname"
> If it doesn't I want to check if the current element contains a child
> element named "conflictname", if it does I want to use the value of
> the element "conflictname".
> If it doesn't I want to slap in some boiler plate text.
> 
> The xml file being processed when this fails does contain the child
> element "eraname".
> 
> I'd be more than happy to use a workaround here.
> 
> Thank you,
> Ed

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




[PATCH] bug 4839 : leader gets start-indent at start and end

2001-12-07 Thread Rainer Garus

There exist an old patch sended on 2001-09-02, which solves bug 4839 (see 
http://marc.theaimsgroup.com/?l=fop-dev&m=99945422511048&w=2). The patch was not 
entered in CVS.

It is possible to consider the patch for the maintanance release?

Rainer Garus

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




Re: fo:inline error

2001-12-07 Thread spam_from_fop_dev


Ed,

> Isn't fo:inline supposed to allow me to force part of the text to
> the other end of the line?

You can't do this with today's FOP; people have asked on this list
before, and the only suggestion has been to use a table.

Whether you are supposed to be able to do this using FO I'm not sure.

--Phil.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




xsl:choice

2001-12-07 Thread Edward Dowgiallo



I seem to be not getting the intended use of 
xsl:choice.
 
The following stylesheet segment causes fop to 
terminate with the message: ...; Line 78 Column 25; [ERROR]: null
 
      
  
    
  
  
    
  
  
    
History of the 
World  
    
  

1st, a more verbose error message would be 
useful.
 
2nd, What I am trying to do is find out if the 
current element contains an element named "eraname", if it does I want to use 
the value of the element "eraname"
If it doesn't I want to check if the current 
element contains a child element named "conflictname", if it does I want to use 
the value of the element "conflictname".
If it doesn't I want to slap in some boiler plate 
text.
 
The xml file being processed when this fails does 
contain the child element "eraname".
 
I'd be more than happy to use a workaround 
here.
 
Thank you,
Ed


Re: Dictionary style pages

2001-12-07 Thread Arved Sandstrom



All *-page-master-references point at 
simple-page-masters. That means that one up to five regions get picked out, all 
of which can have user-specified names, using the 'region-name' property. There 
is nothing magic about names like 'xsl-region-before';they are only defaults. To 
associate a static-content with a specific region, use the specific name you 
have assigned to the region, in the page-master that will get selected by your 
conditions.
 
AHS

  - Original Message - 
  From: 
  Edward 
  Dowgiallo 
  To: [EMAIL PROTECTED] 
  Sent: Friday, December 07, 2001 3:17 
  PM
  Subject: Re: Dictionary style pages
  
  Corrina,
   
      The example 
  (franklin_2pageseqs.fo) does not do what I am looking for. Although starting 
  with page 7, it does alternate between odd and even masters, the page number 
  is always on the right hand bottom. I want to know how to make it appear on 
  right hand bottom for odd pages and left hand bottom for even 
  pages.
   
      Is there a syntax that allows 
  me to associate the static-content with a particular 
  conditional-page-master?
   
      However, I do thank you for 
  taking a moment to try and help me.
   
  Ed
  
- Original Message - 
From: 
Corinna Hischke 

To: [EMAIL PROTECTED] 
Sent: Friday, December 07, 2001 10:14 
AM
Subject: Re: Dictionary style 
pages

Hi,
 
1. page number on the left/right for left/right 
pages:
You have to set up two page-sequences, one for the odd and 
one for the even pages, say 'left_pages' and 'right_pages'. Each sequence 
must have a separate name for the region-after.
 
Tie them together in your page-sequence-master with this: 

  master-name="right_pages" odd-or-even="odd" 
/> master-name="left_pages" odd-or-even="even" 
/>   
In your fo:flow you can then put up two fo:static-content 
sections by referring to the different region-after names.
 
For more details, see 
docs/examples/pagination/franklin_2pageseqs.fo.
 
2. I didn't try it, but theoretically markers should be 
used for this kind of 'running header'.
 
HTH, Corinna

  - Original Message - 
  From: 
  Edward Dowgiallo 
  To: [EMAIL PROTECTED] ; [EMAIL PROTECTED] 
  Sent: Friday, December 07, 2001 3:40 
  PM
  Subject: Re: Dictionary style 
  pages
  
  Is there a way to do this? Again, it is a 
  very common book format.
  Ed
  
- Original Message - 
From: 
Edward Dowgiallo 
To: [EMAIL PROTECTED] 
Sent: Thursday, December 06, 2001 
12:49 PM
Subject: Dictionary style 
pages

Could someone point me to an example of 
producing a dictionary or telephone book style page with 
fop?
 
By this I mean:

  I'd like to put the page number at the 
  bottom of the page on the left hand side for even 
  numbered pages and on the right hand side for odd numbered 
  pages. 
  I'd like to put the earliest name in the 
  collating sequence that appears on the page on the left hand top and 
  latest name in the collating sequece on the right hand top. i.e. if 
  the page contains entires in alphabetical order from cat to dog, I'd 
  like the word cat on the left hand side of the region-before and dog 
  on the right hand side of the region-before.
Thank you,
Ed
 


Re: whats FOP

2001-12-07 Thread Christopher R. Maden


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

At 13:52 7-12-2001, Arved Sandstrom wrote:
>Maybe you could write up a paragraph (or 2 or 3) that explains FOP early
>history, and the origin of the name. That would be good stuff to put on the
>site.

See http://www.google.com/search?q=cache:FGXp6JWVblk:www.jtauber.com/fop/acknowledge.html  
 > for James Tauber's old acknowledgements page, and http://www.google.com/search?q=cache:zGpfaw76DqE:www.jtauber.com/fop/www8.ppt  
 > (turned into HTML by Google) for James's summary of FOP's history.  That 
will be more accurate than anything I can dredge up from memory.

~Chris
- -- 
Christopher R. Maden, Principal Consultant, HMM Consulting Int'l, Inc.
DTDs/schemas - conversion - ebooks - publishing - Web - B2B - training
http://www.hmmci.com/ > http://crism.maden.org/consulting/ >
PGP Fingerprint: BBA6 4085 DED0 E176 D6D4  5DFC AC52 F825 AFEC 58DA
-BEGIN PGP SIGNATURE-
Version: PGP Personal Privacy 6.5.8

iQA/AwUBPBE8GaxS+CWv7FjaEQJ48gCguYluGHPMxPPHOYCnUt1ZKCZNB7oAnjQR
nJMk8TWUgqYlLUop1fXHRuyq
=vwm/
-END PGP SIGNATURE-


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




Re: page-number-citation and formatting

2001-12-07 Thread Edward Dowgiallo

Philip,

I don't have a work around, but I just reported this problem myself. It
seems to be a general problem with fo:inline processing as I have
experienced the same thing working with marker values as well as page number
citations.

-Ed
- Original Message -
From: "Phillip Harling" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, December 07, 2001 12:11 PM
Subject: page-number-citation and formatting


> I'm having a small problem when using  and
formatting.  I am generating a table of contents using a table, and wish to
right align the page numbers.  If the table of contents appears at the
beginning of the document, the numbers don't get right-aligned, but if the
table of contents appears at the end of the document then they get aligned
correctly.
>
> What appears to be happening is that if a forward reference is made to a
page citation then fop doesn't know how big the page number will be and
doesn't allocate any area for it.  If the page number is known, then the
space it allocates is known and correct alignment can occur.
>
> I've had a look at org.apache.fop.fo.flow.PageNumberCitation and this
seems to bear up to the analysis.
>
> Has anyone else experienced this problem and if so, do you have a
work-around?
>
> Phil.
>
>
>
> --
>
> This e-mail may contain confidential and/or privileged information. If you
are not the intended recipient (or have received this e-mail in error)
please notify the sender immediately and destroy this e-mail. Any
unauthorized copying, disclosure or distribution of the material in this
e-mail is strictly forbidden.
>
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, email: [EMAIL PROTECTED]
>
>


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




Re: Dictionary style pages

2001-12-07 Thread Arved Sandstrom



All *-page-master-references point at 
simple-page-masters. That means that one up to five regions get picked out, all 
of which can have user-specified names, using the 'region-name' property. There 
is nothing magic about names like 'xsl-region-before';they are only defaults. To 
associate a static-content with a specific region, use the specific name you 
have assigned to the region, in the page-master that will get selected by your 
conditions.
 
AHS

  - Original Message - 
  From: 
  Edward 
  Dowgiallo 
  To: [EMAIL PROTECTED] 
  Sent: Friday, December 07, 2001 3:17 
  PM
  Subject: Re: Dictionary style pages
  
  Corrina,
   
      The example 
  (franklin_2pageseqs.fo) does not do what I am looking for. Although starting 
  with page 7, it does alternate between odd and even masters, the page number 
  is always on the right hand bottom. I want to know how to make it appear on 
  right hand bottom for odd pages and left hand bottom for even 
  pages.
   
      Is there a syntax that allows 
  me to associate the static-content with a particular 
  conditional-page-master?
   
      However, I do thank you for 
  taking a moment to try and help me.
   
  Ed
  
- Original Message - 
From: 
Corinna Hischke 

To: [EMAIL PROTECTED] 
Sent: Friday, December 07, 2001 10:14 
AM
Subject: Re: Dictionary style 
pages

Hi,
 
1. page number on the left/right for left/right 
pages:
You have to set up two page-sequences, one for the odd and 
one for the even pages, say 'left_pages' and 'right_pages'. Each sequence 
must have a separate name for the region-after.
 
Tie them together in your page-sequence-master with this: 

  master-name="right_pages" odd-or-even="odd" 
/> master-name="left_pages" odd-or-even="even" 
/>   
In your fo:flow you can then put up two fo:static-content 
sections by referring to the different region-after names.
 
For more details, see 
docs/examples/pagination/franklin_2pageseqs.fo.
 
2. I didn't try it, but theoretically markers should be 
used for this kind of 'running header'.
 
HTH, Corinna

  - Original Message - 
  From: 
  Edward Dowgiallo 
  To: [EMAIL PROTECTED] ; [EMAIL PROTECTED] 
  Sent: Friday, December 07, 2001 3:40 
  PM
  Subject: Re: Dictionary style 
  pages
  
  Is there a way to do this? Again, it is a 
  very common book format.
  Ed
  
- Original Message - 
From: 
Edward Dowgiallo 
To: [EMAIL PROTECTED] 
Sent: Thursday, December 06, 2001 
12:49 PM
Subject: Dictionary style 
pages

Could someone point me to an example of 
producing a dictionary or telephone book style page with 
fop?
 
By this I mean:

  I'd like to put the page number at the 
  bottom of the page on the left hand side for even 
  numbered pages and on the right hand side for odd numbered 
  pages. 
  I'd like to put the earliest name in the 
  collating sequence that appears on the page on the left hand top and 
  latest name in the collating sequece on the right hand top. i.e. if 
  the page contains entires in alphabetical order from cat to dog, I'd 
  like the word cat on the left hand side of the region-before and dog 
  on the right hand side of the region-before.
Thank you,
Ed
 


Bad marker message

2001-12-07 Thread Edward Dowgiallo



When using marker values with page scope in the 
xsl-region-before region, I get the warning message "Some static content could 
not fit in the area." if there are no markers of the appropriate class-name on 
the page. This is confusing as the problem is the marker values are empty. A 
more appropriate warning would be something like "No marker found on page for 
class-name XXX".
 
Ed
 


[PATCH] metrik width of euro (bug 2105 and bug 4654)

2001-12-07 Thread Rainer Garus

Attached is a patch which enters the metrik value of the euro in the metrik files of 
the standard fonts. The patch is for the fop-0_20_2-maintain branch and the MAIN 
branch.

Rainer Garus

diff -au Fop-0.20.2RC/src/codegen/Courier-Bold.xml Fop/src/codegen/Courier-Bold.xml
--- Fop-0.20.2RC/src/codegen/Courier-Bold.xml   Sun Nov 25 18:09:40 2001
+++ Fop/src/codegen/Courier-Bold.xmlFri Dec  7 21:58:20 2001
@@ -28,6 +28,7 @@
   
   
   
+  
   
   
   
diff -au Fop-0.20.2RC/src/codegen/Courier-BoldOblique.xml 
Fop/src/codegen/Courier-BoldOblique.xml
--- Fop-0.20.2RC/src/codegen/Courier-BoldOblique.xmlSun Nov 25 18:21:31 2001
+++ Fop/src/codegen/Courier-BoldOblique.xml Fri Dec  7 21:58:46 2001
@@ -28,6 +28,7 @@
   
   
   
+  
   
   
   
diff -au Fop-0.20.2RC/src/codegen/Courier-Oblique.xml 
Fop/src/codegen/Courier-Oblique.xml
--- Fop-0.20.2RC/src/codegen/Courier-Oblique.xmlSun Nov 25 18:09:40 2001
+++ Fop/src/codegen/Courier-Oblique.xml Fri Dec  7 21:59:02 2001
@@ -28,6 +28,7 @@
   
   
   
+  
   
   
   
diff -au Fop-0.20.2RC/src/codegen/Courier.xml Fop/src/codegen/Courier.xml
--- Fop-0.20.2RC/src/codegen/Courier.xmlSun Nov 25 18:09:40 2001
+++ Fop/src/codegen/Courier.xml Fri Dec  7 21:59:35 2001
@@ -28,6 +28,7 @@
   
   
   
+  
   
   
   
diff -au Fop-0.20.2RC/src/codegen/Helvetica-Bold.xml Fop/src/codegen/Helvetica-Bold.xml
--- Fop-0.20.2RC/src/codegen/Helvetica-Bold.xml Sun Nov 25 18:22:19 2001
+++ Fop/src/codegen/Helvetica-Bold.xml  Fri Dec  7 22:00:04 2001
@@ -28,6 +28,7 @@
   
   
   
+  
   
   
   
diff -au Fop-0.20.2RC/src/codegen/Helvetica-BoldOblique.xml 
Fop/src/codegen/Helvetica-BoldOblique.xml
--- Fop-0.20.2RC/src/codegen/Helvetica-BoldOblique.xml  Sun Nov 25 18:22:27 2001
+++ Fop/src/codegen/Helvetica-BoldOblique.xml   Fri Dec  7 22:00:28 2001
@@ -28,6 +28,7 @@
   
   
   
+  
   
   
   
diff -au Fop-0.20.2RC/src/codegen/Helvetica-Oblique.xml 
Fop/src/codegen/Helvetica-Oblique.xml
--- Fop-0.20.2RC/src/codegen/Helvetica-Oblique.xml  Sun Nov 25 18:09:40 2001
+++ Fop/src/codegen/Helvetica-Oblique.xml   Fri Dec  7 22:00:43 2001
@@ -28,6 +28,7 @@
   
   
   
+  
   
   
   
diff -au Fop-0.20.2RC/src/codegen/Helvetica.xml Fop/src/codegen/Helvetica.xml
--- Fop-0.20.2RC/src/codegen/Helvetica.xml  Sun Nov 25 18:22:42 2001
+++ Fop/src/codegen/Helvetica.xml   Fri Dec  7 22:01:00 2001
@@ -28,6 +28,7 @@
   
   
   
+  
   
   
   
diff -au Fop-0.20.2RC/src/codegen/Times-Bold.xml Fop/src/codegen/Times-Bold.xml
--- Fop-0.20.2RC/src/codegen/Times-Bold.xml Sun Nov 25 18:22:53 2001
+++ Fop/src/codegen/Times-Bold.xml  Fri Dec  7 22:01:24 2001
@@ -28,6 +28,7 @@
   
   
   
+  
   
   
   
diff -au Fop-0.20.2RC/src/codegen/Times-BoldItalic.xml 
Fop/src/codegen/Times-BoldItalic.xml
--- Fop-0.20.2RC/src/codegen/Times-BoldItalic.xml   Sun Nov 25 18:23:01 2001
+++ Fop/src/codegen/Times-BoldItalic.xmlFri Dec  7 22:01:38 2001
@@ -28,6 +28,7 @@
   
   
   
+  
   
   
   
diff -au Fop-0.20.2RC/src/codegen/Times-Italic.xml Fop/src/codegen/Times-Italic.xml
--- Fop-0.20.2RC/src/codegen/Times-Italic.xml   Sun Nov 25 18:09:40 2001
+++ Fop/src/codegen/Times-Italic.xmlFri Dec  7 22:01:53 2001
@@ -28,6 +28,7 @@
   
   
   
+  
   
   
   
diff -au Fop-0.20.2RC/src/codegen/Times-Roman.xml Fop/src/codegen/Times-Roman.xml
--- Fop-0.20.2RC/src/codegen/Times-Roman.xmlSun Nov 25 18:23:16 2001
+++ Fop/src/codegen/Times-Roman.xml Fri Dec  7 22:02:09 2001
@@ -28,6 +28,7 @@
   
   
   
+  
   
   
   


http://www.w3.org/1999/XSL/Format";>
  

  

  
  





A A A A A A A A A A
A A A A A A A A A A
A A A A A A A A A A



i i i i i i i i i i
i i i i i i i i i i
i i i i i i i i i i



a a a a a a a a a a
a a a a a a a a a a
a a a a a a a a a a



€ € € € € € € € € 
€
€ € € € € € € € € 
€
€ € € € € € € € € 
€



€ € € € € € € € € 
€
€ € € € € € € € € 
€
€ € € € € € € € € 
€



€ € € € € € € € € 
€
€ € € € € € € € € 
€
€ € € € € € € € € 
€



€ € € € € € € € € 
€
€ € € € € € € € € 
€
€ € € € € € € € € 
€



€ € € € € € € € € 
€
€ € € € € € € € € 
€
€ € € € € € € € € 
€



€ € € € € € € € € 
€
€ € € € € € € € € 
€
€ € € € € € € € € 
€



€ € € € € € € € € 
€
€ € € € € € € € € 
€
€ € € € € € € € € 
€



€ € € € € € € € € 
€
€ € € € € € € € € 
€
€ € € € € € € € € 
€



€ € € € € € € € € 
€
€ € € € € € € € € 
€
€ € € € € € € € € 
€



€ € € € € € € € € 
€
€ € € € € € € € € 
€
€ € € € € € € € € 
€



€ € € € € € € € € 
€
€ € € € € € € € € 
€
€ € € € € € € € € 
€



€ € € € € € € € € 
€
€ € € € € € € € € 
€
€ € € € € € € € € 
€



  



-
To unsubscrib

fo:inline error

2001-12-07 Thread Edward Dowgiallo



This may be an error or I may just not understand 
how this is supposed to work.
 
In the following segment from a stylesheet, the 
starting and ending marker values are concatenated together with no spacing 
between them and the whole thing is left justified. Isn't fo:inline supposed to 
allow me to force part of the text to the other end of the line? I basically 
would like the starting marker value to be left justified and the ending marker 
value to be right justified.
 
    
  
    
    
  
    
  
    

I have run into the same problem when trying to 
right justify the page number in a multi-column table of contents.
 
Thank you,
Ed
 


Re: whats FOP

2001-12-07 Thread Arved Sandstrom

Hey, Chris

Maybe you could write up a paragraph (or 2 or 3) that explains FOP early
history, and the origin of the name. That would be good stuff to put on the
site.

Arved

- Original Message -
From: "Christopher R. Maden" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, December 07, 2001 4:52 PM
Subject: Re: whats FOP


>
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
>
> At 12:16 7-12-2001, Alvan W. Plymire X4513 {sun11} wrote:
> >A while back, someone pointed out that Webster says:
> >
> >fop (n) same as DANDY
>
> And I believe that someone else also pointed out that that was entirely
> intentional.  A fop is someone overly concerned with style, which made the
> obvious acronym FOP entirely appropriate.
>
> ~Chris
> - --
> Christopher R. Maden, Principal Consultant, HMM Consulting Int'l, Inc.
> DTDs/schemas - conversion - ebooks - publishing - Web - B2B - training
> http://www.hmmci.com/ > http://crism.maden.org/consulting/ >
> PGP Fingerprint: BBA6 4085 DED0 E176 D6D4  5DFC AC52 F825 AFEC 58DA
> -BEGIN PGP SIGNATURE-
> Version: PGP Personal Privacy 6.5.8
>
> iQA/AwUBPBEsJKxS+CWv7FjaEQLFBgCfV4H1XHGMxK+wgq2xx7O3DbwfebUAniNj
> 9IJyKGUWygY8AHxoAW2nUnCY
> =hU5K
> -END PGP SIGNATURE-
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, email: [EMAIL PROTECTED]
>


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




Re: whats FOP

2001-12-07 Thread Christopher R. Maden


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

At 12:16 7-12-2001, Alvan W. Plymire X4513 {sun11} wrote:
>A while back, someone pointed out that Webster says:
>
>fop (n) same as DANDY

And I believe that someone else also pointed out that that was entirely 
intentional.  A fop is someone overly concerned with style, which made the 
obvious acronym FOP entirely appropriate.

~Chris
- -- 
Christopher R. Maden, Principal Consultant, HMM Consulting Int'l, Inc.
DTDs/schemas - conversion - ebooks - publishing - Web - B2B - training
http://www.hmmci.com/ > http://crism.maden.org/consulting/ >
PGP Fingerprint: BBA6 4085 DED0 E176 D6D4  5DFC AC52 F825 AFEC 58DA
-BEGIN PGP SIGNATURE-
Version: PGP Personal Privacy 6.5.8

iQA/AwUBPBEsJKxS+CWv7FjaEQLFBgCfV4H1XHGMxK+wgq2xx7O3DbwfebUAniNj
9IJyKGUWygY8AHxoAW2nUnCY
=hU5K
-END PGP SIGNATURE-


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




RE: Problems with seeing pdf-files in IE 5.0

2001-12-07 Thread joseph . aloysius . gilvary


Sorry, I jumped into the middle of that thread and hadn't noticed the
piece about IE 5.0 requiring the specific extension.

Any possibility your user community will upgrade their browser for
this (and other) considerations?

 Joe



   
  
"Jim Urban"
  
 
  
steps.net>cc:  
  
  Subject: RE: Problems with seeing 
pdf-files in IE 5.0  
12/07/2001 
  
02:51 PM   
  
Please respond 
  
to fop-dev 
  
   
  
   
  



You are correct, we set the content type to PDF before sending anything
back.  The problem is how to invoke this servlet and use a .PDF extension
when we don't know we are going to get a PDF back.

Jim

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]
Sent: Friday, December 07, 2001 1:14 PM
To: [EMAIL PROTECTED]
Subject: RE: Problems with seeing pdf-files in IE 5.0



Do you write to the servlet response before you decide whether
"this is a job for FOP" . (Sorry)

If the response to the browser hasn't begun, I think you should be
able to call setContentType("application/pdf") on the
ServletResponse instance as soon as you find the
XSL:FO file.

It's up to the browser then to handle the incoming mime type.

Or am I missing the point entirely?

 Joe




"Jim Urban"

steps.net>cc:
  Subject: RE: Problems with
seeing pdf-files in IE 5.0
12/07/2001
02:01 PM
Please respond
to fop-dev





Here is the real problem.  When the servlet is posted to, the browser has
no
knowledge of what type of data will be sent back.  We have a single servlet
which looks at the request and calls the appropriate class to process the
request.  The request then sends XML back to the servlet.  Then based upon
the presence of the parameter "print" in the http request, our servlet
attempts to locate the XSL:FO file that maps to the request.  If the XSL:FO
file is found, we FOP the XML and send back PDF.  Otherwise we use a
XSL:HTML file and send back a HTML page.  Our clients are responsible for
providing XSL:FO files for the pages they want PDF prints.  The XSL:FO
files
are optional and may or may not exist.

Jim

-Original Message-
From: Alex McLintock [mailto:[EMAIL PROTECTED]]
Sent: Friday, December 07, 2001 11:05 AM
To: [EMAIL PROTECTED]
Subject: RE: Problems with seeing pdf-files in IE 5.0


 --- Jim Urban <[EMAIL PROTECTED]> wrote: > > you also have to use an
url with ".pdf" at the
end
> The url the client is posting to is a servlet which uses FOP to generate
a
> PDF and feed it back to the browser.  If the client post a request to
> myservlet.pdf the server will look for a file called myservlet.pdf and
> return a 403 when it can't find it.  So how do you use a url that ends
with
> .pdf when using servlets?

If you can't set up an alias in the webserver as people have suggested you
could
always have a servlet class called "pdf" within a package "myservlet".
End result: myservlet.pdf





Could have sworn this was in the FAQ.

Oh dear - that means the FAQ isn't good enough yet


Alex


=
Alex McLintock[EMAIL PROTECTED]Open Source Consultancy in London
OpenWeb Analysts Ltd, http://www.OWAL.co.uk/
---
SF and Computing Book News and Reviews: http://news.diversebooks.com/
Get Your XML T-Shirt  at http://www.inversity.co.uk/
COMPETITION : http://news.diversebooks.com/article.pl?sid=01/10/08/1947255


Nokia 5510 looks weird sounds great.
Go to http://uk.promotions.yahoo.com/nokia/ discover and win it!
The competition ends 16 th of December 2001.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL

Re: whats FOP

2001-12-07 Thread Alvan W. Plymire X4513 {sun11}

A while back, someone pointed out that Webster says:

fop (n) same as DANDY


> Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
> list-help: 
> list-unsubscribe: 
> list-post: 
> Delivered-To: mailing list [EMAIL PROTECTED]
> X-Sender: [EMAIL PROTECTED]
> Date: Fri, 07 Dec 2001 11:57:21 -0800
> To: [EMAIL PROTECTED]
> From: "Christopher R. Maden" <[EMAIL PROTECTED]>
> Subject: Re: whats FOP
> Mime-Version: 1.0
> X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N
> 
> 
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
> 
> At 03:55 7-12-2001, Suhail Rashid wrote:
> >What does FOP stand for ;
> >FOPrint formatter ??? or something else...
> 
> Originally, FO-to-PDF, but now something unspecific but broader, like (as 
> Bertrand suggests) FO Processor.
> 
> >I tried the fop site but no use...
> 
> When egosurfing, I found that this information is on an old personal page 
> of James Tauber's, but not on the Apache site anywhere.  We should probably 
> add it.
> 
> ~Chris
> - -- 
> Christopher R. Maden, Principal Consultant, HMM Consulting Int'l, Inc.
> DTDs/schemas - conversion - ebooks - publishing - Web - B2B - training
> http://www.hmmci.com/ > http://crism.maden.org/consulting/ >
> PGP Fingerprint: BBA6 4085 DED0 E176 D6D4  5DFC AC52 F825 AFEC 58DA
> -BEGIN PGP SIGNATURE-
> Version: PGP Personal Privacy 6.5.8
> 
> iQA/AwUBPBEfIaxS+CWv7FjaEQJhygCdFDvMO2hB96etbe9GMbHk7UepwrkAoIaV
> GyggMvgUTE0pSvCVO/SPvsmO
> =d22M
> -END PGP SIGNATURE-
> 
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, email: [EMAIL PROTECTED]
> 


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




Re: whats FOP

2001-12-07 Thread Christopher R. Maden


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

At 03:55 7-12-2001, Suhail Rashid wrote:
>What does FOP stand for ;
>FOPrint formatter ??? or something else...

Originally, FO-to-PDF, but now something unspecific but broader, like (as 
Bertrand suggests) FO Processor.

>I tried the fop site but no use...

When egosurfing, I found that this information is on an old personal page 
of James Tauber's, but not on the Apache site anywhere.  We should probably 
add it.

~Chris
- -- 
Christopher R. Maden, Principal Consultant, HMM Consulting Int'l, Inc.
DTDs/schemas - conversion - ebooks - publishing - Web - B2B - training
http://www.hmmci.com/ > http://crism.maden.org/consulting/ >
PGP Fingerprint: BBA6 4085 DED0 E176 D6D4  5DFC AC52 F825 AFEC 58DA
-BEGIN PGP SIGNATURE-
Version: PGP Personal Privacy 6.5.8

iQA/AwUBPBEfIaxS+CWv7FjaEQJhygCdFDvMO2hB96etbe9GMbHk7UepwrkAoIaV
GyggMvgUTE0pSvCVO/SPvsmO
=d22M
-END PGP SIGNATURE-


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




RE: Problems with seeing pdf-files in IE 5.0

2001-12-07 Thread Jim Urban

You are correct, we set the content type to PDF before sending anything
back.  The problem is how to invoke this servlet and use a .PDF extension
when we don't know we are going to get a PDF back.

Jim

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]
Sent: Friday, December 07, 2001 1:14 PM
To: [EMAIL PROTECTED]
Subject: RE: Problems with seeing pdf-files in IE 5.0



Do you write to the servlet response before you decide whether
"this is a job for FOP" . (Sorry)

If the response to the browser hasn't begun, I think you should be
able to call setContentType("application/pdf") on the
ServletResponse instance as soon as you find the
XSL:FO file.

It's up to the browser then to handle the incoming mime type.

Or am I missing the point entirely?

 Joe




"Jim Urban"

steps.net>cc:
  Subject: RE: Problems with
seeing pdf-files in IE 5.0
12/07/2001
02:01 PM
Please respond
to fop-dev





Here is the real problem.  When the servlet is posted to, the browser has
no
knowledge of what type of data will be sent back.  We have a single servlet
which looks at the request and calls the appropriate class to process the
request.  The request then sends XML back to the servlet.  Then based upon
the presence of the parameter "print" in the http request, our servlet
attempts to locate the XSL:FO file that maps to the request.  If the XSL:FO
file is found, we FOP the XML and send back PDF.  Otherwise we use a
XSL:HTML file and send back a HTML page.  Our clients are responsible for
providing XSL:FO files for the pages they want PDF prints.  The XSL:FO
files
are optional and may or may not exist.

Jim

-Original Message-
From: Alex McLintock [mailto:[EMAIL PROTECTED]]
Sent: Friday, December 07, 2001 11:05 AM
To: [EMAIL PROTECTED]
Subject: RE: Problems with seeing pdf-files in IE 5.0


 --- Jim Urban <[EMAIL PROTECTED]> wrote: > > you also have to use an
url with ".pdf" at the
end
> The url the client is posting to is a servlet which uses FOP to generate
a
> PDF and feed it back to the browser.  If the client post a request to
> myservlet.pdf the server will look for a file called myservlet.pdf and
> return a 403 when it can't find it.  So how do you use a url that ends
with
> .pdf when using servlets?

If you can't set up an alias in the webserver as people have suggested you
could
always have a servlet class called "pdf" within a package "myservlet".
End result: myservlet.pdf





Could have sworn this was in the FAQ.

Oh dear - that means the FAQ isn't good enough yet


Alex


=
Alex McLintock[EMAIL PROTECTED]Open Source Consultancy in London
OpenWeb Analysts Ltd, http://www.OWAL.co.uk/
---
SF and Computing Book News and Reviews: http://news.diversebooks.com/
Get Your XML T-Shirt  at http://www.inversity.co.uk/
COMPETITION : http://news.diversebooks.com/article.pl?sid=01/10/08/1947255


Nokia 5510 looks weird sounds great.
Go to http://uk.promotions.yahoo.com/nokia/ discover and win it!
The competition ends 16 th of December 2001.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]






-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




RE: Bleeding / Hyphenation issues

2001-12-07 Thread Darrel Riekhof

Thanks for the tip, but we tried the hyphenate tag and we can't get it to
work.

Could some expand on the paragraph below.  What are the other relevant
attribs?  What/Where is the database for my language (English)?

Darrel

-Original Message-
From: Joerg Pietschmann [mailto:[EMAIL PROTECTED]]
Sent: Friday, December 07, 2001 4:04 AM
To: FOP List
Subject: Re: Bleeding / Hyphenation issues


If you have set the hyphenate property and other relevant attributes
properly and you still have difficulties, try inserting a zero-width
space or add some hyphenation patterns including a dash to the database
for your language.

HTH
J.Pietschmann

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




Re: Preserving Line Breaks

2001-12-07 Thread spam_from_fop_dev


Hi Kunal,

> do linebreaks get preserved?

They can be, but normally they are not; the default is similar to what
HTML does.  If you want the equivalent of HTML's  element, you
need to set a property on the block containing the data telling FOP
how to treat them.  I forget exactly what I did, but if you look
through the spec for things like linefeed-preserve and
whitespace-treatment I'm sure you'll find it.

Good luck,

--Phil.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




Re: Preserving Line Breaks

2001-12-07 Thread spam-from-fop-dev


Hi Kunal,

> do linebreaks get preserved?

They can be, but normally they are not; the default is similar to what
HTML does.  If you want the equivalent of HTML's  element, you
need to set a property on the block containing the data telling FOP
how to treat them.  I forget exactly what I did, but if you look
through the spec for things like linefeed-preserve and
whitespace-treatment I'm sure you'll find it.

Good luck,

--Phil.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




Re: Dictionary style pages

2001-12-07 Thread spam_from_fop_dev


Hi Ed,

> Could someone point me to an example of producing a dictionary or
> telephone book style page with fop?  I'd like to put the earliest
> name in the collating sequence that appears on the page on the left
> hand top and latest name in the collating sequece on the right hand
> top

There is an example that does this in the FO examples distributed with
FOP: it is called something like glossary.xml.  It is done using
markers.

The impression that I get is that markers are only partially
implemented by FOP.  If you want to do exactly what this example does
you'll be OK, but I've never got anything else using markers to work
satisfactorily.

Good luck,

--Phil.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




RE: Problems with seeing pdf-files in IE 5.0

2001-12-07 Thread Savino, Matt C

Jim, I've attached the servlet that we use to handle a simlar issue issue to
what you describe. This serlvet handles both HTML and PDF requests and calls
either method based on a parameter in the user's session (which could just
as easily be in the request). Maybe it will help.

> -Original Message-
> From: Jim Urban [mailto:[EMAIL PROTECTED]]
> Sent: Friday, December 07, 2001 11:02 AM
> To: [EMAIL PROTECTED]
> Subject: RE: Problems with seeing pdf-files in IE 5.0
> 
> 
> Here is the real problem.  When the servlet is posted to, the 
> browser has no
> knowledge of what type of data will be sent back.  We have a 
> single servlet
> which looks at the request and calls the appropriate class to 
> process the
> request.  The request then sends XML back to the servlet.  
> Then based upon
> the presence of the parameter "print" in the http request, our servlet
> attempts to locate the XSL:FO file that maps to the request.  
> If the XSL:FO
> file is found, we FOP the XML and send back PDF.  Otherwise we use a
> XSL:HTML file and send back a HTML page.  Our clients are 
> responsible for
> providing XSL:FO files for the pages they want PDF prints.  
> The XSL:FO files
> are optional and may or may not exist.
> 
> Jim
> 
> -Original Message-
> From: Alex McLintock [mailto:[EMAIL PROTECTED]]
> Sent: Friday, December 07, 2001 11:05 AM
> To: [EMAIL PROTECTED]
> Subject: RE: Problems with seeing pdf-files in IE 5.0
> 
> 
>  --- Jim Urban <[EMAIL PROTECTED]> wrote: > > you also 
> have to use an
> url with ".pdf" at the
> end
> > The url the client is posting to is a servlet which uses 
> FOP to generate a
> > PDF and feed it back to the browser.  If the client post a 
> request to
> > myservlet.pdf the server will look for a file called 
> myservlet.pdf and
> > return a 403 when it can't find it.  So how do you use a 
> url that ends
> with
> > .pdf when using servlets?
> 
> If you can't set up an alias in the webserver as people have 
> suggested you
> could
> always have a servlet class called "pdf" within a package "myservlet".
> End result: myservlet.pdf
> 
> 
> 
> 
> 
> Could have sworn this was in the FAQ.
> 
> Oh dear - that means the FAQ isn't good enough yet
> 
> 
> Alex
> 
> 
> =
> Alex McLintock[EMAIL PROTECTED]Open Source 
> Consultancy in London
> OpenWeb Analysts Ltd, http://www.OWAL.co.uk/
> ---
> SF and Computing Book News and Reviews: http://news.diversebooks.com/
> Get Your XML T-Shirt  at http://www.inversity.co.uk/
> COMPETITION : 
http://news.diversebooks.com/article.pl?sid=01/10/08/1947255


Nokia 5510 looks weird sounds great.
Go to http://uk.promotions.yahoo.com/nokia/ discover and win it!
The competition ends 16 th of December 2001.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]





ReportGeneratorServlet.java
Description: Binary data

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]


Re: Dictionary style pages

2001-12-07 Thread Edward Dowgiallo



Corinna,
 
    For 2, markers are just what I 
was looking for. Thank you very much.
 
Ed

  - Original Message - 
  From: 
  Corinna Hischke 
  
  To: [EMAIL PROTECTED] 
  Sent: Friday, December 07, 2001 10:14 
  AM
  Subject: Re: Dictionary style pages
  
  Hi,
   
  1. page number on the left/right for left/right 
  pages:
  You have to set up two page-sequences, one for the odd and 
  one for the even pages, say 'left_pages' and 'right_pages'. Each sequence must 
  have a separate name for the region-after.
   
  Tie them together in your page-sequence-master with this: 
  
    master-name="right_pages" odd-or-even="odd" 
  /> master-name="left_pages" odd-or-even="even" 
  />   
  In your fo:flow you can then put up two fo:static-content 
  sections by referring to the different region-after names.
   
  For more details, see 
  docs/examples/pagination/franklin_2pageseqs.fo.
   
  2. I didn't try it, but theoretically markers should be used 
  for this kind of 'running header'.
   
  HTH, Corinna
  
- Original Message - 
From: 
Edward 
Dowgiallo 
To: [EMAIL PROTECTED] ; [EMAIL PROTECTED] 
Sent: Friday, December 07, 2001 3:40 
PM
Subject: Re: Dictionary style 
pages

Is there a way to do this? Again, it is a very 
common book format.
Ed

  - Original Message - 
  From: 
  Edward Dowgiallo 
  To: [EMAIL PROTECTED] 
  Sent: Thursday, December 06, 2001 
  12:49 PM
  Subject: Dictionary style pages
  
  Could someone point me to an example of 
  producing a dictionary or telephone book style page with fop?
   
  By this I mean:
  
I'd like to put the page number at the 
bottom of the page on the left hand side for even 
numbered pages and on the right hand side for odd numbered 
pages. 
I'd like to put the earliest name in the 
collating sequence that appears on the page on the left hand top and 
latest name in the collating sequece on the right hand top. i.e. if the 
page contains entires in alphabetical order from cat to dog, I'd like 
the word cat on the left hand side of the region-before and dog on the 
right hand side of the region-before.
  Thank you,
  Ed
   


Re: Dictionary style pages

2001-12-07 Thread Edward Dowgiallo



Corrina,
 
    The example 
(franklin_2pageseqs.fo) does not do what I am looking for. Although starting 
with page 7, it does alternate between odd and even masters, the page number is 
always on the right hand bottom. I want to know how to make it appear on right 
hand bottom for odd pages and left hand bottom for even pages.
 
    Is there a syntax that allows me 
to associate the static-content with a particular 
conditional-page-master?
 
    However, I do thank you for 
taking a moment to try and help me.
 
Ed

  - Original Message - 
  From: 
  Corinna Hischke 
  
  To: [EMAIL PROTECTED] 
  Sent: Friday, December 07, 2001 10:14 
  AM
  Subject: Re: Dictionary style pages
  
  Hi,
   
  1. page number on the left/right for left/right 
  pages:
  You have to set up two page-sequences, one for the odd and 
  one for the even pages, say 'left_pages' and 'right_pages'. Each sequence must 
  have a separate name for the region-after.
   
  Tie them together in your page-sequence-master with this: 
  
    master-name="right_pages" odd-or-even="odd" 
  /> master-name="left_pages" odd-or-even="even" 
  />   
  In your fo:flow you can then put up two fo:static-content 
  sections by referring to the different region-after names.
   
  For more details, see 
  docs/examples/pagination/franklin_2pageseqs.fo.
   
  2. I didn't try it, but theoretically markers should be used 
  for this kind of 'running header'.
   
  HTH, Corinna
  
- Original Message - 
From: 
Edward 
Dowgiallo 
To: [EMAIL PROTECTED] ; [EMAIL PROTECTED] 
Sent: Friday, December 07, 2001 3:40 
PM
Subject: Re: Dictionary style 
pages

Is there a way to do this? Again, it is a very 
common book format.
Ed

  - Original Message - 
  From: 
  Edward Dowgiallo 
  To: [EMAIL PROTECTED] 
  Sent: Thursday, December 06, 2001 
  12:49 PM
  Subject: Dictionary style pages
  
  Could someone point me to an example of 
  producing a dictionary or telephone book style page with fop?
   
  By this I mean:
  
I'd like to put the page number at the 
bottom of the page on the left hand side for even 
numbered pages and on the right hand side for odd numbered 
pages. 
I'd like to put the earliest name in the 
collating sequence that appears on the page on the left hand top and 
latest name in the collating sequece on the right hand top. i.e. if the 
page contains entires in alphabetical order from cat to dog, I'd like 
the word cat on the left hand side of the region-before and dog on the 
right hand side of the region-before.
  Thank you,
  Ed
   


RE: Problems with seeing pdf-files in IE 5.0

2001-12-07 Thread joseph . aloysius . gilvary


Do you write to the servlet response before you decide whether
"this is a job for FOP" . (Sorry)

If the response to the browser hasn't begun, I think you should be
able to call setContentType("application/pdf") on the
ServletResponse instance as soon as you find the
XSL:FO file.

It's up to the browser then to handle the incoming mime type.

Or am I missing the point entirely?

 Joe



   
  
"Jim Urban"
  
 
  
steps.net>cc:  
  
  Subject: RE: Problems with seeing 
pdf-files in IE 5.0  
12/07/2001 
  
02:01 PM   
  
Please respond 
  
to fop-dev 
  
   
  
   
  



Here is the real problem.  When the servlet is posted to, the browser has
no
knowledge of what type of data will be sent back.  We have a single servlet
which looks at the request and calls the appropriate class to process the
request.  The request then sends XML back to the servlet.  Then based upon
the presence of the parameter "print" in the http request, our servlet
attempts to locate the XSL:FO file that maps to the request.  If the XSL:FO
file is found, we FOP the XML and send back PDF.  Otherwise we use a
XSL:HTML file and send back a HTML page.  Our clients are responsible for
providing XSL:FO files for the pages they want PDF prints.  The XSL:FO
files
are optional and may or may not exist.

Jim

-Original Message-
From: Alex McLintock [mailto:[EMAIL PROTECTED]]
Sent: Friday, December 07, 2001 11:05 AM
To: [EMAIL PROTECTED]
Subject: RE: Problems with seeing pdf-files in IE 5.0


 --- Jim Urban <[EMAIL PROTECTED]> wrote: > > you also have to use an
url with ".pdf" at the
end
> The url the client is posting to is a servlet which uses FOP to generate
a
> PDF and feed it back to the browser.  If the client post a request to
> myservlet.pdf the server will look for a file called myservlet.pdf and
> return a 403 when it can't find it.  So how do you use a url that ends
with
> .pdf when using servlets?

If you can't set up an alias in the webserver as people have suggested you
could
always have a servlet class called "pdf" within a package "myservlet".
End result: myservlet.pdf





Could have sworn this was in the FAQ.

Oh dear - that means the FAQ isn't good enough yet


Alex


=
Alex McLintock[EMAIL PROTECTED]Open Source Consultancy in London
OpenWeb Analysts Ltd, http://www.OWAL.co.uk/
---
SF and Computing Book News and Reviews: http://news.diversebooks.com/
Get Your XML T-Shirt  at http://www.inversity.co.uk/
COMPETITION : http://news.diversebooks.com/article.pl?sid=01/10/08/1947255


Nokia 5510 looks weird sounds great.
Go to http://uk.promotions.yahoo.com/nokia/ discover and win it!
The competition ends 16 th of December 2001.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]






-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




RE: Preserving Line Breaks

2001-12-07 Thread Kunal Mittal
Title: Message



Thanks 
Jim.
 
 
Kunal Mittal Senior Consultant, 
i R i s 
e Bus: (510) 
757-6145 eFax: (413) 
460-5823 [EMAIL PROTECTED] [EMAIL PROTECTED] 

  
  -Original Message-From: Jim Urban 
  [mailto:[EMAIL PROTECTED]] Sent: Friday, December 07, 2001 
  11:13 AMTo: [EMAIL PROTECTED]Subject: RE: 
  Preserving Line Breaks
  Depends on your FO.
   will maintain your line 
  breaks, otherwise they are lost.
   
  Jim
  
-Original Message-From: Kunal Mittal 
[mailto:[EMAIL PROTECTED]]Sent: Friday, December 07, 2001 12:03 
PMTo: [EMAIL PROTECTED]Subject: Preserving Line 
Breaks
Hello - 
I am using FOP to generate PDF files. The FOP 
code is generated through a Java Servlet. When I get the data from the 
database, do linebreaks in the data get preserved?
Example - 
User enters text into a text field on a HTML (JSP 
page). This data is stored with line break information in the dB. When I get 
this data and send it to FOP, the fo:block element doesn't preserve the line 
breaks.
Thoughts? 
Thanks 
Kunal Mittal Senior Consultant, i R i s e 
Bus: (510) 757-6145 eFax: (413) 460-5823 [EMAIL PROTECTED] [EMAIL PROTECTED] 


RE: Preserving Line Breaks

2001-12-07 Thread Jim Urban
Title: Preserving Line Breaks



Depends on your FO.
 will maintain your line 
breaks, otherwise they are lost.
 
Jim

  -Original Message-From: Kunal Mittal 
  [mailto:[EMAIL PROTECTED]]Sent: Friday, December 07, 2001 12:03 
  PMTo: [EMAIL PROTECTED]Subject: Preserving Line 
  Breaks
  Hello - 
  I am using FOP to generate PDF files. The FOP code 
  is generated through a Java Servlet. When I get the data from the database, do 
  linebreaks in the data get preserved?
  Example - 
  User enters text into a text field on a HTML (JSP 
  page). This data is stored with line break information in the dB. When I get 
  this data and send it to FOP, the fo:block element doesn't preserve the line 
  breaks.
  Thoughts? 
  Thanks 
  Kunal Mittal Senior Consultant, i R i s e 
  Bus: (510) 757-6145 eFax: (413) 460-5823 [EMAIL PROTECTED] [EMAIL PROTECTED] 


RE: Problems with seeing pdf-files in IE 5.0

2001-12-07 Thread Jim Urban

Here is the real problem.  When the servlet is posted to, the browser has no
knowledge of what type of data will be sent back.  We have a single servlet
which looks at the request and calls the appropriate class to process the
request.  The request then sends XML back to the servlet.  Then based upon
the presence of the parameter "print" in the http request, our servlet
attempts to locate the XSL:FO file that maps to the request.  If the XSL:FO
file is found, we FOP the XML and send back PDF.  Otherwise we use a
XSL:HTML file and send back a HTML page.  Our clients are responsible for
providing XSL:FO files for the pages they want PDF prints.  The XSL:FO files
are optional and may or may not exist.

Jim

-Original Message-
From: Alex McLintock [mailto:[EMAIL PROTECTED]]
Sent: Friday, December 07, 2001 11:05 AM
To: [EMAIL PROTECTED]
Subject: RE: Problems with seeing pdf-files in IE 5.0


 --- Jim Urban <[EMAIL PROTECTED]> wrote: > > you also have to use an
url with ".pdf" at the
end
> The url the client is posting to is a servlet which uses FOP to generate a
> PDF and feed it back to the browser.  If the client post a request to
> myservlet.pdf the server will look for a file called myservlet.pdf and
> return a 403 when it can't find it.  So how do you use a url that ends
with
> .pdf when using servlets?

If you can't set up an alias in the webserver as people have suggested you
could
always have a servlet class called "pdf" within a package "myservlet".
End result: myservlet.pdf





Could have sworn this was in the FAQ.

Oh dear - that means the FAQ isn't good enough yet


Alex


=
Alex McLintock[EMAIL PROTECTED]Open Source Consultancy in London
OpenWeb Analysts Ltd, http://www.OWAL.co.uk/
---
SF and Computing Book News and Reviews: http://news.diversebooks.com/
Get Your XML T-Shirt  at http://www.inversity.co.uk/
COMPETITION : http://news.diversebooks.com/article.pl?sid=01/10/08/1947255


Nokia 5510 looks weird sounds great.
Go to http://uk.promotions.yahoo.com/nokia/ discover and win it!
The competition ends 16 th of December 2001.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




RE: page-number-citation and formatting

2001-12-07 Thread Vladimir Sneblic

Hi Phillip,

I'm trying to generate a contents page myself, but since I'm quite new to
FOP I have no idea as to how to make a reference to page numbers of pages in
the document. It seams like you've solved this problem and I was wondering
if you would be willing to share this information, or point me in the
direction of a web page (or some other resource) that discusses this kind of
thing.

Here's what I'm trying to do in a bit more detail. I'm creating a PDF
document from a FOP template which is dynamically modified with the data
from the database. The reason why I can't just create a static content page
is because of the dynamic content (which needs a variable number of pages).
What's the best way to handle this kind of a problem?

Thanks in advance,

Vladimir

 -Original Message-
From:   Phillip Harling [mailto:[EMAIL PROTECTED]] 
Sent:   Saturday, 8 December 2001 6:11 a.m.
To: [EMAIL PROTECTED]
Subject:page-number-citation and formatting

I'm having a small problem when using  and
formatting.  I am generating a table of contents using a table, and wish to
right align the page numbers.  If the table of contents appears at the
beginning of the document, the numbers don't get right-aligned, but if the
table of contents appears at the end of the document then they get aligned
correctly.

What appears to be happening is that if a forward reference is made to a
page citation then fop doesn't know how big the page number will be and
doesn't allocate any area for it.  If the page number is known, then the
space it allocates is known and correct alignment can occur.

I've had a look at org.apache.fop.fo.flow.PageNumberCitation and this seems
to bear up to the analysis.

Has anyone else experienced this problem and if so, do you have a
work-around?

Phil.



--

This e-mail may contain confidential and/or privileged information. If you
are not the intended recipient (or have received this e-mail in error)
please notify the sender immediately and destroy this e-mail. Any
unauthorized copying, disclosure or distribution of the material in this
e-mail is strictly forbidden.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




Preserving Line Breaks

2001-12-07 Thread Kunal Mittal
Title: Preserving Line Breaks





Hello -


I am using FOP to generate PDF files. The FOP code is generated through a Java Servlet. When I get the data from the database, do linebreaks in the data get preserved?

Example -


User enters text into a text field on a HTML (JSP page). This data is stored with line break information in the dB. When I get this data and send it to FOP, the fo:block element doesn't preserve the line breaks.

Thoughts?


Thanks


Kunal Mittal
Senior Consultant, i R i s e
Bus: (510) 757-6145
eFax: (413) 460-5823
[EMAIL PROTECTED]
[EMAIL PROTECTED]





page-number-citation and formatting

2001-12-07 Thread Phillip Harling

I'm having a small problem when using  and formatting.  I am 
generating a table of contents using a table, and wish to right align the page 
numbers.  If the table of contents appears at the beginning of the document, the 
numbers don't get right-aligned, but if the table of contents appears at the end of 
the document then they get aligned correctly.

What appears to be happening is that if a forward reference is made to a page citation 
then fop doesn't know how big the page number will be and doesn't allocate any area 
for it.  If the page number is known, then the space it allocates is known and correct 
alignment can occur.

I've had a look at org.apache.fop.fo.flow.PageNumberCitation and this seems to bear up 
to the analysis.

Has anyone else experienced this problem and if so, do you have a work-around?

Phil.



--

This e-mail may contain confidential and/or privileged information. If you are not the 
intended recipient (or have received this e-mail in error) please notify the sender 
immediately and destroy this e-mail. Any unauthorized copying, disclosure or 
distribution of the material in this e-mail is strictly forbidden.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




RE: Problems with seeing pdf-files in IE 5.0

2001-12-07 Thread Alex McLintock

 --- Jim Urban <[EMAIL PROTECTED]> wrote: > > you also have to use an url with 
".pdf" at the
end
> The url the client is posting to is a servlet which uses FOP to generate a
> PDF and feed it back to the browser.  If the client post a request to
> myservlet.pdf the server will look for a file called myservlet.pdf and
> return a 403 when it can't find it.  So how do you use a url that ends with
> .pdf when using servlets?

If you can't set up an alias in the webserver as people have suggested you could 
always have a servlet class called "pdf" within a package "myservlet".
End result: myservlet.pdf





Could have sworn this was in the FAQ. 

Oh dear - that means the FAQ isn't good enough yet


Alex


=
Alex McLintock[EMAIL PROTECTED]Open Source Consultancy in London
OpenWeb Analysts Ltd, http://www.OWAL.co.uk/ 
---
SF and Computing Book News and Reviews: http://news.diversebooks.com/
Get Your XML T-Shirt  at http://www.inversity.co.uk/
COMPETITION : http://news.diversebooks.com/article.pl?sid=01/10/08/1947255


Nokia 5510 looks weird sounds great. 
Go to http://uk.promotions.yahoo.com/nokia/ discover and win it! 
The competition ends 16 th of December 2001.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




Re: Specific footer on the last page

2001-12-07 Thread Thierry Gounelle

I tried the footnote trick but I have the following problem: if the
footnote doesnt fit in the first page, it has to go on the second with the
reference still on the first. I then have a nasty exception (it works fine
if everything is on the first page):

javax.xml.transform.TransformerException
at
org.apache.xalan.transformer.TransformerImpl.transformNode(TransformerImpl.java:1212)

at
org.apache.xalan.transformer.TransformerImpl.run(TransformerImpl.java:2894)

at java.lang.Thread.run(Unknown Source)
-
java.lang.NullPointerException
at org.apache.fop.fo.flow.TableBody.layout(TableBody.java:96)
at org.apache.fop.fo.flow.Table.layout(Table.java:226)
at org.apache.fop.fo.flow.FootnoteBody.layout(FootnoteBody.java:72)

at org.apache.fop.fo.flow.Footnote.layoutFootnote(Footnote.java:89)

at org.apache.fop.layout.Page.setPendingFootnotes(Page.java:201)
at
org.apache.fop.fo.pagination.PageSequence.makePage(PageSequence.java:344)
at
org.apache.fop.fo.pagination.PageSequence.format(PageSequence.java:266)
at
org.apache.fop.apps.StreamRenderer.render(StreamRenderer.java:191)
at
org.apache.fop.fo.FOTreeBuilder.endElement(FOTreeBuilder.java:178)
at
org.apache.xalan.transformer.ResultTreeHandler.endElement(ResultTreeHandler.java:284)

at
org.apache.xalan.templates.ElemLiteralResult.execute(ElemLiteralResult.java:749)

at
org.apache.xalan.templates.ElemForEach.transformSelectedNodes(ElemForEach.java:495)

at
org.apache.xalan.templates.ElemApplyTemplates.execute(ElemApplyTemplates.java:193)

at
org.apache.xalan.transformer.TransformerImpl.executeChildTemplates(TransformerImpl.java:2154)

at
org.apache.xalan.transformer.TransformerImpl.executeChildTemplates(TransformerImpl.java:2097)

at
org.apache.xalan.transformer.TransformerImpl.applyTemplateToNode(TransformerImpl.java:2029)

at
org.apache.xalan.transformer.TransformerImpl.transformNode(TransformerImpl.java:1189)

at
org.apache.xalan.transformer.TransformerImpl.run(TransformerImpl.java:2894)

at java.lang.Thread.run(Unknown Source)
org.apache.fop.apps.FOPException
at org.apache.fop.apps.Driver.render(Driver.java:464)
at com.vth.lp.PrintInvoice.main(PrintInvoice.java:90)

Joerg Pietschmann wrote:

> Thierry Gounelle <[EMAIL PROTECTED]> wrote:
> > Here is my problem:
> > I have a document that may have 1 to N pages. I would like to print
> > something on the footer of the last page (or at least on the bottom).
>
> This may be more tricky than it seems at a first glance.
> One possibility is to put the text into a footnote and refer to it from
> an otherwise empty block at the end of the text. Specify a character
> which does not render a visibly glyph as the footnote character, like
> a zero width space. You might have to customize the footnote separator
> as well.
>
> HTH
> J.Pietschmann
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, email: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




Re: Problems with seeing pdf-files in IE 5.0

2001-12-07 Thread Cyril Rognon

That's the trick if you have to use .pdf ended url, use the query string 
like Jamestold you to.

This is a particular IE5.0 pb, and some times it does not appear, the 
response content type may be enough.


Cyril Rognon

At 15:05 07/12/2001 +, you wrote:


>Jim Urban wrote:
>
>So how do you  use a url that ends
>>with .pdf when using servlets?
>
>
>I think you can do
>
>http://any.url/servlets/Blah?stuff=.pdf
>
>but not certain
>
>James


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




Re: Dictionary style pages

2001-12-07 Thread Corinna Hischke



Hi,
 
1. page number on the left/right for left/right 
pages:
You have to set up two page-sequences, one for the odd and one 
for the even pages, say 'left_pages' and 'right_pages'. Each sequence must have 
a separate name for the region-after.
 
Tie them together in your page-sequence-master with this: 

  master-name="right_pages" odd-or-even="odd" 
/> master-name="left_pages" odd-or-even="even" 
/>   
In your fo:flow you can then put up two fo:static-content 
sections by referring to the different region-after names.
 
For more details, see 
docs/examples/pagination/franklin_2pageseqs.fo.
 
2. I didn't try it, but theoretically markers should be used 
for this kind of 'running header'.
 
HTH, Corinna

  - Original Message - 
  From: 
  Edward 
  Dowgiallo 
  To: [EMAIL PROTECTED] ; [EMAIL PROTECTED] 
  Sent: Friday, December 07, 2001 3:40 
  PM
  Subject: Re: Dictionary style pages
  
  Is there a way to do this? Again, it is a very 
  common book format.
  Ed
  
- Original Message - 
From: 
Edward 
Dowgiallo 
To: [EMAIL PROTECTED] 
Sent: Thursday, December 06, 2001 12:49 
PM
Subject: Dictionary style pages

Could someone point me to an example of 
producing a dictionary or telephone book style page with fop?
 
By this I mean:

  I'd like to put the page number at the bottom 
  of the page on the left hand side for even numbered pages and on 
  the right hand side for odd numbered pages. 
  I'd like to put the earliest name in the 
  collating sequence that appears on the page on the left hand top and 
  latest name in the collating sequece on the right hand top. i.e. if the 
  page contains entires in alphabetical order from cat to dog, I'd like the 
  word cat on the left hand side of the region-before and dog on the right 
  hand side of the region-before.
Thank you,
Ed
 


RE: Problems with seeing pdf-files in IE 5.0

2001-12-07 Thread Smith, Paul

You should be able to create a directory to servlet mapping in your web
server (usually in the web.xml file). 

Something like:

  
MyServlet
/MyServletDir
  

  
MyServlet
MyPdfGeneratingServlet
  

Then the browser can call www.myserver.com/MyServletDir/filename.pdf

Your servlet can retrieve the filename requested from the HttpServletRequest
(or just ignore it) and output it's response to the HttpServletResponse

---
Paul Smith

> Jim Urban wrote:
> 
> So how do you  use a url that ends with .pdf when using servlets?


***
DISCLAIMER: The information contained in this email
 is confidential and is intended solely for the use of the
 named addressee.  Access, copying or re-use of the
 information in it by any other person is not authorised.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




Re: Problems with seeing pdf-files in IE 5.0

2001-12-07 Thread James Richardson



Jim Urban wrote:

So how do you  use a url that ends
> with .pdf when using servlets?
> 


I think you can do

http://any.url/servlets/Blah?stuff=.pdf

but not certain

James



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




RE: Problems with seeing pdf-files in IE 5.0

2001-12-07 Thread Jim Urban



> 
you also have to use an url 
with ".pdf" at the end
The url the client is posting to is a 
servlet which uses FOP to generate a PDF and feed it back to the browser.  
If the client post a request to myservlet.pdf the server will look for a file 
called myservlet.pdf and return a 403 when it can't find it.  So how do you 
use a url that ends with .pdf when using servlets?
 
Jim

  -Original Message-From: Cyril Rognon 
  [mailto:[EMAIL PROTECTED]]Sent: Friday, December 07, 2001 7:43 
  AMTo: [EMAIL PROTECTED]Subject: Re: Problems with 
  seeing pdf-files in IE 5.0It has been reported many times 
  that IE5.0 needs some strong mime type information  : not only you 
  must set the content-type HTTP header to "application/pdf" but you also have 
  to use an url with ".pdf" at the end... Cyril RognonAt 14:05 
  07/12/2001 +0100, you wrote:
      I'm trying to see a pdf-report, created 
dinamically with an XML-XSL process. But if I try to see it with an IE 5.0, 
I see just a blank page with an icon. If I try it with an IE 5.5, I can see 
it with no problem. Why is it? And there is a solution, because I 
cannot change the browser to 
5.5?


Re: Problems with seeing pdf-files in IE 5.0

2001-12-07 Thread Matt Savino

All my urls are .jsp and I don't have a problem with IE 4-5-6
recognizing them as PDF--as long as I set the response contentType. I
have a myriad of other problems with older verisons of IE, but this is
not one of them.

Cyril Rognon wrote:
> 
> It has been reported many times that IE5.0 needs some strong mime type
> information
>  : not only you must set the content-type HTTP header to
> "application/pdf" but you also have to use an url with ".pdf" at the
> end...
> 
> Cyril Rognon
> 
> At 14:05 07/12/2001 +0100, you wrote:
> 
> > I'm trying to see a pdf-report, created dinamically with an
> > XML-XSL process. But if I try to see it with an IE 5.0, I see just a
> > blank page with an icon. If I try it with an IE 5.5, I can see it
> > with no problem.
> >
> > Why is it? And there is a solution, because I cannot change the
> > browser to 5.5?
> >

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




Re: Memory utilization

2001-12-07 Thread Edward Dowgiallo



Matthias,
 
    I am willing to try this. My 
documents do contain a lot of section headers. Can you provide me with more 
detail? Perhaps a syntax example of a header of the "certain 
level."
 
Ed

  - Original Message - 
  From: 
  Matthias 
  Fischer 
  To: [EMAIL PROTECTED] 
  Sent: Friday, December 07, 2001 3:00 
  AM
  Subject: RE: Memory utilization
  
  Hi Ed,
   
  we ran into a similar problem 
  a couple of weeks ago. The most suitable solution that was offered then by our 
  colleagues in the list was to portion the transformation process. FOP seems to hold its breath until 
  it dives out of the waters of transformation at the other end of its page 
  master sequence.
  In our case, it wasn't mass 
  data but an editorial document with lots of graphics, in reference to which I 
  was advised to use headers (of a certain level) to start a new page master 
  sequence.
   
  I think, some way or the 
  other you could find a similar solution.
   
  Matthias
  Dott. Matthias Fischerabc.Mediaservice 
  GmbHNebelhornstraße 886807 BuchloeTel. (08241) 
  9686-38Fax  (08241) 9686-26http://www.abc-media.dee-mail: [EMAIL PROTECTED]
  
-Original Message-From: Edward Dowgiallo 
[mailto:[EMAIL PROTECTED]]Sent: Thursday, December 06, 2001 
7:01 PMTo: [EMAIL PROTECTED]Subject: Memory 
utilization
I am attempting to do database publishing using 
fop to format the output. I have created a style sheet that creates a table 
of contents and an index for my document using  in combination with id attributes. A larger 
document is represented by an XML file of approximately 8MB and contains 
thousands of such links. I am finding that the JVM memory pool required to 
process this is about 750MB at this point. My database is not yet complete 
and the documents are likely to grow both in size and number of links a good 
bit before I am done.
 
I have tried running this on a machine with 
512MB of memory and it trashed hopelessly for 12 hours without completing. I 
have 1 machine with 1GB of RAM that I normally reserve as a server that can 
do the processing in 1/2 an hour, but I am worried that I will lose the 
ability to create the document as it continues to grow.
 
Do you have any suggestions that would help 
tame the memory utilization? Will the next release of fop be able 
to process links with a smaller amount of memory?
 
Thank you,
Ed
 


Re: Dictionary style pages

2001-12-07 Thread Edward Dowgiallo



Is there a way to do this? Again, it is a very 
common book format.
Ed

  - Original Message - 
  From: 
  Edward 
  Dowgiallo 
  To: [EMAIL PROTECTED] 
  Sent: Thursday, December 06, 2001 12:49 
  PM
  Subject: Dictionary style pages
  
  Could someone point me to an example of producing 
  a dictionary or telephone book style page with fop?
   
  By this I mean:
  
I'd like to put the page number at the bottom of 
the page on the left hand side for even numbered pages and on the 
right hand side for odd numbered pages. 
I'd like to put the earliest name in the 
collating sequence that appears on the page on the left hand top and latest 
name in the collating sequece on the right hand top. i.e. if the page 
contains entires in alphabetical order from cat to dog, I'd like the word 
cat on the left hand side of the region-before and dog on the right hand 
side of the region-before.
  Thank you,
  Ed
   


Re: Spanning columns with tables

2001-12-07 Thread Edward Dowgiallo



Is there a way to span a table across multi-column 
text and have text flow around it? This would seem to be a common 
format.
Ed

  - Original Message - 
  From: 
  Edward 
  Dowgiallo 
  To: [EMAIL PROTECTED] 
  Sent: Thursday, December 06, 2001 12:52 
  PM
  Subject: Spanning columns with 
  tables
  
  I am trying to setup pages that have 4 columns of 
  text. Intermingled with the text are tables that are 3 columns wide. I would 
  like to pin the table to appear adjacent to a relevant section of text, as 
  well as have the text flow around the table using the unused 4th 
  column.
   
  Thank you,
  Ed
   


Re: Problems with seeing pdf-files in IE 5.0

2001-12-07 Thread Cyril Rognon

It has been reported many times that IE5.0 needs some strong mime type
information 
 : not only you must set the content-type HTTP header to
"application/pdf" but you also have to use an url with
".pdf" at the end... 

Cyril Rognon

At 14:05 07/12/2001 +0100, you wrote:
   
I'm trying to see a pdf-report, created dinamically with an XML-XSL
process. But if I try to see it with an IE 5.0, I see just a blank page
with an icon. If I try it with an IE 5.5, I can see it with no
problem.
 
    Why is it? And there is a
solution, because I cannot change the browser to 5.5?



Problems with seeing pdf-files in IE 5.0

2001-12-07 Thread Raúl Carazo



    I'm trying to see a pdf-report, 
created dinamically with an XML-XSL process. But if I try to see it with an IE 
5.0, I see just a blank page with an icon. If I try it with an IE 5.5, I can see 
it with no problem.
 
    Why is it? And there is a 
solution, because I cannot change the browser to 5.5?
 
    thx
 
    Raul 
Carazo


RE: Automatic generation of cell size

2001-12-07 Thread "Buchtík, Michal"

Yes, it's maybe useful when you need exactly specify column width.
But for our usage, there is not important, that the column with is 5.2 or
5.4 mm
And, when you must parse metrics and kerning-tables for each table column,
then will be increased processing time.

Michal

-Original Message-
From: James Richardson [mailto:[EMAIL PROTECTED]]
Sent: Friday, December 07, 2001 12:22 PM
To: [EMAIL PROTECTED]
Subject: Re: Automatic generation of cell size



Although really you should use the font metrics & kerning tables...

James


Buchtík, Michal wrote:

> 
> 
> It's not universal for all fonts, but
> we know font which is used and the font-size
> so we find a longest string in collumn
> 
> column-width = longest_string_length * avg(charsizes_of_font);
> 



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




Re: whats FOP

2001-12-07 Thread Bertrand Delacretaz

On Friday 07 December 2001 12:55, Suhail Rashid wrote:
> What does FOP stand for ;
Formatting Objects Processor

- Bertrand

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




RE: Bleeding / Hyphenation issues

2001-12-07 Thread Matthias Fischer

A week ago we tried to use

and the thing didn't hyphenate at all. I asked for help in this list but I
didn't get any response.

Matthias


-Original Message-
From: Joerg Pietschmann [mailto:[EMAIL PROTECTED]]
Sent: Friday, December 07, 2001 1:04 PM
To: FOP List
Subject: Re: Bleeding / Hyphenation issues


Darrel Riekhof <[EMAIL PROTECTED]> wrote:
> We are having problems with our reports because FOP doesn't break on
> hyphens.


Well, i tried

[...]

If you have set the hyphenate property and other relevant attributes
properly and you still have difficulties, try inserting a zero-width space
or add some hyphenation patterns including a dash to the database for your
language.

HTH
J.Pietschmann


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




whats FOP

2001-12-07 Thread Suhail Rashid

hi,

What does FOP stand for ;
FOPrint formatter ??? or something else...

I tried the fop site but no use...

thanks,

suhail

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




Re: Specific footer on the last page

2001-12-07 Thread Joerg Pietschmann

Thierry Gounelle <[EMAIL PROTECTED]> wrote:
> Here is my problem:
> I have a document that may have 1 to N pages. I would like to print
> something on the footer of the last page (or at least on the bottom).

This may be more tricky than it seems at a first glance.
One possibility is to put the text into a footnote and refer to it from
an otherwise empty block at the end of the text. Specify a character
which does not render a visibly glyph as the footnote character, like
a zero width space. You might have to customize the footnote separator
as well.

HTH
J.Pietschmann

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




RE: Automatic generation of cell size !

2001-12-07 Thread "Buchtík, Michal"

for example
http://www.w3.org/
http://www.zvon.org/




-Original Message-
From: Kai Ulrich [mailto:[EMAIL PROTECTED]]
Sent: Friday, December 07, 2001 11:18 AM
To: [EMAIL PROTECTED]
Subject: AW: Automatic generation of cell size !


It's my first intensiv contact XSLT stylesheet.
Where can I find Informations about it !
kai

-Ursprüngliche Nachricht-
Von: Buchtík, Michal [mailto:[EMAIL PROTECTED]]
Gesendet: Freitag, 7. Dezember 2001 11:27
An: '[EMAIL PROTECTED]'
Betreff: RE: Automatic generation of cell size !


We solve this problem by computing cell-widths in XSLT style sheet.

Michal

-Original Message-
From: Kai Ulrich [mailto:[EMAIL PROTECTED]]
Sent: Friday, December 07, 2001 11:09 AM
To: [EMAIL PROTECTED]
Subject: Automatic generation of cell size !


My problem !

How can I build a table in a pdf-document whose cell-widths and hights are
generated dynamicly depending on the text of the cell !

kai


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




Re: Bleeding / Hyphenation issues

2001-12-07 Thread Joerg Pietschmann

Darrel Riekhof <[EMAIL PROTECTED]> wrote:
> We are having problems with our reports because FOP doesn't break on
> hyphens.

Well, i tried 

goiue sk kalks aki aks kallk kajas
kals siensalks yadadadadadada-
dadadadadadadadadadadadadadadadadadadadadadadadaadadoijefgjsdgfj-
sdgfewhtcahtuehtcmeiuthaoutcetet-awtvcawwctawtcw-cawwtawztcvz?

(without the line breaks imposed by the mail client) and FOP inserted
a line feed after the first dash, without inserting an additional
hyphen. It had apparently problems with finding another hyphenation
point after this, this may be due to the nonsense-word which probably
does not match any of the patterns in the database.

If you have set the hyphenate property and other relevant attributes
properly and you still have difficulties, try inserting a zero-width
space or add some hyphenation patterns including a dash to the database
for your language.

HTH
J.Pietschmann

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




Re: [PATCH] update FOP (maintenance branch) to REC syntax

2001-12-07 Thread Christian Geisert

Claus Nielsen wrote:
> 
> Christian,
> 
> When is page-position "last" correct implemented ?

When someone sends a patch ;-)

Seriously, I don't know anything about the current status of 
page-position "last". Maybe Arved can comment on it ?

> Claus

Christian

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




Re: encoding

2001-12-07 Thread Joerg Pietschmann

[EMAIL PROTECTED] wrote
> I'm beginner in FOP. I have a problem with windows-1250 encoding, please help
> me. My source XML documents looks like this:
[...]
> I use xsl-fo document to transform source document to plain text:
> 
> 
> http://www.w3.org/1999/XSL/Transform";
> xmlns:fo="http://www.w3.org/1999/XSL/Format";
> version="1.0">
> 
> 

Producing anything with FOP using an XSL file is actually a two-stage
process. In the first step FOP invokes an XSLT processor which applies
the transformation rules written in the xsl:stylesheet. The result
is then piped to the FO renderer which produces the output.
The xsl:output statement controls the output of the first stage only.
If it is possible to control the encoding produced by the FOP text
renderer at all, it would have to be done using the fop.Options class
or in the userconfig.xml file. I'm afraid you have to study the FOP
documentation carefully, perhaps even the source code of the text
renderer.

You can produce text files directly with XSLT, without an intermediate
FO stage, using the output method "text". If your output is not overly
complicated, and you don't need the FO formatting for other purposes
(like rendering to PDF or PostScript) it may be easier to skip the
FO generation.

HTH
J.Pietschmann

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




Re: Automatic generation of cell size

2001-12-07 Thread James Richardson


Although really you should use the font metrics & kerning tables...

James


Buchtík, Michal wrote:

> 
> 
> It's not universal for all fonts, but
> we know font which is used and the font-size
> so we find a longest string in collumn
> 
> column-width = longest_string_length * avg(charsizes_of_font);
> 



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




AW: Automatic generation of cell size

2001-12-07 Thread Kai Ulrich

How can I include it in the in a xsl-file ?

-Ursprüngliche Nachricht-
Von: Buchtík, Michal [mailto:[EMAIL PROTECTED]]
Gesendet: Freitag, 7. Dezember 2001 12:13
An: '[EMAIL PROTECTED]'
Betreff: RE: Automatic generation of cell size


It's not universal for all fonts, but
we know font which is used and the font-size
so we find a longest string in collumn

column-width = longest_string_length * avg(charsizes_of_font);

-Original Message-
From: Matthias Fischer [mailto:[EMAIL PROTECTED]]
Sent: Friday, December 07, 2001 11:56 AM
To: [EMAIL PROTECTED]
Subject: RE: Automatic generation of cell size


What do you mean, you do the computing in XSLT?
How do you know how much space a text in a certain font/character size
takes, where it breaks etc?

Matthias


-Original Message-
From: Buchtík, Michal [mailto:[EMAIL PROTECTED]]
Sent: Friday, December 07, 2001 11:27 AM
To: '[EMAIL PROTECTED]'
Subject: RE: Automatic generation of cell size !


We solve this problem by computing cell-widths in XSLT style sheet.

Michal

-Original Message-
From: Kai Ulrich [mailto:[EMAIL PROTECTED]]
Sent: Friday, December 07, 2001 11:09 AM
To: [EMAIL PROTECTED]
Subject: Automatic generation of cell size !


My problem !

How can I build a table in a pdf-document whose cell-widths and hights are
generated dynamicly depending on the text of the cell !

kai


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




RE: Automatic generation of cell size

2001-12-07 Thread "Buchtík, Michal"

It's not universal for all fonts, but 
we know font which is used and the font-size
so we find a longest string in collumn

column-width = longest_string_length * avg(charsizes_of_font);

-Original Message-
From: Matthias Fischer [mailto:[EMAIL PROTECTED]]
Sent: Friday, December 07, 2001 11:56 AM
To: [EMAIL PROTECTED]
Subject: RE: Automatic generation of cell size


What do you mean, you do the computing in XSLT?
How do you know how much space a text in a certain font/character size
takes, where it breaks etc?

Matthias


-Original Message-
From: Buchtík, Michal [mailto:[EMAIL PROTECTED]]
Sent: Friday, December 07, 2001 11:27 AM
To: '[EMAIL PROTECTED]'
Subject: RE: Automatic generation of cell size !


We solve this problem by computing cell-widths in XSLT style sheet.

Michal

-Original Message-
From: Kai Ulrich [mailto:[EMAIL PROTECTED]]
Sent: Friday, December 07, 2001 11:09 AM
To: [EMAIL PROTECTED]
Subject: Automatic generation of cell size !


My problem !

How can I build a table in a pdf-document whose cell-widths and hights are
generated dynamicly depending on the text of the cell !

kai


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




RE: Automatic generation of cell size

2001-12-07 Thread Matthias Fischer

What do you mean, you do the computing in XSLT?
How do you know how much space a text in a certain font/character size
takes, where it breaks etc?

Matthias


-Original Message-
From: Buchtík, Michal [mailto:[EMAIL PROTECTED]]
Sent: Friday, December 07, 2001 11:27 AM
To: '[EMAIL PROTECTED]'
Subject: RE: Automatic generation of cell size !


We solve this problem by computing cell-widths in XSLT style sheet.

Michal

-Original Message-
From: Kai Ulrich [mailto:[EMAIL PROTECTED]]
Sent: Friday, December 07, 2001 11:09 AM
To: [EMAIL PROTECTED]
Subject: Automatic generation of cell size !


My problem !

How can I build a table in a pdf-document whose cell-widths and hights are
generated dynamicly depending on the text of the cell !

kai


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




AW: Automatic generation of cell size !

2001-12-07 Thread Kai Ulrich

It's my first intensiv contact XSLT stylesheet.
Where can I find Informations about it !
kai

-Ursprüngliche Nachricht-
Von: Buchtík, Michal [mailto:[EMAIL PROTECTED]]
Gesendet: Freitag, 7. Dezember 2001 11:27
An: '[EMAIL PROTECTED]'
Betreff: RE: Automatic generation of cell size !


We solve this problem by computing cell-widths in XSLT style sheet.

Michal

-Original Message-
From: Kai Ulrich [mailto:[EMAIL PROTECTED]]
Sent: Friday, December 07, 2001 11:09 AM
To: [EMAIL PROTECTED]
Subject: Automatic generation of cell size !


My problem !

How can I build a table in a pdf-document whose cell-widths and hights are
generated dynamicly depending on the text of the cell !

kai


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




RE: Automatic generation of cell size !

2001-12-07 Thread "Buchtík, Michal"

We solve this problem by computing cell-widths in XSLT style sheet.

Michal

-Original Message-
From: Kai Ulrich [mailto:[EMAIL PROTECTED]]
Sent: Friday, December 07, 2001 11:09 AM
To: [EMAIL PROTECTED]
Subject: Automatic generation of cell size !


My problem !

How can I build a table in a pdf-document whose cell-widths and hights are
generated dynamicly depending on the text of the cell !

kai


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




Automatic generation of cell size !

2001-12-07 Thread Kai Ulrich

My problem !

How can I build a table in a pdf-document whose cell-widths and hights are
generated dynamicly depending on the text of the cell !

kai


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




PDF Reports

2001-12-07 Thread Raúl Carazo



    I've seen the messages from 
november about it, and I tryied to make something like it, but  I'va got 
two problems...
 
    This is my adaptation to the 
solution from Yuri Shkuro
 
  // ---  // 1. 
Get a Source for XML 
document  // ---  XSLTInputHandler 
inputHandler = new XSLTInputHandler(fileXML, fileXSL);
  XMLReader parser = parser = inputHandler.getParser();
 
  // ---  // 3. Create FOP driver and set 
rendering mode and output stream  // 
---  objPfResponse.setContentType("application/pdf");  Driver 
driver = new Driver(inputHandler.getInputSource(), 
objPfResponse.getOutputStream());
  driver.setRenderer(driver.RENDER_PDF);  driver.setXMLReader(parser);  driver.render(parser, 
inputHandler.getInputSource());  driver.run();
 
    My first problem is: I can't see 
the pdf report, but if I try to save it, the file is correct and I can see 
it. Anyway, the name is set is a *.html, not a *.pdf (though it is saving as an 
Adobe Application File...).
 
    And the second one is that I see 
an FOPException like this:
 
using SAX parser 
org.apache.xerces.parsers.SAXParser    building formatting 
object tree    setting up fonts    
 [1]    Parsing of document complete, stopping 
renderer    Initial heap size: 97331Kb    
Current heap size: 97265Kb    Total memory used: 
-66Kb      Memory use is indicative; no GC was 
performed      These figures should not be used 
comparatively    Total time used: 359ms    
Pages rendererd: 1    Avg render time: 
359ms/page    org.apache.fop.apps.FOPException: InputSource 
is not set.     at 
org.apache.fop.apps.Driver.run(Driver.java:496)
 
But everything is ok, because the file is 
well-formed adn I can see it (after saving it, of course).
 
Thaks a lot
 
Raúl Carazo


Re: [PATCH] update FOP (maintenance branch) to REC syntax

2001-12-07 Thread Claus Nielsen



Christian,

When is page-position "last" correct implemented ?

Claus




   
   
Christian Geisert  
   
  cc:
   
Subject: [PATCH] update FOP 
(maintenance branch) to REC syntax
05-12-2001 16:38   
   
Please respond to  
   
fop-dev
   
   
   
   
   




Hi,

I finally managed to update FOP to REC syntax..

According to the documented changes at:

http://www.w3.org/TR/2001/REC-xsl-20011015/sliceF.html#changes
http://www.w3.org/TR/2001/PR-xsl-20010828/sliceF.html#changes

the biggest thing was the renaming of the "master-name" property to
"master-reference" on fo:page-sequence, fo:single-page-master-reference,
fo:repeatable-page-master-reference and
fo:conditional-page-master-reference.

I've also updated all files in docs/examples, run the tests - and it looks
good :-)

Next I will have a look a the test directory


Christian
Index: docs/examples/advanced/cid-fonts.fo
===
RCS file: /home/cvspublic/xml-fop/docs/examples/advanced/cid-fonts.fo,v
retrieving revision 1.2
diff -u -u -r1.2 cid-fonts.fo
--- docs/examples/advanced/cid-fonts.fo  2001/05/18 09:55:46  1.2
+++ docs/examples/advanced/cid-fonts.fo  2001/12/05 14:11:04
@@ -70,7 +70,7 @@
  


- 
+ 

   

Index: docs/examples/advanced/giro.fo
===
RCS file: /home/cvspublic/xml-fop/docs/examples/advanced/giro.fo,v
retrieving revision 1.1
diff -u -u -r1.1 giro.fo
--- docs/examples/advanced/giro.fo 2001/03/04 18:00:38  1.1
+++ docs/examples/advanced/giro.fo 2001/12/05 14:11:18
@@ -10,13 +10,13 @@
   
   
  
-
-
-
+
+
+
  
   

-   
+   
   
  
 
@@ -1241,4 +1241,4 @@
  SVG logo and bar code
   

-
\ No newline at end of file
+
Index: docs/examples/fo/border.fo
===
RCS file: /home/cvspublic/xml-fop/docs/examples/fo/border.fo,v
retrieving revision 1.8
diff -u -u -r1.8 border.fo
--- docs/examples/fo/border.fo 2001/10/14 21:03:14  1.8
+++ docs/examples/fo/border.fo 2001/12/05 14:11:20
@@ -13,16 +13,16 @@

  
   
-   
-   

-   
+   
   
  
 
-
+
 
 
 
Index: docs/examples/fo/bordershorthand.fo
===
RCS file: /home/cvspublic/xml-fop/docs/examples/fo/bordershorthand.fo,v
retrieving revision 1.1
diff -u -u -r1.1 bordershorthand.fo
--- docs/examples/fo/bordershorthand.fo  2001/03/04 21:47:40  1.1
+++ docs/examples/fo/bordershorthand.fo  2001/12/05 14:11:21
@@ -48,12 +48,12 @@

 
 
- 
- 
  
- 
+ 
 
 

@@ -61,7 +61,7 @@
   

   
-  
+  

 
 
Index: docs/examples/fo/character.fo
===
RCS file: /home/cvspublic/xml-fop/docs/examples/fo/character.fo,v
retrieving revision 1.1
diff -u -u -r1.1 character.fo
--- docs/examples/fo/character.fo  2000/12/15 21:44:08  1.1
+++ docs/examples/fo/character.fo  2001/12/05 14:11:21
@@ -39,7 +39,7 @@
the attribute value of master-name refers to the page layout
which is to be used to layout the text contained in this
page-sequence-->
-  
+  

   
- 
+ 
 
 

@@ -61,7 +61,7 @@
   

   
-  
+  

 
 
Index: docs/examples/fo/extensive.fo
===
RCS file: /home/cvspublic/xml-fop/docs/examples/fo/extensive.fo,v
retrieving revision 1.15
diff -u -u -r1.15 extensive.fo
--- docs/examples/fo/extensive.fo  2001/06/19 10:47:13  1.15
+++ docs/examples/fo/extensive.fo  2001/12/05 14:11:25
@@ -4,7 +4,7 @@
 
 
 
-
+
 
 A Block
 An End Aligned Block
Index: docs/examples/fo/fonts.fo
==

Specific footer on the last page

2001-12-07 Thread Thierry Gounelle

Hi everybody,
Here is my problem:
I have a document that may have 1 to N pages. I would like to print
something on the footer of the last page (or at least on the bottom).
But, if there is only one page, the last page is also the first.
I tried something like:


 
 
   
 

 
 
   
 

 
   
 
 
 
   
 



It doesnt work: I made several tests but it looks like I have the footer
on every page instead of the last one only.
For the last page footer, I'm using a static-content with the flow-name
set to the region-name defined in the layout.
Actually the footer is printed on every page, as if only
page-position="last" is invoqued.
Do I miss something in the use of fo:conditional-page-master-reference?

Thanx a billion,
Thierry


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




encoding

2001-12-07 Thread Kristian_KESELI



Hi,

I'm beginner in FOP. I have a problem with windows-1250 encoding, please help
me. My source XML documents looks like this:


 7 3 4 12 15 16 122
 2613233761
 ...
 ...

I use xsl-fo document to transform source document to plain text:


http://www.w3.org/1999/XSL/Transform";
xmlns:fo="http://www.w3.org/1999/XSL/Format";
version="1.0">




   http://www.w3.org/1999/XSL/Format";>
   ...
   ...

but result text file is not encoded in "windows-1250". I use this code sequence
to produce text output:

 Driver driver = new Driver();
 driver.setRenderer(Driver.RENDER_TXT);
 driver.setOutputStream(new FileOutputStream("result.txt"));
 InputHandler inputHandler = new XSLTInputHandler(xmlFile, xslFile);
 driver.render(inputHandler.getParser(), inputHandler.getInputSource());

but it does'n run properly. The result document is unreadable. I use Xerces
1.4.4, Xalan 2.2 and Fop 0.20.1.

 I don't know what I do wrong. Can you give me advice how could I solve this?

Thank you for helping,

Kristian



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




RE: Memory utilization

2001-12-07 Thread Matthias Fischer



Hi Ed,
 
we ran into a similar problem a 
couple of weeks ago. The most suitable solution that was offered then by our 
colleagues in the list was to portion the transformation process. FOP seems to hold its breath until 
it dives out of the waters of transformation at the other end of its page 
master sequence.
In our case, it wasn't mass 
data but an editorial document with lots of graphics, in reference to which I 
was advised to use headers (of a certain level) to start a new page master 
sequence.
 
I think, some way or the other 
you could find a similar solution.
 
Matthias
Dott. Matthias Fischerabc.Mediaservice 
GmbHNebelhornstraße 886807 BuchloeTel. (08241) 
9686-38Fax  (08241) 9686-26http://www.abc-media.dee-mail: [EMAIL PROTECTED]

  -Original Message-From: Edward Dowgiallo 
  [mailto:[EMAIL PROTECTED]]Sent: Thursday, December 06, 2001 
  7:01 PMTo: [EMAIL PROTECTED]Subject: Memory 
  utilization
  I am attempting to do database publishing using 
  fop to format the output. I have created a style sheet that creates a table of 
  contents and an index for my document using  in combination with id attributes. A larger 
  document is represented by an XML file of approximately 8MB and contains 
  thousands of such links. I am finding that the JVM memory pool required to 
  process this is about 750MB at this point. My database is not yet complete and 
  the documents are likely to grow both in size and number of links a good bit 
  before I am done.
   
  I have tried running this on a machine with 512MB 
  of memory and it trashed hopelessly for 12 hours without completing. I have 1 
  machine with 1GB of RAM that I normally reserve as a server that can do the 
  processing in 1/2 an hour, but I am worried that I will lose the ability to 
  create the document as it continues to grow.
   
  Do you have any suggestions that would help tame 
  the memory utilization? Will the next release of fop be able to process 
  links with a smaller amount of memory?
   
  Thank you,
  Ed