Search found 5 matches

by xacobea
Tue Mar 29, 2005 12:38 pm
Forum: XSLT and FOP
Topic: XSL formatting issue
Replies: 3
Views: 7409

i think it would be easier if you change your xml adding an 'item' tag: <dict> <item> <key>CFBundleDevelopmentRegion</key> <string>English</string> </item> </dict> i have this output: "CFBundleDevelopmentRegion" = "English" "CFBundleDisplayName" = "English" &q...
by xacobea
Tue Mar 29, 2005 11:56 am
Forum: XSLT and FOP
Topic: finding largest sting length in xml nodes using XSLT
Replies: 2
Views: 8753

do you search something like list?... <xsl:apply-templates select="lifeline"> <xsl:sort select="string-length()" order="descending" data-type="number" /> </xsl:apply-templates> ...or only one single number? then you have to create a new xml (as far i don't kno...
by xacobea
Wed Mar 23, 2005 12:22 pm
Forum: XSLT and FOP
Topic: no line wrap please
Replies: 3
Views: 7080

hi, try to write everything in one line and use a &#160;: <fo:block>Name:&#160;<xsl:value-of select="name"/>,Age:&#160;<xsl:value-of select="age"/>,City:&#160;<xsl:value-of select="city"/></fo:block> or maybe try to use fo:inline instead of fo:block, a f...
by xacobea
Fri Jan 07, 2005 11:02 am
Forum: XSLT and FOP
Topic: check position of 'generate-id()'s
Replies: 3
Views: 6897

sorry about my english. i don't want my pdf look like this: first recipe .......2-5 second recipe ..6 -6 but: first recipe .......2-5 second recipe ..6 my .xml: <recipes> <menu> <head /> <recipe> <notes> <note /> </notes </recipe> </menu </recipes> .. and my .xsl: <xsl:template match="menu"...
by xacobea
Wed Jan 05, 2005 1:17 pm
Forum: XSLT and FOP
Topic: check position of 'generate-id()'s
Replies: 3
Views: 6897

check position of 'generate-id()'s

hello, how can i check if two 'generate-id()''s are on the same page? every item of my table of contents has two different pagenumbers (from page - to page), if both are the same only one should be printed. <xsl:variable name="pagenumber"> <fo:page-number-citation ref-id="{generate-id...