Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

XSL-FO · discussion of XSL Formatting Objects

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 1392
  • Founded: Jan 5, 2001
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Messages

Advanced
Messages Help
Messages 5727 - 5756 of 7448   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
5727 JAMMES ANTOINE
antoine.jammes@... Send Email
Sep 1, 2004
1:38 pm
Hi, I search a way to allign verticaly to blocks with are in different colums of a table. And unfortunately i dont found anny solution could you help me. an fo...
5728 Werner Donné
werner.donne@... Send Email
Sep 1, 2004
1:50 pm
Antoine, The property for the table-cell is "display-align" instead of "vertical-align". Werner. ... -- Werner Donné -- Re BVBA Engelbeekstraat 8 B-3300...
5729 Keiko Hiraide
hiraidekeiko Send Email
Sep 2, 2004
6:42 am
XML Editor V3.2 & XSL Formatter V3.2 Beta Release Information September 2, 2004 Antenna House, Inc. Antenna House is pleased to inform you that our...
5730 carlos müller
carlorio_150 Send Email
Sep 2, 2004
7:27 am
How Can I align a table at center horizontally? I don´t know the size of her in design time. _________________________________________________________________...
5731 Chris Bowditch
bowditch_chris@... Send Email
Sep 2, 2004
9:41 am
... To horizontally centre a table, place it inside an outer table like this: <fo:table table-layout="fixed";> <fo:table-column...
5732 Victor Vishnyakov
victor_vishn... Send Email
Sep 3, 2004
7:33 am
The most accurate solution is to put the whole table into the inline container. Thus parent block's text-align and text-align-last atrributes with value center...
5733 Chris Bowditch
bowditch_chris@... Send Email
Sep 3, 2004
10:08 am
... The only trouble with this solution is that most Formatters dont yet implement fo:inline-container. Chris...
5734 Chris Bowditch
bowditch_chris@... Send Email
Sep 3, 2004
10:10 am
... I realised that I made a couple of mistakes in my sample: width on <fo:table-column> should have been column-width and the middle <fo:table-column> should...
5735 JAMMES ANTOINE
antoine.jammes@... Send Email
Sep 6, 2004
9:00 am
Hello, I m trying to write sommething in the margin I have try fo:float but it dont works does anny body can help me ??? Antoine...
5736 Victor Vishnyakov
victor_vishn... Send Email
Sep 6, 2004
9:07 am
fo:region-start and fo:region-end in the most cases is exactly what are you looking for. Regards, Victor Vishnyakov...
5737 Bob Stayton
bobs@... Send Email
Sep 6, 2004
10:54 pm
It is possible to use fo:float to put something in the margin, but only if your XSL-FO processor supports fo:float. FOP does not. Are you using FOP? Bob...
5738 yahoo
jjfarrow Send Email
Sep 6, 2004
11:12 pm
How about using an fo:block-container with absolute-postion='absolute&#39; to position the margin content to the left of the the containing area like this: ...
5739 JAMMES ANTOINE
antoine.jammes@... Send Email
Sep 8, 2004
4:08 pm
Well I dont use FOP (unfortunatly I dont know witch it's because it's an embeded one , in an application I have to use). but the FO procesor I use dont accept...
5740 Norma Yeazell
nyeazell@... Send Email
Sep 8, 2004
6:02 pm
I'm trying to combine multiple xml files using entities. My result is one page with an empty table of contents. Do I need to combine files separately from...
5741 spbutman Send Email Sep 9, 2004
4:24 am
Hello All: As part of a larger program, I've written a Java method to take an XML document as a parameter, convert it to PDF (using FOP 0.20.5), and return the...
5742 Werner Donné
werner.donne@... Send Email
Sep 9, 2004
7:59 am
I think this is an encoding problem. Your code doesn't specify the encoding, neither when reading the input, nor when creating a string with the result. ...
5743 Bob Stayton
bobs@... Send Email
Sep 9, 2004
8:38 am
Hi, This worked for me using Saxon and xsltproc. What XSLT and FO processor are you using? What happens when you copy some of your data into the main xml file...
5744 Victor Vishnyakov
victor_vishn... Send Email
Sep 9, 2004
9:12 am
... ByteArrayOutputStream( ); ... hrXml ) ), outputStream ); ... As far as PDF file is binary in the most cases (ASCII filters are used rarely) you should not...
5745 spbutman Send Email Sep 9, 2004
3:35 pm
You are correct; it was an encoding problem. I changed my method to return a byte array instead of a String and everything works beautifully. Thanks to...
5746 Adams, Kevin
cossa1869 Send Email
Sep 9, 2004
5:50 pm
I apologize in advance for the newbie question... I'm working on a project to convert XML to regular ASCII text. I'm using FOP 0.20.5, but I seem to be having...
5747 Norma Yeazell
nyeazell@... Send Email
Sep 9, 2004
6:21 pm
Thanks for the advice earlier, combining the xml is working now, but I can't figure out why my chapter numbering no longer works. When I manually combined the...
5748 Bob Stayton
bobs@... Send Email
Sep 9, 2004
7:00 pm
If you have chapters inside the entities, then the reason chapter numbering doesn't work is because your chapters don't exist in the document. They only...
5749 Bob Stayton
bobs@... Send Email
Sep 9, 2004
10:48 pm
Some people convert XML to HTML, and then use lynx -dump to capture formatted text. lynx is a character-based web browser, and the -dump option lets you save...
5750 Victor Vishnyakov
victor_vishn... Send Email
Sep 10, 2004
6:22 am
... As far as I understand you transform XML to XSL-FO to produce ASCII output. Why not transform XML to ASCII text directly. XSL Transformation do not bother...
5751 Werner Donné
werner.donne@... Send Email
Sep 10, 2004
8:02 am
Kevin, If the position on the page is important, you can produce XSL-FO with a monospace font and use the white-space-treatment property, which gives you some...
5752 Adams, Kevin
cossa1869 Send Email
Sep 10, 2004
1:37 pm
Thanks, Werner, I'll give that a try... I appreciate the response. _____ From: Werner Donné [mailto:werner.donne@...] Sent: Friday, September 10, 2004 3:01...
5753 Adams, Kevin
cossa1869 Send Email
Sep 10, 2004
1:39 pm
Bob, Thanks for the response, but it sounds like this is a manual process. Does it involve me opening the html in the browser? If not, that be run in some sort...
5754 Bob Stayton
bobs@... Send Email
Sep 10, 2004
2:56 pm
It is not a manual process of opening a browser. With the -dump option, the browser does not open. You can use a command like this in a script or Makefile to...
5755 Adams, Kevin
cossa1869 Send Email
Sep 10, 2004
3:31 pm
Thanks, Bob. That just might work a little easier. Kevin _____ From: Bob Stayton [mailto:bobs@...] Sent: Friday, September 10, 2004 9:57 AM To:...
5756 Thad
thadmc Send Email
Sep 10, 2004
8:10 pm
On behalf of my client, a large educational book publishing, I'm looking for companies that are able to use XSL-Fo to provide book composition services. These...
Messages 5727 - 5756 of 7448   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help