redmineup 1.0.6 → 1.0.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d1035b01f7fb3252d090e82266fe2fba481dbbbc18648236196dddee8516d812
4
- data.tar.gz: 51c93663b752c3f39223ba51ceba2ca6ff0512414095770944c3141be4933d34
3
+ metadata.gz: '08acb095c1f949aee4c07b3cb4a9ff4c39ee22047d02108cc776f6f9a5a332c7'
4
+ data.tar.gz: 7639a6bb42193a8f9b274bb588e47f726e3be608c0ba789dc3c5ec7ce870f063
5
5
  SHA512:
6
- metadata.gz: bdbb9fe50b93e416a4ca632f44e389e4f095097b376ecaafd2a49454d79b819dbd0bff6704e0758272367b3d0801a096811bb88da17ce40d10e19247f8eab771
7
- data.tar.gz: da9985f0cbc49059443f68eac10e37f913ef85f8949b2cd1e84d6407c9e9d9b4aad548533e9bc7dbe36892988eda21457edeeaf7d79e8e072923f0cb85535b29
6
+ metadata.gz: 386b10e29e1a3b77520fc92b7e1b5837336d57bec75ef7fd129ecf7dd8cd4e64c0cae5424dec169ff4e5ca2ae5dc378ac984973c5fd2eed982f9c7e8a76812d5
7
+ data.tar.gz: 164fa573d77747b767fdee953beec2c0c9c373bb7366a6426bbe5efbc6c741a608326402dccb348e1c499d545e6b26fb6e8008306b0ce39633d1b6530c313d88
data/doc/CHANGELOG CHANGED
@@ -1,9 +1,18 @@
1
- == Redmine UP gem changelog
1
+ == RedmineUP gem changelog
2
2
 
3
3
  Redmine UP gem - general functions for plugins (tags, vote, viewing, currency)
4
- Copyright (C) 2011-2024 Kirill Bezrukov (RedmineUP)
4
+ Copyright (C) 2011-2025 Kirill Bezrukov (RedmineUP)
5
5
  https://www.redmineup.com/
6
6
 
7
+ == 2025-01-31 v1.0.8
8
+
9
+ * Fixed compatibility patch for Redmine < 5
10
+
11
+ == 2025-01-29 v1.0.7
12
+
13
+ * Fixed parse_inline_attachments Liquid filter
14
+ * Added compatibility patch for Redmine 6 sprite_icon
15
+
7
16
  == 2024-05-07 v1.0.6
8
17
 
9
18
  * Updated Chart.js to v3.9.1
@@ -23,4 +32,4 @@ https://www.redmineup.com/
23
32
  == 2023-09-27 v1.0.0
24
33
 
25
34
  * Initial release
26
- * Mirgated from redmineup gem
35
+ * Mirgated from redmineup gem
@@ -42,6 +42,14 @@ module Redmineup
42
42
  end
43
43
  @content
44
44
  end
45
+
46
+ def to_s
47
+ filename
48
+ end
49
+
50
+ def to_base64_string
51
+ Base64.strict_encode64(File.read(@attachment.diskfile))
52
+ end
45
53
  end
46
54
  end
47
55
  end
@@ -0,0 +1,11 @@
1
+ module Redmineup
2
+ module Liquid
3
+ class CustomFieldEnumerationDrop < ::Liquid::Drop
4
+ delegate :id, :to_s, to: :@enumeration
5
+
6
+ def initialize(enumeration)
7
+ @enumeration = enumeration
8
+ end
9
+ end
10
+ end
11
+ end
@@ -35,7 +35,7 @@ module Redmineup
35
35
  end
36
36
 
37
37
  class UserDrop < ::Liquid::Drop
38
- delegate :id, :name, :firstname, :lastname, :mail, :active?, :admin?, :logged?, :language, :to => :@user, allow_nil: true
38
+ delegate :id, :name, :firstname, :lastname, :mail, :active?, :admin?, :logged?, :language, :to_s, :to => :@user, allow_nil: true
39
39
 
40
40
  def initialize(user)
41
41
  @user = user
@@ -61,8 +61,7 @@ module Redmineup
61
61
 
62
62
  def custom_field_values
63
63
  @user.custom_field_values
64
- end
65
-
64
+ end
66
65
  end
67
66
  end
68
67
  end
@@ -0,0 +1,40 @@
1
+ module Redmineup
2
+ module Liquid
3
+ class VersionDrop < ::Liquid::Drop
4
+ delegate :id,
5
+ :name,
6
+ :description,
7
+ :effective_date,
8
+ :due_date,
9
+ :wiki_page_title,
10
+ :status,
11
+ :sharing,
12
+ :default_project_version,
13
+ :start_date,
14
+ :due_date,
15
+ :estimated_hours,
16
+ :spent_hours,
17
+ :closed?,
18
+ :open?,
19
+ :completed?,
20
+ :completed_percent,
21
+ :closed_percent,
22
+ :overdue?,
23
+ :issues_count,
24
+ :open_issues_count,
25
+ :closed_issues_count,
26
+ :visible_fixed_issues,
27
+ :wiki_page,
28
+ :to_s_with_project,
29
+ :shared?,
30
+ :deletable?,
31
+ :default_project_version,
32
+ :to_s,
33
+ to: :@version
34
+
35
+ def initialize(version)
36
+ @version = version
37
+ end
38
+ end
39
+ end
40
+ end
@@ -12,12 +12,9 @@ module Redmineup
12
12
  filename, ext, alt, alttext = $1, $2, $3, $4
13
13
  # search for the picture in attachments
14
14
  if found = Attachment.latest_attach(attachments, CGI.unescape(filename))
15
- image_url = found.url
16
15
  desc = found.description.to_s.delete('"')
17
- if !desc.blank? && alttext.blank?
18
- alt = " title=\"#{desc}\" alt=\"#{desc}\""
19
- end
20
- "src=\"#{image_url}\"#{alt} loading=\"lazy\""
16
+ alt = " title=\"#{desc}\" alt=\"#{desc}\"" if !desc.blank? && alttext.blank?
17
+ "src='data:image/#{found.content_type};base64,#{found.to_base64_string}' #{alt}"
21
18
  else
22
19
  m
23
20
  end
@@ -102,8 +102,9 @@ module Redmineup
102
102
  custom_value = input.custom_field_values.detect { |cfv| cfv.custom_field.name == field_name }
103
103
  if custom_value
104
104
  result = custom_value.custom_field.format.formatted_custom_value(nil, custom_value)
105
- result = result.to_s if result.is_a?(CustomFieldEnumeration)
106
- result
105
+ return result if result.respond_to?(:to_liquid)
106
+ drop_class = "Redmineup::Liquid::#{result.class.name}Drop"
107
+ Object.const_defined?(drop_class) ? drop_class.constantize.new(result) : result
107
108
  end
108
109
  end
109
110
  end
@@ -0,0 +1,21 @@
1
+ module Redmineup
2
+ module Patches
3
+ module Compatibility
4
+ module SpritePatch
5
+ def self.included(base)
6
+ base.send(:include, InstanceMethods)
7
+ end
8
+
9
+ module InstanceMethods
10
+ def sprite_icon(icon_name, label = nil, icon_only: false, size: '18', css_class: nil, sprite: "icons", plugin: nil)
11
+ label
12
+ end
13
+ end
14
+ end
15
+ end
16
+ end
17
+ end
18
+
19
+ unless ActionView::Base.included_modules.include?(Redmineup::Patches::Compatibility::SpritePatch)
20
+ ActionView::Base.send(:include, Redmineup::Patches::Compatibility::SpritePatch)
21
+ end
@@ -4,4 +4,7 @@ end
4
4
  if Redmine::VERSION.to_s < "5"
5
5
  require 'redmineup/patches/compatibility/user_patch'
6
6
  end
7
- require 'redmineup/patches/compatibility/routing_mapper_patch'
7
+ if Redmine::VERSION.to_s < "6"
8
+ require 'redmineup/patches/compatibility/sprite_patch'
9
+ end
10
+ require 'redmineup/patches/compatibility/routing_mapper_patch'
@@ -1,3 +1,3 @@
1
1
  module Redmineup
2
- VERSION = '1.0.6'
2
+ VERSION = '1.0.8'
3
3
  end
data/lib/redmineup.rb CHANGED
@@ -38,6 +38,8 @@ require 'redmineup/liquid/drops/users_drop'
38
38
  require 'redmineup/liquid/drops/time_entries_drop'
39
39
  require 'redmineup/liquid/drops/attachment_drop'
40
40
  require 'redmineup/liquid/drops/issue_relations_drop'
41
+ require 'redmineup/liquid/drops/version_drop'
42
+ require 'redmineup/liquid/drops/custom_field_enumeration_drop'
41
43
 
42
44
  require 'redmineup/helpers/external_assets_helper'
43
45
  require 'redmineup/helpers/form_tag_helper'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: redmineup
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.6
4
+ version: 1.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - RedmineUP
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-05-07 00:00:00.000000000 Z
11
+ date: 2025-01-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -164,12 +164,14 @@ files:
164
164
  - lib/redmineup/helpers/vote_helper.rb
165
165
  - lib/redmineup/hooks/views_layouts_hook.rb
166
166
  - lib/redmineup/liquid/drops/attachment_drop.rb
167
+ - lib/redmineup/liquid/drops/custom_field_enumeration_drop.rb
167
168
  - lib/redmineup/liquid/drops/issue_relations_drop.rb
168
169
  - lib/redmineup/liquid/drops/issues_drop.rb
169
170
  - lib/redmineup/liquid/drops/news_drop.rb
170
171
  - lib/redmineup/liquid/drops/projects_drop.rb
171
172
  - lib/redmineup/liquid/drops/time_entries_drop.rb
172
173
  - lib/redmineup/liquid/drops/users_drop.rb
174
+ - lib/redmineup/liquid/drops/version_drop.rb
173
175
  - lib/redmineup/liquid/filters/additional.rb
174
176
  - lib/redmineup/liquid/filters/arrays.rb
175
177
  - lib/redmineup/liquid/filters/base.rb
@@ -177,6 +179,7 @@ files:
177
179
  - lib/redmineup/money_helper.rb
178
180
  - lib/redmineup/patches/compatibility/application_controller_patch.rb
179
181
  - lib/redmineup/patches/compatibility/routing_mapper_patch.rb
182
+ - lib/redmineup/patches/compatibility/sprite_patch.rb
180
183
  - lib/redmineup/patches/compatibility/user_patch.rb
181
184
  - lib/redmineup/patches/compatibility_patch.rb
182
185
  - lib/redmineup/patches/liquid_patch.rb