Skip to content

Instantly share code, notes, and snippets.

@nachoplaza
nachoplaza / dateTime_to_epoch.xml
Created November 12, 2013 14:18
Functions for XSLT conversion between dateTime format and Epoch format.
<xsl:call-template name="dateTimeToEpoch">
<xsl:with-param name="dateTimeValue" select="$value"/>
</xsl:call-template>
<xsl:template name="dateTimeToEpoch">
<xsl:param name="dateTimeValue"/>
<xsl:value-of select="( dateTime($dateTimeValue) - xsd:dateTime('1970-01-01T00:00:00') ) div xsd:dayTimeDuration('PT1S')"/>
</xsl:template>
<xsl:template name="epochToDateTime">