Changeset 5763 for wire/trunk
- Timestamp:
- 08/21/08 16:54:56 (3 months ago)
- Files:
-
- wire/trunk/wire/client.c (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
wire/trunk/wire/client.c
r5602 r5763 526 526 wr_server->name = wi_retain(WI_ARRAY(arguments, 2)); 527 527 wr_server->description = wi_retain(WI_ARRAY(arguments, 3)); 528 wr_server->startdate = wi_date_init_with_ iso8601_string(wi_date_alloc(), WI_ARRAY(arguments, 4));528 wr_server->startdate = wi_date_init_with_rfc3339_string(wi_date_alloc(), WI_ARRAY(arguments, 4)); 529 529 wr_server->files = wi_string_uint32(WI_ARRAY(arguments, 5)); 530 530 wr_server->size = wi_string_uint64(WI_ARRAY(arguments, 6)); … … 790 790 wr_printf_block(WI_STR("Cipher: %@/%@ bits"), WI_ARRAY(arguments, 9), WI_ARRAY(arguments, 10)); 791 791 792 date = wi_date_with_ iso8601_string(WI_ARRAY(arguments, 11));792 date = wi_date_with_rfc3339_string(WI_ARRAY(arguments, 11)); 793 793 interval = wi_time_interval_string(wi_date_time_interval_since_now(date)); 794 794 string = wi_date_string_with_format(date, WI_STR("%a %b %e %T %Y")); 795 795 wr_printf_block(WI_STR("Login Time: %@, since %@"), interval, string); 796 796 797 date = wi_date_with_ iso8601_string(WI_ARRAY(arguments, 12));797 date = wi_date_with_rfc3339_string(WI_ARRAY(arguments, 12)); 798 798 interval = wi_time_interval_string(wi_date_time_interval_since_now(date)); 799 799 string = wi_date_string_with_format(date, WI_STR("%a %b %e %T %Y")); … … 897 897 wr_news_count = -1; 898 898 } else { 899 date = wi_date_with_ iso8601_string(WI_ARRAY(arguments, 1));899 date = wi_date_with_rfc3339_string(WI_ARRAY(arguments, 1)); 900 900 string = wi_date_string_with_format(date, WI_STR("%a %b %e %T %Y")); 901 901 … … 1014 1014 1015 1015 wi_release(window->topic.date); 1016 date = wi_date_with_ iso8601_string(WI_ARRAY(arguments, 4));1016 date = wi_date_with_rfc3339_string(WI_ARRAY(arguments, 4)); 1017 1017 window->topic.date = wi_retain(wi_date_string_with_format(date, WI_STR("%a %b %e %T %Y"))); 1018 1018 … … 1102 1102 wr_printf_block(WI_STR("Size: %@"), string); 1103 1103 1104 date = wi_date_with_ iso8601_string(WI_ARRAY(arguments, 3));1104 date = wi_date_with_rfc3339_string(WI_ARRAY(arguments, 3)); 1105 1105 string = wi_date_string_with_format(date, WI_STR("%a %b %e %T %Y")); 1106 1106 wr_printf_block(WI_STR("Created: %@"), string); 1107 1107 1108 date = wi_date_with_ iso8601_string(WI_ARRAY(arguments, 4));1108 date = wi_date_with_rfc3339_string(WI_ARRAY(arguments, 4)); 1109 1109 string = wi_date_string_with_format(date, WI_STR("%a %b %e %T %Y")); 1110 1110 wr_printf_block(WI_STR("Modified: %@"), string);
