XSLT is a transformation language for XML designed to transform structured documents into other formats (such as XML, HTML, and plain text). Questions should use the xslt-1.0, xslt-2.0, or xslt-3.0 tag as appropriate.
0
votes
1answer
4 views
pros and cons of saving XSL to file vs. db
If I had a dynamically generated XSL document and needed to persist it, would there be any pros or cons to writing it to a file or saving it in a DB? Feels like a coin toss at the moment (although db ...
0
votes
1answer
4 views
XSL node selection by attribute value
I am having some problem with the following xsl command:
<xsl:value-of select="./a/b/c[@code='$codeVal']" />
codeVal is a variable which holds the value of another attribute from some other ...
0
votes
1answer
6 views
XSLFO overlay image
I'm using ApacheFOP to create a pdf which has multiple pages of content and a watermark (semi-transparent) on every page. I'm struggling quite a bit with XSLFO and got a proof of concept working using ...
1
vote
0answers
16 views
Change flat XML structure
My client always send me a flat XML file as shown below:
<Root>
<ROW>
<KIND>A</KIND>
<DATA>Produc 1</DATA>
<DATA>Details</DATA>
...
0
votes
2answers
19 views
XSLT issue with default namespace in XML
This is hairdressing stuff! :)
What will it take to get those two node values out from the following XML doc?
<?xml version="1.0" encoding="utf-8"?>
<AlarmSummaryMessage
...
0
votes
0answers
7 views
getMedia returns empty string in umbraco
i am making a website in umbraco. In this i am rendering image using umbraco.library.getMedia method. Here i am facing a very strange behaviour of umbraco. Sometimes images get rendered and some times ...
0
votes
2answers
16 views
Include Inline Javascript with Curl Brackets {} in XSL
I am attempting to transform XML to HTML via an XSL file. Unfortunately, it does not allow me to use the Javascript Curl Brackets {}. The following is a trivial example, but my actual code is much ...
0
votes
1answer
27 views
Parsing XML through XSLT Transforms
I have some XML in this format
<items>
<item>
<float>0.75</float>
<string>NAME</string>
<string>Bob</string>
...
0
votes
0answers
7 views
Binding XSLT from Enity Framework
I am new to this or may be i am dumb .Please give me some way to achieve this .I have a table place holder to which output from a service need to bind to XSLT.
The return from a service is as a ...
0
votes
3answers
19 views
XSLT - Iterating through inconsistent structures
If we have the following XML structure:
<Tree>
<Apple>
<Size>6</Size>
</Apple>
<Apple>
<Size>4</Size>
</Apple>
<Apple>
...
0
votes
0answers
4 views
SharePoint Designer XSLT - Different values for Drop-down list
I am trying to host a SharePoint list as an aspx page.
Requirement is to create multiple rows for insertion. There are two drop-down field in the list.
Issue:
1. For the first row insert, the drop ...
0
votes
0answers
7 views
Is it possible to get a running total to display in XSLT/XSL FO?
I am trying to format a report and I have tables that will span multiple pages with various items/fees, and what i would like to do ideally is to display a running total for each page in the table ...
0
votes
0answers
11 views
Transform an element with attributes to element names in a 2 level structure?
I have an XML Structure that is output by Microsoft Reporting Services the structure has Attributes that I need to transform into elements.
Here is an example of the XML to Transform
<Report>
...
0
votes
1answer
12 views
XSLT transformation from any XML to a list of name-value xml elements
I'm trying to transform an XML document (actually, I need to transform ANY xml) into a list of elements that store the value as element value and the name of the original node as an attribute called ...
1
vote
1answer
22 views
best practice for efficient xpath selectors
Are there some general tips or best practices on how to create more efficient xpath selectors in xslt?
For example, say you have a DocBook XML document that only contains first-level sections, like ...
0
votes
1answer
16 views
how to delimit double quotes in xslt
The following produces an xslt compilation error:
<asp:hiddenfield runat="server" value="<xsl:value-of select="string[position()=2]"/>" id="<xsl:value-of ...
0
votes
0answers
20 views
position in xslt variable
let's say I have variable that contains list of distinct file URLS:
<xsl:variable name="allDocuments" select="distinct-values(module/method/seqpnt/@document)" />
When I iterate over these ...
0
votes
1answer
13 views
XSLT creating Table
I have xml table with unknown rows count, looks like this :
<table frame="all" pgwide="1" tabstyle="tab2" tocentry="%yes;">
<tgroup align="left" char="" charoff="50" cols="3" ...
0
votes
0answers
19 views
XSLT or JavaScript - Remove duplications
I'm producing a list of radio buttons that's looking at a list of items containing individual countries and associated regions. Below is the XSL for my radio buttons
<xsl:template match="/">
...
0
votes
0answers
14 views
Randomly get nodes from XML using XSL
I am making a website using a CMS, in the home page I need to get some Pictures and discriptions randomly,, I need each time i refresh the page to get new nodes.
This is how I am calling the nodes in ...
0
votes
1answer
13 views
Output xml escape characters and text using XSL
I have an XML similar to this
<audit>
<contextData>
<name>Auditing</name>
<values>String</values>
</contextData>
...
0
votes
1answer
17 views
Get the xml value in reverse order
I have a xml getting from SqlTable like this.
<root>
<item>
<Column1>
<TT TXT1="Item3" />
<TT TXT1="Item2" />
<TT TXT1="Item1" />
...
-1
votes
0answers
10 views
How to show, contenttype, modified date and modified by in a content query webpart with a custom xsl? [closed]
I checked the default Item.xsl provisioned by sharepoint, and I created a new xsl file based on this one.
The one that I want to start from is the one with the docIcon, it render the icon of the file ...
0
votes
0answers
20 views
Unable to validate Inner element value in XSLT
I am unable to validate test="$ABCD_STATUS='CONFIRMED'" , it always calling otherwise block.
Anyone can find issue in this code or need any modification ?
Below is my XSL declaration.
...
1
vote
1answer
33 views
Getting the parent node if there is no child node in XSLT
Below is the input xml which i have
<InputAnimationConfigurationSchema>
<ConfigurationEffects>
<AEffect Id="1" DisplayName="A Effect">
</WipeEffect>
<BEffect Id="2" ...
0
votes
3answers
26 views
XPath to get sibling node's value
I'm using a testing tool that generates XML like this
<detail>
<results>
<component>A</component>
<test>
...
0
votes
1answer
14 views
XSLT Generate Dynamic Columns for Apache FOP
I have a little problem.
I need to make a dynamic table with 3 columns zones
Is better with an example:
I don't know if you are gonna understand this, but the "----" is only to format the table in ...
0
votes
0answers
22 views
Loading an XSL Transform file in Classic ASP
Folks....I'm trying to load an XSL transform file to sort my XML file using classic ASP. The rest of the page is processing the XML file just fine, but for reasons I can not determine it seems to ...
-1
votes
1answer
23 views
Generate a sequential line no. or counter in XSLT 2.0
My sample input XML is something like below. I need to generate a llNo element sequentially while grouping up the elements based on the code element value?
<voucher>
<ID>1234</ID>
...
0
votes
0answers
9 views
Append to URL in pagination in SP2013
I built a DVWP in SP2007 and set the paging size. SP Designer automatically added the code for the pagination. What I want to do is when the user clicks on the next arrow I want to append #2 to the ...
2
votes
2answers
29 views
XML to XML using a XSL transform to Sort
Folks...I'm trying to learn XLM and XLM Transforms. I'm using the following XML, weather sensor structure. The immediate goal is to sort this structure, first by sensor location and then by reading ...
0
votes
1answer
29 views
How to showing namespaces inside xml with xsl?
This is my new (edited) more complete scenario:
I got a xml, that will transform with xsl. I got an example from the customer, that looks like:
XML that is infile:
<?xml version="1.0" ...
0
votes
2answers
22 views
How to read XML content between comments using XSLT?
I need help in fetching the XML content between comments using XSLT.
XML:
<?xml version="1.0" encoding="ISO-8859-1"?>
<bookstore>
<book>
<title lang="eng">Harry ...
-1
votes
1answer
26 views
Output value based on attribute
Is there any way to output a value based on an attribute?
I'm very new to XSLT, so please bear with me if it is obvious :)
I have an XML looking like this:
<Columns>
<Column ...
0
votes
0answers
10 views
PCC-S-02015 unable to open include file <stl/_config.h> (XALAN library)
I am trying to compile a C++ application on SUN server using the compiler Sun C++ 5.9 SunOS_sparc Patch 124863-01.While compiling the CC compiler though the below errors:
(I am using the compilation ...
0
votes
2answers
35 views
How to display external XML in an HTML file
I have an XML file styled with external XSL file, but when I specify the path to it in HTML body tag, it doesn't display the data, just a blank page. Is there something else that needs to be done?
...
1
vote
1answer
20 views
xsl:sort doesn't work in JDK 1.6 / Default xalan 2.7.0
For some reason very simple xsl:sort doesn't work for me. (apologies if i am making silly mistake)
I am hitting this weird voodoo magic behavior in JDK 1.6 (checked my xalan version to be 2.7.0). ...
1
vote
2answers
53 views
XML to HTML transformation
Following is the original XML file that i need to transform.As output I need to show available animations effects per widget per trigger.Like for widet type all and trigger type show all the effect i ...
0
votes
1answer
9 views
How to store the value of apply-template in a variable?
Hi I'm using xsltproc to parse *.xsl file,
I have to store the value of
<xsl:apply-templates select="Property[@key='Direction']"/>
in to a variable,
I tried
<xsl:variable name="mName" ...
0
votes
1answer
16 views
XSLT increment recursion template
Please help me solve increment issue.
Is there a way to make an increment numbering list without using position(), number() or xpath expressions?
Here is the sample xml document that I want to ...
0
votes
1answer
16 views
How to populate xsi type value as a parameter?
Below is my original XSL template.
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:n="http://schemas.xmlsoap.org/soap/envelope/"
...
1
vote
1answer
20 views
XSL not copying all templates on each record
I'm a newbie to XSL and I am writing a Unix script so I hope you can help me out. My issue:
I have an XML which I need to parse to TXT, I'm using xsltproc to parse it But in an XML containing only 1 ...
0
votes
1answer
18 views
how can I get value and compare value in this situation?
Here is my XML file
<?xml version='1.0' encoding='utf-8' ?>
<RESULTS>
<ROW>
<COLUMN NAME="DN"><![CDATA[PLMN-PLMN/RNC-14/WBTS-1/LCG-1]]></COLUMN>
...
1
vote
1answer
25 views
XSLT: Variables and Parameters not passing
I have an xslt file that just will not pass parameters and I can't figure out why.
I have done this before but not sure what I am missing.
I tried setting a global variable, but that doesn't seem to ...
0
votes
1answer
13 views
Should the namespace defined in the XML be declared in the XSLT as well for the transformation to be successful?
I have an XSL which matches all attributes from the input XML and copies them as it is into the output XML. I use the name() function to get the name of the matched attribute.
When the XSL encounters ...
0
votes
3answers
43 views
“Swap italics algorithm” for pure XSLT, do you know one?
Working with XHTML and XML tools, sometimes we need to invert the italics <i> blocks. Example:
<!-- original text: -->
<p id="p1"><i>Several more</i> Homo sapiens ...
1
vote
0answers
26 views
compare two xml with xslt and print the difference
i have two xml files as given below file1.xml and file2.xml
file1.xml:
<?xml version="1.0" encoding="ISO-8859-1"?>
<?xml-stylesheet type="text/xsl" href="test.xsl"?>
...
1
vote
0answers
31 views
Converting Table with colspan to DataTables
My ultimate goal is to transform HTML table with colspan to Dita docbook format table with XSLT stylesheet.
For those who are not familiar with DITA table, it uses namest and nameend attributes to ...
0
votes
1answer
28 views
Execute javascript function from hidden field
I'm using XSLT to create a javascript function using the XML data from the member. I would like to be able to execute this function from a <script> element in the template, if it's possible.
...
0
votes
1answer
22 views
XSL transformation give me wrong encoding
I got a xsl-file that transform a xml-file to another one, with different xml-format. The xsl-file starts with:
?xml version="1.0" encoding="UTF-8"?> <xsl:stylesheet version="1.0"
...
