Re: multiple tables in same row on page

2005-09-22 Thread Manuel Mall
On Fri, 23 Sep 2005 07:23 am, Prakash R wrote:
> I have a fo which looks like this:
>
> 
>
>   ...
>
>
>   ...
>
>
>   ...
>
>
>   ...
>
> 
>
> The number of tables in the fo:block is variable. Is
> there a way to lay the tables in a single row one
> after the other and if it does not fit in the same row
> to go on the next row.
>
>   
>  
>
> In the above example table1, table2 and table3 fit
> across the width of the page. table4 and table5 are on
> the next row.
>
> Each of the individual pages would resize to content
> and so in some cases 2 tables might be on one row
> while in some other case it might be as much as 4 in a
> row.
>
Prakash,

I don't think so (but I have been known to be wrong).

Also fop does not support auto table layout. This means you have to 
specify column width on each column. If you do that you know the 
overall width of each table and if you know the width of each table you 
know how many fit on each line and then you can create a one row n-cell 
table for each desired output line in your fo file.

That is the above becomes something like:


   
  

  
  ...
 


  
  ...
  


  
  ...
  

  

   
  

  
  ...
  

  

 

I know that's not quite what you are after as you basically want this 
type of transformation being done automatically by. May be you can do 
that at the XSLT stage?

> Thanks in advance.
>
> Prakash
>
Manuel

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



multiple tables in same row on page

2005-09-22 Thread Prakash R
I have a fo which looks like this:


   
  ...
   
   
  ...
   
   
  ...
   
   
  ...
   


The number of tables in the fo:block is variable. Is
there a way to lay the tables in a single row one
after the other and if it does not fit in the same row
to go on the next row.

  
 

In the above example table1, table2 and table3 fit
across the width of the page. table4 and table5 are on
the next row.

Each of the individual pages would resize to content
and so in some cases 2 tables might be on one row
while in some other case it might be as much as 4 in a
row.

Thanks in advance.

Prakash



__ 
Yahoo! Mail - PC Magazine Editors' Choice 2005 
http://mail.yahoo.com

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



Re: drawing a continuous border-bottom line (dotted) for table rows

2005-09-22 Thread Jeremias Maerki
Please provide a full test file. I can't reproduce your problem.

On 22.09.2005 23:06:46 Thomas Winkler wrote:
> Hello,
> 
> I am using the alpha version of Fop 1.0.
> 
> I want to create a table with some columns and rows.
> Each row must be dotted.
> This works fine if all columns are filled with values.
> 
> But if some values are missed, then the column is
> totally blank.
> 
> How can this be avoided ? 
> 
> Here my xsl-fo snippet :
> 
> ...
> 
>  
> 
>   
> 
> 
> 
> 
> Thanks in advance !
> 
> 
> Thomas


Jeremias Maerki


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



Re: drawing a continuous border-bottom line (dotted) for table rows

2005-09-22 Thread Andreas L Delmelle

On Sep 22, 2005, at 23:06, Thomas Winkler wrote:

Hi,


I am using the alpha version of Fop 1.0.


Cool! Hope you like it so far...


I want to create a table with some columns and rows.
Each row must be dotted.
This works fine if all columns are filled with values.

But if some values are missed, then the column is
totally blank.


What do you mean exactly? That there is an empty fo:block in the cell?

Try running fop with the '-foout' command-line switch, and check the 
generated FO source document.


In case of there's an empty block element in the cell, this is most 
likely caused by a missing order-date attribute in your XML source (?)


Try adding a non-breaking space like so:

 



HTH!

Cheers,

Andreas


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



drawing a continuous border-bottom line (dotted) for table rows

2005-09-22 Thread Thomas Winkler
Hello,

I am using the alpha version of Fop 1.0.

I want to create a table with some columns and rows.
Each row must be dotted.
This works fine if all columns are filled with values.

But if some values are missed, then the column is
totally blank.

How can this be avoided ? 

Here my xsl-fo snippet :

...

 






Thanks in advance !


Thomas








___ 
Gesendet von Yahoo! Mail - Jetzt mit 1GB Speicher kostenlos - Hier anmelden: 
http://mail.yahoo.de

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



Re: Question

2005-09-22 Thread Jeremias Maerki
It's not necessary to modify config.xml. You can do the same by using
the following in userconfig.xml without recompiling FOP:

  
stream-filter-list

  


BTW, for those guys streaming PDFs over the web and concerned about file
size, you can easily disable the default ascii-85 filter like this:

  
stream-filter-list

  flate

  


On 21.09.2005 19:12:59 Andreas L Delmelle wrote:
> On Sep 21, 2005, at 16:59, Piscu Marius wrote:
> 
> Hi,
> 
> > Does anyone know how can I disable pdf compression when pdf documents
> > are generated with FOP ?
> 
> IIRC, you can do this by commenting out the related entry in
> 
> conf/conf.xml (FOP 0.20.5)
> conf/fop.xconf (TRUNK)
> 
> Look for:
> flate (in both cases)
> 
> 
> HTH!
> 
> Andreas


Jeremias Maerki


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