Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
185 views

What is the difference between exclude-result-prefixes and extension-element-prefix in XSLT namespace declaration?

What's the difference between exclude-result-prefixes and extension-element-prefix? Both are used in the header of XSLTs. I've found extension-element-prefix while using EXSLT and the EXSLT website ...
4
votes
1answer
380 views

Getting exsl:node-set to work in PHP

I have the following PHP code, but it's not working. I don't see any errors, but maybe I'm just blind. I'm running this on PHP 5.3.1. <?php $xsl_string = <<<HEREDOC <?xml version="1.0" ...
3
votes
2answers
56 views

Best approach for combining several XSLT 1.0 passes which process the same nodes

I'm doing some very complex XSLT 1.0 transformation (currently using 8 XSLT passes). I want to combine this 8 passes without merging them in one file (this would be too complex). My solution would be ...
3
votes
2answers
117 views

how do i not repeat repeated logic in my xslt code?

what's a better way to write this code: <xsl:template name="CamelChain"> <xsl:param name="input"/> <xsl:param name="position"/> <xsl:if test="$position ...
3
votes
2answers
125 views

Processing cyclic dependencies with XSLT

I’m processing an XML file that, simplified, looks something like this: <resources> <resource id="a"> <dependency idref="b"/> <!-- some other stuff --> ...
3
votes
1answer
1k views

xsl:variable contains nodeset. How to output nth node of variable?

I am transforming an XML document. There is an attribute @prettydate that is a string similar to "Friday, May 7, 2010". I want to split that string and add links to the month and the year. I am ...
3
votes
2answers
267 views

Concatenating XML

I have three files of xml <step> <Products> <Product UserTypeID="Country"> <Name>Cyprus</Name> <Product UserTypeID="Resort"> ...
3
votes
2answers
847 views

XSLT IE6 default processor

What is the default XSLT processor for IE6. Does it support EXSLT? Is there anyway to make it support it?
2
votes
1answer
166 views

How to use EXSLT in visual studio environment

is it possible to use EXSLT functions within Visual Studio? I write and debug my xslt scripts in VS. What I have to do to be able to use e.g. date:add() function? What a very simple script should look ...
2
votes
3answers
371 views

Exception loading external XSLT

I have a load of XSLT from a third party which i need to use to transform some data. If I use xsltproc it works fine and outputs data as expected. I have the following C# code to try and use it ...
2
votes
2answers
370 views

Umbraco and EXSLT sets do not work

I'm creating some xslt's using Umbraco 4.5.2 and I want to add de set:distinct function from EXSLT.org (http://www.exslt.org/set/functions/distinct/index.html) however, when I reference the ...
2
votes
1answer
1k views

Using EXSLT dates-and-times module in XSLT 1.0 yields unknown error

I added the EXSLT dates-and-times module in my XSLT 1.0 file by declaring: <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" ... ...
2
votes
2answers
547 views

Sorted exsl:node-set. Return node by it position

Good afternoon, gentlemen. Help me solve a very simple task. I have a set of nodes <menuList> <mode name="aasdf"/> <mode name="vfssdd"/> <mode name="aswer"/> ...
1
vote
0answers
62 views

How to get Regexp from EXSLT working in libxslt?

Has anyone got Regexp working in libxslt? When yes, how? http://www.exslt.org/regexp/index.html When using the command xsltproc --dumpextensions with the latest libxslt I'm not getting any Regexp ...
1
vote
3answers
303 views

XSL padding to the longest field length

I have an XSL file which has a for-each loop in it and I am using an EXSLT processor to give some added functionality (namely the string padding). what I want to be able to do is pad out all fields ...
1
vote
2answers
143 views

How do you use Exslt.dyn (especially the 'evaluate' method) in Umbraco?

I am trying to execute the string contained in an XSL variable. Umbraco has hooks for several Exslt pieces, but it seems the Exslt.dyn (Exslt.dynamic) is not one of them. How do you add it in? ...
1
vote
3answers
112 views

XSL Strip Padding

Is there a simple way to strip padding, IE leading and/or trailing white space. EXSLT padding function seems to only create padding or trim strings to a certain length.
1
vote
1answer
251 views

Using EXSLT to subtract dates

How can I use EXSLT extensions to subtract a date. I see that there is a date-add function, but the EXSLT docs don't include any examples. I am trying to take the current date and subtract 1 month ...
1
vote
3answers
878 views

exslt.org extensions

I am trying to use an exslt extension in one of my transformations. I got an example off this site about how to concatenate xml files into one. I have implemented the namespace and the element prefix ...
1
vote
1answer
418 views

How to solve XML to XML problem using Exslt - set:distinct

This extends from http://stackoverflow.com/questions/2133459/xml-to-xml-using-xsl-problem I managed to import exslt and modified my codes according to the solution (thanks to Kyle Butt) given as ...
1
vote
1answer
96 views

XSLT: Calculating year based on non January start

I'm trying to calculate a year based on a year starting 6th April. Using EXSLT I can get the year based on a normal January start: date:formatDate(date:add(date:date(), '-P6Y'), 'yyyy') How can I ...
1
vote
2answers
509 views

EXSLT func:return problems in xsl:for-each “loop” and func:function

My problem: 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 ...
1
vote
2answers
735 views

XSLT1.0: replance new line character with _

I am having this below variable <xsl:variable name="testvar"> d e d </xsl:variable> and I have this function: ...
1
vote
1answer
700 views

Jruby LoadError: Could not open any of [xml2, xslt, exslt] WINDOWS

I am running on windows vista 64 bit operating system. Geografikos is a large project created as a masters thesis project by Jeremy Witmer. It is all coded in JRuby. I am currently expanding the ...
1
vote
3answers
2k views

XPath 1.0 max function on variables using EXSLT

I am serching an XPath function that works like the XPath 2.0 fn:max function. A function that returns the maximum of several parameters. After searching a lot I figured out this way: <?xml ...
1
vote
3answers
2k views

XSLT XALAN Example

I want yo use the EXSLT - DYN:EVALUATE in a style sheet. I have added the names pace but I don't know where the .xsl file I need to import is. I don't believe I have XALAN installed to point the ...
0
votes
2answers
51 views

regexp error on xslt 1.0

I am using xslt 1.0 to transform my xml. I have this string: hello 1s: This is very nice day. 9s: Christmas is about to come 14s: and christmas preparation is just on 25s: this is awesome!! I ...
0
votes
1answer
41 views

Double iteration over a nodeset in XSLT-1.0

I have an XML containing blog posts. Each post contains a date node. I want to extract the list of years in which posts have been made and print them out in a fancy format. The, for each year I want ...
0
votes
1answer
87 views

Find the position of an element within its parent with XSLT / XPath

Apart from rewriting a lot of XSLT code (which I'm not going to do), is there a way to find the position of an element within its parent, when the context is arbitrarily set to something else? Here's ...
0
votes
0answers
45 views

How to used date extension function in in xslt1.0 (mozilla : transformiix processor)

I have used jquery sarrissa glyphix plugin to transform xml file. Using this EXSLT date extension function not working in Mozilla. please let me know any way to used date extension function in xslt ...
0
votes
3answers
132 views

xslt cannot assign a param with a boolean value within `<xsl:choose>`

this code is giving me the output test when the expected output should be nothing.. Is it something wrong with my XSLT processor or..? : <xsl:template match="/"> <xsl:param ...
0
votes
3answers
112 views

client side xslt parsing programs?

every single XSLT tutorial i've came across tells me to use the web browser as the XSLT parser.. but I've came to learn that web browsers aren't the best tools to do proper XSLT parsing and there's ...
0
votes
3answers
304 views

How do I get EXSLT support in Saxon-HE?

I have a bunch of XSLT files that I need to process against some XML files. I cannot change the XSLT files as they come from a 3rd party. The XSLT's are version 2.0. I'm on Mac OS X 10.6 and it ...
0
votes
2answers
120 views

xslt 2 processor that has support of exslt:evaluate()

In XSLT 2 style sheet If simple boolean expression that has only 0, 1, and, or, (, ) tokens that is contained in string variable. Than how to get the final value of expression. along with I need to ...
0
votes
1answer
344 views

EXSLT and xsltproc getting an error

I have an XSL file which works like a charm, at least, until I wanted to use regular expressions from EXSLT, what I did: added : xmlns:regexp="http://exslt.org/regular-expressions" ...
0
votes
0answers
244 views

Can EXSLT date-and-time functions be used in XSLT 1.0 and processed using browser engine?

My goal: I need to transform a "date of birth" element in XML document to "age" value using XSL stylesheet and generate XHTML page. I am using the web browser (e.g. IE/FF) directly to open the XML ...
0
votes
0answers
127 views

Get Week in XML/BI Publisher

I have problem related to get week function. I used xdoxslt:getWeekRange('2011-04-11T10:10:20+02:10',$_XDOTIMEZONE) but when I applied into xdoxslt:getWeekRange(StartDate,$_XDOTIMEZONE) shows ...
0
votes
0answers
159 views

Mvp.Xsl calling C# scripts

I'm using Mvp.Xsl implementation of EXSLT. I'm trying to call C# script in my XSLT template. It works when processing with XslCompiledTransform, but not with Mvp.Xsl. I get following error: Unhandled ...
0
votes
1answer
49 views

MVP.XSL: func:function

I'm using Mvp.Xsl.dll implementation of EXSLT. I'm having hard time to create a custom function and call it from XPath. Is this possible? Can you provide one very simple example? Thanks a lot, Petr
0
votes
1answer
103 views

EXSLT date:difference “bug” when changing month

I'm experiencing some problems when using the default date:difference EXSLT template, provided at http://www.exslt.org/date/functions/difference/index.html. I've been able to narrow down the problem ...
0
votes
1answer
136 views

error when calling exslt in Saxon

I get the error message: "Cannot find a matching 1-argument function named {http://exslt.org/common}node-set()" when running a xslt transformation with the Saxon engine. I've tried using Saxon PE and ...
0
votes
0answers
169 views

EXSLT: No more DTM IDs are available

I've been searching for an answer to this problem all day long. I'm creating a stylesheet for a moderate-sized XML document (~1.5MB, ~1000 elements), which is giving me a lot of trouble. It's about ...
0
votes
1answer
372 views

EXSLT template date:format-date works incorrectly after template date:add

The following code <td> <xsl:call-template name="date:add"> <xsl:with-param name = "date-time" select ="hml:LT" /> <xsl:with-param name = "duration" select = ...
0
votes
3answers
266 views

Xalan date extension problem

i'm trying to use the ubuntu cli version of xalan: Xalan version 1.10.0 Xerces version 2.8.0 My problem is how to kick in with date functions. I tryed like this: <?xml version="1.0" ...
0
votes
0answers
259 views

Xalan dyn:evaluate problem

I am using XSLT to transform an XML document. Here is an example of the XML: <feed xmlns:opensearch="http://a9.com/-/spec/opensearch/1.1/" xmlns:esb="http://ice.exploration.nasa.gov/esb/results" ...
0
votes
1answer
103 views

Exslt date:add($date, 'P1M') in Umbraco, just adds 30 days

<xsl:value-of select="date:add('2010-10-01', 'P1M')"/><br/> <xsl:value-of select="date:add('2010-07-01', 'P1M')"/><br/> <xsl:value-of select="date:add('2010-02-01', ...
0
votes
1answer
353 views

XSLT: output into multiple xml files based on grouping

Let's assume, you have the xml below. The goal is to group by FirstName and export the Person into different xml files. Each output xml files should only contain up to X different FirstName. Below is ...
0
votes
0answers
102 views

XML to CSV Problem (Child Node)

I am trying to convert xml to csv. I am facing problem to get child node (like ProdIDT, IDV) as one line a tab delimeted txt file. Child node value is coming close without header. Please look at the ...
0
votes
2answers
802 views

EXSLT date:format-date template without document() XSLT 1.0

I'm using date:format-date template EXSLT file I'm using XSLT 1.0 and MSXML3.0 as the processor. My date:format-date template EXSLT file's declaration is: <xsl:stylesheet version="1.0" ...
0
votes
2answers
618 views

Implementing exslt.dynamic.evaluate in c# (XslCompiledTransform)

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 ...

1 2