[#61822] Plan Developers Meeting Japan April 2014 — Zachary Scott <e@...>

I would like to request developers meeting around April 17 or 18 in this mo=

14 messages 2014/04/03
[#61825] Re: Plan Developers Meeting Japan April 2014 — Urabe Shyouhei <shyouhei@...> 2014/04/03

It's good if we have a meeting then.

[#61826] Re: Plan Developers Meeting Japan April 2014 — Zachary Scott <e@...> 2014/04/03

Regarding openssl issues, I=E2=80=99ve discussed possible meeting time with=

[#61833] Re: Plan Developers Meeting Japan April 2014 — Martin Bo煬et <martin.bosslet@...> 2014/04/03

Hi,

[ruby-core:62111] [ruby-trunk - Bug #9764] [Open] Date and DateTime strptime and strftime not supporting proper Week Numbering for Monday vs Sunday as start day and %G causes ignore of all other format arguments

From: stephenrussett@...
Date: 2014-04-21 04:25:44 UTC
List: ruby-core #62111
Issue #9764 has been reported by Steve R.

----------------------------------------
Bug #9764: Date and DateTime strptime and strftime not supporting proper Week Numbering for Monday vs Sunday as start day and %G causes ignore of all other format arguments
https://bugs.ruby-lang.org/issues/9764

* Author: Steve R
* Status: Open
* Priority: Normal
* Assignee: 
* Category: 
* Target version: 
* ruby -v: ruby 2.0.0p247 (2013-06-27 revision 41674) [x86_64-darwin12.4.0]
* Backport: 2.0.0: UNKNOWN, 2.1: UNKNOWN
----------------------------------------
Date and DateTime strftime and strptime are not supporting %U (0-53 Week Numbers as defined in strptime): 
http://www.ruby-doc.org/stdlib-2.1.1/libdoc/date/rdoc/Date.html#method-i-strftime

Some examples that are not producing expected results/output:

1. require 'date'; puts Date.new(2013,12,30).strftime("%G %U")  # 2014 52  -- How is this Week 52 of 2013??

2. require 'date'; puts Date.strptime("2014 01","%G %U")  # 2013-12-30 -- This should really be 2013-12-29 as the 29th is the sunday and the 30th is the Monday, and %U should be using Sunday as the first day of week.

3. The following three examples all produce the same result but really should not.  Even if you change the week number to any number it still stays at the same output/result.  It seems like there is a bug related to %G that ignores all other commands:

puts Date.strptime('00 2014', '%U %G')  # 2013-12-30
puts Date.strptime('00 2014', '%W %G')  # 2013-12-30
puts Date.strptime('2014W011', '%GW%V%u')  # 2013-12-30


Additionally one would expect the following two lines to produce the same results:
puts Date.strptime('00 2014', '%W %G')  # 2013-12-30
puts Date.strptime('00 2014', '%W %Y')  # Invalid Date Argument





-- 
https://bugs.ruby-lang.org/

In This Thread

Prev Next