Thanks for the suggestion. Unfortunately my content goes more than one page. I am using arbortext's E3 ... have a ... fill the ... container ... pages and...
6612
Eliot Kimber
drmacro
Jun 10, 2005 2:49 pm
... This works in both XEP and XSL Formatter 3.2 and will work for any multi-page flow: <fo:flow flow-name="xsl-region-body" font-family="sans-serif"> ...
6613
G. Ken Holman
g_ken_holman
Jun 10, 2005 2:52 pm
... A caveat with the above is that any use of space-before= on your blocks will reveal the region background colour *above* the text as well as below the last...
6614
philippe.guarino
philippe_gua...
Jun 13, 2005 8:40 am
Hi there, I have two tables with dynamics length. I don't want that the second one comes subdivided on two pages, when the first it is too long, but begin in...
6615
geethanandh
Jun 13, 2005 4:03 pm
Every itme in the list block appears on seperate lines, is there a way to display them in the same line like 1.XSL 2.FO 3.XML instead of 1.XSl 2.FO 3.XML...
6616
arianhojat2000
Jun 13, 2005 5:11 pm
Hello, i was making a html-like language to pdf stylesheet and I was wondering is there a way to have a fo list within a list without specifying the start...
6617
J.Pietschmann
j3322ptm
Jun 13, 2005 6:07 pm
... It depends on what exactly you want. A) Inline: Don't use list block, just put the content in a block <fo:block>1.XSL 2.FO 3.XML</fo:block> You can fine...
6618
Eliot Kimber
drmacro
Jun 13, 2005 9:15 pm
arianhojat2000 wrote: But if a list is in one of these ... You can a two-step process whereby you first resolve all the includes to create a new document tree...
6619
guywalk
Jun 14, 2005 1:46 pm
I just installed FOP 0.20.5, I have tomcat 5.0. I am pretty good with xsl so I wrote an xsl stylesheet that converts my jsp&html files to fo and then pdf. I...
6620
J.Pietschmann
j3322ptm
Jun 14, 2005 7:55 pm
... It depends. There are various techniques which get an XML produced by a JSP through another XSL transformation. However, you should probably take a look at...
6621
Victor Vishnyakov
victor_vishn...
Jun 15, 2005 7:49 am
How about acquiring you JSP page using HTTP and passing it as an XML source stream to your XSL-FO workflow? Best Regards, Victor Vishnyakov ...
6622
Alexander Peshkov
alexander_pe...
Jun 15, 2005 9:00 am
Dear list subscribers, RenderX, Inc is pleased to announce the release of XEP Personal Edition, based on popular XEP Desktop product. XEP Personal is focused ...
6623
Chris Bowditch
bowditch_chris@...
Jun 15, 2005 9:20 am
... use keep-together property on fo:table to ensure tables are not broken across page boundaries. Chris...
6624
virgul4u
Jun 15, 2005 1:01 pm
Hi, I use FOP I wan't to make a table with 2 columns and I want to make that with one for-each. I make so: <fo:table> ... ... <fo:table-body> <xsl:for-each...
6625
arianhojat2000
Jun 16, 2005 1:29 pm
here is a test i ran. you dont check to see if its the last 'odd' node to close the row right, u only check even rows? like if this is missing, or ( position()...
6626
arianhojat2000
Jun 16, 2005 1:45 pm
Hello, i was wondering does fop automatically look in the conf\userconfig.xml file to find font info? i thought if its not in another custom file, it will use...
6627
Mike Ferrando
mikeferrando
Jun 16, 2005 4:50 pm
Friends, I am having trouble with the xml:lang attribute (or do I need to use a namespace?). My PDF is fine, and everything works. I have no errors or problems...
6628
J.Pietschmann
j3322ptm
Jun 16, 2005 8:11 pm
... FOP 0.20.5 uses only the system config file automatically. J.Pietschmann...
6629
arianhojat2000
Jun 16, 2005 8:47 pm
Thanks J. for info. didnt know that. Arian Hojat...
6630
arianhojat2000
Jun 16, 2005 8:47 pm
Is it just me but when i use fop and have a table within a few lists, I expect the table to start where the indentations start (so when 2 lists deep, it should...
6631
virgul4u
Jun 17, 2005 7:44 am
Hi, Thanks a lot for your help! unfortunately that don't work but thanks for this correction I don't have think to that case! I have always the same error: A...
6632
Tsuyoshi Shirotori
shrtrtsysh
Jun 17, 2005 10:12 am
Dear Mike Ferrando, Thank you for your e-mail. ... The current version of of XSL Formatter is not outputting this information to PDF. Please understand if you...
6633
arianhojat2000
Jun 17, 2005 12:14 pm
it sounds like something is screwy in your template and a table cell somehow is being made without a table-row parent which is needed (prob being made straight...
6634
Mike Ferrando
mikeferrando
Jun 17, 2005 1:31 pm
Friends, I found a work around using Adobe. http://www.engr.wisc.edu/accessibility/pdf.html Although, I also found that XSL Formatter says that they fully ...
6635
arianhojat2000
Jun 17, 2005 1:55 pm
I think I can better phraze my question shorter..., How can you give a table margins? I tried to move a table with margin- left to no avail. I tried putting it...
6636
notable17
Jun 17, 2005 3:02 pm
In the following example, the text wraps over two lines. I wish to reduce the line space between the two rows of text. Is there an xsl:fo attribute that I...
6637
arianhojat2000
Jun 17, 2005 4:43 pm
So what do u want to do?... Reduce line space between the wrapped lines of text in 1 block? so you just want to change the line-height attribute to a smaller ...
6638
notable17
Jun 17, 2005 5:45 pm
I guess I was just looking for the correct attribute to use. line- height worked great. Thank you. ... to ... wrap...
6639
J.Pietschmann
j3322ptm
Jun 17, 2005 8:32 pm
... Use an additional table row, or nest the table into a blind table. E.g. <fo:table... <fo:table-column column-width="12pt"/> <!-- left margin --> ...
6640
arianhojat2000
Jun 19, 2005 12:34 pm
Hey J.Pietschmann, Thanks again for spreading your knowledge about xsl-fo in this group... Setting a 'blind table' seems like a workaround for Xsl-fo or Fop? ...