Tagged Questions
0
votes
0answers
27 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 ...
1
vote
1answer
16 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
14 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 ...
0
votes
0answers
24 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
24 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
46 views
XML to CSV using XSLT
I am new to XML and XSLT. I have the XML similar to this
{
<projects >
<project ID="1">
<name>Shockwave</name>
<language>Ruby</language>
...
0
votes
1answer
27 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
2answers
26 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
1answer
21 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
45 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
40 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
33 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 ...
1
vote
2answers
37 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
27 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
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
31 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>
...
1
vote
2answers
35 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
21 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
25 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>
...
4
votes
2answers
78 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
42 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
40 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
34 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
26 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
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 ...
0
votes
1answer
42 views
Passing XML from XSLT to C# function
I got an XSLT variable resultxml which holds a complete xml. Now I want to save this XML in to a xml File.
I had written some code like this
In XSLT
<xsl:value-of ...
0
votes
1answer
26 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
31 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
0answers
27 views
xsl-fo white-space-treatment=“preserve” when justifying text
I am using XSLT 1.0 to transform some XML into XSL-FO. I need to preserve all spaces, but I also need to justify the text. I'm finding that my text doesn't appear properly justified unless I set ...
0
votes
2answers
39 views
XSLT inject a child <span> into <a> text?
UPDATE
I have amended my XSL to be:
<stylesheet xmlns="http://www.w3.org/1999/XSL/Transform" version="1.0" xmlns:h="http://www.w3.org/1999/xhtml">
<output omit-xml-declaration="yes" ...
0
votes
0answers
16 views
Can I use xsl keys in global parameters?
I want to use XSLT key() in a global parameter, but so far it returns an empty result. My stylesheet is basicly as follows:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet ...
0
votes
3answers
63 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 ...
1
vote
0answers
41 views
Compositing xsl stylesheets
Looking for a little guidance, here. I'm looking to composite an xsl pipeline into a single stylesheet.
Let me offer a little background. It is possible to take an xml file, and pass it through a ...
0
votes
1answer
47 views
javascript in xsl for generating Google Maps from xml files
I'm using XSLT to transform XML files into HTML.
The XML files have information about spatial coordinates, so I want to use them to generate a Map using the Google Maps API.
In order to do this, I ...
0
votes
2answers
25 views
XSLT group-by throws an error
The xml is as below:
<Words num="1">
<Word>
<search>Apple</search>
<replace>Fruit</replace>
</Word>
<Word num="2">
...
0
votes
3answers
50 views
How to print < and > symbols which are part of text..?
I just can't figure out a way to output string something like :
<xml version="1.0" encoding="UTF-8">
this is what i tried:
<xsl:variable name="lessThan" select="<"/>
...
0
votes
2answers
35 views
Sort groups by arregate element property in xslt
I'm transforming some xml using xslt (version 1.0, using MSXSL).
Say my xml data looks like this:
<table>
...
1
vote
1answer
28 views
How to transform xml to requested one
I have an xml which I must transform it to another structure of xml. I tried many ways but no success. I need to use xslt 1.0. I asked a question but the format is changed after I asked.
input:
...
0
votes
2answers
45 views
How to display current time in logs using XSLT2.0
How to display current time/date in Logs using XSLT-2.0 .
please help me
1
vote
1answer
23 views
How to replace seome elements with a new element within a transformation
I will like to modify an XML document according to a logic per XML Copy transformation:
Input XML
<Request>
<Parameters>
<Parameter ID="SpecialDiscountPercent" ...
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>
...
1
vote
2answers
76 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
votes
1answer
65 views
Search node/text() from (Result Tree Fragment)
my templates (XSLT 1.0)
<xsl:template name="doo">
<xsl:variable name="nodelist">
<root>
<a size="12" number="11">
...


