[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: difference between an integer and current-dateTime

Subject: Re: difference between an integer and current-dateTime()
From: "Martin Honnen martin.honnen@xxxxxx" <xsl-list-service@xxxxxxxxxxxxxxxxxxxxxx>
Date: Sat, 28 Mar 2020 11:42:22 -0000
Re:  difference between an integer and current-dateTime
Am 28.03.2020 um 01:23 schrieb Mukul Gandhi gandhi.mukul@xxxxxxxxx:

I've tried following XSLT stylesheet upto now, based on your suggestions,

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
B B B B B B B B B B B B
B xmlns:xs="http://www.w3.org/2001/XMLSchema"
 B  B  B  B  B  B  B  B  B  B  B  B  B exclude-result-prefixes="xs"
 B  B  B  B  B  B  B  B  B  B  B  B  B version="3.0">

B B <xsl:output method="text"/>

B B <xsl:param name="secsSinceEpoch" as="xs:integer"/>

 B  B  <xsl:template match="/">
 B  B  B  B <xsl:variable name="epochDateTime"
select="xs:dateTime('1970-01-01T00:00:00Z') +

B B B B B xs:dayTimeDuration('PT' || $secsSinceEpoch || 'S')"

 B  B  B  B  B as="xs:dateTime"/>
 B  B  B  B <xsl:variable name="diffDTduration" select="current-dateTime()
-
$epochDateTime" as="xs:dayTimeDuration"/>
 B  B  B  B <xs:value-of select="$diffDTduration"/>
 B  B  </xsl:template>

</xsl:stylesheet>

When I invoke above stylesheet, as follows (using Saxon 10),

java -classpath saxon-he-10.0.jar net.sf.saxon.Transform -s:trf1.xsl
-xsl:trf1.xsl secsSinceEpoch=1585039138

I get nothing into the output (i.e, <xs:value-of
select="$diffDTduration"/> doesn't print anything). Any thoughts, how
can I proceed further?

But there looks to be a valid value within the variable,B 'epochDateTime'.

When I posted my suggestions I had only tried them with XPath/XQuery e.g.


let $epochDateTime := xs:dateTime('1970-01-01T00:00:00Z') +
xs:dayTimeDuration('PT' || 1585039138 || 'S')
return
current-dateTime() - $epochDateTime

in oXygen's XPath/XQuery builder window.

I am currently not sure why your code using those expressions in XSLT
doesn't output anything, I will try to investigate and let you know.

Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.