summaryrefslogtreecommitdiff
path: root/tests/exslt/date/seconds.1.xml
AgeCommit message (Collapse)AuthorFilesLines
2017-10-17Imported Upstream version 1.1.30_rc1upstream/1.1.30_rc1DongHun Kwak1-0/+2
Change-Id: Ie087e3508369ac612459f31961addc691f2302c1 Signed-off-by: DongHun Kwak <dh0128.kwak@samsung.com>
2012-09-04EXSLT date normalization fixJames Muscat1-0/+9
https://bugzilla.gnome.org/show_bug.cgi?id=626855 Dates with timezones but no time components are not normalized correctly Using xsltproc v1.1.26: $ xsltproc --version Using libxml 20706, libxslt 10126 and libexslt 815 xsltproc was compiled against libxml 20704, libxslt 10126 and libexslt 815 libxslt 10126 was compiled against libxml 20704 libexslt 815 was compiled against libxml 20704 Dates that have timezone offsets specified but no time components, for example "1970-01-01+01:00", are not normalized correctly; the timezone part is truncated: date:seconds("1970-01-01") = 0 date:seconds("1970-01-01+01:00") = 0 (not -3600 as expected) Alters the conditions under which exsltDateNormalize() returns without normalizing, and adds test cases demonstrating the new behaviour.
2002-04-26applied another patch from Charles Bozeman to enhance date/durationDaniel Veillard1-0/+24
* libexslt/date.c: applied another patch from Charles Bozeman to enhance date/duration support * tests/exslt/date: added the associated set of regression tests Daniel