> do you know what exactly the three longwords in front of the urls
> mean? the third one is the length of the url, that's clear. the second
> one seems to be (part of) a timestamp... but which format?
I also don't know the first Longword but the second one are the seconds
from the 01.01.1970
In ARexx I calculate the Date like this (lw2 is the 2nd longword in decimal):
/*
** to get the real date, i have to substract the seconds from
** 2922 (6*365+2*366) days (because arexx starts at 1.1.78).
*/
h_base = 2922 * 24 * 60 * 60
h_dec = lw2 - h_base
h_date = SPACE(DATE('N', h_dec%86400, 'I'), 1, '-')
h_dec = h_dec // 86400
h_sek = h_dec // 60
h_dec = h_dec % 60
h_min = h_dec // 60
h_std = h_dec % 60
h_time = RIGHT(h_std, 2, '0')':'RIGHT(h_min, 2, '0')':'RIGHT(h_sek, 2, '0')
HTH
--
CU, Bernd Gollesch /'''\ Europa, Austria, Styria
A 1200 - 060/50MHz ( o o ) Writer for:
2MB Chip 32MB Fast ---oOOO---(_)---OOOo--- http://www.amigascene.com/
_____________________________________________________________________
Voyager Mailing List - http://v3.vapor.com/
Voyager FAQ....: http://faq.vapor.com/voyager/
Listserver Help: mailto:[EMAIL PROTECTED]?Subject=HELP
Unsubscribe....: mailto:[EMAIL PROTECTED]?Subject=UNSUBSCRIBE