0
votes
1answer
14 views
Error received when attempting to load XSLT generated XHTML
Hello, I'm learning XSLT and Javascript and I'm trying to load some XSLT generated XHTML using the loadXML() function and I'm getting the following parsing error while using IE (mi …
0
votes
2answers
45 views
return html from a web service in asp.net
Is there anyway to return HTML from a web service in C#? If I have my XSLT transform output tag as XML then I'm geting the XML tag
<?xml version="1.0" encoding="UTF-8"?>
…
5
votes
3answers
36 views
XML Diff: How to generate XML diff using XSLT?
I would like to compute the diff between two XML files or nodes using XSL/XSLT. Is there any stylesheet readily available or any simple way of doing it?
2
votes
3answers
28 views
XSLT: deep child copy
My need: I want to deep copy all the childs of a single selected node without actually copying it. Example: from
<father><son i="1" /><son i="2" /><son i="0" …
0
votes
1answer
23 views
Simple XSLT Question: How can I add the closing “/” at the end of a single tag?
Hello, I'm teaching myself XSLT and am still trying to wrap my brain around the small details. I have a template in my XSL stylesheet that looks like this...
<td><img sr …
0
votes
4answers
22 views
XSLT, sort and group by year-date
Hello
Regarding Umbraco XSLT version 1.
I have aprox. 150 news items in XML. Lets say like this (all is pseudocode until I get more familiar with this xml/xslt):
<news>
…
1
vote
3answers
27 views
XSLT: How to change the parent tag name and Delete an attribute from XML file?
I have an XML file from which I need to delete an attribute with name "Id" (It must be deleted wherever it appears) and also I need to rename the parent tag, while keeping its attr …
0
votes
5answers
75 views
Why does this XSLT code add a new line?
in IE (maybe FF too, but not sure) the following snippet from my XSL stylesheet...
<td>
<xsl:element name="img">
<xsl:attribute name="src">
<xsl:v …
0
votes
2answers
28 views
Pulling content from one node only
I am trying to pull a specific node from my xml document, but continue to get content from all nodes. I am testing for a specific jNumber by passing the number to the xslt in a var …
0
votes
4answers
39 views
XSLT -> XHTML: Inline PHP?
Hello all,
I'm trying to use XSLT to generate some XHMTL with inline PHP. I've run across a problem with generating inline PHP in attributes.
<xsl:stylesheet xmlns:xsl="http: …
1
vote
3answers
37 views
Template Recursion error
Hi! I am in the process of refreshing my XST knowledge, and have decided to have a go at making an XSLT 1.0 stylesheet that convert the XMLHelp files from the C# compiler into a b …
0
votes
1answer
23 views
Parsing XML within SAP ABAP
My company is working on a project that needs to read XML files within SAP ABAP.
When the XML file has no data for a particular tag it omits that data.
Some tags are self closing …
0
votes
2answers
29 views
Force xslt document() to load an external document over HTTP rather than directly from the file system.
Within my ASP.NET application, I'm loading an XML file into an XSLT with the document() method, as follows:
<xsl:variable name="more-xml" select="document('generateXml.ashx')" …
0
votes
3answers
36 views
Quick question, how can I display my XSL code in a browser
Hello! I'm learning XSLT and, for testing purposes, would like be able to simply display my XSL code inside of a browser via a link from another page. With the following anchor t …
0
votes
1answer
42 views
Can java transform and validate the input at the same time?
I know how to call a java Transform and have it validate the output against a schema. What I want to do is:
Validate the input and Transform it via xsl.
I could:
Create a Vali …
