Use this tag for questions specific to XSL Transformations version 1.0

learn more… | top users | synonyms

0
votes
1answer
47 views

XSLT: sort and limit nested nodes

XML: <node> <node date="01-01-2002">Node</node> <node date="01-01-2005">Node</node> <node date="01-01-2001">Node</node> <node ...
0
votes
1answer
82 views

XSLT 1.0 Group Nodes by attribute value inside each element

I have XML like This <root> <Users groupid="1"> <User id="person1" name="ABC" parentid="person7"/> <User id="person2" name="xyz" parentid="person1"/> ...
1
vote
1answer
39 views

xsl stylesheet works on server in IE and Firefox, works locally only with IE

I have an xml document and associated xsl stylesheet. When I put the xsl and xml up on my server the xsl styleheet is applied and the XML document renders correctly in IE, Firefox and Chrome. When I ...
3
votes
1answer
50 views

How can we convert XML elements into a different namespace in xslt

I have an input xml <Request xmlns="http://hgkg.ghg.com" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <AppointmentInfo xmlns=""> ...
0
votes
1answer
32 views

How can we remove name space in level 1 elements of the xml using xslt

I have this xml <Request xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <UserInfo xmlns=""> <name>ss</name> ...
1
vote
3answers
135 views

In XSLT, Replace one class value when there are multiple values

I'm working with an XSL transformation that's being applied to an HTML document. Relevant HTML example: <div class="row home-row"> <p>Hello</p> </div> I select items ...
-2
votes
1answer
18 views

Picking value from two xml files in xsl1.0

I have two XML files, Input1 and Input2. I have to generate sum in the Output but picking value from both the Inputs. For example - <xsl:value-of ...
1
vote
2answers
105 views

XSLT identity transform with append and root element namespaces

I'm trying to create an XSLT library for the common task of passing through most of the content of XML data with small alterations. The include file currently looks like this (pass-through.xslt): ...
0
votes
0answers
70 views

Selecting the lower value comparing two XML files with XSLT

I have two different XML files. Each one refers to a CD catalog. What I'm doing is using XSLT for generating a table where each catalog appears in a column. This lets the user compare the catalogs ...
0
votes
2answers
121 views

Check text string against an array in if-test

Is there any way to check if a text string contains any of the entries in pre-determined array? The use case is I am parsing through a large amount of text and looking for text links. As a result I am ...
0
votes
1answer
51 views

how to provide variable dynamic value from other template?

<xsl:template name="split"> <xsl:param name="list"/> <xsl:variable name="first"> <xsl:value-of select="substring-before($list,' ')"/> ...
1
vote
2answers
103 views

XSL - remove the duplicate node but keep the original

Need help in removing the duplicate node from the input xml using XSLT This is how my XML looks like, <?xml version="1.0"?> <NodeA NodeAattr="123"> <NodeB ...
0
votes
1answer
86 views

XSLT Query nodes by attributes

I need to query a big XML file to extract sub XML tree containing only desired nodes with attributes equal to a given parameter. Here is my source file <a:level1 xmlns:a="some:a" ...
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"/> ...
0
votes
1answer
53 views

Capture generated output file path and name using CSSDK

We are in the process of converting over to using the XSLT compiler for page generation. I have a Xalan Java extention to exploit the CSSDK and capture some meta data we have stored in the Extended ...
3
votes
2answers
74 views

Selecting the lowest value from and xml without sorting

I'm transforming an xml document to an html table using xslt, and now what I want to do is to change the background color of the cell containing the lowest "price" value without sorting my list. I'm ...
0
votes
0answers
14 views

Split a string ,modify and join again in XSLT 1.0

I have a string in the following format 1|abc;2|def;3|ghi I want to display this string in the following format using XSLT abc;def;ghi I am very new to XSLT , I know this can be achieved by ...
1
vote
1answer
48 views

how to separate multiple entries with a semicolon and a space in xslt and also remove duplicate terms

I have xml as below <?xml version="1.0" standalone="yes"?> <epdata dbname="psyh"> <record ...
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"> ... ...
0
votes
0answers
25 views

How to make an array from a variable value for traversing same code of data?

If i am having a variable "styletext" and having value as "c0 c1 c3" and i want to process same code for each c0,c1,c3 value of variable;as these c0,c1,c3 is having data in them. like- ...
0
votes
1answer
20 views

summing nodes on the same level after a translate decimal comma

given following xml doc <root> <row> <field1/> <tax1>10,00</tax1> <tax3>100,00</tax3> <tax2>150,00</tax2> ...
1
vote
2answers
81 views

Prevent xmlns=“” attribute from being added to HTML elements generated by XSLT 1.0

I am in the process of creating a template for phpdoc 2 and I am trying to figure out how to prevent the attribute xmlns="http://www.w3.org/1999/xhtml" from being added to the root level elements of ...
0
votes
1answer
100 views

assign global variable value from local variable of template using xsl

`<xsl:template match="xhtml:style"> <xsl:variable name="text" select="text()"/> </xsl:template>` This is my template having local variable whose value would be the ...
1
vote
1answer
28 views

XSLT: Match N-level node

Need to match node by id. (say a2-2) XML: <node id="a" title="Title a"> <node id="a1" title="Title a1" /> <node id="a2" title="Title a2" > <node id="a2-1" title="Title ...
0
votes
1answer
91 views

Get distinct values from xml

My sample xml looks below: I need to get the distinct states from xml. I am using xslt 1.0 in vs 2010 editor. <?xml version="1.0" encoding="utf-8" ?> <states> <node> ...
1
vote
2answers
46 views

I need to define a xslt to combine couple of elements with separators for custom defined xsd types

I have couple of custom types which have 2, 3 or 4 childs. So wherever I get these childs I need to combine them into a single element which is the parent tag itself in the output XML. I tried but ...
0
votes
1answer
22 views

Need to Select Value of Grandparent's Sibling with a Specific Attribute in XSLT

With the following XML I need to select the home address if it exists, and the work address if it does not. So I am trying to find the syntax to select the value of ...
1
vote
1answer
30 views

Extracting the first set of data within the same <root>

I have a XSLT question which follows on from the question I asked previously. The challenge is to extract on the set of data from a repeated set with in the same <root>. I have an example XSLT ...
0
votes
2answers
51 views

XSLT - remove all attributes

Pretty straightforward question. Didn't find an answer to exactly this one. Would like to see XSLT 1.0 without attribute axis, and others too if possible (I am using python's lxml lib which is not ...
1
vote
3answers
76 views

Appending characters to strings in XSL

This XML has details of the string to be appended, string length and character to append. <?xml version="1.0" encoding="ISO-8859-1"?> <data> <input> ...
0
votes
1answer
28 views

Cross referencing XSL files

Let's say, I have an XML that uses two XSL files: <?xml version="1.0" encoding="ISO-8859-1"?> <?xml-stylesheet type="text/xsl" href="first.xsl"?> <?xml-stylesheet type="text/xsl" ...
1
vote
2answers
29 views

Select specific element from XML by XSLT

I have an XML like this in a variable prdxml <root> <product> <estocklevel>0</estocklevel> <id>8142229</id> <isp_brand ...
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 ...
0
votes
1answer
28 views

How to display strike through text

I want to display some text with strike through in HTML using xsl. <xsl:text>Hello world</xsl:text> Expected output: Hello world Any suggestions ?
-1
votes
3answers
95 views

Re-order XML elements in a specific way using XSLT [closed]

I have two XSL variables. 1.ProductID <prdid> <id>8143794</id> <id>8143793</id> <id>8142229</id> <id>8143796</id> ...
0
votes
1answer
24 views

Transforming source xml to another xml using xslt

I am looking at transforming the source input xml to output xml format depending whether the individual record is that of <Student> or <teacher> input xml: <staff> ...
0
votes
1answer
14 views

xslt: get attribute from xsl itself

is it possible to read an xsl attribute from the xsl document itself? I need something like this: mystyle.xsl <?xml version="1.0" encoding="iso-8859-1"?> <xsl:stylesheet version="1.0" ...
0
votes
1answer
23 views

how to strip characters right of '_' in node name using xslt

my requirement is to rename all the node names which has _ in them to new name. how to strip the char right of _ present in a node name and leave the left side of the name as the new node name? e.g ...
0
votes
1answer
56 views

Add parent element and rename the child element

I am trying to loop child elements under import and export. Create a parent element fields and put all the elements which the name is field into it, just under import, not include the elements field ...
0
votes
1answer
69 views

XSLT Wrap Every nth Item in a New Container

So I've written basic XSLT in the past, but I ran into a new issue. We're working with a grid system and as a consequence to that, a simple for-each won't suffice. Instead, I need to create a new row ...
0
votes
1answer
26 views

Need to transform values from a list into an attribute based on a set of rules

I have an XML transaction that has a container element (PURCHASELIST) that contains repeating DOLL elements, containing a NAME attribute (in this case, one NAME says "KEN" and one NAME says "BARBIE". ...
1
vote
2answers
81 views

Converting time presented in hours and minutes into decimal and calculate the sum in hours using xslt 1.0

I want to achieve this using XSLT 1.0. Hours is represented in Hours and minutes(for ex: 10:30 is basically 10 hours 30 minutes). I need to convert it into only hours(10.50) and then calculate the sum ...
0
votes
1answer
35 views

how to create hyperlink in xsl

I am using following xml and want to display in HTML using xslt. <resultDetailsData> <itemProperties> <ID>0</ID> <type>RESULTSTATUS</type> ...
0
votes
2answers
42 views

XSLT 1.0 Group By Tags

I have the following XML data: <result> <row> <CountryId>26</CountryId> <CountryName>United Kingdom</CountryName> <NoOfNights>1</NoOfNights> ...
0
votes
1answer
49 views

How to set the ItemSource of an ListView Control with XPath

This question is a bit tricky because the whole code is auto generated via XSLT. This means I have to face a few limitations (no CodeBehind etc.) I successfully generated a XAML File containing a ...
0
votes
2answers
46 views

Putting Value In A Variable And Using It In XSLT

<xsl:choose> <xsl:when test="type='LEVEL'"> <xsl:variable name="myVar" select = "value"/> <xsl:variable name="spaces" select = ...
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> ...
1
vote
1answer
44 views

How to escape the @ character in XSLT

$binding-path contains something like Contact!ShowsInterest which should be converted to Contact/@ShowsInterest This is what i tried so far: <xsl:variable name="bindpath" ...
0
votes
1answer
14 views

Constructing a String From a Variable

I have a variable in XSLT which contains numbers (like: 1 or 2 or 5 or 7). I need to construct a string to be displayed in HTML such that the the string is the number of space bars that is in the ...

1 2 3 4 5 25