I am trying to change a date from UTC format to the New Zeeland time zone. I was able to find a working solution, as shown in the following example:
xsl:value-of select="xs:dateTime('2002-12-24T12:00:12Z')+xs:dayTimeDuration('PT12H')"
Unfortunately, the tool I am using to generate this does not support XSLT 2.0. Also, changing the timezone on the system is not a possibility; the current date on the system will still be in UTC.
Is there any other way of achieving this with XSLT 1.0?
Thanks