Tagged Questions
0
votes
1answer
14 views
Xslt selecting remaining tokens in tokenized array
In my Xsl document I need to create a link with text containing line break, creating two sentences.
I'm using tokenize to add words by splitting on the whitespace character.
<xsl:variable ...
0
votes
1answer
21 views
who to use for cycle inside xls
I have a very long String, that I want to display with xslt.
The xslt code fragment is this:
<xsl:template match="report:rmessagewithbutton">
<h2>Running and terminated ...
0
votes
2answers
26 views
How do I correctly set ids using XSLT?
I have this Following XSLT snippet:
<table border="1" id ="test">
<xsl:for-each select= "TestSuite/TestCase">
<tr>
<xsl:attribute ...
0
votes
0answers
24 views
Get XML childnodes for menu via XSLT [closed]
I have the following XML:
<?xml version="1.0" encoding="UTF-8"?>
<NavigationTree>
<Page ID="18" AreaID="1" MenuText="Parent 1" Href="Default.aspx?ID=18" Allowclick="True" ...
0
votes
2answers
34 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
Automatically scroll to Element in HTML
I have a XML containing loads of Test data. I use XSLT to present this data in HTML in a Browser. Each Test has a table containing the Teststeps. Every time a test is run the table updates the data in ...
0
votes
1answer
15 views
How do I store HTML/XHTML in an XML file and then use XSLT to retrieve it?
I have an xml file containing the documentation from a project of mine. I'm using XSLT to transform this XML file into HTML to output it in a browser.
Now the thing is that I have some entities that ...
1
vote
2answers
47 views
Conditionally Display 1 of 2 char.s based on xsl:value-of
I have a value coming from SharePoint as <xsl:value-of select="@fldNm" />
This will have 1 of 2 possible values: an empty string, or 'yes.' This is within <xsl:template ...
1
vote
3answers
29 views
Extract HTML elements with XSLT
I would like to extract everything between the <head> tag elements in an html page. Including link tags and script tags.
Assume the source code below is a snippet which would be part of a full ...
0
votes
0answers
35 views
Client-side templating: JavaScript engine (like Handlebars, Dust…) or XSLT
After some considerations and investigation about client-side HTML templating today, I've found that, while client-side JavaScript templating (like Handlebars, Dust and others) are a powerful choice, ...
0
votes
1answer
48 views
XSLT Position()
I have the following XML data, and process HTML using XSLT processor.
<?xml version="1.0" encoding="utf-16"?>
<ScorecardSummary>
<DivisionSummary>
<DivisionName>
...
-1
votes
1answer
24 views
make xml file using xslt and html
I have HTML page that I created using xslt and an xml file. now In this html file, there is the option to change some values, so after these changes I want to generate xml content with these changes. ...
1
vote
2answers
30 views
xslt nested emphasis tags conversion
I am having an issue with some of my files, could use help solving it. I am converting from html to xml. sometimes I have a <b> or <u> or <i> tag on their own and I use
...
0
votes
1answer
26 views
Convert XML item to hyperlink using XSL
Here is the XML that is bein processed
<?xml version="1.0" encoding="UTF-8"?>
<javancss>
<sourceFile name="D:\EM_Projects\javancssParser\src\old_code_complexity.xml"/>
...
0
votes
1answer
25 views
How to render XSL based on conditional statement
I need help with syntax
From a CMS I'm getting some title information (Music, TV, Comedy) Now I need to run a check in xsl to see which one comes up and then render the appropriate content (in my ...
-2
votes
1answer
54 views
Allow html styling of text from XML element.
I have been using abit of xslt to style my xml into something readable. However there is one thing I have not been able to figure out.
I was woundering how you can apply stylying to the text inside ...
0
votes
2answers
64 views
access html div within xml, using xsl for transformation
I have the following XML:
<item>
<title>Testing WebForm</title>
<link>http://linkurlhere.com</link>
<description>
<div class="field field-name-body ...
0
votes
3answers
64 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 ...
0
votes
1answer
44 views
How to generate unique ID for DIV using XSLT
so I'm able to get the correct titles from my sitecore project:
<xsl:value-of select="sc:fld('title',.)" />
^ will spit out the titles I need to use as ID's
Now below is my XSL to generate ...
0
votes
1answer
22 views
using XSLT choose when on XML element not working
I am trying to format my Table so that there is a left padding, I would like the decision to happen inside my for statment as there are multiple rows which need the padding defined.
I have created a ...
1
vote
1answer
26 views
use a xslt variable to define table padding
I would like to declare a variable in my xslt file that is styling my xml. I intend to use the variable to padd the tableview cells. depending on what data is being read will depend how far the ...
0
votes
1answer
47 views
getting xml element attribute value and set as html ul li list type
this is my xml file:-
<root>
<child_1 entity_id = "1" value="Game" parent_id="0">
<child_2 entity_id="2" value="Activities" parent_id="1">
<child_3 entity_id="3" ...
0
votes
1answer
73 views
HTML Formating of text in xml element
I currently am formatting my xml using an XSLT style sheet. it looks a little something like this
<xsl:for-each select="Talents">
<div style="font-family:Calibri, Arial; font-size:5pt; ...
0
votes
1answer
63 views
How to toggle table rows on and off
I am currently toggling some table rows in my XSLT (html) xml style sheets.
I have 6 rows I hide 3 to begin with then on a onClick command I would like to hide 1 row and open 3 others.
This is what ...
0
votes
1answer
67 views
how to hide & show rows of a html table in xmlt
I am trying to figure out how to hide the rows in my xslt style sheet. I have created a XSLT style sheet that shows every row avalible... but I would like to have it so when the xml is loaded some of ...
0
votes
1answer
23 views
XSLT generates malformed path on chrome
I'm trying to generate some HTML from XML using XSLT. I have this subset of tags:
<IMG>
<path>
img/path.jpg
</path>
...
</IMG>
The path of the image, once ...
0
votes
0answers
70 views
Convert XML tree format to HTML to display
Dear Friends,
Here I have written my xml code
<component>
<sequence classCode="OBS">
<code code="MDC_ECG_LEAD_II" codeSystem="2.16.840.1.113883.6.24"/>
...
0
votes
1answer
35 views
Tokenize function not working in XSLT
I am trying to use the tokenize function in XSLT and it is not working
<xsl:variable name="stringList" select="tokenize('XPath,is,fun', ',')"/>
<xsl:for-each select="$stringList">
...
1
vote
1answer
75 views
xsl transform of my xml sitemap is not working using php [duplicate]
I have a simple sitemap.xml file:
<?xml version="1.0" encoding="ISO-8859-1"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>"home ...
0
votes
2answers
73 views
Using XSL transformation for XML to HTML conversion
I have written an XSL file for displaying an XML file in HTML tabular format, but it's not working. It's only showing the headers, i.e. uri and literal. Kindly go through my code and reply to me with ...
0
votes
1answer
56 views
XSLT For-Each Start a div that opens and closes around every 4th element
So I have a template that displays staff profiles. Like this:
<div class="row">
<li></li>
<li></li>
<li></li>
<li></li>
</div>
...
0
votes
1answer
65 views
XSL and JSP to show an HTML. Problems with &
I am using and XSL to transform a JSP into an HTML. While transforming I am linking a CSS.
When the request has a character & to show in an input type="text" or in a textarea, as shown below, the ...
0
votes
2answers
46 views
XML to XSLT transformation
Dear friends,
We are developing healthcare app which will monitory patient data from remote and display the patient EcG in dynamic graphs is my requirement , basically I am new to XML ...
1
vote
2answers
56 views
Closing tags when extracting HTML from XML
I am transforming a mixed html and xml document using an xslt stylesheet and extracting only the html elements.
Source file:
<?xml version="1.0" encoding="utf-8" ?>
<html >
...
0
votes
0answers
45 views
place data from xslt transform into a form created by another transform
I have an xml file that contains names and values that need to be placed into a form via xslt.
The form is the result of another xslt transform. It's responsible for creating the submit buttons on ...
0
votes
3answers
51 views
variables in XSL
I am a little new to XSL and I am having some issues. According to my research an XSL variable <xsl:variable> is global if declared at the top-level, and local if its declared within a template, ...
1
vote
2answers
54 views
XSLT to generate xsl fo from HTML with varying namespace
I have a XSLT file which is used for html to xsl-fo conversion using fop engine.
It has templates for HTML elements as shown below
<pre>
<xsl:stylesheet ...
1
vote
2answers
61 views
How to get the position of a node based on the value of a child element
In my xml I want specific menuitems/menuitem nodes that will be at different arbitrary positions under its parent (I don't want hardcoded position selector).
Is it possible to get the position of a ...
2
votes
1answer
32 views
Copy only HTML from mixed xml and HTML
We have a bunch of files that are html pages but which contain additional xml elements (all prefixed with our company name 'TLA') to provide data and structure for an older program which I am now ...
1
vote
2answers
43 views
How to get everything within an XML element with XSLT
I'm trying to get XSLT to transform something like
<foo>
lorem ipsum
<br />
some more lorem ipsum
</foo>
into
<p>
lorem ipsum
<br />
some ...
1
vote
1answer
66 views
Easier way to extract only prefixed elements from mixed xml/html
This is my working nightmare: we have a bunch of files that are html pages but which contain additional xml elements (all prefixed with our company name 'TLA') to provide data and structure for an ...
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
0answers
135 views
How to let xsl:fo allow table cell to take empty blocks and print mutiple lines
I have a one row and one of the columns has a list of data. Say I have a row, the 3rd column has 0 or more rows. <xsl:for-each select="./parts"> and for some reason the code I have doesn't seem ...
1
vote
2answers
160 views
How to display some xml nodes in a html page using xslt?
I'm using xslt to apply some templates on a xml file and output a html page. So I defined the method of 'xsl:output' as 'html'. However, I need to display some xml nodes from the xml file in their ...
0
votes
1answer
112 views
create a drop down list of xml attribute value [duplicate]
this is my xml file:-
<child_2 entity_id="2" value="Root" parent_id="1">
<child_4 entity_id="4" value="Activities" parent_id="2">
<child_10066 entity_id="10066" ...
0
votes
1answer
46 views
Encode part of url in xsl
I'm a total newbie in xsl so I'm not even sure this is possible. This code is for building a menu that does a postback to the same page so that ITEMNMBR can be picked up from the query string and ...
0
votes
1answer
30 views
XSL Hyperlink with parameters
I'm working on a menu and having some trouble with creating hyperlinks in my XSL. What I want to do is get the value of ITEMNMBR from the xsl and when the link is clicked, redirect to that page, ...
2
votes
4answers
263 views
Storing html values in xml
Trying to figure out a way to strip out specific information(name,description,id,etc) from an html file leaving behind the un-wanted information and storing it in an xml file.
I thought of trying ...
2
votes
1answer
2k views
How to Translate XML into HTML using XSL Stylesheet in Python?
I have an XSL stylesheet template that transforms my XML file into HTML. How can I perform such processing using Python?
...and here's the link to really simple solution:)
2
votes
2answers
1k views
How to use XSL to create HTML attributes?
Why is
<li style="width:<xsl:value-of select="width"/>px">
(using XML data to style html tags) illegal?
Why can't I do this? Are there any alternative methods out there?


