Hi, On Tue, Sep 9, 2008 at 1:39 PM, Caoimh <[EMAIL PROTECTED]> wrote:
> > Hi, > I am making a standard timeline with events throughout history but > there is one 'event' that needs to be represented forever - into the > past and into the future. Is this possible? Also I am having trouble > setting dates earlier than 100AD. Any takers? I have no idea about inifinite events. Concerning your date problem, Have you used a specific datetime format in your event source ? Your problem reminds me of a classical problem related to javascript Date objects which tend to consider years lesser than 100 as a relative date to be added to 1900 (hence the get/setFullYear methods) : js> new Date(0, 1, 1) Thu Feb 01 1900 00:00:00 GMT+0100 (CET) js> new Date(99, 1, 1) Mon Feb 01 1999 00:00:00 GMT+0100 (CET) js> new Date(100, 1, 1) Mon Feb 01 0100 00:00:00 GMT+0100 (CET) --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "SIMILE Widgets" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/simile-widgets?hl=en -~----------~----~----~----~------~----~------~--~---
