プロジェクト

全般

プロフィール

Vote #72137

完了

ParseDate missing in Ruby 1.9x

Admin Redmine さんが3年以上前に追加. 3年以上前に更新.

ステータス:
Closed
優先度:
通常
担当者:
-
カテゴリ:
Ruby support_33
対象バージョン:
開始日:
2022/05/09
期日:
進捗率:

0%

予定工数:
category_id:
33
version_id:
57
issue_org_id:
11290
author_id:
1388
assigned_to_id:
1
comments:
5
status_id:
5
tracker_id:
1
plus1:
0
affected_version:
closed_on:
affected_version_id:
ステータス-->[Closed]

説明

I'm running Redmine on a Ruby 1.9x interpreter. This version has no ParseDate that is used in http://www.redmine.org/projects/redmine/repository/changes/trunk/lib/SVG/Graph/TimeSeries.rb

Because you use it 2 times with the pattern


arr = ParseDate.parsedate( data[:data][i] )
t = Time.local( *arr[0,6].compact )

you can simply replace it with

t = DateTime.parse( data[:data][i] ).to_time


journals

This issue affects RedmineGraphsPlugin (which can be found at: https://github.com/hdgarrood/redmine-graphs-plugin/network

Here is a patch for 2.1.0:

<pre>
diff --git a/lib/SVG/Graph/TimeSeries.rb b/lib/SVG/Graph/TimeSeries.rb
index ee47359..bfa7c96 100644
--- a/lib/SVG/Graph/TimeSeries.rb
+++ b/lib/SVG/Graph/TimeSeries.rb
@@ -1,5 +1,4 @@
require 'SVG/Graph/Plot'
-require 'parsedate'

module SVG
module Graph
@@ -157,8 +156,7 @@ module SVG
y = []
data[:data].each_index {|i|
if i%2 == 0
- arr = ParseDate.parsedate( data[:data][i] )
- t = Time.local( *arr[0,6].compact )
+ t = DateTime.parse( data[:data][i] ).to_time
x << t.to_i
else
y << data[:data][i]
@@ -173,8 +171,7 @@ module SVG
protected

def min_x_value=(value)
- arr = ParseDate.parsedate( value )
- @min_x_value = Time.local( *arr[0,6].compact ).to_i
+ @min_x_value = DateTime.parse( data[:data][i] ).to_time
end
</pre>
--------------------------------------------------------------------------------
Patch committed in r10439.
--------------------------------------------------------------------------------
Merged in 2.1-stable.
--------------------------------------------------------------------------------
This patch is incorrect. Value is not used in the min_x_value method. It should look like this:
<pre>
def min_x_value=(value)
@min_x_value = DateTime.parse( value ).to_time
end
</pre>
--------------------------------------------------------------------------------
Hein Gustavsen wrote:
> This patch is incorrect. Value is not used in the min_x_value method. It should look like this:
> [...]

I have created new issue #12711, thanks.
--------------------------------------------------------------------------------


related_issues

relates,Closed,12711,incorrect fix of lib/SVG/Graph/TimeSeries.rb

Admin Redmine さんが3年以上前に更新

  • カテゴリRuby support_33 にセット
  • 対象バージョン2.1.1_57 にセット

他の形式にエクスポート: Atom PDF

いいね!0
いいね!0