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: 1394
  • 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 6494 - 6523 of 7448   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
6494 Werner Donné
werner.donne@... Send Email
May 6, 2005
11:43 am
Andreas, You can insert a <div style="page-break-after: always"/> at the end or a <div style="page-break-before: always"/> at the start of the document. ...
6495 bg34342002 Send Email May 6, 2005
6:32 pm
Did you follow these instructions: http://xml.apache.org/fop/graphics.html#batik ... <arianhojat2000@y...>...
6496 G. Ken Holman
g_ken_holman Send Email
May 7, 2005
6:16 pm
... Row numbering is not done under XSL-FO control. It is the responsibility of your transformation to number the rows and then you only use XSL-FO to format...
6497 torsten krohn | tsdb ...
tsdb_com Send Email
May 8, 2005
4:18 pm
Hi! I'd like to generate hierarchical lists from source: <ul> <li>topic 1</li> <ul> <li>subtopic 1</li> <li>subtopic 2</li> <ul> <li>subsubtopic 1</li> </ul> ...
6498 G. Ken Holman
g_ken_holman Send Email
May 8, 2005
5:15 pm
... By not using margin or padding, but by using the <list-block> constructs. And, your use of nested lists is not easily mappable to XSL-FO nested lists ... I...
6499 geethanandh Send Email May 11, 2005
8:33 pm
How do i find the first occurance of an attribute in a tag. For example <a id="1"> <b> <c></c> </b> </a> when you are processing node "c" you need to find the...
6500 Mike Trotman
mike.trotman@... Send Email
May 11, 2005
9:56 pm
Just add the predicate [@id] to whatever your xpath search is. E.g. ancestor::*[@id][1]/@id. ... -- No virus found in this outgoing message. Checked by AVG...
6501 torsten krohn | tsdb ...
tsdb_com Send Email
May 11, 2005
9:59 pm
Try this <xsl:value-of select="ancestor::*[@id][1]/@id"/> or that <xsl:value-of select="ancestor::*[@id][position()=1]/@id"/> Torsten ... Von:...
6502 Somnath Kale
somnathka Send Email
May 12, 2005
4:57 am
Hi Folks, Help me overcome this error (attached) while creating PDF from Antenna House XSL Formatter 3.2. Note: All the required fonts are installed in the...
6503 Igor Istomin
igis1975 Send Email
May 12, 2005
9:46 am
Hello all, I have a table with 14 columns and some of columns have small widths. As result I got infinite loop in FOP during layout. I enabled hyphenation but...
6504 geethanandh Send Email May 12, 2005
2:08 pm
Thanks, for the help, but now a small change in the xml and i still want to get the first occurance. <super id="1"> <a> <aid id="2" /> <b> <c></c> </b> </a> ...
6505 torsten krohn | tsdb ...
tsdb_com Send Email
May 12, 2005
2:50 pm
What about looping the attributes: <xsl:for-each select="ancestor::*[@id]"> <xsl:value-of select="@id"/> <!-- change this line for your needs --> ...
6506 Mike Trotman
mike.trotman@... Send Email
May 12, 2005
2:52 pm
I think I misread your XML - and missed the fact that <aid.../> is not an ancestor element. If you want to mix ancestor and other elements then you need to...
6507 torsten krohn | tsdb ...
tsdb_com Send Email
May 12, 2005
3:39 pm
If the ending of an image is upper-case, fop 0.20.5 throws error message: Error in Xobject : Error while loading image http://.../name.GIF : class ...
6508 karthikj_99 Send Email May 12, 2005
4:09 pm
Hi, I'm very to new XSL-FO. Is there a way to calculate row, column, group totals. Please help. Thanks. Karthik...
6509 bg34342002 Send Email May 12, 2005
6:05 pm
I am fairly new to xsl-fo and I am now getting the error: subsequences exhausted in page-sequence-master 'Item-Master&#39;. Any ideas on what this could be? Thanks...
6510 J.Pietschmann
j3322ptm Send Email
May 12, 2005
7:43 pm
... Probably thgere is a column with some content where even the first character on a line is already too wide to fit. There aren't many aternatives to either...
6511 J.Pietschmann
j3322ptm Send Email
May 12, 2005
7:52 pm
... This is a problem with your webserver configuration. Check the server documentation on how to add file -> MIME content-type mappings. You should find a...
6512 J.Pietschmann
j3322ptm Send Email
May 12, 2005
7:55 pm
... XSLFO is for expressing the presentation of some content. Calculating totals is not in the scope of XSLFO. The generator of a FO document is responsible...
6513 J.Pietschmann
j3322ptm Send Email
May 12, 2005
8:01 pm
... This means there is so much content in the flow that it fills more pages than the subsequences in the page sequence master are prepared to provide. An...
6514 bg34342002 Send Email May 12, 2005
8:22 pm
I was using: <fo:conditional-page-master-reference page-position="last" master- reference="Item-Last"/> I found out that the Apache FO processor does not...
6515 geethanandh Send Email May 12, 2005
10:52 pm
<xsl:template match="Enter" > <fo:block xsl:use-attribute-sets="first"> Some Text <fo:leader leader-pattern="dots" /> </fo:block> </xsl:template&gt; ...
6516 G. Ken Holman
g_ken_holman Send Email
May 12, 2005
11:19 pm
... Wrap the <fo:leader> with <fo:inline> in which you change your properties. I hope this helps. . . . . . Ken -- World-wide on-site corporate, govt. & user...
6517 geethanandh Send Email May 14, 2005
1:24 pm
After wrapping no change it is still taking from the attribute set....
6518 geethanandh Send Email May 14, 2005
10:56 pm
I need to have a 2 column toc with a title that spans 2 columns, and then the toc content continues in the 2 column format. I know that we can create 2 column...
6519 G. Ken Holman
g_ken_holman Send Email
May 15, 2005
12:26 am
... <block span="all";>title stuff goes here</block> This introduces a span-reference area across all columns. When you don't use span="all"; the blocks...
6520 Bob Stayton
bobs@... Send Email
May 15, 2005
8:14 am
I'm looking for a way to implement table footnotes that format to the same width as their table. I gather all the footnote elements in a table into an ...
6521 Mike Trotman
mike.trotman@... Send Email
May 15, 2005
12:05 pm
I've tried may ways to do something similar to this - without success so far - so would be interested in any suggestions. It's OK if the table width is fixed -...
6522 Adams, Kevin
cossa1869 Send Email
May 16, 2005
2:06 pm
I'm trying to create a document that contains the incoming XML exactly as it appears, with tags, attributes and everything. I searched this weekend and I saw...
6523 Eliot Kimber
drmacro Send Email
May 16, 2005
2:40 pm
... You can't just put the elements literally out into the FO--the FO processor will have no idea what to do with them. You have to convert the input elements...
Messages 6494 - 6523 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