Use this tag for questions specific to XSL Transformations version 1.0

learn more… | top users | synonyms

1
vote
0answers
42 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 ...
1
vote
0answers
27 views

Do XML processors apply <?xml-stylesheet PIs by default?

I just wrote an XSL-T file that converts some WSDL files into HTML documentation. Now I'm wondering whether I could use an processing-instruction like the following directly in the WSDL files: ...
1
vote
0answers
88 views

muenchian grouping in ContentQueryMain.xsl

I'm Newbie in Sharepoint 2010 ,and I had to deal with ContentQueryMain.xsl which I hardly understand what going on there and what part goes where . I need to group result by Category , then sort them ...
1
vote
0answers
96 views

xslt: how to parametrize grouping? (and sort) - RESOLVED

I have the code to group by a given attribute. It works fine when I'm giving the exact attribute name. However I'd like to parametrize to set up the attribute name by which grouping will be, using ...
1
vote
0answers
105 views

How to copy one xml data into another after last occurrence of a specific element using xslt

I am having two xml files. I want to copy one xml file data into another file under last occurrence of element. Below are the xml I am having : ---------- xml-1--------------- <?xml ...
1
vote
0answers
45 views

Need unique columns in Excel sheet generated by xslt

I am using following XSL to transform an XML: <xsl:for-each select="rule"> <xsl:for-each select="tooling/tools/tool"> <Cell ss:StyleID="style_8_DarkBlueHeading"> ...
1
vote
0answers
153 views

add new row conditionally xslt

I have the following XML: <table class="DETAILGROUP" UID="2001"> <row class="FIGURE"> <cell class="FIGURE">figure</cell> </row> <row ...
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 ...
0
votes
0answers
42 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 ...
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
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
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
0answers
8 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> ...
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
0answers
30 views

How to implement a JavaScript function call as a condition in xsl 1.0?

How to implement a JavaScript function call as a condition in in xsl 1.0? I need to call function in the test condition of xsl:if and compare it to a value. How to do this? <xsl if test = ...
0
votes
0answers
26 views

XSLT Template is never called even so the match exists

I want to know why the template match="*" mode="Value_Or_Null_with_comma" is not called and executed? The following includes my XSL code: <?xml version="1.0" encoding="utf-8"?> ...
0
votes
0answers
30 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
0answers
17 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
0answers
38 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" ...
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
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 ...
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
0answers
41 views

How to remove xmlns:php from output in a XSL produced by `registerPHPFunctions`?

Using updtodated PHP5 and libXML. See registerphpfunctions. I try many things... Including saveXML(null,LIBXML_NSCLEAN). Perhaps related to How to say to XSLT not output redundant ...
0
votes
0answers
48 views

xsl code for xml

I am new to xml and xsl and looking for help to get the following output. I am using following xml and want to convert this to html using xsl. <?xml version="1.0" encoding="UTF-8" standalone="yes" ...
0
votes
0answers
60 views

Transforming XML to CSV using XSLT 1.0

I have a special case of transforming a XML document to a CSV document. In my XML I have the following structure: <Pictures> <Picture> <File>picture1.jpg</File> ...
0
votes
0answers
41 views

XSLT - Use substring-before in element name

I'm an absolute beginner and any help is greatly appreciated. I'm trying to transform XML to XML. Here's an example of a starting XML document: <document> <p>Name: John Smith</p> ...
0
votes
0answers
9 views

Removing text and tags that exist between two other tags with xslt

I want to get rid of everything that comes between the two <hr> tags <hr size="2"/> <p><href="????"> <p> <p> <hr size="2"/> The tags are always in the same ...
0
votes
0answers
34 views

.xsl and .xhtml in JSF2.0 Session issue

I m working on application where i call webservices in xml format using JSF2.0 . Like hotel search , when i hit hotel by city, i parsed it in List and bind it to drop down. When i call that one hotel ...
0
votes
0answers
12 views

run shell script from xsl with few parameters

I am working on some automation where I need to run my shell script prep_mks.sh with two arguments .Can someone help me to provide the syntax to run the shell with parameters in xsl.
0
votes
0answers
62 views

XSLT insert element between copied section

I am pretty new to xslt. I am using xslt 1.0. I have an xml document that has a undetermined structure and varies with each section : <section label=""> <subsection label=""> <para ...
0
votes
0answers
18 views

sending xml as a parameter to XSLT file while XSLT processing

I need to send 'xml' file as a parameter to XSLT file for XSLT transformation process.(am using XALAN XSLT processing) I need to use' transformer.setParameter(xmlfile,xmlfilevalue)'. Can anyone help ...
0
votes
0answers
42 views

XSLT-1.0: remove element only if it is empty

need help! just starting with xslt and have no idea how to do that transformation in my case thanx beforehand source XML <?xml version="1.0" encoding="UTF-8"?> <body ...
0
votes
0answers
28 views

XSLT - XML Transformation

I am a newbie to XSLT and i would like to transform the request XML as follows Original XML is given below and need to be tranformed as shown. The request is an input for a SOAP webservice /Request ...
0
votes
0answers
36 views

How to split values of an xml attribute?

I have a tag in xml like <Radio values="Husband~Husband|Wife~Wife|Son~Son|Daughter~Daughter|Father~Father|Mother~Mother"></Radio> Now I have to split the attribute into Husband, Wife, ...
0
votes
0answers
23 views

Disable Validation in Build

My build.xml has some xsl which i dont want to validate. In eclipse, i use this strategy to do the same: ...
0
votes
0answers
18 views

how to show some value if the value is not equal to zero in xslt

the following is my combo box construed using xslt 1.0, <xsl:choose> <xsl:when test="string-length( //Record/CIMtrek_CI_OPEX_200910_FrDiv /text()) ...
0
votes
0answers
40 views

How to convert ticks into a readable datetime with Firefox or Chrome XSLT?

This is vary much like the other question with the similar name, however instead limit answers to XSLT1.0. I'm also removing the attribute, make this easy. Plus this timestamp is 3 digits shorter. ...
0
votes
0answers
65 views

XSLT 1.0 How to use xsl:key with document() function

I'm trying to use xsl:key to lookup items in an external XML document, using the XSL document() function. I am able to get the xsl:key part to work if, instead of using document(), I just merge the ...
0
votes
0answers
16 views

How I can apply the filters at different levels in XSLT?

<file xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="3.6" xsi:noNamespaceSchemaLocation="http://mislndcprodtomcatcluster.gslb.db.com/mis-xsd-schema-3.19.2.1.xsd"> ...
0
votes
0answers
25 views

XSL for alternate row bgcolor for every 3 rows

I need to create HTML file with a Table from XML file. Table has 6 rows (Row 1 rowspan is 3, Row 4 rowspan is 3). How to write XSL to display first 3 rows bgcolor as gray & next 3 rows bgcolor ...
0
votes
0answers
4 views

I want to change the a element name and insert two element of a given xml in xslt

I have a xml as below <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> <soapenv:Body> <rows xmlns="http://ws.wso2.org/dataservice"> ...
0
votes
0answers
21 views

How to precompile JSTL files

Please help me to find the way to pre-compile the xslt files using java.
0
votes
0answers
53 views

Invalid conversion from SimpleResultTreeImpl to node-set

I keep getting this error "Translet errors:Invalid conversion from 'com.sun.org.apache.xalan.internal.xsltc.dom.SimpleResultTreeImpl' to 'node-set'." I know the problem is when I pass a number as a ...
0
votes
0answers
43 views

Java script in xslt

In xslt,i have to assign some values to particular element and it should get print using java script. eg123 is my input element data and I want out put in such a way that the element should ...
0
votes
0answers
40 views

XSLT repeate line

I have a bit of a problem with a realy old system I need to get some data into. I got this XML from a new system that the salse deparment want to use. <root> <items> ...
0
votes
0answers
50 views

Return a vriable from java script to xslt

In Xslt how to use a java script where i want to define a function which will assign an element value to variable.After performing the tasks i have to return that particular variable to xslt and make ...
0
votes
0answers
104 views

How to access a hashmap in XSLT

I have some java code which returns me a map, and I want to access this in XSLT. I just saved the result in some variable called $map. Tried accessing the value as key($map,'key1') with no luck. ...
0
votes
0answers
32 views

passing a DOMDocument* to XSLT document() function

I am using xslt with the document() function. I have code similar to my earlier post Merging two xml files using xslt after reading a third xml file But now I am in a situation where the propNode.xml ...
0
votes
0answers
54 views

adding multiple namespaces dynamically using xsl

I have a xml file as below <Repository:repository xmlns:Repository="http://www.tibco.com/xmlns/repo/types/2002" xmlns:AESDK="http://www.tibco.com/xmlns/aemeta/adapter/2002" ...
0
votes
0answers
69 views

Unexpected nesting of p and ul tags

I currently run into a problem handling this xml <detaileddescription> <para> ParamText1 <itemizedlist> <listitem> ...

1 2 3 4 5