python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
How to check if a XSLT transformation with powerShell has finished?
I'm using windows powershell for XSLT transformations. This my example:
$aTransformation= New-Object System.Xml.Xsl.XslCompiledTransform;
$aTransformation.load( "transformation.xslt" )
$aTra...
Mulder
Votes: 0
Answers: 0
How to calculate the sum of integer values of an attributes in XSLT version 1
I want to calculate the sum of attributes using xslt 1.0. below is the xml file as an input.
<?xml version="1.0" encoding="UTF-8"?>
<alltestsuites>
<testsuite te...
Satish Kumar Singh
Votes: 0
Answers: 1
Xslt transformation using powershell
I need to run a Xslt transformation using a powershell script that recursively for all the object *.xml:
Load the file
Transform it
Save the output with the same file name in the same path.
I though...
Giuseppe Di Prima
Votes: 0
Answers: 1
Java methods in xsl not available
I'm using some Java methods in xsl like below :
<xsl:variable name="inSDF" select="SimpleDateFormat:new($datePattern)"/>
When i'm executing xsl from Eclipse with Xalan proce...
tchike
Votes: 0
Answers: 1