Defect report from : Wilhelm Mueller , BauManagement Bremen GmbH
(Please direct followup comments direct to yyyyyyyyyyyyyy@xxxxxxxxxxxxx)
@ page 299 line ~11550 section date objection {muewi-date-200208}
Problem:
Defect code : 2. Omission
The format specifiers %F %g %G %R %z are missing. This is especially
a problem for %g %G %z as their values can't be easily obtained by
other means.
Action:
Add the specifiers and corresponding descriptions at the appropriate
places:
%F
Equivalent to "%Y-%m-%d", the ISO 8601:2000 standard date format.
%g
Replaced by the last 2 digits of the week-based year (see below) as a decimal
number [00,99].
%G
Replaced by the week-based year (see below) as a decimal number (for example,
1977).
%R
Replaced by the time in 24-hour notation (same as "%H:%M").
%z
Replaced by the offset from UTC in the ISO 8601:2000 standard format (+hhmm or
-hhmm), or by no characters if no timezone is determinable. For example,
"-0430" means 4 hours 30 minutes behind UTC (west of Greenwich).
Following the description of the specifier %% add:
%g , %G , and %V give values according to the ISO 8601:2000 standard week-based
year. In this system, weeks begin on a Monday and week 1 of the year is the
week that includes January 4th, which is also the week that includes the first
Thursday of the year, and is also the first week that contains at least four
days in the year. If the first Monday of January is the 2nd, 3rd, or 4th, the
preceding days are part of the last week of the preceding year; thus, for
Saturday 2nd January 1999, %G is replaced by 1998 and %V is replaced by 53. If
December 29th, 30th, or 31st is a Monday, it and any following days are part of
week 1 of the following year. Thus, for Tuesday 30th December 1997, %G is
replaced by 1998 and %V is replaced by 01.
|