Tagged Questions
1
vote
1answer
30 views
what is the explicit version of node()
Is the well-known XSLT 1.0 identity template
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
...
-1
votes
1answer
430 views
DotNetNuke DDRMenu : Outputting node not included in menu breadcrumb xslt dnn
I am having problems trying to get the following XSLT template for the DotNetNuke DDRMenu to spit out the last page/node of the breadcrumb for the following conditions:
the last page is NOT ...
-1
votes
1answer
108 views
how to merge two nodes having “the same father”, the same method and the same id=0 (using XSLT)?
I need to merge the two nodes street as they have the same:
father node: city NEW YORK
same method: modify
same id: 0
Attributes values must be merged (See the output file at the end of this post)
...
-1
votes
1answer
64 views
how to merge two nodes having “the same father” and having a precise “method” sequence (using XSLT)?
I need to merge the two nodes MANHATTAN:
because our system rule is the following:
"CREATE A + MODIFY A" is still a "CREATE A with the merged attributes"
input file:
<?xml version="1.0" ...
-1
votes
1answer
276 views
Remove special characters from XML Node [closed]
Have some invalid xml files to process and make valid xml file.
XML files contains the invalid element node as it contains the special character in element
and node start with number.
code snippet:
...
2
votes
2answers
1k views
XSLT function to get xpath to a node
I need a XSLT function which will return me the xpath to the node from which it called.
XML
<root>
<node>
<subnode />
<subnode />
...
0
votes
1answer
127 views
Need to read the previous node's child values to format the current node's value using xsl?
I need to use the formats tag while displaying the contents of rowdata, in the rowdata tags.
the xml is follows: "temp.xml"
<?xml version="1.0" encoding="iso-8859-1"?>
<?xml-stylesheet ...
3
votes
1answer
11k views
Get the total number of nodes and counting nodes
Is it possible to get the total number of XML nodes?
Also, how does one do a for-statement with XSLT?
5
votes
5answers
19k views
xslt and xpath: match conditionally upon current node value
Given the following XML:
<current>
<login_name>jd</login_name>
</current>
<people>
<person>
<first>John</first>
...