My company has offices in Brisbane, Melbourne and Adelaide, and now the southern states have gone to daylight savings time we're all in different time zones.
It would be nice if there was an option to make the times displayed by FB Server included the time zone abbreviation (e.g. AEDT) or GMT offset (e.g. GMT+11).
It would be even nicer if there was some javascript in the server pages which read in those date/time strings and translated them into the viewer's local time zone Something like:
makeLocalDate: function(span) {
var originalText = span.innerHTML;
var localDate = new Date(originalText);
var localText = localDate.toLocaleString();
if (localText != 'Invalid Date')
span.innerHTML = localText;
}