Use this tag for questions specific to XSL Transformations version 1.0
0
votes
1answer
16 views
When previewing XML in browser, I only want to see certain items using XSL
I want XSL to output only the first PRODUCT_IMAGE_FILE node from the first ITEM node in each PRODUCT/PRODUCT_IMAGES node into a simple list that you'd find in notepad. I've been trying to get this to ...
2
votes
1answer
19 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 ...
0
votes
1answer
12 views
Why is this XSLT max simulated function not working
I am not much into xslt, so I am following some well known pattern for simulate max function for xslt 1.0.
EDIT:
I know the thread subject may be confusing, I am not trying to build a function, but ...
0
votes
0answers
8 views
xslt to transpose from xml to text
I have this xml and I would like to transform it using an xslt file into the text below. It is a sort of transposition. In short I would like the B100 element repeated for each of the element ...
2
votes
2answers
36 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
2answers
29 views
How to make XSLT xsl:if work
I am trying to make this (xml 1.0) code work . I am new to this and already exhausted myself in
trying different ways. Does someone know my mistake?
<xsl:for-each select="News/Sport">
...
0
votes
1answer
24 views
alttemplate shows the default template id instead of redirected template
I have a default desktop template Home. Using alttemplate I am redirecting the user to mobileHome template when the user request from mobile. Now when I use
<xsl:value-of ...
2
votes
1answer
25 views
How to organize(group) nodes under a closed element - XSLT
I have tried simple grouping XML with XSLT 1.0 and it worked, but here I have something more complicated and actually different situation.
So the XML structure is basically this:
<Main>
...
0
votes
1answer
29 views
Wrong XSLT code?
This is the XML
<?xml version="1.0" encoding="utf-8"?>
<Groups>
<GroupData ID="xxx" Key="4" Temp="yyy">
<ItemData ID="zzz" Value="3"/>
</GroupData>
...
0
votes
2answers
26 views
New XML creation using XSLT
I have an input XML message that I am trying to tranform into a different XML altogether with the values taken from the input. Can you please look into it and guide me with a sample XSLT?
Input XML:
...
0
votes
0answers
41 views
xsl : Incrementing a global variable
I know the fact that variables in XSL are immutable. But in my scenario, I want to increment a global variable and use the value later. Is there any other way by which this can be done? I have added ...
2
votes
1answer
21 views
XSLT1.0 maintaining count of child node for generating Id
I want to count the no. of child nodes for a particular repeating Parent node.
I need this count to maintain id for a particular element after transformation.
Following is the format of request.xml ...
0
votes
1answer
17 views
Elaboration on XSL code
I have to group(merge) children of same nodes in my XML document.
I have found a similar topic where I got some sample code, but my XML is more complicated and twisted and I would need to truly ...
1
vote
1answer
17 views
Selecting specific named elements from XML using XSLT
I got an XML like this on va variable prdxml
<category numberofproducts="0">
<id>catering</id>
<url>/products/kantine</url>
<name>Kantine</name>
...
0
votes
1answer
32 views
XSLT storing or saving values and use them in another for loop
I have the situation where i need to store some values inside the first for loop and use that stored values in second for loop.
For storing values i have used but this variable is local to for loop. ...
0
votes
1answer
26 views
How to output this XML as a ranking?
I have this XML:
<bookings>
<booking>
<event>Christmas Party</event>
<source>Internet</source>
</booking>
<booking>
...
-1
votes
2answers
70 views
XML to CSV using XSLT
XML IS
<projects>
<project>
<name ID="A" StartDate='2012-01-01' EndDate='2012-01-30'>Shockwave</name>
<language>Ruby</language>
<Manager ...
0
votes
1answer
35 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">
...
1
vote
2answers
30 views
How to improve my Muenchian grouping XSLT?
Thanks to the help of Niraj and
hr_117 I was able to arrive at an XSL template that turns this XML...
<bookings>
<entry>
<event>Christmas</event>
...
0
votes
0answers
18 views
how to use BW mapper to replace the values in one XML by another xml?
I have following xml:
usa11.xml:
<?xml version="1.0" encoding="UTF-8"?>
<country xmlns="http://www.tibco.com/xmlns/ApplicationManagement" >
<state name="CA">
<city>
...
0
votes
1answer
22 views
Make XSL refer to external text file?
I'm trying to reuse a text file in multiple XSL files, but am unsure what tag to use to reference the file's contents.
In other words, I want to copy the text out of a file, and dump it in a certain ...
0
votes
2answers
46 views
Group the Coordinates under each Mappoint
I'm trying to use XSLT to process data by grouping it.
Sample XML
<DELIVERYLEG>
<DELIVERYINSTRUCTION>
...
2
votes
2answers
41 views
xslt compare two different nodes and then combine
I have a requirement where i need to show the difference amount (<TotalAmount>) based on two different values which is in different section.The input xml as below.
<TXLife ...
0
votes
2answers
35 views
XSL back button
I'm not an expert in this area. I did some searching but didn't find exactly what I'm looking for. Hopefully it's fairly simple.
I'm working on a software control system that has a built-in web ...
0
votes
2answers
20 views
Flatten nodes that have repeated child node using XSLT
I have a document of following structure (this is just an example to help me verbalize the problem), that I'm trying to flatten. By flattening I mean copying all the <Report_Entry> nodes with ...
1
vote
2answers
38 views
How to load > & lt in to another xml using xslt2.0?
Input XML
<note>
<from>Example</from>
<heading>Reminder</heading>
<body>XSLT conversion</body>
...
1
vote
1answer
23 views
xslt summing up by group of elements
I have a requirement to add an extra section under TXLifeRequest for summed up payment amount from the below xml.
<?xml version="1.0" encoding="utf-8"?>
<TXLife ...
0
votes
1answer
23 views
xsl:for-each not working
I got an XSL variable named filt and it holds data like this
<filters>
<ritem relateditemnumber="8901037" />
<ritem relateditemnumber="8901038" />
<ritem ...
1
vote
1answer
29 views
How to count entries in XSLT?
I am quite new to XSLT and I would like to generate a count of participants for a list of events. This is my XML:
<events>
<event name="christmas"/>
<event ...
0
votes
0answers
8 views
XSLT: value-of syntax to access a child element which may be present under different parent
Hi I want to access the unit value here. Either fixed rate will be present or Floating rate will be present in my input. The input is random.
Is there a way to get the unit direclty using
...
0
votes
1answer
22 views
How to group neighbour-siblings
i have something like this:
<root>
<a>foo</a>
<b>bar</b>
<groupme>foobar</groupme>
<groupme>baz</groupme>
...
1
vote
1answer
35 views
Confused: How to select XML content via ID in XSL
My aim is to use my xml (version 1.0) and xsl (version 1.0) files to create html pages.
This is the code in my XML file:
<Photo>
<Text id="one">This is the first Photo</Text>
...
0
votes
0answers
11 views
XSLT to replace value in first XML tag with the existing first three and a suffix
<?xml version="1.0"?>
<OCUSMA>
<OKCONO>100</OKCONO>
<OKDIVI/>
<OKSTAT>20</OKSTAT>
<OKCUNO>101092</OKCUNO>
...
0
votes
1answer
22 views
How to make on xml field an attribute of another field?
I have the following xml file:
<generic_etd>
<dc.contributor>NSERC</dc.contributor>
<dc.creator>gradstudent</dc.creator>
<dc.contributor>John ...
0
votes
0answers
7 views
xslt how to use function in preceding-sibling
I have a xml snippet like this
<AA>
<BB>
<CC><DD>101^1011</DD></CC>
<CC><DD>101^1012</DD></CC>
</BB>
<BB>
...
1
vote
2answers
39 views
XSLT: Concat series of ranges, if they are contiguous
I have a series of integer ranges:
<ranges>
<range>
<start>1</start>
<end>10</end>
</range>
<range>
...
0
votes
1answer
22 views
Read attributes of element and replace part of string in the attribute based on some criteria
I have a problem in creating the xsl transformation for below case:
<text>
<data>
<Object class="CENTRE" Name="Country-1/CENTRE-1/RTY-1" version="1">
<p ...
0
votes
1answer
29 views
How to load base64 encoded text into an XML document using XSLT?
How can I load base64 encoded text into an XML document using XSLT?
For instance, if I had the following two documents
input file 1:
YTM0NZomIzI2OTsmIzM0NTueYQ==
input file 2:
<xml>
...
0
votes
1answer
17 views
How to nest elements with different tags in xslt
I am rather new when it comes to doing xslt transforms. I am trying to convert the following xml code (using xslt 1.0):
<generic_etd>
<dc.contributor>NSERC</dc.contributor>
...
4
votes
2answers
87 views
XSLT: create parent-child elements based on attribute-values and suppress duplicate elements in output
Being a newbie at XSLT, I'm trying to transform - using XSLT 1.0 - the following XML which describes objects:
<Data>
<Object>
<Property Name="Id" Value="001"/>
...
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 ...
0
votes
3answers
43 views
Prefix a value to an attribute using XSLT
I have a variable(ImgData) which as the value <p><image id="image1" name="firstimage" /></p>
How can change the value of ImgData to <p><image id="m-image1" ...
-1
votes
0answers
37 views
CSS to XML conversion [closed]
I have seen that so many users are asking about to convert CSS into XML. And I think this is the matter of string manipulation. I also tried some stuffs with XSLT to convert CSS to XML. Have a look ...
1
vote
1answer
29 views
Two microalias in single umbraco.library:RenderMacroContent method
For the desktop site I have a content in Umbraco where <p><?UMBRACO_MACRO macroAlias="StoryDesc" /></p> refers to XSLTName field
I am making a call from one XSLT to StroyDesc XSLT ...
0
votes
1answer
18 views
How to get the properties from processing-instructing() and store in Global variable in XSLT
I have more than one processing-instructions in xml, but have to get specific PI(i.e xpp:PageOption) and stored in Global variable.how can i achieve this. Please help me
Please find the below sample ...
1
vote
1answer
20 views
XSLT Matching 2 Elements to get another
I'm relatively new to XSLT but want to perform what I thought was a relatively simple match between elements to get another.
Here is a snippet from the XML. Version = 1.0 and output is text ...
1
vote
1answer
39 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
0answers
9 views
XSLT 1.0 - remove tags without specifying XPATH
I have an XSLT. It removes parent tag based on the value inside child tag.
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output ...
0
votes
1answer
51 views
XSLT for XML to XML quandary
I have been assigned a new project to use an XSLT stylesheet to convert one XML document into another XML format.
I have spent the last four hours trawling through the archives on StackOverflow and ...
1
vote
1answer
24 views
exclude match based on node list
First question on here so bear with me...
I'm confined to XSLT 1.0 via our CMS :-/
Trying to create a SiteMap parsing XML with XSL. But, I need to exclude several directories from being displayed ...
