0
votes
How do you use a variable in xsl when trying to select a node?
You seem to have got confused with use of a variable (which is just $variable) and Attribute Value Templates, which allow you to put any XPath expression in some attributes, e.g.
& …
4
votes
XSLT - Reverse Find in a string
The following is an example of a template that would produce the required output in XSLT 1.0:
<xsl:template name="getExtension">
<xsl:param name="filename"/>
<xsl: …
1
vote
using a html entity in xslt (e.g. )
XSLT only handles the five basic entities by default: lt, gt, apos, quot, and amp. All others need to be defined as …
0
votes
XSLT nodesets Length
Generally in XSLT things aren't referred to as Arrays, since there is really no such thing in XSLT. The technical term is either nodesets (made up of zero or more nodes) o …
1
vote
XSLT dividing a list of nodes in half
You could try using the last() function which will give you the size of the current context:
<xsl:for-each select="./node [position() <= last() div 2]">
…
7
votes
ASP.NET MVC vs. XSL
I can see the main benefit of employing XSLT to transform your data and display it to the user would be the following:
The data is already in an XML format
The data follows a …
3
votes
How do you add an image in XSLT?
Just to clarify the problem here - the error is in the following bit of code:
<xsl:attribute name="src">
<xsl:copy-of select="/root/Image/node()"/>
</xsl:attribut …
9
votes
xslt: apply-templates in reverse order
Easy!
<xsl:template match="/">
<xsl:apply-templates select="root/node">
<xsl:sort select="position()" data-type="number" order="descending"/>
</ …
9
votes
What is a good resource for learning XSL?
In my opinion the definitive guide to XSLT and XPATH is Michael Kay's Progammers Reference from WROX: http://www.amazon. …
2
votes
I have a 100+MB XML file (sans-DTD/Schema). XSLT won’t have it. Strategies for transforming/parsing?
Can I recommend Saxon XSLT processor - I know for a fact it can handle large files, provided you give the Java JVM enough memory.
Another thing is that there may be optimisations n your XSL …
1
vote
How to declare a user-defined function returning node-set?
A quick google for C# xslt msxml revealed a link to the following page which gives many examples of extending XSLT in microsoft environments.
…
1
vote
XSLT: How to count distinct values in a node?
In XSLT 1.0 this isn't obvious, but the following should give you an idea of the requirement:
count(//Artist_by_Country[not(Location_ID=preceding-sibling::Artist_by_Country/Location …
3
votes
Checking for a duplicate element in the OUTPUT using XSLT
It depends how system wide you want to be.
i.e. Are you only concerned with elements that are children of the same parent, or all elements at the same level ('cousins' if you like) or eleme …
2
votes
Button generated for each item in an XSLT file runat server
XSLT can generate pretty much anything you want - but you need to know what you want to generate first.
In ASP.Net I would recommend doing this using the CommandArgument and OnCommand event …
1
vote
How to remove <b/> from a document
An alternative would be to do the following:
<xsl:template match="b[not(text())]" />
<xsl:template match="b">
<b>
<xsl:apply-templates/>
</b>
…
