Datizo News
Status: Alpha
Brought to you by:
redger-cornice
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
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