active questions tagged xsl - Stack Overflow most recent 30 from stackoverflow.com 2010-03-18T02:28:36Z http://stackoverflow.com/feeds/tag/xsl http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/2461866/xsl-list-divided-into-columns 3 XSL: List divided into columns. kalininew http://stackoverflow.com/users/294785 2010-03-17T11:42:33Z 2010-03-17T16:59:24Z <p>Hello, help me please. There is a list of nodes. </p> <pre><code>&lt;list&gt; &lt;item&gt;1&lt;/item&gt; &lt;item&gt;2&lt;/item&gt; &lt;item&gt;3&lt;/item&gt; &lt;item&gt;4&lt;/item&gt; &lt;item&gt;5&lt;/item&gt; &lt;item&gt;6&lt;/item&gt; &lt;item&gt;7&lt;/item&gt; and so on... &lt;/list&gt; </code></pre> <p>Need to divide the list of "n" (arbitrary number) equal parts.</p> <p>If the number of nodes is not divided equally, then let the last set of nodes will contain the remainder of the division.</p> <p>For example, if the input list contains 33 elements and the output should have 4 parts with uniformly distributed elements. At the exit to get 3 parts to 9 of elements and one part with 6 elements in the sum of 33.</p> <p>input</p> <pre><code>&lt;ul&gt; &lt;li&gt;1&lt;/li&gt; &lt;li&gt;2&lt;/li&gt; ... &lt;li&gt;33&lt;/li&gt; &lt;/ul&gt; </code></pre> <p>Output</p> <pre><code>&lt;ul&gt; &lt;li&gt;1&lt;/li&gt; &lt;li&gt;2&lt;/li&gt; ... &lt;li&gt;9&lt;/li&gt; &lt;/ul&gt; &lt;ul&gt; &lt;li&gt;10&lt;/li&gt; &lt;li&gt;11&lt;/li&gt; ... &lt;li&gt;18&lt;/li&gt; &lt;/ul&gt; &lt;ul&gt; &lt;li&gt;19&lt;/li&gt; &lt;li&gt;11&lt;/li&gt; ... &lt;li&gt;27&lt;/li&gt; &lt;/ul&gt; &lt;ul&gt; &lt;li&gt;28&lt;/li&gt; &lt;li&gt;30&lt;/li&gt; ... &lt;li&gt;33&lt;/li&gt; &lt;/ul&gt; </code></pre> <p>Divided into 4 cols.</p> http://stackoverflow.com/questions/2455910/implementing-exslt-dynamic-evaluate-in-c-xslcompiledtransform 0 Implementing exslt.dynamic.evaluate in c# (XslCompiledTransform) Alex http://stackoverflow.com/users/258542 2010-03-16T15:55:20Z 2010-03-17T14:33:40Z <p>Hi,</p> <p>I have a stylesheet that makes use of exslt:dynamic module and more precisely, it only uses the evaluate function. I know the XslCompiledTransform from .NET 2.0 does not implement this module (just like the ExslTransform from Mvp.Xml).</p> <p>Any idea how to solve this problem?</p> http://stackoverflow.com/questions/2454867/xslt-whole-table-columns-count 0 XSLT: Whole table columns count. kalininew http://stackoverflow.com/users/294785 2010-03-16T13:56:11Z 2010-03-16T14:44:36Z <p>Good afternoon, gentlemen. Please help us solve the problem, I do not have enough brains to solve it by myself.</p> <p>There is a table, you must define "simple" it or "complicated". Table "simple" if each row contain only two column, otherwise it is "complicated" table. How to do this means <strong>xslt</strong>.</p> http://stackoverflow.com/questions/2454313/xslt-how-to-remove-the-self-closed-elment 0 XSLT: How to remove the self-closed elment Daoming Yang http://stackoverflow.com/users/52463 2010-03-16T12:38:38Z 2010-03-16T13:27:57Z <p>I have a large xml file which contents a lot of self-closed tags. How could remove all them by using XSLT.</p> <p>eg. </p> <pre><code>&lt;?xml version="1.0" encoding="utf-8" ?&gt; &lt;Persons&gt; &lt;Person&gt; &lt;Name&gt;user1&lt;/Name&gt; &lt;Tel /&gt; &lt;Mobile&gt;123&lt;/Mobile&gt; &lt;/Person&gt; &lt;Person&gt; &lt;Name&gt;user2&lt;/Name&gt; &lt;Tel&gt;456&lt;/Tel&gt; &lt;Mobile /&gt; &lt;/Person&gt; &lt;Person&gt; &lt;Name /&gt; &lt;Tel&gt;123&lt;/Tel&gt; &lt;Mobile /&gt; &lt;/Person&gt; &lt;Person&gt; &lt;Name&gt;user4&lt;/Name&gt; &lt;Tel /&gt; &lt;Mobile /&gt; &lt;/Person&gt; &lt;/Persons&gt; </code></pre> <p>I'm expecting the result:</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8" ?&gt; &lt;Persons&gt; &lt;Person&gt; &lt;Name&gt;user1&lt;/Name&gt; &lt;Mobile&gt;123&lt;/Mobile&gt; &lt;/Person&gt; &lt;Person&gt; &lt;Name&gt;user2&lt;/Name&gt; &lt;Tel&gt;456&lt;/Tel&gt; &lt;/Person&gt; &lt;Person&gt; &lt;Tel&gt;123&lt;/Tel&gt; &lt;/Person&gt; &lt;Person&gt; &lt;Name&gt;user4&lt;/Name&gt; &lt;/Person&gt; &lt;/Persons&gt; </code></pre> <p>Note: there are thousands of different elements, how can I programmatically remove all the self-closed tags. Another question is how to remove the empty element such as <code>&lt;name&gt;&lt;/name&gt;</code> as well. </p> <p>Can anyone help me on this? Many thanks.</p> http://stackoverflow.com/questions/2449011/using-xslvariable-in-a-xslforeach-select-statment 2 Using xsl:variable in a xsl:foreach select statment Nefariousity http://stackoverflow.com/users/294138 2010-03-15T17:12:26Z 2010-03-16T08:51:06Z <p>I'm trying to iterate through an xml document using xsl:foreach but I need the select=" " to be dynamic so I'm using a variable as the source. Here's what I've tried:</p> <p>...</p> <pre><code>&lt;xsl:template name="SetDataPath"&gt; &lt;xsl:param name="Type" /&gt; &lt;xsl:variable name="Path_1"&gt;/Rating/Path1/*&lt;/xsl:variable&gt; &lt;xsl:variable name="Path_2"&gt;/Rating/Path2/*&lt;/xsl:variable&gt; &lt;xsl:if test="$Type='1'"&gt; &lt;xsl:value-of select="$Path_1"/&gt; &lt;/xsl:if&gt; &lt;xsl:if test="$Type='2'"&gt; &lt;xsl:value-of select="$Path_2"/&gt; &lt;/xsl:if&gt; &lt;xsl:template&gt; </code></pre> <p>...</p> <pre><code> &lt;!-- Set Data Path according to Type --&gt; &lt;xsl:variable name="DataPath"&gt; &lt;xsl:call-template name="SetDataPath"&gt; &lt;xsl:with-param name="Type" select="/Rating/Type" /&gt; &lt;/xsl:call-template&gt; &lt;/xsl:variable&gt; </code></pre> <p>...</p> <pre><code>&lt;xsl:for-each select="$DataPath"&gt; </code></pre> <p>...</p> <p>The foreach threw an error stating: "XslTransformException - To use a result tree fragment in a path expression, first convert it to a node-set using the msxsl:node-set() function."</p> <p>When I use the msxsl:node-set() function though, my results are blank.</p> <p>I'm aware that I'm setting $DataPath to a string, but shouldn't the node-set() function be creating a node set from it? Am I missing something? When I don't use a variable:</p> <pre><code>&lt;xsl:for-each select="/Rating/Path1/*"&gt; </code></pre> <p>I get the proper results.</p> <p>Here's the XML data file I'm using:</p> <pre><code>&lt;Rating&gt; &lt;Type&gt;1&lt;/Type&gt; &lt;Path1&gt; &lt;sarah&gt; &lt;dob&gt;1-3-86&lt;/dob&gt; &lt;user&gt;Sarah&lt;/user&gt; &lt;/sarah&gt; &lt;joe&gt; &lt;dob&gt;11-12-85&lt;/dob&gt; &lt;user&gt;Joe&lt;/user&gt; &lt;/joe&gt; &lt;/Path1&gt; &lt;Path2&gt; &lt;jeff&gt; &lt;dob&gt;11-3-84&lt;/dob&gt; &lt;user&gt;Jeff&lt;/user&gt; &lt;/jeff&gt; &lt;shawn&gt; &lt;dob&gt;3-5-81&lt;/dob&gt; &lt;user&gt;Shawn&lt;/user&gt; &lt;/shawn&gt; &lt;/Path2&gt; &lt;/Rating&gt; </code></pre> <p>My question is simple, how do you run a foreach on 2 different paths?</p> http://stackoverflow.com/questions/2451917/xsl-for-each-and-value-of 1 XSL for-each and value-of Sandy Vanderbleek http://stackoverflow.com/users/286650 2010-03-16T03:19:29Z 2010-03-16T03:22:33Z <p>Given the xml:</p> <pre><code>&lt;element&gt;text&lt;/element&gt; ... &lt;element&gt;text&lt;/element&gt; </code></pre> <p>And xsl:</p> <pre><code>&lt;xsl:for-each select="element"&gt; ... &lt;/xsl:for-each&gt; </code></pre> <p>What do I need to put inside the for-each loop to access the text? There doesn't seem to be a corresponding <code>xsl:value-of</code> because <code>select=""</code>, <code>select="/"</code>, and <code>select="element"</code> are all wrong.</p> http://stackoverflow.com/questions/2448275/java-xml-xsl-transformer-how-to-get-more-information-on-an-error 0 Java: XML/XSL Transformer how to get more information on an error ? Reversed http://stackoverflow.com/users/250825 2010-03-15T15:30:03Z 2010-03-15T16:50:13Z <p>Hi <br /> i'm getting exception on <code>Transformer transformer = tFactory.newTransformer(StreamXSL); </code> but the error below is not explicit i cannot understand why "Could not compile stylesheet" ?</p> <p>Tks</p> <pre><code>static String getHtml(String xml) { Element elementObj = getElementObject(xml); String xslName = getValueOfElement(elementObj, xml, "XSL_TO_RUN"); StreamSource StreamXML = new StreamSource(new StringReader(xml)); try{ TransformerFactory tFactory = TransformerFactory.newInstance(); if(xslName!=null){ String xslfile = xslName; File xfile = new File(xslfile); if (xfile.exists()){} else { LogI.log(4,"getHtml:: ERROR: xsl file don´t Exist! " + xslName ); return null; } StreamSource StreamXSL = new StreamSource(xfile); Transformer transformer = tFactory.newTransformer(StreamXSL); }else{ LogI.log(0,"getHtml::ERROR-&gt;Error on create stream XSL"); return null; } } catch(TransformerConfigurationException ex){ LogI.log(0,"getHtml::Erro crossing the XML with the XSL:" + ex); LogI.log(0,"getHtml::Erro crossing the XML with the XSL(1):" + ex.getMessageAndLocation()); LogI.log(0,"getHtml::Erro crossing the XML with the XSL(2):" + ex.getMessage()); for(int i=0;i&lt;ex.getStackTrace().length;i++){ LogI.log(0, "ARQ::Pedido:: ERRO(2) -&gt;" + ex.getStackTrace()[i]); } return null; } catch(Exception e){ LogI.log(0,"getHtml::Erro crossing the XML with the XSL:" + e); //out.clear(); //out.println(errorPage); return null; } } </code></pre> <p>Here is the output:</p> <p>ERRO: getHtml::Erro crossing the XML with the XSL:javax.xml.transform.TransformerConfigurationException: Could not compile stylesheet ERRO: getHtml::Erro crossing the XML with the XSL(1):Could not compile stylesheet ERRO: getHtml::Erro crossing the XML with the XSL(2):Could not compile stylesheet ERRO: ARQ::Pedido:: ERRO(2) ->com.sun.org.apache.xalan.internal.xsltc.trax.TransformerFactoryImpl.newTemplates(Unknown Source) ERRO: ARQ::Pedido:: ERRO(2) ->com.sun.org.apache.xalan.internal.xsltc.trax.TransformerFactoryImpl.newTransformer(Unknown Source) ERRO: ARQ::Pedido:: ERRO(2) ->BizBanc.Arq.getHtml(Arq.java:189) ERRO: ARQ::Pedido:: ERRO(2) ->BizBanc.Arq.getResponse(Arq.java:792)</p> http://stackoverflow.com/questions/2446433/xsl-template-reducing-replication 0 XSL Template - reducing replication Chris http://stackoverflow.com/users/94278 2010-03-15T10:39:01Z 2010-03-15T13:27:22Z <p>Hey</p> <p>Sorry about the extremely vague question title (any suggestions for improvements welcome)</p> <p>I have an XSL document that, currently, has lots of replication that I want to reduce.</p> <p>Here is the following XML snippet I am working with</p> <pre><code>&lt;Unit Status="alive"&gt; </code></pre> <p>I am currently using the following XSL to show images based on the status of the Unit</p> <pre><code> &lt;xsl:choose&gt; &lt;xsl:when test="@Status = 'alive'"&gt; &lt;img src="/web/resources/graphics/accept.png" /&gt; &lt;/xsl:when&gt; &lt;xsl:when test="@Status = 'missingUnit'"&gt; &lt;img src="/web/resources/graphics/error.png" /&gt; &lt;/xsl:when&gt; &lt;xsl:when test="@Status = 'missingNode'"&gt; &lt;img src="/web/resources/graphics/exclamation.png" /&gt; &lt;/xsl:when&gt; &lt;xsl:when test="@Status = 'unexpectedUnit'"&gt; &lt;img src="/web/resources/graphics/exclamation_blue.png" /&gt; &lt;/xsl:when&gt; &lt;xsl:otherwise&gt; &lt;!-- Should never get here --&gt; &lt;img src="/web/resources/graphics/delete.png" /&gt; &lt;/xsl:otherwise&gt; &lt;/xsl:choose&gt; </code></pre> <p>How do I put this code in a template or stylesheet that will allow me to stop copying / pasting this everywhere.</p> <p>Thanks</p> http://stackoverflow.com/questions/1009179/net-transforming-large-xml-docs-with-xsl 2 .Net Transforming large XML docs with XSL Jay http://stackoverflow.com/users/116208 2009-06-17T19:49:39Z 2010-03-14T20:27:23Z <p>Question: What is the best way to transform a large XML document (>200MB) using XSL in .Net?</p> <p>Background: I have a application that feeds me large data files, I cannot change the format. In the past I have been able to translate smaller data files with no issues.</p> <p>Originally I was working with the XML as strings and was running out of memory very quickly. I switched my code and now I deal with MemoryStream's to read, transform using a stylesheet and then save off a copy of the output to a separate location using filestreams.</p> <p>Applying of the stylesheet causes the application to consume upwards of 1gb memory and eventually crashes.</p> <p>I know I could programatically process the XML using the DOM but I would really like to stick with a generic method of applying an XSL stylesheet. </p> <p>Does anyone have any pointers on how I could better manage memory while processing the XSL transformation? Below is a snippet of code where i am applying the transformation:</p> <pre><code>'xmlData is a memory stream passed into a function '... Dim strfilepath As String = appConfigSettings.FilePaths.XslFilePath &amp; "\" &amp; odtrow.formatterXsl Dim xslt As New System.Xml.Xsl.XslCompiledTransform() xslt.Load(strfilepath) Dim xmlRead As XmlReader = XmlReader.Create(xmlData) newStream = New MemoryStream() xslt.Transform(xmlRead, Nothing, newStream) 'here is where it fails newStream.Position = 0 '... </code></pre> <p>C# or VB examples are fine I can work with either...This app was a hand me down so not criticism for the vb please :) -J</p> http://stackoverflow.com/questions/2436672/removing-white-space-inside-quotes-in-xslt 0 Removing white space inside quotes in XSLT fudgey http://stackoverflow.com/users/145346 2010-03-13T00:10:39Z 2010-03-13T02:19:31Z <p>I'm trying to format a table from XML. Lets say I have this line in the XML</p> <pre><code>&lt;country&gt;Dominican Republic&lt;/country&gt; </code></pre> <p>I would like to get my table to look like this</p> <pre><code>&lt;td class="country DominicanRepublic"&gt;Dominican Republic&lt;/td&gt; </code></pre> <p>I've tried this:</p> <pre><code>&lt;td class="country {country}"&gt;&lt;xsl:value-of select="country"/&gt;&lt;/td&gt; </code></pre> <p>then this:</p> <pre><code>&lt;xsl:element name="td"&gt; &lt;xsl:attribute name="class"&gt; &lt;xsl:text&gt;country &lt;/xsl:text&gt; &lt;xsl:value-of select="normalize-space(country)"/&gt; &lt;/xsl:attribute&gt; &lt;xsl:value-of select="country"/&gt; &lt;/xsl:element&gt; </code></pre> <p>The <code>normalize-space()</code> doesn't remove the space between the two parts of the name and I can't use <code>&lt;xsl:strip-space elements="country"/&gt;</code> because I need the space when I display the name inside the table cell.</p> <p>How can I strip the space from the value inside the class, but not the text in the cell?</p> http://stackoverflow.com/questions/2436459/conditional-selection-of-decimal-format-in-xslt 2 conditional selection of decimal-format in xslt Jose L Martinez-Avial http://stackoverflow.com/users/234838 2010-03-12T23:01:57Z 2010-03-12T23:32:52Z <p>Hi all, I'm trying to modify the decimal-format of a stylesheet based on certain information of an XML. More exaclty, I've a XML like this</p> <pre><code>&lt;?xml version="1.0" encoding="ISO-8859-1"?&gt; &lt;REPORT&gt; &lt;LANGUAGE&gt;2&lt;/LANGUAGE&gt; &lt;MYVALUE&gt;123456.78&lt;/MYVALUE&gt; &lt;/REPORT&gt; </code></pre> <p>I'm trying to define the decimal format as european if the language is 2, and default otherwse. So I've created the following template</p> <pre><code>&lt;xsl:template match="REPORT"&gt; &lt;xsl:if test="$language=2"&gt; &lt;xsl:decimal-format decimal-separator=',' grouping-separator='.' /&gt; &lt;/xsl:if&gt; &lt;xsl:value-of select ="format-number(MYVALUE,'###.###,00')"/&gt; &lt;/xsl:template&gt; </code></pre> <p>So it shows the number in european format or in standard format. But I'm getting the following error</p> <p>xsl:decimal-format is not allowed in this position in the stylesheet!</p> <p>If I try to put the decimal-format outside the template, then I get the message that the xsl:if is not allowed in this position in the sthylsheet. How can I change the decimal-format based in the XML?</p> <p>Thanks Jose</p> http://stackoverflow.com/questions/2434810/javascript-in-xsl-that-is-loaded-by-javascript 1 Javascript in XSL that is loaded by Javascript James Armstead http://stackoverflow.com/users/205058 2010-03-12T18:10:40Z 2010-03-12T20:34:27Z <p>Is there anyway to have javascript run when a XSL sheet has been applied to an XML file by Javascript?</p> <p>I am using a JQuery plugin to apply the sheet to the xml but the javascript that is located inside of the XSL file will not run.</p> <p>I put the Javascript at the bottom of the file and it still does not run.. I can't seem to get an alert to even run?</p> http://stackoverflow.com/questions/2429748/xsl-transformation-generating-output-from-other-nodes 3 XSL transformation generating output from other nodes Abel Morelos http://stackoverflow.com/users/124123 2010-03-12T00:41:47Z 2010-03-12T10:55:44Z <p>I have the following XSL template (I omitted the template for Organization, let me know if it's necessary):</p> <pre><code> &lt;xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"&gt; &lt;xsl:output method="html" indent="yes" omit-xml-declaration="yes"/&gt; &lt;xsl:template match="SOAP-ENV:Body/*[local-name()='Publisher']"&gt; &lt;html&gt; &lt;xsl:call-template name="body" /&gt; &lt;/html&gt; &lt;/xsl:template&gt; &lt;xsl:template name="body"&gt; &lt;BODY&gt; &lt;br/&gt; &lt;center&gt; &lt;font face="arial" size="2"&gt; &lt;b&gt;Publisher &lt;xsl:value-of select="*[local-name()='Organization']/*[local-name()='PublisherData']/*[local-name()='PublisherName']"/&gt; &lt;/b&gt; &lt;/font&gt; &lt;/center&gt; &lt;br/&gt; &lt;xsl:apply-templates select="*[local-name()='Organization']"/&gt; &lt;/BODY&gt; &lt;/xsl:template&gt; &lt;/xsl:stylesheet&gt; </code></pre> <p>The previous template generates the output I want, it's generating the tags containing the output generated by the "body" template. The issue I'm having is that before the opening tag I'm getting text output from a previous node. Not sure why this is happening since I'm not selecting these other nodes. For example:</p> <pre><code>&lt;SOAP-ENV:Envelope xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"&gt; &lt;SOAP-ENV:Header&gt; &lt;n1&gt;abc&lt;/n1&gt; &lt;n2&gt;def&lt;/n2&gt; &lt;/SOAP-ENV:Header&gt; &lt;SOAP-ENV:Body&gt; &lt;Publisher&gt; &lt;!--Child nodes here --&gt; &lt;/Publisher&gt; &lt;/SOAP-ENV:Body&gt; &lt;/SOAP-ENV:Envelope&gt; </code></pre> <p>Given the previous sample XML fragment, my output would contain what I would expect of formatting the Publisher element, but I'm also getting the text nodes of the children of the SOAP-ENV:Header node.</p> <p>I only want to transform the contents of the Publisher element, but in the output I'll get:</p> <pre><code>abc def //Expected output transforming Publisher goes here </code></pre> <p>My question is, why abc and def are being selected? </p> http://stackoverflow.com/questions/2402087/i-would-like-to-filter-xsl-output-based-on-a-radio-button-selection 1 I would like to filter XSL output based on a Radio button selection Phil Speth http://stackoverflow.com/users/222512 2010-03-08T14:46:32Z 2010-03-11T21:07:22Z <p>Here is my example I am trying to filter by year based on user selection: I assume some js or jQuery code would be needed:</p> <p>XML file:</p> <hr> <pre><code>&lt;?xml version="1.0" encoding="ISO-8859-1"?&gt; &lt;catalog&gt; &lt;cd&gt; &lt;title&gt;Empire Burlesque3&lt;/title&gt; &lt;artist&gt;Bob Dylan&lt;/artist&gt; &lt;country&gt;USA&lt;/country&gt; &lt;company&gt;Columbia&lt;/company&gt; &lt;price&gt;10.90&lt;/price&gt; &lt;year&gt;1985&lt;/year&gt; &lt;/cd&gt; &lt;cd&gt; &lt;title&gt;Hide your heart&lt;/title&gt; &lt;artist&gt;Bonnie Tyler&lt;/artist&gt; &lt;country&gt;UK&lt;/country&gt; &lt;company&gt;CBS Records&lt;/company&gt; &lt;price&gt;9.90&lt;/price&gt; &lt;year&gt;1988&lt;/year&gt; &lt;/cd&gt; &lt;cd&gt; &lt;title&gt;Greatest Hits&lt;/title&gt; &lt;artist&gt;Dolly Parton&lt;/artist&gt; &lt;country&gt;USA&lt;/country&gt; &lt;company&gt;RCA&lt;/company&gt; &lt;price&gt;9.90&lt;/price&gt; &lt;year&gt;1982&lt;/year&gt; &lt;/cd&gt; &lt;cd&gt; &lt;title&gt;Still got the blues&lt;/title&gt; &lt;artist&gt;Gary Moore&lt;/artist&gt; &lt;country&gt;UK&lt;/country&gt; &lt;company&gt;Virgin records&lt;/company&gt; &lt;price&gt;10.20&lt;/price&gt; &lt;year&gt;1990&lt;/year&gt; &lt;/cd&gt; &lt;cd&gt; &lt;title&gt;Eros&lt;/title&gt; &lt;artist&gt;Eros Ramazzotti&lt;/artist&gt; &lt;country&gt;EU&lt;/country&gt; &lt;company&gt;BMG&lt;/company&gt; &lt;price&gt;9.90&lt;/price&gt; &lt;year&gt;1997&lt;/year&gt; &lt;/cd&gt; &lt;cd&gt; &lt;title&gt;One night only&lt;/title&gt; &lt;artist&gt;Bee Gees&lt;/artist&gt; &lt;country&gt;UK&lt;/country&gt; &lt;company&gt;Polydor&lt;/company&gt; &lt;price&gt;10.90&lt;/price&gt; &lt;year&gt;1998&lt;/year&gt; &lt;/cd&gt; &lt;cd&gt; &lt;title&gt;Sylvias Mother&lt;/title&gt; &lt;artist&gt;Dr.Hook&lt;/artist&gt; &lt;country&gt;UK&lt;/country&gt; &lt;company&gt;CBS&lt;/company&gt; &lt;price&gt;8.10&lt;/price&gt; &lt;year&gt;1973&lt;/year&gt; &lt;/cd&gt; &lt;cd&gt; &lt;title&gt;Maggie May&lt;/title&gt; &lt;artist&gt;Rod Stewart&lt;/artist&gt; &lt;country&gt;UK&lt;/country&gt; &lt;company&gt;Pickwick&lt;/company&gt; &lt;price&gt;8.50&lt;/price&gt; &lt;year&gt;1990&lt;/year&gt; &lt;/cd&gt; &lt;cd&gt; &lt;title&gt;Romanza&lt;/title&gt; &lt;artist&gt;Andrea Bocelli&lt;/artist&gt; &lt;country&gt;EU&lt;/country&gt; &lt;company&gt;Polydor&lt;/company&gt; &lt;price&gt;10.80&lt;/price&gt; &lt;year&gt;1996&lt;/year&gt; &lt;/cd&gt; &lt;cd&gt; &lt;title&gt;When a man loves a woman&lt;/title&gt; &lt;artist&gt;Percy Sledge&lt;/artist&gt; &lt;country&gt;USA&lt;/country&gt; &lt;company&gt;Atlantic&lt;/company&gt; &lt;price&gt;8.70&lt;/price&gt; &lt;year&gt;1987&lt;/year&gt; &lt;/cd&gt; &lt;cd&gt; &lt;title&gt;Black angel&lt;/title&gt; &lt;artist&gt;Savage Rose&lt;/artist&gt; &lt;country&gt;EU&lt;/country&gt; &lt;company&gt;Mega&lt;/company&gt; &lt;price&gt;10.90&lt;/price&gt; &lt;year&gt;1995&lt;/year&gt; &lt;/cd&gt; &lt;cd&gt; &lt;title&gt;1999 Grammy Nominees&lt;/title&gt; &lt;artist&gt;Many&lt;/artist&gt; &lt;country&gt;USA&lt;/country&gt; &lt;company&gt;Grammy&lt;/company&gt; &lt;price&gt;10.20&lt;/price&gt; &lt;year&gt;1999&lt;/year&gt; &lt;/cd&gt; &lt;cd&gt; &lt;title&gt;For the good times&lt;/title&gt; &lt;artist&gt;Kenny Rogers&lt;/artist&gt; &lt;country&gt;UK&lt;/country&gt; &lt;company&gt;Mucik Master&lt;/company&gt; &lt;price&gt;8.70&lt;/price&gt; &lt;year&gt;1995&lt;/year&gt; &lt;/cd&gt; &lt;cd&gt; &lt;title&gt;Big Willie style&lt;/title&gt; &lt;artist&gt;Will Smith&lt;/artist&gt; &lt;country&gt;USA&lt;/country&gt; &lt;company&gt;Columbia&lt;/company&gt; &lt;price&gt;9.90&lt;/price&gt; &lt;year&gt;1997&lt;/year&gt; &lt;/cd&gt; &lt;cd&gt; &lt;title&gt;Tupelo Honey&lt;/title&gt; &lt;artist&gt;Van Morrison&lt;/artist&gt; &lt;country&gt;UK&lt;/country&gt; &lt;company&gt;Polydor&lt;/company&gt; &lt;price&gt;8.20&lt;/price&gt; &lt;year&gt;1971&lt;/year&gt; &lt;/cd&gt; &lt;cd&gt; &lt;title&gt;Soulsville&lt;/title&gt; &lt;artist&gt;Jorn Hoel&lt;/artist&gt; &lt;country&gt;Norway&lt;/country&gt; &lt;company&gt;WEA&lt;/company&gt; &lt;price&gt;7.90&lt;/price&gt; &lt;year&gt;1996&lt;/year&gt; &lt;/cd&gt; &lt;cd&gt; &lt;title&gt;The very best of&lt;/title&gt; &lt;artist&gt;Cat Stevens&lt;/artist&gt; &lt;country&gt;UK&lt;/country&gt; &lt;company&gt;Island&lt;/company&gt; &lt;price&gt;8.90&lt;/price&gt; &lt;year&gt;1990&lt;/year&gt; &lt;/cd&gt; &lt;cd&gt; &lt;title&gt;Stop&lt;/title&gt; &lt;artist&gt;Sam Brown&lt;/artist&gt; &lt;country&gt;UK&lt;/country&gt; &lt;company&gt;A and M&lt;/company&gt; &lt;price&gt;8.90&lt;/price&gt; &lt;year&gt;1988&lt;/year&gt; &lt;/cd&gt; &lt;cd&gt; &lt;title&gt;Bridge of Spies&lt;/title&gt; &lt;artist&gt;T`Pau&lt;/artist&gt; &lt;country&gt;UK&lt;/country&gt; &lt;company&gt;Siren&lt;/company&gt; &lt;price&gt;7.90&lt;/price&gt; &lt;year&gt;1987&lt;/year&gt; &lt;/cd&gt; &lt;cd&gt; &lt;title&gt;Private Dancer&lt;/title&gt; &lt;artist&gt;Tina Turner&lt;/artist&gt; &lt;country&gt;UK&lt;/country&gt; &lt;company&gt;Capitol&lt;/company&gt; &lt;price&gt;8.90&lt;/price&gt; &lt;year&gt;1983&lt;/year&gt; &lt;/cd&gt; &lt;cd&gt; &lt;title&gt;Midt om natten&lt;/title&gt; &lt;artist&gt;Kim Larsen&lt;/artist&gt; &lt;country&gt;EU&lt;/country&gt; &lt;company&gt;Medley&lt;/company&gt; &lt;price&gt;7.80&lt;/price&gt; &lt;year&gt;1983&lt;/year&gt; &lt;/cd&gt; &lt;cd&gt; &lt;title&gt;Pavarotti Gala Concert&lt;/title&gt; &lt;artist&gt;Luciano Pavarotti&lt;/artist&gt; &lt;country&gt;UK&lt;/country&gt; &lt;company&gt;DECCA&lt;/company&gt; &lt;price&gt;9.90&lt;/price&gt; &lt;year&gt;1991&lt;/year&gt; &lt;/cd&gt; &lt;cd&gt; &lt;title&gt;The dock of the bay&lt;/title&gt; &lt;artist&gt;Otis Redding&lt;/artist&gt; &lt;country&gt;USA&lt;/country&gt; &lt;company&gt;Atlantic&lt;/company&gt; &lt;price&gt;7.90&lt;/price&gt; &lt;year&gt;1987&lt;/year&gt; &lt;/cd&gt; &lt;cd&gt; &lt;title&gt;Picture book&lt;/title&gt; &lt;artist&gt;Simply Red&lt;/artist&gt; &lt;country&gt;EU&lt;/country&gt; &lt;company&gt;Elektra&lt;/company&gt; &lt;price&gt;7.20&lt;/price&gt; &lt;year&gt;1985&lt;/year&gt; &lt;/cd&gt; &lt;cd&gt; &lt;title&gt;Red&lt;/title&gt; &lt;artist&gt;The Communards&lt;/artist&gt; &lt;country&gt;UK&lt;/country&gt; &lt;company&gt;London&lt;/company&gt; &lt;price&gt;7.80&lt;/price&gt; &lt;year&gt;1987&lt;/year&gt; &lt;/cd&gt; &lt;cd&gt; &lt;title&gt;Unchain my heart&lt;/title&gt; &lt;artist&gt;Joe Cocker&lt;/artist&gt; &lt;country&gt;USA&lt;/country&gt; &lt;company&gt;EMI&lt;/company&gt; &lt;price&gt;8.20&lt;/price&gt; &lt;year&gt;1987&lt;/year&gt; &lt;/cd&gt; &lt;/catalog&gt; </code></pre> <hr> <p>XSL File:</p> <hr> <pre><code>&lt;?xml version="1.0" encoding="ISO-8859-1"?&gt; &lt;!-- Edited by XMLSpy® --&gt; &lt;xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"&gt; &lt;xsl:template match="/"&gt; &lt;html&gt; &lt;body&gt; &lt;input type="radio" name="Cost" value="1980" checked="checked" /&gt; 1980 &lt;input type="radio" name="Cost" value="1990" /&gt; 1990 &lt;h2&gt;My CD Collection&lt;/h2&gt; &lt;table border="1"&gt; &lt;tr bgcolor="#9acd32"&gt; &lt;th&gt;Title&lt;/th&gt; &lt;th&gt;Artist&lt;/th&gt; &lt;/tr&gt; &lt;xsl:for-each select="catalog/cd"&gt; &lt;xsl:if test="year&gt;1990"&gt; &lt;tr&gt; &lt;td&gt;&lt;xsl:value-of select="title"/&gt;&lt;/td&gt; &lt;td&gt;&lt;xsl:value-of select="artist"/&gt;&lt;/td&gt; &lt;td&gt;&lt;xsl:value-of select="year"/&gt;&lt;/td&gt; &lt;/tr&gt; &lt;/xsl:if&gt; &lt;/xsl:for-each&gt; &lt;/table&gt; &lt;/body&gt; &lt;/html&gt; &lt;/xsl:template&gt; &lt;/xsl:stylesheet&gt; </code></pre> http://stackoverflow.com/questions/2053031/storing-html-in-datastore-and-decoding-during-xsl-transformation 1 Storing HTML in datastore and Decoding during XSL transformation tcoalson http://stackoverflow.com/users/249340 2010-01-12T22:43:31Z 2010-03-11T10:00:16Z <p>I'm trying to store html object tags for video players in a datastore. This data will be serialized and passed back to client javascript where it will be transformed and displayed in the browser to show the video. I need to be able to htmlDecode the data so that it is evaluated properly in the browser. </p> <p>Any ideas how to accomplish this in javascript?</p> http://stackoverflow.com/questions/2380447/excel-spreadsheets-with-xml 1 Excel spreadsheets with XML mplacona http://stackoverflow.com/users/279395 2010-03-04T15:27:42Z 2010-03-10T23:26:01Z <p>Hi, I'm creating excel spreadsheets for reports using the XML method, where you export a valid Microsoft formatted XML, and then export it to Excel.</p> <p>So far everything works as it should, but I'm having some trouble with the colours.</p> <p>I've created one style such as:</p> <pre><code>&lt;Style ss:ID="s64" ss:Parent="s25"&gt; &lt;Font ss:FontName="Tahoma" x:Family="Swiss" ss:Size="14" ss:Color="#4579B9" ss:Bold="1"/&gt; &lt;Interior/&gt; &lt;/Style&gt; </code></pre> <p>The colours it's supposed to use, should look like the but on the top of this image:</p> <p><img src="http://img535.imageshack.us/img535/431/righty.jpg" alt="alt text"></p> <p>However, the colour it's using the the one on the bottom.</p> <p>When I generate the report, it's generated with the colour code: #4579B9, which is what I want, but when I open it, it's displaying the colour as the one from the bottom of the image.</p> <p>If I then save the document, it automatically changes the colour to be #666699, which is exactly what the colour on the bottom (wrong colour) is.</p> <p>This however only happens with font colours, as if I change the background colour of any cell to be #4579B9, it will work normally.</p> <p>I'm thinking it's got something to do with the colour selected being part of the "theme colours" as opposed to the "standard colours".</p> <p>Does anyone here have any experience generating these kind of reports, and applying styles to it correctly? Or am I missing something?</p> http://stackoverflow.com/questions/2418515/how-to-get-the-information-and-sort-a-subset-of-elements-with-only-identifiers-u 2 How to get the information and sort, a subset of elements with only identifiers using XSLT? Rui http://stackoverflow.com/users/290692 2010-03-10T16:17:59Z 2010-03-10T18:30:52Z <p>Hi, I'm new to XSLT and I can't resolve the following problem:</p> <p>I have a xml file like this:</p> <pre><code>&lt;root&gt; &lt;subset&gt; &lt;e id="A"&gt;&lt;/e&gt; &lt;e id="C"&gt;&lt;/e&gt; &lt;/subset&gt; &lt;data&gt; &lt;info id="A" order="3" name="ANode"&gt;&lt;/info&gt; &lt;info id="B" order="4" name="BNode"&gt;&lt;/info&gt; &lt;info id="C" order="1" name="CNode"&gt;&lt;/info&gt; &lt;info id="D" order="2" name="DNode"&gt;&lt;/info&gt; &lt;/data&gt; &lt;/root&gt; </code></pre> <p>And I want to produce this:</p> <pre><code>&lt;root&gt; &lt;newnode id="C" order="1" name="CNode"&gt;&lt;/newnode&gt; &lt;newnode id="A" order="3" name="ANode"&gt;&lt;/newnode&gt; &lt;/root&gt; </code></pre> <p>As you can see the idea is to "complete" the subset of ids by retrieving the respective info, and sort them accordingly to their order specified on <code>&lt;data&gt;</code>.</p> <p>Notice that <code>&lt;data&gt;</code> is supposed to have a lot of child nodes.</p> <p>Also, I'm separating the nodes with the information on the <code>&lt;data&gt;</code> element from the subsets of ids, because I will have many subsets and I don't want to have repeated information "everywhere".</p> <p>Thanks in advanced.</p> http://stackoverflow.com/questions/2409966/how-to-retrieve-xsloutput-media-type-value-from-xsl-file-via-asp-net 0 How to retrieve xsl:output media-type value from xsl file via ASP.NET HH http://stackoverflow.com/users/283006 2010-03-09T15:02:02Z 2010-03-10T14:32:57Z <p>Is there a way to retrieve the media-type value? e.g. like OutputSettings.OutputMethod used to get xsl:output method.</p> http://stackoverflow.com/questions/2413793/sorting-multiple-xml-elements-within-a-node-by-attribute 0 Sorting multiple XML elements within a node, by attribute LOlliffe http://stackoverflow.com/users/290103 2010-03-10T00:59:03Z 2010-03-10T01:41:40Z <p>I've tried several of the solutions that I've found here, but none seem to work on the model that I'm using. In my example XML, I'm trying to sort the mixed up chapters, into their proper sequence.</p> <p>Source XML: </p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;library&gt; &lt;book&gt; &lt;title&gt;A Fascinating Tale&lt;/title&gt; &lt;chapter num="4"&gt; &lt;text&gt;...and rambles to the end.&lt;/text&gt; &lt;/chapter&gt; &lt;chapter num="2"&gt; &lt;text&gt;The hero would...&lt;/text&gt; &lt;/chapter&gt; &lt;chapter num="3"&gt; &lt;text&gt;This went rambling on...&lt;/text&gt; &lt;/chapter&gt; &lt;chapter num="1"&gt; &lt;text&gt;Once upon a time...&lt;/text&gt; &lt;/chapter&gt; &lt;/book&gt; &lt;/library&gt; </code></pre> <p>Should result in: </p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;library&gt; &lt;book&gt; &lt;title&gt;A Fascinating Tale&lt;/title&gt; &lt;chapter num="1"&gt; &lt;text&gt;Once upon a time...&lt;/text&gt; &lt;/chapter&gt; &lt;chapter num="2"&gt; &lt;text&gt;The hero would...&lt;/text&gt; &lt;/chapter&gt; &lt;chapter num="3"&gt; &lt;text&gt;This went rambling on...&lt;/text&gt; &lt;/chapter&gt; &lt;chapter num="4"&gt; &lt;text&gt;...and rambles to the end.&lt;/text&gt; &lt;/chapter&gt; &lt;/book&gt; &lt;/library&gt; </code></pre> <p>So from the stylesheet solutions I've found here, I can't get any to work. Am I making this too difficult? It seems like it should be fairly straightforward.</p> http://stackoverflow.com/questions/2402630/parameters-not-being-passed-into-template-when-using-the-net-transform-classes 4 Parameters not being passed into template when using the .Net transform classes Chris F http://stackoverflow.com/users/132648 2010-03-08T16:00:18Z 2010-03-09T15:34:48Z <p>I am using the .Net XslCompiledTranform to run some simple XSLT (see below for a simplified example).</p> <p>The example XSLT is meant to do simply show the value of the parameter that is passed in to the template. The output is what I expect it to be (i.e.</p> <pre><code>&lt;result xmlns:p1="http://www.doesnotexist.com"&gt; &lt;valueOfParamA&gt;valueA&lt;/valueOfParamA&gt; &lt;/result&gt; </code></pre> <p>when I use Saxon 9.0, but when I use XslCompiledTransform (XslTransform) in .net I get</p> <pre><code>&lt;result xmlns:p1="http://www.doesnotexist.com"&gt; &lt;valueOfParamA&gt;&lt;/valueOfParamA&gt; &lt;/result&gt; </code></pre> <p>The problem is that that the parameter value of paramA is not being passed into the template when I use the .Net classes. I completely stumped as to why. when I step through in Visual Studio, the debugger says that the template will be called with paramA='valueA' but when execution switches to the template the value of paramA is blank.</p> <p>Can anyone explain why this is happening? Is this a bug in the MS implementation or (more likely) am I doing something that is forbidden in XSLT?</p> <p>Any help greatly appreciated.</p> <p><strong>This is the XSLT that I am using</strong></p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:extfn="http://exslt.org/common" exclude-result-prefixes="extfn" xmlns:p1="http://www.doesnotexist.com"&gt; &lt;!-- Replace msxml with xmlns:extfn="http://exslt.org/common" xmlns:extfn="urn:schemas-microsoft-com:xslt" --&gt; &lt;xsl:output method="xml" indent="yes"/&gt; &lt;xsl:template match="/"&gt; &lt;xsl:variable name="resultTreeFragment"&gt; &lt;p1:foo&gt; &lt;/p1:foo&gt; &lt;/xsl:variable&gt; &lt;xsl:variable name="nodeset" select="extfn:node-set($resultTreeFragment)"/&gt; &lt;result&gt; &lt;xsl:apply-templates select="$nodeset" mode="AParticularMode"&gt; &lt;xsl:with-param name="paramA" select="'valueA'"/&gt; &lt;/xsl:apply-templates&gt; &lt;/result&gt; &lt;/xsl:template&gt; &lt;xsl:template match="p1:foo" mode="AParticularMode"&gt; &lt;xsl:param name="paramA"/&gt; &lt;valueOfParamA&gt; &lt;xsl:value-of select="$paramA"/&gt; &lt;/valueOfParamA&gt; &lt;/xsl:template&gt; &lt;/xsl:stylesheet&gt; </code></pre> http://stackoverflow.com/questions/1716524/how-do-i-set-the-encoding-statement-in-the-xml-declaration-when-performing-an-xsl 0 How do I set the encoding statement in the XML declaration when performing an XSL transformation using a COM Msxml2.XSLTemplate? aspiehler http://stackoverflow.com/users/134881 2009-11-11T16:47:28Z 2010-03-09T07:00:15Z <p>I wrote a simple package installer in WinBatch that needs to update an XML file with information about the package contents. My first stab at it involved loading the file with Msxml2.DOMDocument, adding nodes and data as required, then saving the data back to disk. This worked well enough, except that it would not create tab and CR/LF whitespace in the new data. The solution I came up with was writing an XSL stylesheet that would recreate the XML file with whitespace added back in. I'm doing this by:</p> <ol> <li>loading the XSL file into an Msxml2.FreeThreadedDOMDocument object</li> <li>setting that object as the stylesheet property of an Msxml2.XSLTemplate object</li> <li>creating an XSL processor via Msxml2.XSLTemplate.createProcessor()</li> <li>setting my original Msxml2.DOMDocument as the input property of the XSL processor</li> <li>Calling transform() method of the XSL processor, and saving the output to a file.</li> </ol> <p>This works as for as reformatting the XML file with tabs and carriage returns, but my XML declaration comes out either as <code>&lt;?xml version="1.0"?&gt;</code> or <code>&lt;?xml version="1.0" encoding="UTF-16"?&gt;</code> depending on whether I used Msxml2.&#42;.6.0 or Msxml2.&#42; objects (a fall back if the system doesn't have 6.0).</p> <p>If the encoding is set to UTF-16, Msxml12.DOMDocument complains about trying to convert UTF-16 to 1-byte encoding the next time I run my package installer. I've tried creating and adding an XML declaration using both createProcessingInstruction() to both the XML and XSL DOM objects, but neither one seems to affect the output of the XSLTemplate processor. I've also set encoding to UTF-8 in the <code>&lt;xsl:output/&gt;</code> tag in my XSL file.</p> <p>Here is the relevant code in my Winbatch script:</p> <pre> xmlDoc = ObjectCreate("Msxml2.DOMDocument.6.0") if !xmlDoc then xmlDoc = ObjectCreate("Msxml2.DOMDocument") xmlDoc.async = @FALSE xmlDoc.validateOnParse = @TRUE xmlDoc.resolveExternals = @TRUE xmlDoc.preserveWhiteSpace = @TRUE xmlDoc.setProperty("SelectionLanguge", "XPath") xmlDoc.setProperty("SelectionNamespaces", "xmlns:fns='http://www.abc.com/f_namespace'") xmlDoc.load(xml_file_path) xslStyleSheet = ObjectCreate("Msxml2.FreeThreadedDOMDocument.6.0") if !xslStyleSheet then xslStyleSheet = ObjectCreate("Msxml2.FreeThreadedDOMDocument") xslStyleSheet.async = @FALSE xslStyleSheet.validateOnParse = @TRUE xslStyleSheet.load(xsl_style_sheet_path) xslTemplate = ObjectCreate("Msxml2.XSLTemplate.6.0") if !xslTemplate then xslTemplate = ObjectCreate("Msxml2.XSLTemplate") xslTemplate.stylesheet = xslStyleSheet processor = xslTemplate.createProcessor() processor.input = xmlDoc processor.transform() ; create a new file and write the XML processor output to it fh = FileOpen(output_file_path, "WRITE" , @FALSE) FileWrite(fh, processor.output) FileClose(fh) </pre> <p>The style sheet, with some slight changes to protect the innocent:</p> <pre><code>&lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.1"&gt; &lt;xsl:output method="xml" indent="yes" encoding="UTF-8"/&gt; &lt;xsl:template match="/"&gt; &lt;fns:test_station xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:fns="http://www.abc.com/f_namespace"&gt; &lt;xsl:for-each select="/fns:test_station/identification"&gt; &lt;xsl:text&gt;&amp;#x0A; &lt;/xsl:text&gt; &lt;identification&gt; &lt;xsl:for-each select="./*"&gt; &lt;xsl:text&gt;&amp;#x0A; &lt;/xsl:text&gt; &lt;xsl:copy-of select="."/&gt; &lt;/xsl:for-each&gt; &lt;xsl:text&gt;&amp;#x0A; &lt;/xsl:text&gt; &lt;/identification&gt; &lt;/xsl:for-each&gt; &lt;xsl:for-each select="/fns:test_station/software"&gt; &lt;xsl:text&gt;&amp;#x0A; &lt;/xsl:text&gt; &lt;software&gt; &lt;xsl:for-each select="./package"&gt; &lt;xsl:text&gt;&amp;#x0A; &lt;/xsl:text&gt; &lt;package&gt; &lt;xsl:for-each select="./*"&gt; &lt;xsl:text&gt;&amp;#x0A; &lt;/xsl:text&gt; &lt;xsl:copy-of select="."/&gt; &lt;/xsl:for-each&gt; &lt;xsl:text&gt;&amp;#x0A; &lt;/xsl:text&gt; &lt;/package&gt; &lt;/xsl:for-each&gt; &lt;xsl:text&gt;&amp;#x0A; &lt;/xsl:text&gt; &lt;/software&gt; &lt;/xsl:for-each&gt; &lt;xsl:for-each select="/fns:test_station/calibration"&gt; &lt;xsl:text&gt;&amp;#x0A; &lt;/xsl:text&gt; &lt;calibration&gt; &lt;xsl:for-each select="./item"&gt; &lt;xsl:text&gt;&amp;#x0A; &lt;/xsl:text&gt; &lt;item&gt; &lt;xsl:for-each select="./*"&gt; &lt;xsl:text&gt;&amp;#x0A; &lt;/xsl:text&gt; &lt;xsl:copy-of select="."/&gt; &lt;/xsl:for-each&gt; &lt;xsl:text&gt;&amp;#x0A; &lt;/xsl:text&gt; &lt;/item&gt; &lt;/xsl:for-each&gt; &lt;xsl:text&gt;&amp;#x0A; &lt;/xsl:text&gt; &lt;/calibration&gt; &lt;/xsl:for-each&gt; &lt;/fns:test_station&gt; &lt;/xsl:template&gt; &lt;/xsl:stylesheet&gt; </code></pre> <p>And this is a sample output file:</p> <pre><code>&lt;?xml version="1.0" encoding="UTF-16"?&gt; &lt;fns:test_station xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:fns="http://www.abc.com/f_namespace"&gt; &lt;software&gt; &lt;package&gt; &lt;part_number&gt;123456789&lt;/part_number&gt; &lt;version&gt;00&lt;/version&gt; &lt;test_category&gt;1&lt;/test_category&gt; &lt;description&gt;name of software package&lt;/description&gt; &lt;execution_path&gt;c:\program files\test\test.exe&lt;/execution_path&gt; &lt;execution_arguments&gt;arguments&lt;/execution_arguments&gt; &lt;crc_path&gt;c:\ste_config\crc\123456789.lst&lt;/crc_path&gt; &lt;uninstall_path&gt;c:\ste_config\uninstall\uninst_123456789.bat&lt;/uninstall_path&gt; &lt;install_timestamp&gt;2009-11-09T14:00:44&lt;/install_timestamp&gt; &lt;/package&gt; &lt;/software&gt; &lt;/fns:test_station&gt; </code></pre> http://stackoverflow.com/questions/1433347/is-there-a-nice-xsl-stylesheet-for-client-side-docbook-rendering 3 Is there a nice XSL stylesheet for client-side DocBook rendering? Steven Huwig http://stackoverflow.com/users/28604 2009-09-16T14:32:02Z 2010-03-08T18:02:54Z <p>I want the DocBook documents in my SVN repository to look nice if someone looks at them in a web browser. I've started to write a CSS stylesheet, but I think that it will have significant limitations -- particularly ones regarding hyperlinks.</p> <p>There is a large body of DocBook XSL stylesheets at the <a href="http://docbook.sourceforge.net/release/xsl/current/doc/" rel="nofollow">DocBook site</a> , but they don't seem to be appropriate for browser rendering. I don't want to generate static documents and put them into SVN. I want them to be basically readable for other developers without much hassle.</p> <p>I could write my own browser-appropriate XSL stylesheet to convert DocBook to HTML, but it seems like someone else must have already done this. I just don't know where to find it.</p> http://stackoverflow.com/questions/2282692/adding-relative-path-for-an-external-graphic-in-a-xsl-document 0 Adding relative path for an external graphic in a XSL document? Pran http://stackoverflow.com/users/271586 2010-02-17T17:01:44Z 2010-03-08T15:18:18Z <p>Hi, first of, I don't know much about XSL.</p> <p>I am using a app called DITA to generate pdfs. One of the things it requires is an overwrite of an xsl file; to add custom styling.</p> <p>I am trying to add an external graphic using a relative path. It doesn't work, unless I supply the full path.</p> <p>Does not work:</p> <pre><code>&lt;fo:block text-align="center" width="100%"&gt; &lt;fo:external-graphic src="../../images/logo.png"/&gt; &lt;/fo:block&gt; </code></pre> <p>Does work:</p> <pre><code>&lt;fo:block text-align="center" width="100%"&gt; &lt;fo:external-graphic src="/absolute/path/to/images/logo.png"/&gt; &lt;/fo:block&gt; </code></pre> <p>I looked on the web, it said to use "file:image.png" and other website said to use "url(image.png)", but neither worked.</p> <p>What am I doing wrong?</p> http://stackoverflow.com/questions/2401560/outputting-value-of-xslvariable-with-xslvalue-of-problem 5 Outputting value of xsl:variable with xsl:value-of problem. xan http://stackoverflow.com/users/15667 2010-03-08T13:28:34Z 2010-03-08T13:31:43Z <p>I think I may have a misunderstanding of <code>&lt;xsl:variable\&gt;</code> and <code>&lt;xsl:value-of\&gt;</code> so perhaps someone can correct me!</p> <p>I'm attempting to tweak some hardcoded banners to be a bit cleaner so I thought it would be a good idea to create an <code>&lt;xsl:variable&gt;</code> containing the banner link and image code, then use <code>&lt;xml:value-of&gt;</code> at the various places where the banner is needed. For example:</p> <pre><code>&lt;!-- Global variable in my xslt file. There are a bunch of these... --&gt; &lt;xsl:variable name="banner1"&gt; &lt;a href="http://www.link.com/" title="Title" target="_blank"&gt; &lt;img width="120" height="506" src="/images/banners/image.gif" alt="alt" /&gt; &lt;/a&gt; &lt;/xsl:variable&gt; &lt;!-- Then when used: --&gt; &lt;xsl:when test="blah'"&gt; &lt;xsl:value-of select="$banner1"/&gt; &lt;/xsl:when&gt; </code></pre> <p>But this isn't producing the output I expect. The images path etc is valid, but this just spits out nothing at all. Any text added before or after the <code>&lt;a&gt;</code> tag appears correctly, but nothing between the <code>&lt;a&gt;</code> tags Themselves.</p> <p>What have I misunderstood about <code>&lt;xsl:variable&gt;</code> and how could I do this better (other than doing it "properly" and pulling adverts from a database etc. which I'd prefer...).</p> http://stackoverflow.com/questions/2396653/selecting-string-literal-from-a-specified-child-node-element-using-xslt 1 Selecting string/literal from a specified child node element using XSLT louis http://stackoverflow.com/users/282587 2010-03-07T14:53:46Z 2010-03-07T15:50:16Z <p>this is the excerpt of the XML file. </p> <pre><code>&lt;rdf:RDF&gt; &lt;rdf:Description rdf:about="http://abc.org/JohnD"&gt; &lt;video:Movie xml:lang="en" xmlns:video="http://example.org/movie"&gt;Avatar&lt;/video:Movie&gt; &lt;/rdf:Description&gt; &lt;rdf:Description rdf:about="http://abc.org/JohnD"&gt; &lt;foaf:interest xml:lang="en" xmlns:foaf="http://xmlns.com/foaf/0.1/"&gt;games&lt;/foaf:interest&gt; &lt;/rdf:Description&gt; &lt;/rdf:RDF&gt; </code></pre> <p>the XSL excerpt </p> <pre><code>&lt;xsl:template match="rdf:RDF/rdf:Description"&gt; &lt;xsl:value-of select="video:Movie"/&gt; &lt;/xsl:template&gt; </code></pre> <p>I want to select the literal "Avatar" from the node with the name <code>&lt;video:Movie&gt;</code> only </p> <p>I ve tried using <code>&lt;xsl:value-of select="video:Movie"/&gt;</code> and various other combination, but it just won't display. I have declared the namespace accordingly in the XSL header. </p> http://stackoverflow.com/questions/2396127/xslt-to-compare-xmls-using-local-name 0 XSLT to Compare XMLs using local-name() Robins Joy http://stackoverflow.com/users/288182 2010-03-07T11:46:43Z 2010-03-07T12:07:47Z <p>Hi,</p> <p>I'm new XSLT but i want to be able compare to XMLs using XSL. The problem the nodes may be changed so i need to make it using lacal-name().</p> <p>But i can't seem to be able to do it. Please check the below and help me thanks.</p> <p> </p> <pre><code> &lt;xsl:output method="xml" indent="yes"/&gt; &lt;xsl:param name="Doc1" select="Root/items/*" /&gt; &lt;xsl:param name="Doc2" select="Root/items/*" /&gt; &lt;xsl:variable name="Second" select="$Doc2/Root/items/*"/&gt; &lt;xsl:template match="/"&gt; &lt;xsl:apply-templates select="$Doc1/*"/&gt; &lt;/xsl:template&gt; &lt;xsl:template match="items"&gt; &lt;Root&gt; &lt;xsl:for-each select="item"&gt; &lt;xsl:variable name="Names" select="$Second/local-name()"/&gt; &lt;xsl:choose&gt; &lt;xsl:when test="$Names!=$Names"&gt; &lt;xsl:value-of select="$Second/current()"/&gt; &lt;/xsl:when&gt; &lt;xsl:otherwise&gt; &lt;xsl:value-of select="current()"/&gt; &lt;/xsl:otherwise&gt; &lt;/xsl:choose&gt; &lt;/xsl:for-each&gt; &lt;/Root&gt; &lt;/xsl:template&gt; &lt;/xsl:stylesheet&gt; </code></pre> http://stackoverflow.com/questions/2384306/how-to-transform-xml-as-a-string-w-o-using-files-in-net 3 How to transform XML as a string w/o using files in .NET? Bill Paetzke http://stackoverflow.com/users/192210 2010-03-05T03:04:22Z 2010-03-05T20:06:05Z <p>Let's say I have two strings: </p> <ul> <li>one is XML data</li> <li>and the other is XSL data. </li> </ul> <p>The xml and xsl data are stored in database columns, if you must know. </p> <p>How can I transform the XML in C# w/o saving the xml and xsl as files first? I would like the output to be a string, too (HTML from the transformation). </p> <p>It seems C# prefers to transform via files. I couldn't find a string-input overload for Load() in XslCompiledTransform. So, that's why I'm asking.</p> http://stackoverflow.com/questions/2374418/sharepoint-data-view-web-part-xslt-without-schema 2 sharepoint data view web part xslt without schema Ben Collins http://stackoverflow.com/users/3279 2010-03-03T19:45:48Z 2010-03-05T17:03:19Z <p>I'm trying to use a data view web part (via SPD 2007) to consume the results of a SOAP-based web service and render portions of said results using XSL transforms. The problem I'm having is that the designer isn't much help because the schema for the web service doesn't actually include the elements of the results, so there's no way to drag and drop from the data source into the web part, and the manual transforms I've attempted aren't working. </p> <p>Here is the definition of the web service:</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"&gt; &lt;soap:Body&gt; &lt;GetQuote xmlns="http://www.webserviceX.NET/"&gt; &lt;symbol&gt;string&lt;/symbol&gt; &lt;/GetQuote&gt; &lt;/soap:Body&gt; &lt;/soap:Envelope&gt; </code></pre> <p>And the definition of the response:</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"&gt; &lt;soap:Body&gt; &lt;GetQuoteResponse xmlns="http://www.webserviceX.NET/"&gt; &lt;GetQuoteResult&gt;string&lt;/GetQuoteResult&gt; &lt;/GetQuoteResponse&gt; &lt;/soap:Body&gt; &lt;/soap:Envelope&gt; </code></pre> <p>The query definition is no problem - you just supply a stock ticker symbol as a string. You'll see what I'm talking about in the results, though. It defines the result as just a string.</p> <p>In SPD2007, the data source pretty much only includes <code>soap:Envelope/soap:Body/GetQuoteResponse/GetQuoteResult</code>, but the actual results contained in the result string look like this:</p> <pre><code>&lt;StockQuotes&gt; &lt;Stock&gt; &lt;Symbol&gt;MSFT&lt;/Symbol&gt; &lt;Last&gt;28.465&lt;/Last&gt; &lt;Date&gt;3/3/2010&lt;/Date&gt; &lt;Time&gt;1:24pm&lt;/Time&gt; &lt;Change&gt;+0.005&lt;/Change&gt; &lt;Open&gt;28.52&lt;/Open&gt; &lt;High&gt;28.61&lt;/High&gt; &lt;Low&gt;28.35&lt;/Low&gt; &lt;Volume&gt;28380812&lt;/Volume&gt; &lt;MktCap&gt;249.7B&lt;/MktCap&gt; &lt;PreviousClose&gt;28.46&lt;/PreviousClose&gt; &lt;PercentageChange&gt;+0.02%&lt;/PercentageChange&gt; &lt;AnnRange&gt;14.87 - 31.50&lt;/AnnRange&gt; &lt;Earns&gt;1.815&lt;/Earns&gt; &lt;P-E&gt;15.68&lt;/P-E&gt; &lt;Name&gt;Microsoft Corpora&lt;/Name&gt; &lt;/Stock&gt; &lt;/StockQuotes&gt; </code></pre> <p>I've tried setting up an XSL stylesheet like this in the data view web part:</p> <pre><code>&lt;xsl:stylesheet xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ddw1="http://www.webserviceX.NET/" version="1.0" exclude-result-prefixes="xsl msxsl ddwrt" xmlns:ddwrt="http://schemas.microsoft.com/WebParts/v2/DataView/runtime" xmlns:asp="http://schemas.microsoft.com/ASPNET/20" xmlns:__designer="http://schemas.microsoft.com/WebParts/v2/DataView/designer" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxsl="urn:schemas-microsoft-com:xslt" xmlns:SharePoint="Microsoft.SharePoint.WebControls" xmlns:ddwrt2="urn:frontpage:internal"&gt; &lt;xsl:output method="html" indent="yes"/&gt; &lt;xsl:param name="dvt_apos"&gt;'&lt;/xsl:param&gt; &lt;xsl:template match="/soap:Envelope/soap:Body/ddw1:GetQuoteResponse"&gt; &lt;xsl:value-of select="*" /&gt; &lt;/xsl:template&gt; &lt;/xsl:stylesheet&gt; </code></pre> <p>This does pretty much what you would expect: it renders the entire result string. However, if I replace</p> <pre><code>&lt;xsl:template match="/soap:Envelope/soap:Body/ddw1:GetQuoteResponse"&gt; &lt;xsl:value-of select="*" /&gt; &lt;/xsl:template&gt; </code></pre> <p>with</p> <pre><code>&lt;xsl:template match="/soap:Envelope/soap:Body/ddw1:GetQuoteResponse"&gt; &lt;xsl:value-of select="//Symbol" /&gt; &lt;/xsl:template&gt; </code></pre> <p>I get nothing. What's going on? how do I use XSL to pick out the XML in the string result without a schema?</p> http://stackoverflow.com/questions/2378209/how-to-edit-the-xsl-for-rss-viewer-webpart 0 How to edit the XSL for RSS Viewer Webpart Nagendra http://stackoverflow.com/users/172983 2010-03-04T09:52:44Z 2010-03-04T09:52:44Z <p>I am using a blog site as a source for my RSS Feed. As I see the RSS feed, its showing up as the following :: Blog: Posts Test Thursday, March 04, 2010 - </p> <p><strong>Body</strong>: With 25 four's and 3 sixers Sachin crosses 200 (147 balls) runs in an single ODI innings. Creates another world record. Watch the final over where he got it double hundred with MSD on the other end. </p> <p>This is what he had to say after getting the MOM (man of the match): I dedicate this knock to all the people of India, who have supported me throughout over the last 20 years. I was timing the ball well, and I felt that anywhere between 340 to 350 was a good target. I thought Karthik, Yusuf and Dhoni supported me well. I thought that a 200 would be possible once I crossed 175 in the 42nd over. I am enjoying my cricket at the moment. There have been a few bad decisions I have made as a batsman, but as long as the passion is there I will carry on. It feels good that I lasted the 50 overs, it was a good test of my fitness and I would like to do this once again.</p> <p>Well!!! Wait for more.</p> <p><strong>Published</strong>: 3/4/2010 3:18 PM</p> <p>More...</p> <p>I actually wanted to remove the <strong>Body</strong>, <strong>Published</strong> parameters. I just want my XSLT to be able to show only the Description of the blog. No need to have this meta data.</p> <p>Can anyone help me in specifying tthe XSL changes?</p> http://stackoverflow.com/questions/2340476/displaying-svg-using-xslfo 2 Displaying SVG using XSLFO hnilsen http://stackoverflow.com/users/281889 2010-02-26T09:11:05Z 2010-03-03T13:03:32Z <p>Hi, StackOverflow,</p> <p>First question from me; I'm currently fixing a graphing service that uses XSLFO to convert our syntax to FO, and converting it to PDF in the end.</p> <p>Previously we've been using PNG graphs from the web in the PDF exports, but this creates really ugly results, so we've decided to go with SVG for PDF instead.</p> <p>However, the SVG doesn't seem to scale into the SVG canvas properly.</p> <p>Here is the syntax before run into XSLFO:</p> <pre><code>&lt;img src="someimage.svg"&gt; </code></pre> <p>And here is the XSLFO I'm using:</p> <pre><code> &lt;xsl:template match="img"&gt; &lt;fo:block space-after="12pt"&gt; &lt;fo:instream-foreign-object width="20cm" height="15cm" content-width="scale-to-fit" content-height="scale-to-fit" scaling="uniform" background-color="#cccccc"&gt; &lt;svg:svg x="0" y="0" width="100" height="100" viewBox="0 0 100 100"&gt; &lt;svg:image x="0" y="0" width="100" height="100"&gt; &lt;xsl:if test="@src"&gt; &lt;xsl:attribute name="xlink:href"&gt; &lt;xsl:choose&gt; &lt;xsl:when test="starts-with(@src, 'http://')"&gt; &lt;xsl:value-of select="@src"/&gt; &lt;/xsl:when&gt; &lt;xsl:when test="starts-with(@src, 'https://')"&gt; &lt;xsl:value-of select="@src"/&gt; &lt;/xsl:when&gt; &lt;xsl:otherwise&gt; &lt;xsl:value-of select="concat($baseurl, @src)"/&gt; &lt;/xsl:otherwise&gt; &lt;/xsl:choose&gt; &lt;/xsl:attribute&gt; &lt;/xsl:if&gt; &lt;/svg:image&gt; &lt;/svg:svg&gt; &lt;/fo:instream-foreign-object&gt; &lt;/fo:block&gt; &lt;/xsl:template&gt; </code></pre> <p>The SVG does appear in the PDF, and it does seem contained within the canvas - but for whatever reason I cannot get it to scale properly. It's just really, really huge, and the result being an extremely cropped version of the SVG.</p> <p>I'm running out of suggestions here - is there anyone here that has experience with this?</p> <p>PS: The image is created using the newest version of Batik, and the width and height is set properly.</p>