--- coreutils/ChangeLog 2006-05-03 19:11:05.000000000 +0900 +++ coreutils-rfc3339/ChangeLog 2006-05-04 13:12:07.084884824 +0900 @@ -1,3 +1,9 @@ +2006-05-04 Romain Lenglet + + * src/date.c: In --rfc-3339=seconds and --rfc-3339=ns output + formats, replace the space with "T" to respect RFC 3339's ABNF + specification. + 2006-05-03 Jim Meyering * Version 6.0-cvs. --- coreutils/NEWS 2006-04-24 06:38:32.000000000 +0900 +++ coreutils-rfc3339/NEWS 2006-05-04 13:20:16.797437200 +0900 @@ -153,6 +153,10 @@ tail -f once again works on a file with the append-only attribute (affects at least Linux ext2, ext3, xfs file systems) + date's options --rfc-3339=seconds and --rfc-3339=ns now output + timestamps with a "T" instead of a space between date and time, to + conform to RFC 3339's ABNF specification. + * Major changes in release 5.93 (2005-11-06) [stable] ** Bug fixes --- coreutils/THANKS 2006-05-03 19:11:25.000000000 +0900 +++ coreutils-rfc3339/THANKS 2006-05-04 13:12:50.990210200 +0900 @@ -422,6 +422,7 @@ Rogier Wolff address@hidden Roland Huebner address@hidden Roland Turner address@hidden +Romain Lenglet address@hidden Ronald F. Guilmette address@hidden Ross Alexander address@hidden Ross Paterson address@hidden --- coreutils/src/date.c 2006-01-09 05:45:54.000000000 +0900 +++ coreutils-rfc3339/src/date.c 2006-05-04 13:16:49.156003496 +0900 @@ -345,8 +345,8 @@ static char const rfc_3339_format[][32] = { "%Y-%m-%d", - "%Y-%m-%d %H:%M:%S%:z", - "%Y-%m-%d %H:%M:%S.%N%:z" + "%Y-%m-%dT%H:%M:%S%:z", + "%Y-%m-%dT%H:%M:%S.%N%:z" }; enum Time_spec i = XARGMATCH ("--rfc-3339", optarg,