2
votes
1answer
24 views

XSL: Find text not currently in elements and wrap?

Given the following fragment: <recipe> get a bowl <ingredient>flour</ingredient> <ingredient>milk</ingredient> mix it all together! </recipe> How can I ...
2
votes
2answers
39 views

how to convert xslt version 2.0 to version 1.0

i am using xslt document which uses xpath version 2 functions. I only have xalan 2.6 jar which has xslt 1.0 processor, its a constraint i cannot change it..please help me if there are any tools that ...
0
votes
1answer
39 views

XSLT: set classes based on element descendants

I'm working with an XSL transformation on the following HTML: <div id="context"> <p>Sometimes, there is content here.</p> </div> <div id="main-content"> ...
0
votes
1answer
45 views

Get distinct values from two different parts of an XML using XSLT

I have had a business rule change to one of my XSLTs and I am not sure how to handle it. If you look at the XML below, you will see that I have an employee section and an equipment section. The ...
1
vote
1answer
40 views

Stylesheet is printing data. Why?

I really can't understand this. When running my stylesheet below why are my parameters (see parameters in XML below) printed? That's the only thing that is getting printed. I expect nothing to be ...
0
votes
1answer
28 views

How to create an attribute node and attach it to output node..?

I'm not able to figure out a way to attach an attribute node to output node in below scenario.. input xml: <record> <user> <field name="LastName">user33</field> ...
1
vote
2answers
34 views

Maximum number of distinct subelements per node

Using XSLT 1.0, how do I obtain the maximum number of distinct <info> elements that are children of the same <container> element in a structure like the following (if at all possible)? ...
0
votes
3answers
69 views

nested <ul> tags in hmtl to xml conversion using xslt

I have these nested <ul> tags. What I want to do is convert some of them to <para> tags. So I have this code: <xsl:template match="ul"> <para> <xsl:apply-templates ...
0
votes
1answer
34 views

Turning negative Price amounts to positive

I have to write a small generic conversion in XSL 1.0 that turns the negative prices in to positive when the Book Name concerns a 'NC'. Prices can occur at multiple/any levels. I have to encounter ...
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> ...
0
votes
0answers
39 views

display UserValue in plmxml schema using XSLT

Hi i have the following code and i want to display the UserValue from the ProductRevision which matches the instancedRef in the Occurrence. the schema is plmxml... <ProductRevision id="id279" ...
1
vote
2answers
77 views

Select all of an element between the current element and the next of the current element

Using XSLT 1.0 (preferably), How can I select all of an element which occurs between the current element and the next time the current element occurs? Say I have this XML (edited): <root> ...
1
vote
1answer
51 views

how to transform xpath expression to xsl key?

I'm stuck with what should be a simple problem with XSLT keys. If it is relevant, I'm forced into an XSLT 1.0 parser. Sample XML: <updates> <update> <id>first</id> ...
1
vote
3answers
53 views

Better performance with XPath Axes Vs Location Path Expression in XSLT/Xpath

which one give better performance when we handling XML with XSLT XPath Axes (i.e. parent,attribute,child.....) or Location Path Expression (i.e. ./.., ./@attribute ,./childnode,... ) Please help me ...
1
vote
1answer
66 views

xslt to replace p tag with p tag with attributes

I have an xml file with many p tags -- INPUT -- <p> <inline-img class="full"> <web-main-photo> <photo ...
3
votes
2answers
61 views

How to output text node value line by line using xslt 1.0?

I have a xml file which is like: <Messages> error message 1 error message 2 </Messages> I would like to have the output as: Error 1: error message 1 Error 2: error message 2 ...
0
votes
2answers
33 views

Apply-templates

This is the code I have: <xsl:template match="*"> <Segment ID="{name()}"> <xsl:value-of select="concat(., ' ')"/> </Segment> </xsl:template> ...
2
votes
4answers
123 views

XSLT Ternary “If” Operator?

I am making use of XSLT and XML to produce an output document. What I have in the data (in XML form over which I have no control) is the following: <ea type="null"/> <pa type="null"/> ...
2
votes
2answers
63 views

How to get attribute values if they are not equal to some values?

I have a xml like: <movies> <movie name="aaa"> ... </movie> <movie name="bbb"> ... </movie> <movie name="ccc"> ... ...
1
vote
1answer
38 views

xsl and xpath : search for a node inside a node, and return the value of an attribute in the found node

I have the below xml : <w:style w:styleId="John"> <w:name w:val="Peter" /> </w:style> So basically, having the value of "Peter", I would like to get the value of "John" (which I ...
1
vote
2answers
55 views

Using <xsl:for-each> for incremental element names

I have an XML that is converted from a java map. So all the map keys are converted into node names. The XML structure is as below <map> <firstName>AAA</firstName> ...
3
votes
1answer
150 views

XML to csv conversion using xslt-ouput multiple values in particular format

I'm trying to convert the xml data in following format to csv format using xslt.I am right now struck trying to output multivalues for particular custom field. This is my xml data. <input-xml> ...
1
vote
1answer
48 views

XSL : follow and preceding don't work (Kayessian method)

i cannot make preceding (or preceding-sibling) and following (or following-sibling) working correctly: I have the following xml: <doc xmlns:lxslt="http://xml.apache.org/xslt" xml:lang="it"> ...
0
votes
3answers
175 views

XSLT: select all nodes that start with

I am trying to do a XSLT transformation where the input XML is arbitrary. The only thing that's constant in it is that it'll have a node the name of which starts with 'first'. I need to get the value ...
0
votes
1answer
102 views

XSLT 1.0 Find unique node with Highest value

I am beginner in XSLT 1.0. I am facing an issue when i tried to find unique node with Highest value. Source XML: <Response> <Flight> <From>A</From> ...
1
vote
1answer
72 views

Get the maximum starting substring of the text node, such that the last word in it isn't truncated, and its length doesn't exceed a given limit

How do I select only n number of comments element using xsl. I am able to select n number of characters but that snaps in the middle of a word and makes it look ugly. I have been able to get a count ...
1
vote
3answers
450 views

Need to remove <?xml version=“1.0” encoding=“utf-16”?> from the xml

Hi i am generating a xml by appying the xsl to a xml input. I need the output without this part "<?xml version="1.0" encoding="utf-16"?>" input--xml <?xml version="1.0" ...
-1
votes
1answer
74 views

I want perform sum of product of two elements at differnt levels

I tried for following code but its not working. I have taken one string and write XSLT in it and load it XslCompiledTransform object. <xsl:sequence select= "sum(//Item/(cost * ...
0
votes
1answer
76 views

XPath for nodes where a subnode has attribute AND contains text

Can't see to complete this, in theory relatively simple task: Find nodes Document where Field has attribute Name that contains specific text AND where subnodes Option has a value. XML: <?xml ...
2
votes
2answers
105 views

making compound xpath statement for xslt: match

Here's a generic XSLT 1.0 question which I need to know to write an XSLT statement for processing docbook xml files. In my docbook XML, I'm trying to write a compound xpath statement in XSLT 1.0 ...
0
votes
2answers
115 views

Named template parameter as XPath for template match

Is it possible to specify a parameter of a named template as the match pattern in another template? Here, if I try to call the 'excerpt' template and pass in an XPath as the 'path' param, I get an ...
0
votes
1answer
72 views

trying to insert CDATA section into a xml

Hi I have added the below two xsl text nodes to get CDATA in my output xml <xsl:text disable-output-escaping="yes">&lt;xsl:text ...
0
votes
2answers
69 views

Trying to isert CDATA text into a xml using xslt [duplicate]

Possible Duplicate: trying to insert CDATA section into a xml I am trying to isert into a xml but getting below error XSLT Error (javax.xml.transform.TransformerException): XML document ...
2
votes
1answer
42 views

Can this XSLT snippet be more concise?

In the following code snippet, I have 3 for-each's but it seems to me they ought to be able to combine into one. It works as is, but I was wondering if anyone knew of a more elegant way to write it? ...
0
votes
2answers
132 views

i want to replace > with &gt; for some of my nodes in my xml using xslt

I need to output a soap xml request in wihch for some of the nodes < should be replaced with &lt; and > with &gt; how to do this using xslt my output should be something like below ...
1
vote
1answer
46 views

Using xsl:key to store result of boolean expression

In my transformation there is an expression some elements are repeatedly tested against. To reduce redundancy I'd like to encapsulate this in an xsl:key like this (not working): <xsl:key ...
2
votes
2answers
151 views

xslt 1.0 to replace xpath references with the actual data in the same xml

i have some requirement, where i need to replace the references in the same xml file. limitation is to use xslt 1.0 only. below is my sample input xml. <org> <depts> ...
4
votes
2answers
135 views

XSLT Filter result using XSLT array

I am a beginner in XSLT. Below is source XML which i receive. Request tag constains the FlightId which is being used to filter the Result tag. Source XML: <Response> <Request> ...
0
votes
1answer
127 views

XSLT - How to count nodes conditionally?

I've been wrapping my head around this and I'm pretty sure there's got to be a basic solution. I'm trying to convert an xml file to XHTML using XSLT 1.0, and I want to have a section where, for every ...
0
votes
2answers
212 views

Swap items in a sequence [closed]

I am trying to write a heap sort algorithm using XSLT .But struggling to swap the values of the variable used for storing the tokenized values. I have created method heapify for comparing the values ...
2
votes
2answers
136 views

XSLT: efficiently test if a 'cousin' node exists

I have the following XML: <types> <type> <name>derived</name> <superType>base</superType> <properties> ...
-3
votes
1answer
79 views

Shift nodes in an XML using XSLT [closed]

I want to ask how I can transform the following XML using XSLT: <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:output method="xml" ...
1
vote
3answers
180 views

Passing XPath as param to XSLT by C#,

Not really sure about the significance of this method but just I feel like trying it. Instead of using XML DOM and reading Value by using XPath directly in C#, Is it possible to pass string as a param ...
0
votes
1answer
479 views

XPATH expression to output parent node and matched child node excluding unmatched child node

Below is the XML <?xml version="1.0" encoding="UTF-8"?> <library> <object>book</object> <bookname> <value>testbook</value> ...
2
votes
2answers
141 views

extract value of node that has a namespace declared without a prefix

I have the following xml file: <root_tag> <tag1> <tag1_1>A</tag1_1> <tag1_2>B</tag1_2> <tag1_3>C</tag1_3> </tag1> <tag2> ...
0
votes
3answers
117 views

XSLT - How to delete tags and keep content?

I've got an XML file which is something like : <doc> <element> <word> <text>one word</text> </word> <word> <text>two ...
2
votes
2answers
234 views

How to do sum having Group By using XSLT 1.0

I want to do summing of population per country-wise having city population. It wasn't working, given the sample code below. Could you pls help me in making it working The Input is <cities ...
0
votes
3answers
251 views

percent causing NAN XSLT

I am attempting to parse a document using XSLT 1.0 for insertion into a database and I am noticing an issue where any time I have a % value it will return as 'NaN' rather than the actual value. I ...
0
votes
2answers
353 views

Select node based on child node value in XSLT

I would like to select only those node where child node value matches a certain value. Here is my orig XML: This is my orig XML <Entry> <Name>AAA</Name> <line ...
1
vote
1answer
217 views

Can I select in XPath based on a variable attribute?

I think this isn't possible but would like to have a definitive answer. XML: <agentlang>French</agentlang> ... <books> <book> <title>My ...

1 2 3