coldfusion developer struggling with xsl...i need to switch <xsl:if test="type = 'Trade39;"> show something </xsl:if> <xsl:elseif test="type = 'Collection...
2488
Tony Weeg
tony_weeg
Nov 21, 2002 5:11 am
another question...sorry....lets say i had a variable that was coming back to me like this "$1,546.00" and that will eventually end up in a string variable,...
2489
Jim White
jim@...
Nov 21, 2002 8:55 am
... <xsl:choose> <xsl:when test="type = 'Trade39;"> show something </xsl:when> <xsl:when test="type = 'Collection Account'"> show something </xsl:when> ...
2490
bikram_bahadur
Nov 21, 2002 9:00 am
hai all i have an xml and xsl out outout is some xml or html. xsl that i refer from xml is text file. Is it posible that xsl (that i refer from xml) be in...
2491
Oleg Tkachenko
olegtk
Nov 21, 2002 10:52 am
... btw, I'm just curious how FrameMaker handles this problem? Sure it's possible to use xpointer in xsl-fo to point to another fo document fragment, but it...
2492
hortomb
Nov 21, 2002 10:52 am
Hello, I was wondering if there is a way to set a default field length in for transforming XML to text with Apache's FOP. My XML has entities with money values...
2493
Oleg Tkachenko
olegtk
Nov 21, 2002 11:09 am
... FOP has nothing to do with the issue, all you need is xslt's format-number() function, see http://www.w3.org/TR/xslt.html#format-number. -- Oleg Tkachenko ...
2494
Oleg Tkachenko
olegtk
Nov 21, 2002 11:23 am
... You can compile your stylesheet into a java code by XSLTC, see http://xml.apache.org/xalan-j/xsltc_usage.html. -- Oleg Tkachenko eXperanto team Multiconn...
2495
Oleg Tkachenko
olegtk
Nov 21, 2002 11:38 am
Jeffrey A. Stewart wrote: ... At least XEP and FOP as java xml applications are JAXP-aware ones therefore you can use any JAXP parser or xslt processor with...
2496
Victor Mote
victormote
Nov 21, 2002 11:56 am
... FrameMaker has the luxury of storing and manipulating the paginated file. So, conceptually anyway, it opens the other file, goes to a table of Target ...
2497
dennis_joel_david
dennis_joel_...
Nov 21, 2002 1:22 pm
Hi. Does simple-page-master have to be global for a page? I have some text which i want to divide into several columns automatically, by setting the...
2498
Oleg Tkachenko
olegtk
Nov 21, 2002 3:11 pm
... Yes, at least in xsl 1.0. ... I don't think so. -- Oleg Tkachenko eXperanto team Multiconn Technologies, Israel...
2499
W. Eliot Kimber
drmacro
Nov 21, 2002 3:58 pm
... Can you provide an example of the presentation you are trying to achieve? I suspect that you can get what you want using either blocks that span the...
2500
bryan
bry@...
Nov 22, 2002 10:07 am
Looking in a pdf generated from FOP I see that the stream filters used are the ASCII85Decide and the FlateDecode, are these the only filters used by FOP?...
2501
dennis_joel_david
dennis_joel_...
Nov 22, 2002 12:20 pm
Hi there. Below is an URL where you will find an example of what i am trying to achieve. As you can see, above and below the little table in the middle, there...
2502
W. Eliot Kimber
drmacro
Nov 22, 2002 2:24 pm
... This is easy. Just use a block with span="all" to contain your table w/ a body-region with column-count="2". A block that spans all the columns causes the...
2503
Tony Weeg
tony_weeg
Nov 23, 2002 2:51 am
hi all. is there anyway to use regular expression matching to replace some commas that come across in an xml node's value? so that when i have it in...
2504
Richard Light
richard@...
Nov 23, 2002 11:06 am
In message <001e01c2929b$2cb91b30$40b0010a@vaio>, Tony Weeg <tony@...> writes ... If you just want to strip out commas you don't need...
2505
W. Eliot Kimber
drmacro
Nov 23, 2002 2:40 pm
[This message has been widely cross posted. Please do not reply to it. Comments on this project should be started in a new thread on a single forum or directed...
2506
Jim White
jim@...
Nov 23, 2002 4:15 pm
... Interestingly enough, Eliot's posting led me to this: http://www.exslt.org/regexp/regexp.html Coding with XSLT can be tedious for non-tree transforming...
2507
Oleg Tkachenko
olegtk
Nov 23, 2002 5:51 pm
... Look at org/apache/fop/pdf package, there are ASCII85Filter, ASCIIHexFilter, CCFFilter, DCTFilter and FlateFilter classes there. Not all of them are fully...
2508
Oleg Tkachenko
olegtk
Nov 23, 2002 6:00 pm
... You right, but sometimes xslt as tree-transformation-focused language is just a wrong hammer and using a primitive sed script can be a reasonable ...
2509
Oleg Tkachenko
olegtk
Nov 23, 2002 6:04 pm
... Your envision mentioned by Eliot as one of a requirement to Auxiliary data output ("side files") extension[1], so lets just wish exslfo to success. [1]...
2510
Bernhard Zwischenbrug...
bz@...
Nov 25, 2002 10:08 am
Hi there I have a Exception in thread "main" java.lang.OutOfMemoryError problem with big fo files. I tried this on a 512MByte-RAM Linux box and the resulting...
2511
Els van Trigt
evtrigt@...
Nov 25, 2002 10:11 am
Is there an XSLFO attribute to accommodate for entries in that should indent when they are longer than one line? I have a two-column index of which some...
2512
G. Ken Holman
g_ken_holman
Nov 25, 2002 12:26 pm
... Use a combination of what is already available to you: indent the entire block, but outdent the first line using a negative value for your text indent. An...
2513
W. Eliot Kimber
drmacro
Nov 25, 2002 1:54 pm
... You can also do the same sort of thing for the end-ward side of the block, indenting all lines but the last, if you want this sort of presentation (here, a...
2514
bryan
bry@...
Nov 25, 2002 1:58 pm
... I'm sure that you're right and the document should only be about 20 pages when displayed but nonetheless after about ten minutes of downloading that...
2515
Els van Trigt
evtrigt@...
Nov 25, 2002 2:05 pm
Thanks - it helped! Els ... From: W. Eliot Kimber [mailto:eliot@...] Sent: Monday, November 25, 2002 2:55 PM To: XSL-FO@yahoogroups.com Subject: Re:...
2516
Oleg Tkachenko
olegtk
Nov 25, 2002 2:20 pm
... FOP does have problems with big documents, but your one is 3Mb and generates 36 pages so it should be considered probably as not too big. All you have to ...