tdiary-contrib 5.1.7 → 5.2.0
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/lib/tdiary/contrib/version.rb +1 -1
- data/plugin/google_analytics.rb +9 -9
- data/plugin/profile.rb +3 -3
- data/spec/google_analytics_spec.rb +9 -9
- data/util/image-gallery/views/gallery.rhtml +2 -2
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 26ed0292336afd37dbf602aacebe5816077ad450883500b6d0b37a81fe56aa99
|
4
|
+
data.tar.gz: 9064adbae3f2a4a7c40ef91b1d737c24e3c219f5dd5cded6429f626ab9c0544b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8e9476fa421de7453b2fc1649e45be709d1328617c7d898cf47f28d608b1e36afdbfac3746f1af34849cd229e8c7d7def852b2d10cc9c2093e6048b319e57e00
|
7
|
+
data.tar.gz: 280e114e9d5f0671153a2e2eb3e1172ffa5cd350b19183eb06cb8098719a80ce38d67b9bd144ed44038bbfe7a3440bda6a01c8ff54dc8300f4f6e78445af3466
|
data/plugin/google_analytics.rb
CHANGED
@@ -13,15 +13,15 @@ end
|
|
13
13
|
def google_analytics_insert_code
|
14
14
|
return '' unless @conf['google_analytics.profile']
|
15
15
|
<<-HTML
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
16
|
+
<!-- Global site tag (gtag.js) - Google Analytics -->
|
17
|
+
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-#{@conf['google_analytics.profile']}"></script>
|
18
|
+
<script>
|
19
|
+
window.dataLayer = window.dataLayer || [];
|
20
|
+
function gtag(){dataLayer.push(arguments);}
|
21
|
+
gtag('js', new Date());
|
21
22
|
|
22
|
-
|
23
|
-
|
24
|
-
// --></script>
|
23
|
+
gtag('config', 'UA-#{@conf['google_analytics.profile']}');
|
24
|
+
</script>
|
25
25
|
HTML
|
26
26
|
end
|
27
27
|
|
@@ -34,7 +34,7 @@ add_conf_proc( 'google_analytics', 'Google Analytics' ) do
|
|
34
34
|
r = <<-HTML
|
35
35
|
<h3>Google Analytics Profile</h3>
|
36
36
|
<p>set your Profile ID (NNNNN-N)</p>
|
37
|
-
<p
|
37
|
+
<p>UA-<input name="google_analytics.profile" value="#{h @conf['google_analytics.profile']}"></p>
|
38
38
|
HTML
|
39
39
|
if defined? AMP
|
40
40
|
r << <<-HTML
|
data/plugin/profile.rb
CHANGED
@@ -59,7 +59,7 @@ module ::Profile
|
|
59
59
|
# get a XML document from endpoint and create REXML::Document instance
|
60
60
|
def fetch(endpoint)
|
61
61
|
Timeout.timeout(5) do
|
62
|
-
open(endpoint) do |f|
|
62
|
+
URI.open(endpoint) do |f|
|
63
63
|
doc = REXML::Document.new(f)
|
64
64
|
end
|
65
65
|
end
|
@@ -90,7 +90,7 @@ module ::Profile
|
|
90
90
|
def fetch(endpoint)
|
91
91
|
require 'json'
|
92
92
|
Timeout.timeout(5) do
|
93
|
-
doc = open(endpoint) {|f| JSON.parse(f.read) }
|
93
|
+
doc = URI.open(endpoint) {|f| JSON.parse(f.read) }
|
94
94
|
end
|
95
95
|
end
|
96
96
|
|
@@ -128,7 +128,7 @@ module ::Profile
|
|
128
128
|
require 'json'
|
129
129
|
Timeout.timeout(5) do
|
130
130
|
begin
|
131
|
-
doc = open(endpoint) {|f| JSON.parse(f.read) }
|
131
|
+
doc = URI.open(endpoint) {|f| JSON.parse(f.read) }
|
132
132
|
rescue RuntimeError => err
|
133
133
|
if err.message =~ /^redirection forbidden: /
|
134
134
|
endpoint.sub!(/www/, @options[:lang])
|
@@ -44,15 +44,15 @@ describe "google_analytics plugin" do
|
|
44
44
|
|
45
45
|
def expected_html_footer_snippet
|
46
46
|
expected = <<-SCRIPT
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
47
|
+
<!-- Global site tag (gtag.js) - Google Analytics -->
|
48
|
+
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-53836-1"></script>
|
49
|
+
<script>
|
50
|
+
window.dataLayer = window.dataLayer || [];
|
51
|
+
function gtag(){dataLayer.push(arguments);}
|
52
|
+
gtag('js', new Date());
|
53
|
+
|
54
|
+
gtag('config', 'UA-53836-1');
|
55
|
+
</script>
|
56
56
|
SCRIPT
|
57
57
|
expected.gsub( /^\t/, '' ).chomp
|
58
58
|
end
|
@@ -26,9 +26,9 @@
|
|
26
26
|
<td>
|
27
27
|
<% if @images[i] != nil %>
|
28
28
|
<% if @images[i].width.to_i > @images[i].height.to_i %>
|
29
|
-
|
29
|
+
<p><a href="<%= format_link_viewer_image(@image_hash.key(@images[i])) %>"><img src="<%= @image_url %>/<%= @images[i].url %>" width="<%= @width %>" height="<%= (@width.to_i*@images[i].height.to_i/@images[i].width.to_i).to_s %>" alt="<%= @images[i].file %>" title="<%= @images[i].file %>" class="imagebody"></a></p>
|
30
30
|
<% else %>
|
31
|
-
|
31
|
+
<p><a href="<%= format_link_viewer_image(@image_hash.key(@images[i])) %>"><img src="<%= @image_url %>/<%= @images[i].url %>" width="<%= (@width.to_i*@images[i].width.to_i/@images[i].height.to_i).to_s %>" height="<%= @width %>" alt="<%= @images[i].file %>" title="<%= @images[i].file %>" class="imagebody"></a></p>
|
32
32
|
<% end %>
|
33
33
|
<p class="imagetitle"><%= CGI::escapeHTML(@images[i].title) %></p>
|
34
34
|
<p class="imagedate"><a href="./?date=<%= @images[i].date %>" title="<%= CGI::escapeHTML(@images[i].subtitle) %>"><%= @images[i].date.sub(/(\d{4})(\d{2})(\d{2})/, '\1-\2-\3') %></a></p>
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tdiary-contrib
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.
|
4
|
+
version: 5.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- tDiary contributors
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-11-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tdiary
|
@@ -558,7 +558,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
558
558
|
- !ruby/object:Gem::Version
|
559
559
|
version: '0'
|
560
560
|
requirements: []
|
561
|
-
rubygems_version: 3.2.
|
561
|
+
rubygems_version: 3.2.32
|
562
562
|
signing_key:
|
563
563
|
specification_version: 4
|
564
564
|
summary: tDiary contributions package
|