active questions tagged xslt - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T23:07:10Zhttp://stackoverflow.com/feeds/tag/xslthttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1146021/add-soap-header-update-a-node-copy-document0Add soap header - update a node - copy documentunknown (google)2009-07-17T22:46:55Z2009-12-06T20:00:02Z
<p>I'm trying to add Soap headers to my document and update the first RS node with </p>
<pre><code> <Rs xmlns="http://tempuri.org/schemas">
</code></pre>
<p>all while copying the remainder of the document nodes. In my real example i'll have more nodes within RS parent node so i'm looking for a solution with a deep copy of some sort.</p>
<pre><code><-- this is the data which needs transforming -->
<Rs>
<ID>934</ID>
<Dt>995116</Dt>
<Date>090717180408</Date>
<Code>9349</Code>
<Status>000</Status>
</Rs>
<-- Desired Result -->
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<Rs xmlns="http://tempuri.org/schemas">
<ID>934</ID>
<Dt>090717180408</Dt>
<Code>9349</Code>
<Status>000</Status>
</Rs>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
<-- this is my StyleSheet. it's not well formed so i can't exexute it-->
<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" >
<xsl:output method="xml" indent="yes" encoding="UTF-8"/>
<xsl:template match="/">
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<xsl:apply-templates select = "Rs">
</xsl:apply-templates>
<xsl:copy-of select="*"/>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
</xsl:template>
<xsl:template match ="Rs">
<Rs xmlns="http://tempuri.org/schemas">
</xsl:template>
</xsl:stylesheet>
</code></pre>
<p>I've been reading tutorials, but having troubles getting my head around templates and where to implement them.</p>
http://stackoverflow.com/questions/1832360/optimising-xdocument-to-xdocument-xslt1Optimising XDocument to XDocument XSLTDaniel Skinner2009-12-02T11:30:40Z2009-12-06T02:43:23Z
<p>The following code works but is messy and slow. I am transforming an XDocument to another XDocument using XSLT2 with Saxon, adapted using SaxonWrapper:</p>
<pre><code>public static XDocument HSRTransform(XDocument source)
{
System.Reflection.Assembly thisExe = System.Reflection.Assembly.GetExecutingAssembly();
System.IO.Stream xslfile = thisExe.GetManifestResourceStream("C2KDataTransform.Resources.hsr.xsl");
XmlDocument xslDoc = new XmlDocument();
xslDoc.Load(xslfile);
XmlDocument sourceDoc = new XmlDocument();
sourceDoc.Load(source.CreateReader());
var sw = new StringWriter();
Xsl2Processor processor = new Xsl2Processor();
processor.Load(xslDoc);
processor.Transform(sourceDoc, new XmlTextWriter(sw));
XDocument outputDoc = XDocument.Parse(sw.ToString());
return outputDoc;
}
</code></pre>
<p>I realise that the slowness might actually be in the bits I have no control over but are there better ways to do all the switching between XDocument and XmlDocument and usage of writers?</p>
http://stackoverflow.com/questions/1852571/xpath-function-to-remove-white-space0Xpath function to remove white spaceallyLogan2009-12-05T16:07:31Z2009-12-05T19:39:23Z
<p>Hey everyone </p>
<p>Im trying to use XSL and Xpath functions to remove all the white space from a XML attribute called name and make it lower case. At the moment i have something like</p>
<pre><code> <xsl:variable name="linkName">
<xsl:value-of select="normalize-space(name)"/>
</xsl:variable>
</code></pre>
<p>This removes the white space at the beginning and end but not the middle. Any suggestions?</p>
<p>What is the best practice for handling and altering XML data as it seems that you can use </p>
<pre><code><xsl:value-of select="x"/>
</code></pre>
<p>placed directly in the HTML</p>
<p>or </p>
<pre><code><xsl:attribute name="y">
<xsl:value-of select="x"/>
</code></pre>
<p>or use a </p>
<pre><code><xsl:variable name="x">
</code></pre>
<p>I'm not really sure of the differences or when each should be used. Any help is much appreciated.</p>
<p>Ally</p>
http://stackoverflow.com/questions/1848702/storing-xslt-in-sql-server-2005-with-xml-type2Storing XSLT in SQL Server 2005 with xml type?Jeff Meatball Yang2009-12-04T18:12:26Z2009-12-04T21:57:25Z
<p>I have a lot of XSL files in my ASP.NET web app. A lot. I generate a bunch of AJAX HTML responses using this kind of generic transform method:</p>
<pre><code>public void Transform(XmlDocument xml, string xslPath)
{
...
XslTransform myXslTrans = new XslTransform();
myXslTrans.Load(xslPath);
myXslTrans.Transform(xml,null, HttpContext.Current.Response.Output);
}
</code></pre>
<p>I'd like to move the XSL definitions into SQL Server, using a column of type xml.
I would store an entire XSL file in a single row in SQL, and each XSL is self-contained (no imports). I would read out the XSL definition from SQL into my XslTransform object. </p>
<p>Something like this:</p>
<pre><code>public void Transform(XmlDocument xml, string xslKey)
{
...
SqlCommand cmd = new SqlCommand("GetXslDefinition");
cmd.AddParameter("@xslKey", SqlDbType.VarChar).Value = xslKey;
// where the result set has a single column of XSL: "<xslt:stylesheet>..."
...
SqlDataReader dr = cmd.ExecuteReader();
if(dr.Read()) {
SqlXml xsl = dr.GetSqlXml(0);
XslTransform myXslTrans = new XslTransform();
myXslTrans.Load(xsl.CreateReader());
myXslTrans.Transform(xml,null, HttpContext.Current.Response.Output);
}
}
</code></pre>
<p>It seems like a straightforward way to:</p>
<ul>
<li>add metadata to each XSL, like lastUsed, useCount, etc.</li>
<li>bulk update/search capabilities </li>
<li>prevent lots of disk access</li>
<li>avoid referencing relative paths and organizing files</li>
<li>allow XSL changes without redeploying (I could even write an admin page that selects/updates the XSL in the database)</li>
</ul>
<p>Has anyone tried this before? Are there any caveats?</p>
<p><strong>EDIT</strong></p>
<p>Caveats that responders have listed:</p>
<ul>
<li>disk access isn't guaranteed to diminish</li>
<li>this will break xsl:includes</li>
</ul>
http://stackoverflow.com/questions/1846850/sum-contents-of-column-based-on-a-variable-with-xpath0Sum contents of column based on a variable with XPathfreaktm2009-12-04T13:09:45Z2009-12-04T13:51:43Z
<p>Hi..
I'm a little bit of a rookie when it comes to XSLT and XPath, so I've run into this problem.
I'm creating a simple table based on a view on the databse, which needs to sum some of the columns in the view. What I thourght i could do was add 'SUM_' as a prefix of all the coumns that i want to sum, and cut that tag off with a substring when the coulmn name should be shown.</p>
<p>Here's en example of my XML:</p>
<pre><code><Rowset>
<Columns>
<Column Description="SegmentResponseGlobId" MaxRange="1" MinRange="0" Name="SegmentResponseGlobId" SQLDataType="12" SourceColumn="SegmentResponseGlobId"></Column>
<Column Description="Batch" MaxRange="1" MinRange="0" Name="Batch" SQLDataType="12" SourceColumn="Batch"></Column>
<Column Description="Start" MaxRange="1" MinRange="0" Name="Start" SQLDataType="93" SourceColumn="Start"></Column>
<Column Description="Slut" MaxRange="1" MinRange="0" Name="Slut" SQLDataType="93" SourceColumn="Slut"></Column>
<Column Description="Rute" MaxRange="1" MinRange="0" Name="Rute" SQLDataType="8" SourceColumn="Rute"></Column>
<Column Description="Tankvogn" MaxRange="1" MinRange="0" Name="Tankvogn" SQLDataType="8" SourceColumn="Tankvogn"></Column>
<Column Description="SUM_Mængde" MaxRange="1" MinRange="0" Name="SUM_Mængde" SQLDataType="8" SourceColumn="SUM_Mængde"></Column>
<Column Description="EquipmentId" MaxRange="1" MinRange="0" Name="EquipmentId" SQLDataType="12" SourceColumn="EquipmentId"></Column>
<Column Description="SLS" MaxRange="1" MinRange="0" Name="SLS" SQLDataType="8" SourceColumn="SLS"></Column>
<Column Description="PH" MaxRange="1" MinRange="0" Name="PH" SQLDataType="8" SourceColumn="PH"></Column>
</Columns>
<Row>
<SegmentResponseGlobId>AD86D4EC-5E5E-4B6A-A3FC-4BEDF62F3545</SegmentResponseGlobId>
<Batch>9492002</Batch>
<Start>2009-12-01T11:13:43</Start>
<Slut>2009-12-02T19:37:55</Slut>
<Rute>0</Rute>
<Tankvogn>6</Tankvogn>
<SUM_Mængde>1</SUM_Mængde>
<EquipmentId>A1_C1U11_Udvejning_råmælk</EquipmentId>
<SLS>0</SLS>
<PH>NA</PH>
</Row>
<Row>
<SegmentResponseGlobId>28D65598-98D0-41CD-BB6B-6E962834D8F2</SegmentResponseGlobId>
<Batch>Prod.Batch</Batch>
<Start>2009-07-01T10:41:54</Start>
<Slut>2009-12-04T07:42:40</Slut>
<Rute>137</Rute>
<Tankvogn>7037</Tankvogn>
<SUM_Mængde>2</SUM_Mængde>
<EquipmentId>A1_C1U02_Indvejning_2_råmælk</EquipmentId>
<SLS>1</SLS>
<PH>NA</PH>
</Row>
</Rowset>
</code></pre>
<p>And here's my XSL:</p>
<pre><code><?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<table border="1">
<thead>
<xsl:for-each select="Rowsets/Rowset/Columns/Column">
<xsl:choose>
<xsl:when test="substring(@Description, 1, 4) = 'SUM_'">
<th><xsl:value-of select="substring(@Description,5)"/></th>
</xsl:when>
<xsl:otherwise>
<th><xsl:value-of select="@Description"/></th>
</xsl:otherwise>
</xsl:choose>
</xsl:for-each>
</thead>
<tbody>
<xsl:for-each select="Rowsets/Rowset/Row">
<tr>
<xsl:for-each select="child::*">
<td><xsl:value-of select="."/></td>
</xsl:for-each>
</tr>
</xsl:for-each>
<tr>
<xsl:for-each select="Rowsets/Rowset/Columns/Column">
<td>
<xsl:if test="substring(@Description, 1, 4) = 'SUM_'">
Sum: <xsl:value-of select="sum(/Rowsets/Rowset/Row/@Description)"/>
</xsl:if>
</td>
</xsl:for-each>
</tr>
</tbody>
</table>
</xsl:template>
</xsl:stylesheet>
</code></pre>
<p>Now, it's this piece of code that's giving me grey hairs:</p>
<pre><code><xsl:for-each select="Rowsets/Rowset/Columns/Column">
<td>
<xsl:if test="substring(@Description, 1, 4) = 'SUM_'">
Sum: <xsl:value-of select="sum(/Rowsets/Rowset/Row/@Description)"/>
</xsl:if>
</td>
</xsl:for-each>
</code></pre>
<p>I just cant seem to figure out how to make it sum over my SUM_xxx columns..
Hope someone can help me find a solution =) Until then, I'll have to hardcore the columns that needs to get summed..</p>
http://stackoverflow.com/questions/1845998/sum-diff-problem-bug-in-xslt-1-00Sum diff problem/bug in XSLT 1.0Riri2009-12-04T10:02:05Z2009-12-04T12:05:33Z
<p>I have this XML data and try and make a sum of it using the XSLT snippet below. </p>
<p><strong>Xml</strong></p>
<pre><code><?xml version="1.0" encoding="utf-8"?>
<values>
<value>159.14</value>
<value>-2572.50</value>
<value>-2572.50</value>
<value>2572.50</value>
<value>2572.50</value>
<value>-159.14</value>
</values>
</code></pre>
<p><strong>Xslt</strong></p>
<pre><code><?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<xsl:value-of select="sum(values/value)"/>
</xsl:template>
</xsl:stylesheet>
</code></pre>
<p>In my world the value should then be <strong>0</strong> but it ends up being <strong>-0.0000000000005684341886080801</strong></p>
<p>Run it in Visual Studio and see for yourself. <strong><em>Why?</em></strong> is this happening?</p>
http://stackoverflow.com/questions/1846136/xslt-intellisense-in-visual-studio-20082XSLT Intellisense in Visual Studio 2008Craig Bovis2009-12-04T10:33:29Z2009-12-04T11:04:48Z
<p>I have an XML file which in addition to it's standard XML schema allows the use of XSLT.</p>
<p>I am including the correct namespace for XSLT (xmlns:xsl="http://www.w3.org/1999/XSL/Transform") however I am not receiving Intellisense for XSLT when I start typing xsl: tags.</p>
<p>Is it possible to turn this on? When I edit XSLT files it works absolutely fine.</p>
http://stackoverflow.com/questions/1831733/deleting-xml-nodes-using-xslt0Deleting xml nodes using xsltgracec2009-12-02T09:29:19Z2009-12-04T10:59:02Z
<p>Hello,</p>
<p>Does anyone know how to copy only the first n nodes in a xml file and delete the rest using xslt? So say I only want to copy the first 10 nodes and delete the rest of the nodes that belong to the same parent.</p>
<p>Thanks in advance! </p>
http://stackoverflow.com/questions/1843693/xslt-xpath-syntax-how-to-refer-to-an-element-in-an-outer-scope0XSLT & Xpath syntax > how to refer to an element in an 'outer' scopeMyster2009-12-03T23:05:19Z2009-12-04T10:07:20Z
<p>Hi,
I have the following working 100% correctly.
However to satisfy my curiosity... is there a way to achieve the same without declaring the currentID variable?
Is there some way to reference it from within the Xpath "test" condition? </p>
<p>The xpath query in the condition must refer to 2 @id attributes to see if they match.</p>
<ul>
<li>the 'current' @id </li>
<li>each 'ancestor' @id</li>
</ul>
<p>Here's the code:</p>
<pre><code><xsl:variable name="currentID" select="@id" />
<xsl:attribute name="class">
<xsl:if test="count($currentPage/ancestor::node [@id = $currentID])&gt;0">descendant-selected </xsl:if>
</xsl:attribute>
</code></pre>
http://stackoverflow.com/questions/1807673/xslt-2-0-php-support-when0XSLT 2.0 PHP support. When?Dziamid2009-11-27T09:33:17Z2009-12-04T08:25:18Z
<p>What are the chances to see XSLT 2.0 processors like saxon for php in the nearest future?</p>
http://stackoverflow.com/questions/1844476/how-to-eliminate-xmlns-entries-produced-by-xslt-transform-of-one-xml-doc-to-an2How to eliminate xmlns="" entries produced by XSLT transform of one XML doc to another XML doc.unknown (yahoo)2009-12-04T02:15:31Z2009-12-04T04:38:40Z
<p>Ok, I've seen numerous variations on this question, but none exactly answer what I'm trying to solve and perhaps I'm just too dense to see how to apply one of the other answers to what I'm trying to do.</p>
<p>I have some XML that looks something like the following:</p>
<pre><code><?xml version="1.0" encoding="utf-8"?>
<message>
<cmd id="api_info">
<api-version>1.0</api-version>
<api-build>1.0.0.0</api-build>
</cmd>
</message>
</code></pre>
<p>Now I have an XSLT transform that I'm applying to this XML. The XSLT is similar to the following:</p>
<pre><code><?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:fo="http://www.w3.org/1999/XSL/Format"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:fn="http://www.w3.org/2005/xpath-functions"
version="2.0">
<xsl:output method="xml" version="1.0" indent="yes"/>
<xsl:template match="/">
<xsl:apply-templates select="message"/>
</xsl:template>
<xsl:template match="message">
<xsl:element name="message" xmlns="http://www.companyname.com/schemas/product/Version001">
<xsl:apply-templates select="/message/cmd/@id"/>
</xsl:element>
</xsl:template>
<xsl:template match="/message/cmd/@id">
<xsl:variable name="_commandType" select="/message/cmd/@id"/>
<xsl:element name="messageHeader">
<xsl:element name="cmdType">
<xsl:value-of select="$_commandType"/>
</xsl:element>
</xsl:element>
<xsl:element name="messageBody">
<xsl:choose>
<xsl:when test="$_commandType = 'api_info'">
<xsl:element name="apiInfoBody">
<xsl:element name="apiVersion">
<xsl:value-of select="/message/cmd/api-version"/>
</xsl:element>
<xsl:element name="apiBuild">
<xsl:value-of select="/message/cmd/api-build"/>
</xsl:element>
</xsl:element>
</xsl:when>
<xsl:when test="$_commandType = 'communicationError'">
<xsl:element name="communicationErrorBody">
<xsl:element name="errorCode">
<xsl:value-of select="error-code"/>
</xsl:element>
<xsl:element name="badCmd">
<xsl:value-of select="bad-cmd"/>
</xsl:element>
</xsl:element>
</xsl:when>
</xsl:choose>
</xsl:element>
</xsl:template>
</xsl:stylesheet>
</code></pre>
<p>The output I get is basically what I want and looks like the following:</p>
<pre><code><?xml version="1.0" encoding="UTF-8"?>
<message xmlns="http://www.companyname.com/schemas/product/Version001">
<messageHeader xmlns="">
<cmdType>api_info</cmdType>
</messageHeader>
<messageBody xmlns="">
<apiInfoBody>
<apiVersion>1.0</apiVersion>
<apiBuild>1.0.0.0</apiBuild>
</apiInfoBody>
</messageBody>
</message>
</code></pre>
<p>But what I don't want are the <b>xmlns=""</b> attributes in the <b><messageHeader></b> and <b><messageBody></b> elements.</p>
<p>Now I've found that if I explicitly specify the namespace in the XSLT for those elements, then the unwanted attribute gets pushed down one level to the children of those attributes.</p>
<p>I could just go through my entire XSLT and explicitly add the <b>xmlns=""http://www.companyname.com/schemas/product/Version001"</b> attribute to each of my <b>xsl:element</b> definitions, but I know that there must be a more elegant way. We programmers are far too lazy to not have a shortcut for this kind of nonsense. If my XSLT didn't consist of something as simple as the shortened example, I be tempted to do it that way. But I know there must be a better way.</p>
<p>Does anyone know what I'm missing here?</p>
<p>Thanks,</p>
<p>AlarmTripper</p>
http://stackoverflow.com/questions/1842515/exslt-funcreturn-problems-in-xslfor-each-loop-and-funcfunction1EXSLT func:return problems in xsl:for-each "loop" and func:functionteastburn2009-12-03T20:01:12Z2009-12-04T03:37:07Z
<p>My problem:<br>
I have a wealth of atom RSS feed files which have many different atom entries in them and a few overlapping entries between files. I need to find and return an entry based on a URL from any one of the RSS feeds.</p>
<p>Technologies:<br>
This code is being run through PHP 5.2.10's XLSTProcessor extension, which uses XSLT 1, has support for EXSLT and ability to run built in PHP functions. Saxan, Xalan or other similar solutions are not too helpful in this particular situation.</p>
<p>The following code is greatly simplified, but represents my situation. </p>
<p>rss-feed-names.xml:</p>
<pre><code><feeds>
<feed name="travel.xml"/>
<feed name="holidays.xml"/>
...
<feed name="summer.xml"/>
<feed name="sports.xml"/>
</feeds>
</code></pre>
<p>stylesheet.xsl</p>
<pre><code><xsl:stylesheet ...>
...
<func:function name="cozi:findPost">
<xsl:param name="post-url"/>
<xsl:variable name="blog-feeds" select="document('rss-feed-names.xml')/feeds"/>
<xsl:for-each select="$blog-feeds/feed">
<xsl:variable name="feed-file" select="document(@name)/atom:feed"/>
<xsl:variable name="feed-entry" select="$feed-file/atom:entry[atom:link[contains(@href, $post-url)]]"/>
<xsl:if test="$feed-entry">
<func:result select="$feed-entry"/><!-- this causes errors if more than one result is found -->
</xsl:if>
</xsl:for-each>
</func:function>
</xsl:stylesheet>
...
</code></pre>
<p>This code works just fine iff the atom entry that we're looking for appears in ONE of the files we look through. It may appear multiple times within that file, but as soon as it appears in two or more files, the code breaks because func:result was already instantiated and is being over-written, which is a no-no in XSLT.</p>
<p>If there is a way to ACTUALLY exit an EXSLT function or xsl:for-each "loop" (you can assign a return variable for a function, but the function continues; and for-each's are actually not loops, but more similar to function maps), that would be ideal but I have not found a way yet. </p>
<p>I have considered combining all feeds into one variable and removing the for-each loop altogether, but have had problems getting this to work from the beginning.</p>
<p>Any other possible solutions, ideas or pointers are much appreciated! The file relationship here and XML is pretty hard to change, so solutions suggesting such a change are not ideal.</p>
<p>Thanks in advance,<br>
Tristan Eastburn</p>
http://stackoverflow.com/questions/1834488/xml-to-xml-xslt1Xml to Xml - XsltSumit M Asok2009-12-02T17:26:08Z2009-12-03T19:30:25Z
<p>I am trying to learn xslt
but have no good tutorials where i can find all info together</p>
<p>please help me here...</p>
<pre><code> <xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="@*">
<xsl:attribute namespace="{namespace-uri()}" name="{name()}"/>
</xsl:template>
</code></pre>
<p>this is some code which i found at stackOverFlow
But i dont understand , what "exactly" the expressions
"@<em>|node()", "@</em>", "{namespace-uri()}", "name()"</p>
<p>means...help me.....</p>
http://stackoverflow.com/questions/1841505/how-do-you-access-an-element-by-its-attribute-value-using-xsl-transforms-and-xml0How do you access an element by its attribute value using XSL transforms and XML?allyLogan2009-12-03T17:23:59Z2009-12-03T19:26:23Z
<p>Hello All</p>
<p>Im trying to transform an XML document into XHTML using XSL transformation and was wondering how i can choose an XML element given the value of its attribute. e.g.</p>
<pre><code><image size="small">http:example.small.jpg</image>
<image size="medium">http:example.medium.jpg</image>
<image size="large">http:example.largw.jpg</image>
</code></pre>
<p>I only want to access the value "http:example.medium.jpg" from the image tag where size="medium".</p>
<p>Any help is greatly appreciated.</p>
<p>Ally</p>
http://stackoverflow.com/questions/1780803/loading-transforming-xml-with-xslt-and-css0Loading/Transforming XML with XSLT and CSSAlan2009-11-23T02:22:30Z2009-12-03T16:55:56Z
<p>Hi! </p>
<p>Total newbie. Thanks in advance. Here goes:</p>
<p>I'm trying to transform an XML document using an XSL stylesheet, and the XSL stylesheet links to a CSS file. When I open the XML file from my computer in a browser (Chrome), the data is displayed properly following the XSL and CSS files. I also have javascript math functions inside the XSL stylesheet to take an element from the XML file and multiply it by different percentages. This math also works.</p>
<p>But when I try to use Javascript (below) to load/transform the XML document within HTML, the XSL styling comes through but the CSS is off. In Chrome, the page layout from the CSS shows. But the font size is too small and the background image doesn't appear. No matter what I change in the CSS the font is barely readable its so small. In IE, the CSS doesn't show up at all.</p>
<p>Also, the Javascript seems to be hiding the xml data, which I'd guess is bad for SEO. </p>
<p>Anyone have any tips/different approaches? I can't use ASP because my webserver won't allow it, but anything else.</p>
<p>Here's the script from my html document:</p>
<pre><code><html>
<head>
<script>
function loadXMLDoc(dname) {
if (window.XMLHttpRequest) {
xhttp = new XMLHttpRequest();
} else {
xhttp = new ActiveXObject("Microsoft.XMLHTTP");
}
xhttp.open("GET",dname,false);
xhttp.send("");
return xhttp.responseXML;
}
function displayResult() {
xml = loadXMLDoc("WORKS.xml");
xsl = loadXMLDoc("WORKS.xsl");
// code for IE
if (window.ActiveXObject) {
ex = xml.transformNode(xsl);
document.getElementById("example").innerHTML = ex;
}
// code for Mozilla, Firefox, Opera,etc.
else if (document.implementation &&
document.implementation.createDocument) {
xsltProcessor=new XSLTProcessor();
xsltProcessor.importStylesheet(xsl);
resultDocument = xsltProcessor.transformToFragment(xml,document);
document.getElementById("example").appendChild(resultDocument);
}
}
</script>
</head>
<body onload="displayResult()">
<div id="example" />
</body>
</html>
</code></pre>
<p>Merci buckets.</p>
<p>Alan</p>
http://stackoverflow.com/questions/1725631/xsltparam-array-in-net1xslt:param array in .NETAndrew2009-11-12T21:45:38Z2009-12-03T14:10:01Z
<p>Simple question, but is the solution?</p>
<p>I have a typical C# Application that runs "new XslCompiledTransform.Transform(...);" I am passing it param arguments, all of type string. </p>
<p>I want to pass it a param that is of type array: strings, or even lets say an array of objects.</p>
<p>I am using C# I am being limited to XSL 1.0.</p>
<p>How am I able to preform this task, in a clean way to avoid writing unnecessary code in .NET? </p>
http://stackoverflow.com/questions/407910/is-there-an-xslt-buddy-available-somewhere12Is there an XSLT buddy available somewhere?kokos2009-01-02T20:16:04Z2009-12-03T11:13:08Z
<p>I think a lot of people know about tools like RegexBuddy. Is there something similar for XSLT?</p>
http://stackoverflow.com/questions/1834385/xslt-pass-value-from-one-for-each-match-to-the-next0XSLT: pass value from one for-each match to the nextcarillonator2009-12-02T17:10:36Z2009-12-03T07:47:56Z
<p>I'm using the following to match all <code><section></code>s with a revision attribute set. <code><section></code>can appear at many different levels of the document tree, always contained within <code><chapter></code>s.</p>
<pre><code><xsl:for-each select="//section[@revision]">
<!-- Do one thing if this is the first section
matched in this chapter -->
<!-- Do something else if this section is in the same
chapter as the last section matched -->
</xsl:for-each>
</code></pre>
<p>As the comments say, I need to make each <code>for-each</code> iteration aware of the chapter to which the <b>previous</b> matched section belonged. I know that <code><xsl:variable></code>s are actually static once set, and that <code><xsl:param></code> only applies to calling templates.</p>
<p>This being Docbook, I can retreive a section's chapter number with:</p>
<pre><code><xsl:apply-templates select="ancestor::chapter[1]" mode="label.markup" />
</code></pre>
<p>but I think it can be done with purely XPath. </p>
<p>Any ideas? Thanks!</p>
http://stackoverflow.com/questions/1835022/replacing-url-strings-in-an-xml-document-with-xslt0Replacing URL Strings in an XML Document with XSLTkazzamalla2009-12-02T18:53:45Z2009-12-02T18:58:46Z
<p>Hi,</p>
<p>I am having trouble using the XSLT 1.0 function library (since .NET/Visual Studio doesn't support 2.0), replacing attribute strings using XSLT in my XML document.</p>
<p>The attributes contain URL strings, but as soon as the URLs are read in via the translate() function, everything is garbled and comes out a mess. This is most likely due to the encoding of the strings it is reading in and trying to write out. Does anyone have a suggestion for a better way to read/output the strings so that the URL's do not get garbled?</p>
<p>Little background on the issue. I am creating a dynamic ASP.Net menu control, and populating it from an XMLDataSource. The NavigateUrlField is set to "Url", and in the XML, the Url Field contains strings that look like this:</p>
<p>Url="%PLACEHOLDER1%/dir/dir2/page.aspx"<br>
OR<br>
Url="%PLACEHOLDER2%/dir/dir2/page.aspx"</p>
<p>I am using the XmlDataSource TransformFile property, set to my XSLT, and the OnTransforming event handler to pass parameters to the XSLT file.</p>
<p>What I want to do, is replace the text %PLACEHOLDER1%" and "%PLACEHOLDER2" via XSLT, so that they actually form different URLs when bound to the ASP.Net Menu control.</p>
<p>This is useful for me because there are different domains and different sites (local/dev/production/etc), and the domain URLs are different. In this way, I can just pass different parameters to the XSLT depending on which version I am building/testing.</p>
<p>Here is the XSLT code:</p>
<pre><code><xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="xml" omit-xml-declaration="yes" encoding="UTF-8"/>
<xsl:param name="targetString"/>
<xsl:param name="replacementString"/>
<xsl:template match="@Url">
<xsl:attribute name="Url">
<xsl:choose>
<xsl:when test="contains(., $targetString)">
<xsl:value-of select="translate(.,$targetString,$replacementString)" />
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="." />
</xsl:otherwise>
</xsl:choose>
</xsl:attribute>
</xsl:template>
<xsl:template match="@*|*">
<xsl:copy>
<xsl:apply-templates select="@*|node()" />
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
</code></pre>
<p>And here is the code in the event handler calling the XSLT:</p>
<pre><code>protected void TransformEventHandler(object sender, EventArgs e)
{
// Create an XsltArgumentList.
XsltArgumentList xslArg = new XsltArgumentList();
xslArg.AddParam("targetString", "", "%PLACEHOLDER1%");
xslArg.AddParam("replacementString", "", "http://www.testdomain.com");
((XmlDataSource)sender).TransformArgumentList = xslArg;
}
</code></pre>
<p>And the XML File looks like this:</p>
<pre><code><FooterNAV>
<Menu LinkText="Link 1" Url="%PLACEHOLDER1%/dir/dir2/somepage.aspx" Description="" />
<Menu LinkText="Link 2" Description="" Url="%PLACEHOLDER1%/dir/dir2/someotherpage.aspx" />
</FooterNAV>
</code></pre>
<p><hr></p>
<p>In these examples I am only trying to replace the PLACEHOLDER1 text, but if I could get that working I would create a second Param in the XSLT and pass it from the code-behind as well to replace the other PLACEHOLDERS in my XML.</p>
<p>I would really appreciate any suggestions, if you need any further information please do let me know!</p>
http://stackoverflow.com/questions/1829561/xslt-variables-and-choose-otherwise-not-working-right0XSLT Variables and Choose/Otherwise not working right..Shafique2009-12-01T23:02:01Z2009-12-02T18:27:23Z
<p>I have some XSLT that looks like:</p>
<pre><code><xsl:choose>
<xsl:when test="string(//User[@UserID = $UserID]/ROOT/Prop[@Nm = 'GreaseBoardCategory'])">
<xsl:variable name="Type" select="concat('Documenter', //User[@UserID = $UserID]/ROOT/Prop[@Nm = 'GreaseBoardCategory'])"/>
</xsl:when>
<xsl:otherwise>
<xsl:variable name="Type" select="concat('Documenter', user:GetUserType(string(//Payload/@SiteID), string(@UserID)))"/>
</xsl:otherwise>
</xsl:choose>
</code></pre>
<p>And I want to assign a variable to it called "Type" I see from other examples that I should be doing this instead:</p>
<pre><code><xsl:variable name="Type">
<xsl:choose>
<xsl:when test="string(//User[@UserID = $UserID]/ROOT/Prop[@Nm = 'GreaseBoardCategory'])">
<xsl:value-of select="concat('Documenter', //User[@UserID = $UserID]/ROOT/Prop[@Nm = 'GreaseBoardCategory'])"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="concat('Documenter', user:GetUserType(string(//Payload/@SiteID), string(@UserID)))"/>
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
</code></pre>
<p>But my variable is NOT getting set. It should hit the Otherwise block but never does. Any ideas? It doesn't get set to anything..</p>
<p>The only way to get Type to be set is to do away with the Choose/When/Otherwise statements and just pick one of the two options, like:</p>
<pre><code><xsl:variable name="Type" select="concat('Documenter', //User[@UserID = $UserID]/ROOT/Prop[@Nm = 'GreaseBoardCategory'])"/>
</code></pre>
<p>for example.</p>
http://stackoverflow.com/questions/1765936/parsing-xml-within-sap-abap2Parsing XML within SAP ABAPEvan2009-11-19T19:31:39Z2009-12-02T14:04:40Z
<p>My company is working on a project that needs to read XML files within SAP ABAP.</p>
<ol>
<li>When the XML file has no data for a particular tag it omits that data.</li>
<li>Some tags are self closing. e.g. <tag /></li>
</ol>
<p>The SAP developer says that to read the XML document he first parses the document into an ABAP XML structure. This process fails on point 2. He must then create an XSLT to turn that data into an internal data structure, and that fails on point 1 therefore making the task very difficult to achieve within ABAP.
Is that definitely the case and is there then no way of reading the specific fields that we need?</p>
http://stackoverflow.com/questions/138502/pure-python-xslt-library5Pure Python XSLT libraryAndy Balaam2008-09-26T09:43:43Z2009-12-02T12:47:18Z
<p>Is there an XSLT library that is pure Python?</p>
<p>Installing libxml2+libxslt or any similar C libraries is a problem on some of the platforms I need to support.</p>
<p>I really only need basic XSLT support, and speed is not a major issue.</p>
http://stackoverflow.com/questions/1831345/xpath-get-the-path-of-an-element0[XPath] Get the path of an element~punischdude2009-12-02T08:07:08Z2009-12-02T11:23:03Z
<p>Hi folks,</p>
<p>is there a XPath function, which returns the absolute path of an element, so I can use it in sth. like:</p>
<pre><code><xsl:if test="path() = /root/parent/child">
...
</xsl:if>
</code></pre>
<p>Thanks.</p>
http://stackoverflow.com/questions/1827308/how-to-use-xslt-to-add-namespaces-to-xml0How to use xslt to add namespaces to xmlShellShock2009-12-01T16:27:48Z2009-12-01T16:55:26Z
<p>I have a SOAP web service that is defined contract-first--the request and response xml are defined by xsds that use a number of different namespaces, and there are 100s of elements defined in xsds. However the web service calls a legacy layer which does not use namespaces in the xml. Therefore I have a transformation layer between the web service and the legacy layer which uses xslt to transform the request and response xml. On the way in the tranformation layer uses an xslt to strip namespace prefixes from the request xml, which is working OK, because there are only a small number of namespace prefixes to match against.</p>
<p>However on the way out I need an xslt that will add the namespace prefixes back into the response, and I am not sure how to do this. The response may consist of dozens of different element types; which may belong to one of several different namespaces in the xsds. For example, I may have a response like this:</p>
<pre><code><order>
<item name="table"/>
<customer name="jim"/>
</order>
</code></pre>
<p>I need to transform this into:</p>
<pre><code><order
xmlns:types1="http://types1.company.com" xmlns:types2="http://types2.company.com">
<types1:item name="table"/>
<types2:customer name="jim"/>
</order>
</code></pre>
<p>Is the only way to do this is to have a big table in the xslt that matches the element name in the response (e.g., "item", "customer") against the prefix that should be used?</p>
<p>Or would it be better to right some code that loads in the xsd as xml, and then matches the response elements to the elements in the xsd and derives the correct namespace that way?</p>
http://stackoverflow.com/questions/1820360/problem-using-ancestor-axis-in-an-xpath-predicate2Problem using ancestor axis in an XPath predicateChris Stevens2009-11-30T15:05:49Z2009-12-01T15:24:21Z
<p>Using this source document:</p>
<pre><code><?xml version="1.0" encoding="UTF-8"?>
<Root>
<Element1 id="UniqueId1">
<SubElement1/>
<SubElement2>
<LeafElement1/>
<LeafElement1/>
</SubElement2>
</Element1>
<Element2 id="UniqueId2" AttributeToCheck="true">
<SubElement1>
<LeafElement1/>
<LeafElement1/>
</SubElement1>
</Element2>
</Root>
</code></pre>
<p>I want to add the attribute foo="bar" to elements that both:</p>
<ol>
<li>Have sibling elements with the same name</li>
<li>Have any ancestor with attribute AttributeToCheck</li>
</ol>
<p>This should be the result: </p>
<pre><code><?xml version="1.0"?>
<Root>
<Element1 id="UniqueId1">
<SubElement1/>
<SubElement2>
<LeafElement1/>
<LeafElement1/>
</SubElement2>
</Element1>
<Element2 id="UniqueId2" AttributeToCheck="true">
<SubElement1>
<LeafElement1 foo="bar"/>
<LeafElement1 foo="bar"/>
</SubElement1>
</Element2>
</Root>
</code></pre>
<p>This is my stlesheet so far. It adds the attribute elements matching condition 1 but fails to account for condition 2. </p>
<pre><code><?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" indent="yes"/>
<xsl:template match="* | @*">
<xsl:copy>
<xsl:apply-templates select="* | @*"/>
</xsl:copy>
</xsl:template>
<xsl:template match="*[count(../*[name(.) = name(current())]) > 1]">
<xsl:copy>
<xsl:attribute name="foo">bar</xsl:attribute>
<xsl:apply-templates select="* | @*"/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
</code></pre>
<p>The incorrect output: </p>
<pre><code><?xml version="1.0"?>
<Root>
<Element1 id="UniqueId1">
<SubElement1/>
<SubElement2>
<LeafElement1 foo="bar"/> (incorrect)
<LeafElement1 foo="bar"/> (incorrect)
</SubElement2>
</Element1>
<Element2 id="UniqueId2" AttributeToCheck="true">
<SubElement1>
<LeafElement1 foo="bar"/> (correct)
<LeafElement1 foo="bar"/> (correct)
</SubElement1>
</Element2>
</Root>
</code></pre>
<p>Since the second template already correctly matches elements that have siblings with the same name, it should be easy to use the ancestor XPath axis to exclude elements without AttributeToCheck ancestors. I added another predicate to the second template. </p>
<pre><code><xsl:template match="*[ancestor::*[@AttributeToCheck]][count(../*[name(.) = name(current())]) > 1]">
</code></pre>
<p>When I apply this stylesheet, the output document is the same as the input document, showing that the second template doesn't match any elements. I also tried changing the new predicate to use the node count. </p>
<pre><code><xsl:template match="*[count(ancestor::*[@AttributeToCheck]) > 0][count(../*[name(.) = name(current())]) > 1]">
</code></pre>
<p>This also didn't work, the output document was the same as the input document. This is surprising, because when I use this ancestor expression to output the name of nodes with AttributeToCheck it works. I made these changes to the sylesheet: </p>
<pre><code><?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" indent="yes"/>
<xsl:template match="* | @*">
<xsl:copy>
<xsl:apply-templates select="* | @*"/>
</xsl:copy>
</xsl:template>
<xsl:template match="*[count(../*[name(.) = name(current())]) > 1]">
<xsl:copy>
<xsl:attribute name="foo">bar</xsl:attribute>
<xsl:attribute name="AncestorCount">
<xsl:value-of select="count(ancestor::*[@AttributeToCheck])"/>
</xsl:attribute>
<xsl:attribute name="AncestorName">
<xsl:value-of select="name(ancestor::*[@AttributeToCheck])"/>
</xsl:attribute>
<xsl:apply-templates select="* | @*"/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
</code></pre>
<p>Produces this output:</p>
<pre><code><?xml version="1.0"?>
<Root>
<Element1 id="UniqueId1">
<SubElement1/>
<SubElement2>
<LeafElement1 foo="bar" AncestorCount="0" AncestorName=""/>
<LeafElement1 foo="bar" AncestorCount="0" AncestorName=""/>
</SubElement2>
</Element1>
<Element2 id="UniqueId2" AttributeToCheck="true">
<SubElement1>
<LeafElement1 foo="bar" AncestorCount="1" AncestorName="Element2"/>
<LeafElement1 foo="bar" AncestorCount="1" AncestorName="Element2"/>
</SubElement1>
</Element2>
</Root>
</code></pre>
<p>My question is, why does the XPath predicate <code>*[ancestor::*[@AttributeToCheck]][count(../*[name(.) = name(current())]) > 1]</code> not correctly match elements matching both conditions 1 and 2? What XPath expression should I use instead? </p>
http://stackoverflow.com/questions/1809551/parsing-date-strings0Parsing date stringsAndrew Robinson2009-11-27T16:09:31Z2009-12-01T14:27:19Z
<p>I'm writing XSLT to transform an XML document from one DTD to another and in the process of doing so trying to tidy up some date strings.</p>
<p>Each record in my source document has a date element that contains a string representation of a date. Some illustrative examples: </p>
<ul>
<li>11 April 1995</li>
<li>14th April 1995</li>
<li>10 Sept 2002</li>
<li>14 Sep 2004</li>
<li>21-23 June 2002</li>
<li>2005</li>
</ul>
<p>I want my resulting document to contain dates (or date ranges where appropriate) in ISO 8601 format.</p>
<p>What's my best strategy for achieving this? I could knuckle down and start writing a function to convert them (probably based on regexes) but I find it hard to believe someone hasn't solved this problem already. </p>
<p>Is there an XSLT module/function out there that will do most of the work for me? Should I be looking outside XSLT for a solution?</p>
http://stackoverflow.com/questions/1826455/can-i-create-a-asp-net-webform-or-user-control-output-from-an-xml-file-by-using0Can I create a asp.net webform -or user control- output from an XML file by using XSLT?burak ozdogan2009-12-01T14:17:08Z2009-12-01T14:20:03Z
<p>Hi,</p>
<p>Basically the thing I would like to achieve is to produce a form with some check boxes which will have their texts, default values from an xml file. As an example the block below should result 3 checkboxes (Use Sword, Use Shield, Use Spell) with the default values assigned. And when that form is posted back I can read them on the code behind of the apsx page.</p>
<pre><code><?xml version="1.0" encoding="utf-8" ?>
<root>
<checkBox>
<id>UseSword</id>
<caption>Use sword</caption>
<defaultValue>true</defaultValue>
</checkBox>
<checkBox>
<id>UseShield</id>
<caption>Use shield</caption>
<defaultValue>false</defaultValue>
</checkBox>
<checkBox>
<id>UseSpell</id>
<caption>Use spell</caption>
<defaultValue>false</defaultValue>
</checkBox>
</root>
</code></pre>
<p>I have never worked with xslt so far. I kkow it is used to create various outputs like HTML. But I am not sure if I can also create server-side controls as an output by using XSLT templates.</p>
<p>Is this possible?</p>
<p>thanks!</p>
http://stackoverflow.com/questions/1808887/how-to-avoid-a-saxparseexception-using-xerces-when-html-file-includes-mdash0How to avoid a SAXParseException using Xerces when HTML file includes mdash?Grundlefleck2009-11-27T13:49:26Z2009-12-01T13:53:55Z
<p>I am using the Xerces implementation within JDK6 to perform XPath queries on an HTML 4.0 transitional document. With the following code: </p>
<pre><code>XPath newXPath = XPathFactory.newInstance().newXPath();
XPathExpression xpathExpr = newXPath.compile(expression);
Object xPathResult = xpathExpr.evaluate(inputSource, XPathConstants.NODESET);
</code></pre>
<p>Where <code>inputSource</code> is built from a <code>FileInputStream</code>, I receive the exception:</p>
<pre>
Caused by: org.xml.sax.SAXParseException: The entity "mdash" was referenced, but not declared.
at com.sun.org.apache.xerces.internal.parsers.DOMParser.parse(DOMParser.java:239)
at com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderImpl.parse(DocumentBuilderImpl.java:283)
at com.sun.org.apache.xpath.internal.jaxp.XPathExpressionImpl.evaluate(XPathExpressionImpl.java:291)
</pre>
<p>This message is also printed to the standard output:</p>
<pre>
[Fatal Error] :20:43: The entity "mdash" was referenced, but not declared.
</pre>
<p>How can I avoid this exception?</p>
<p>The HTML file is created from an XSLT transformation from XML. I don't think I necessarily need it to be an <code>&mdash;</code>, I'm not sure. The HTML is to be displayed in a Java Swing application.</p>
<p>It's difficult for me to judge what information from my specific implementation is relevant for this problem. Please let me know by comments if more information is needed.</p>
<p><hr></p>
<p>So, I was under the bad misconception that HTML was XML (a result of not actually thinking of that at all).</p>
<p>So, given an HTML file, how do I go about solving this problem?</p>
<ul>
<li>Giving the parser the DTD for HTML 4?</li>
<li>Replace <code>&mdash;</code> with the equivalent. The HTML is created from an XSLT transform, can the stylesheet be set to replace mdash with the equivalent numeric symbol?</li>
<li>Is there any libraries which would fix the HTML before it's given to the parser? I've noticed JTidy being mentioned for similar purposes.</li>
</ul>
http://stackoverflow.com/questions/1825932/dot-in-xml-tags-transforming-w-xslt0Dot '.' in XML-Tags / Transforming w. XSLTmarc2009-12-01T12:34:29Z2009-12-01T13:02:08Z
<p>Hi,</p>
<p>I've got an xml which shoule be transformed using XSLT but there are "." in the Tag and
in cause of that it doesn't work. But the . is allowed in XML-Tags.
Can anybody give me a hint on transforming such a file:
XML:</p>
<pre><code><root.element>
<test.element>Hello World</test.element>
</root.element>
</code></pre>
<p>XSLT:</p>
<pre><code><xsl:template match="/">
<test><xsl:value-of select="root.element/test.element"/></test>
</xsl:template>
</code></pre>
<p>Thanks for your help.</p>
<p>marc</p>
http://stackoverflow.com/questions/1825058/how-to-create-xslt-transformation-for-srcml0How to create XSLT transformation for srcML?Michal2009-12-01T09:37:03Z2009-12-01T11:04:53Z
<p>I have a question about XSL transformation. Lets take an example (in srcML) which represents a typedef enum in C:</p>
<pre><code><typedef>typedef <type><enum>enum <name>SomeEnum</name>
<block>{
<expr><name>Value0</name> = 0</expr>,
<expr><name>Value1</name> = <name>SOMECONST</name></expr>,
<expr><name>Value2</name> = <name>SOMECONST</name> + 1</expr>,
<expr><name>ValueTop</name></expr>
}</block></enum></type> <name>TSomeEnum</name>;</typedef>
</code></pre>
<p>C version:</p>
<pre><code>typedef enum SomeEnum
{
Value0 = 0,
Value1 = SOMECONST,
Value2 = SOMECONST + 1,
ValueTop
} TSomeEnum;
</code></pre>
<p>How to define an <code><xsl:template></code> to remove the line with, for example, <code>Value2</code>?</p>
<p>How to define an <code><xsl:template></code> to remove the last line (with <code>ValueTop</code>), including the preceding comma?</p>