0
votes
2answers
37 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
3answers
68 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
2answers
20 views

how to separate a value from its node and group the node with others of its type

End result I need is to have all the text nodes have the same indent. The @name field is not constant size. Parentnode has a varying number of children that must be parsed in the order received. ...
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 ...
2
votes
3answers
101 views

XSLT parsing a string with both escaped and non escaped characters (< and &lt;)

In XSLT 1.0, what is the best way to process this xml element <Product>This is a product. &lt; and its price is < 10</Product> Notice that the 'less than sign' is represented ...
0
votes
3answers
82 views

XSLT disable-ouput-escaping not escaping character &lt;

In the following stylesheet: <?xml version="1.0" encoding="ISO-8859-1"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:template match="/"> ...
0
votes
1answer
24 views

value is displayed even if the value is not exist in xslt1.0

This is my xslt code : <xsl:choose> <xsl:when test="string-length( //Record/CIMtrek_CI_OPEX_200910_FrDiv /text()) != 0"> ...
0
votes
0answers
33 views

Calling PHP-function from HTML inside XSLT [duplicate]

I'm new to PHP but quite used to other languages. I'm trying to make a list of recipe titles that are fetched from several XML files, if they match a specific recipe category. I have written a PHP ...
1
vote
2answers
73 views

Pulling xslt:text from xml file as text for a clickable link

So I'm trying to create a sitmap with xml and an xslt files. I want the URL's for the sitemap to be clickable when displayed (VERY new to this)... here is as far as I got: ...
0
votes
1answer
59 views

XSLT: Extracting output content from the section attribute using xsl

I have a variation of a question I asked earlier in regards to extracting specific according to a given input for classes and content. I have an example solution provided by @Kirill Polishchuk. How ...
0
votes
1answer
48 views

Facing issues in parsing xml with xslt

I am trying to parse a xml to generate a html report.The problematic section of the xml is as given <failure message="Management changes link count is not 3$HiHello" ...
1
vote
1answer
38 views

XSLT: Table class dependent on the number of td

I have another question regarding XSLT transformation for tables with fixed structure and variable input content. I have outlined 2 different examples. But the desired table class is dependent on ...
-1
votes
1answer
51 views

XSLT transformation into fixed table structure

I have a question regarding XSLT transformation for ouput tables with fixed structure and variable input content. I have outlined 2 different example. The desired output table is 6 columns and two ...
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
2answers
345 views

Avoid URL-encoding in XSLT with output method html

I have a transformation that outputs HTML. In order to avoid self-closing tags that could break in older browsers (e.g. <img /> instead of <img></img>) output-method has to be html. ...
3
votes
2answers
36 views

What is a better XSL styling method for creating an HTML tag?

I have a fairly simple xsl stylesheet for transforming an xml doc that defines our html into an html format (please don't ask why, it's just the way we have to do it...) <xsl:template ...
-1
votes
1answer
126 views

How to use xsl:sort to sort images NOT based on position() [closed]

EDITED: ADDITIONAL INFO BELOW I am trying to sort images in ascending order using <xsl:sort> without having to use the "position() function. I am experiencing an issue using the <xsl:sort> ...
0
votes
0answers
51 views

Transforming xml into tabular HTML (conditional)

Here is an excerpt from the xml file in question: <mtf> <conceptGrp> <concept>1169</concept> <languageGrp> <language lang="DE" ...
0
votes
0answers
55 views

How to transform xml into multiple html pages based on the content of xml element?

I have an xml data file with similar structure. <Items> <Item id=1> <Description> Line 1 line 2 line 3 line 4 line 5 </Description> ...
0
votes
1answer
41 views

Columns dont inherit width when contained in div

Lets say we have a table with many rows. When transforming my XML to a PFD via XSLT I want certain rows to not split across a page break. At the moment I have <table> <tr>...</tr> ...
0
votes
3answers
99 views

get all the text of elemets using XSLT irespective of the tags

i have a XML file and having data <text> <DIV style="TEXT-ALIGN: left; LINE-HEIGHT: 120%; FONT-SIZE: 10pt; PADDING-TOP: 14px"> <FONT style="FONT-STYLE: italic; FONT-FAMILY: ...
1
vote
3answers
340 views

Add the Numeric column values and inserting total in XSLT

I am writing an XSLT script which generates an HTML output as shown below: Alice 0 Bob Maths 74 Science 84 Mary Maths 80 Science 90 History 95 Mark ...
0
votes
3answers
179 views

XSLT counting position and group items accordingly

I have some input XML which is <collection> <content> <id>10</id> <type>xx</type> <title>xx</title> ...
1
vote
1answer
384 views

xsl href not working in chrome

I have used the following code in my XSL: <xsl:variable name="link" select="normalize-space(concat('#',$chapter2))/> <a href="{$link}">Next chapter</a> It should navigate to ...
2
votes
1answer
119 views

Convert News listing into HTML menu grouping by year and month

The goal is to output a <ul> removing duplicate months grouped by year using xslt 1.0. This appears to be similar to Grouping XML nodes by Month and Year in XSLT but I am unsure on how to ...
0
votes
0answers
153 views

How to compare two elements from different parents in XSL

I have an HTML schedule looking like this : +------+--------+----------+---------+----------+--------+ | Time | Monday | Tuesday |Wednesday| Thursday | Friday | ...
0
votes
3answers
390 views

inserting <br> won't work at this one line in xsl

I'm trying to use the following code to remove the rich text formatting "/par" tag and replace it with <br/>. The code works fine for stripping the "/par" but for some reason the <BR/> is ...