Hi Niels,
Actually, W17 should return 23 April - there was a bug in my code making it return 29 April.
I've fixed that in build 6.28.
Fortunately Denmark seems to follow the ISO 8601 standard for week numbers
http://en.wikipedia.org/wiki/ISO_8601, which is what it was supposed to be handling there.
Incidentally, there is a method which you can override in the WebHandler procedure to "translate" the various shorthand of the dates to whatever you prefer. For example, in your case, if you wanted to add support for u17, then you would code the following in the WebHandler, in the .Interpret method;
if lower(p_string) = 'u'
return 'w'
end
In this way you can handle any number of words, or abbreviations that you like. You just interpret them here into the "normal" NetTalk name or abbreviation.
Cheers
Bruce