Tagged Questions
The fxsl tag has no wiki summary.
10
votes
6answers
2k views
Is XSLT a functional programming language?
Several questions about functional programming languages have got me thinking about whether XSLT is a functional programming language. If not, what features are missing? Has XSLT 2.0 shortened or ...
8
votes
4answers
3k views
Random Items in XSLT
I'm customizing a Google Search appliance, which uses XSLT to present results to the user. Our design calls for one of several images to be included randomly on the results page. Is there a way to use ...
5
votes
3answers
241 views
Steps and involvement of implementing a parser (in .Net - and in this case XPath 2.0)
In the lack of any good free XPath 2.0 implementations for .Net build upon Linq to XML I have thought about implementing my own (also for the experience). But just to be clear (and not building ...
5
votes
4answers
4k views
Can an XSLT parse a string of text?
This is my first time using XSLT. I'm trying to create a file that will convert an XML data file exported from a program I use to an HTML report.
One of the element's value is path to an image file, ...
4
votes
3answers
65 views
using '/..' notation in XSLT XPath
Here is a beginner's question. What does this XPath expression /.. mean? Does it always select an empty node-set?
I've noticed that this pattern is used extensively in FXSL library, for example:
...
4
votes
2answers
913 views
How to Trim in xslt?
I want to trim whitespace left and right
in :
<xsl:value-of select="Datas/Data[@key='Name']/string"/>
How can I do that?
4
votes
2answers
384 views
XSLT stylesheets design pattern - separate common and specific templates in different stylesheets
I was wondering if there is a good approach in XSLT stylesheet design pattern to separate common and specific data representation.
I was trying, but got very confused and lost. I would appreciate any ...
4
votes
7answers
4k views
XSLT to sum product of two attributes
I have the following XML source structure:
<turnovers>
<turnover repid="1" amount="500" rate="0.1"/>
<turnover repid="5" amount="600" rate="0.5"/>
<turnover repid="4" ...
4
votes
3answers
2k views
XSL element selection using variable
Basically I have a small template that looks like:
<xsl:template name="templt">
<xsl:param name="filter" />
<xsl:variable name="numOrders" select="count(ORDERS/ORDER[$filter])" ...
3
votes
5answers
267 views
Most efficient way to store list structure in XML
Starting a new project and was planning on storing all of my web content in XML. I do not have access to a database so this seemed like the next best thing. One thing I'm struggling with is how to ...
3
votes
4answers
775 views
Looking for a library of XSLT to create SVG charts
I'm looking for a library of XSLT to create SVG charts. I need pie charts, bar charts, line charts, all the usual suspects. I would hope for a reasonably simple DTD or Schema for the input files.
...
3
votes
4answers
743 views
How to extract unique characters from a string using XSLT 1.0?
one of the toughest challenges I have ever faced in XSLT designing ..
How to copy the unique characters in a given string ..
Test xml is:
<root>
<string>aaeerstrst11232434</string>
...
2
votes
3answers
900 views
How to call named templates based on a variable?
I don't know if it's possible, but I'm wondering how to do it...
Let's say we have the following XSL:
<xsl:template name="foo">
Bla bla bla
</xsl:template>
...
<xsl:template ...
2
votes
20answers
4k views
Prime factor of 300 000 000 000?
I need to find out the prime factors of over 300 billion. I have a function that is adding to the list of them...very slowly! It has been running for about an hour now and i think its got a fair ...
1
vote
1answer
274 views
xsl:key key() function lookup greater than/less than
Is there a way to do a key() lookup using greaterthan/ lessthan?
example: key('akeyname', <8) would return all nodes with the key string value less than 8.
1
vote
2answers
279 views
error message The URI does not identify an external Java class
I am new to XSL, and thus new to using scripts within the XSL.
I have taken example code (also using C#) and adapted it for my own use.. but it does not work.
EDIT: This code works in Visual ...