redmineup 1.0.6 → 1.0.7
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 +4 -4
- data/doc/CHANGELOG +8 -3
- data/lib/redmineup/liquid/drops/attachment_drop.rb +8 -0
- data/lib/redmineup/liquid/drops/custom_field_enumeration_drop.rb +11 -0
- data/lib/redmineup/liquid/drops/users_drop.rb +2 -3
- data/lib/redmineup/liquid/drops/version_drop.rb +40 -0
- data/lib/redmineup/liquid/filters/additional.rb +2 -5
- data/lib/redmineup/liquid/filters/base.rb +3 -2
- data/lib/redmineup/patches/compatibility/sprite_patch.rb +21 -0
- data/lib/redmineup/patches/compatibility_patch.rb +4 -1
- data/lib/redmineup/version.rb +1 -1
- data/lib/redmineup.rb +2 -0
- metadata +5 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7d061fb5f8521d22afc2dbffbcbdf2e51adc25556114bb2dad0487fa7d679a81
|
4
|
+
data.tar.gz: 6ce631766782290938b924e716030b2f88582f05387986836bfafd374a8ec388
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fafd19a672186bc0c9c600be06429168a893706b19b8fcef78a1cd5e0083ac3219c5bbcdc294740d797b99c1f8945f1721e4fafea7abcb8b759f9452276bd3d2
|
7
|
+
data.tar.gz: fca031eec3d47e2ef1e3715258b5b027bf9cda0df39ade391daa25d0c427e47454436918c3ff867e1a7d73f0532165c9838eab72bbad8659e941ca061982aa22
|
data/doc/CHANGELOG
CHANGED
@@ -1,9 +1,14 @@
|
|
1
|
-
==
|
1
|
+
== RedmineUP gem changelog
|
2
2
|
|
3
3
|
Redmine UP gem - general functions for plugins (tags, vote, viewing, currency)
|
4
|
-
Copyright (C) 2011-
|
4
|
+
Copyright (C) 2011-2025 Kirill Bezrukov (RedmineUP)
|
5
5
|
https://www.redmineup.com/
|
6
6
|
|
7
|
+
== 2025-01-29 v1.0.7
|
8
|
+
|
9
|
+
* Fixed parse_inline_attachments Liquid filter
|
10
|
+
* Added compatibility patch for Redmine 6 sprite_icon
|
11
|
+
|
7
12
|
== 2024-05-07 v1.0.6
|
8
13
|
|
9
14
|
* Updated Chart.js to v3.9.1
|
@@ -23,4 +28,4 @@ https://www.redmineup.com/
|
|
23
28
|
== 2023-09-27 v1.0.0
|
24
29
|
|
25
30
|
* Initial release
|
26
|
-
* Mirgated from redmineup gem
|
31
|
+
* Mirgated from redmineup gem
|
@@ -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
|
-
|
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
|
-
|
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 ApplicationHelper.included_modules.include?(Redmineup::Patches::Compatibility::SpritePatch)
|
20
|
+
ApplicationHelper.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
|
-
|
7
|
+
unless ApplicationHelper.method_defined?(:sprite_icon)
|
8
|
+
require 'redmineup/patches/compatibility/sprite_patch'
|
9
|
+
end
|
10
|
+
require 'redmineup/patches/compatibility/routing_mapper_patch'
|
data/lib/redmineup/version.rb
CHANGED
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.
|
4
|
+
version: 1.0.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- RedmineUP
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-01-30 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
|