Menu

Datizo / News: Recent posts

Datizo-JS version 2.2 (The Time Machine)

This version introduces support for leap seconds and the possibility to write a custom output format for your date object.

It is now possible to get timestamps from a date: JulianDate, UNIX time and Windows time are supported for now.

The project has a web page: http://datizo.sourceforge.net

Posted by Redger I. Cornice 2010-12-06

Version 2.1: available

Datizo-js: v2.1 (Chronosphere) is now available.

"datizo-js" is a Javascript framework you can include in your site to deal with date strings. To perform it's calculations, it relies on the algorithms of the book Calendrical Calculations (3rd edition).

You can do things like that:

var date = "2010-09-12"; //or 2010-SEP-12
alert( date.isISO8601() ); //true

To get a UNIX timestamp:
alert( date.toUnixTime32bit() ); //1284249600... read more

Posted by Redger I. Cornice 2010-09-12