gollum-lib 5.1.2-java → 5.1.3-java

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: 91549ba42cbf448b02f7d79cfb4257c02b549fe7ed4c32ce12910009f817bd2c
4
- data.tar.gz: 4e9c0079c2298d216cc9c4022bea79ed395f7704b33630bf319299dd14b4a96c
3
+ metadata.gz: 30bf4e344e069297b87fad5950fc22d5cf148179bc789b6829be3ff8cb840e75
4
+ data.tar.gz: 8293a92e93665911a928eae7aaadceb42db44128dd704e35f534ffced06278df
5
5
  SHA512:
6
- metadata.gz: eb855c6b2e316a76060460b406aa4118350034fbdbf41d6afe4bdb7a12e25367c9a6d88d64cf0fac03230090868b1063f01b98102a71430c5e2c0cb09a347361
7
- data.tar.gz: 4fb53f05829c6e4d4b889bb1d61573b0ec47a1d8119ee3621244386a12d570251184349c38ebc43c8683e02107c62993c89ea0363c94be08d66162c453130e28
6
+ metadata.gz: 43b5344bf05f97539ade8fe0102ef8b17e405c2b362e38673d7e07752169852170a4be3c1611006e73121b7a43d54c469b229c0a173b91773228e50ebba3a66c
7
+ data.tar.gz: f1b7c53f8c628b38bdda9d0a834f10b3ffd703b157da597d068645cdc5daa6412c98b5681f942c8060b86c82eff811e3a1837bf8496e766471082d8cffe5c44f
data/README.md CHANGED
@@ -2,7 +2,7 @@ gollum lib -- A wiki built on top of Git
2
2
  ========================================
3
3
 
4
4
  [![Gem Version](https://badge.fury.io/rb/gollum-lib.svg)](http://badge.fury.io/rb/gollum-lib)
5
- [![Build Status](https://travis-ci.org/gollum/gollum-lib.svg?branch=master)](https://travis-ci.org/gollum/gollum-lib)
5
+ [![Ruby Build](https://github.com/gollum/gollum-lib/actions/workflows/test.yaml/badge.svg)](https://github.com/gollum/gollum-lib/actions/workflows/test.yaml)
6
6
  [![Cutting Edge Dependency Status](https://dometto-cuttingedge.herokuapp.com/github/gollum/gollum-lib/svg 'Cutting Edge Dependency Status')](https://dometto-cuttingedge.herokuapp.com/github/gollum/gollum-lib/info)
7
7
 
8
8
  ## DESCRIPTION
data/gemspec.rb CHANGED
@@ -8,7 +8,7 @@ def specification(version, default_adapter, platform = nil)
8
8
  s.name = 'gollum-lib'
9
9
  s.version = version
10
10
  s.platform = platform if platform
11
- s.date = '2021-07-10'
11
+ s.date = '2021-09-06'
12
12
  s.date = '2017-04-13'
13
13
  s.rubyforge_project = 'gollum-lib'
14
14
  s.license = 'MIT'
@@ -6,7 +6,7 @@ module Gollum
6
6
  prepath = @wiki.base_path.sub(/\/$/, '')
7
7
  result = '<ul>' + @wiki.pages.map { |p| "<li><a href=\"#{CGI::escapeHTML(prepath + "/" + p.escaped_url_path)}\">#{CGI::escapeHTML(p.url_path)}</a></li>" }.join + '</ul>'
8
8
  end
9
- "<div class=\"toc\"><div class=\"toc-title\">#{CGI::escapeHTML(title)}</div>#{result}</div>"
9
+ "<div class=\"toc\"><div class=\"toc-title\">#{title}</div>#{result}</div>"
10
10
  end
11
11
  end
12
12
  end
@@ -14,7 +14,7 @@ module Gollum
14
14
  end
15
15
  result = "<ul>#{list_items.join}</ul>"
16
16
  end
17
- "<div class=\"toc\"><div class=\"toc-title\">#{CGI::escapeHTML(title)}</div>#{result}</div>"
17
+ "<div class=\"toc\"><div class=\"toc-title\">#{title}</div>#{result}</div>"
18
18
  end
19
19
 
20
20
  end
@@ -12,7 +12,7 @@ module Gollum
12
12
  icon.options[:class] << ' mr-2'
13
13
  icon = icon.to_svg
14
14
  end
15
- "<div class='flash'>#{icon}#{CGI::escapeHTML(notice)}</div>"
15
+ "<div class='flash'>#{icon}#{notice}</div>"
16
16
  end
17
17
  end
18
18
  end
@@ -4,7 +4,7 @@ module Gollum
4
4
  def render(warning)
5
5
  icon = Octicons::Octicon.new('alert', {width: 24, height: 24})
6
6
  icon.options[:class] << ' mr-2'
7
- "<div class='flash flash-warn'>#{icon.to_svg}#{CGI::escapeHTML(warning)}</div>"
7
+ "<div class='flash flash-warn'>#{icon.to_svg}#{warning}</div>"
8
8
  end
9
9
  end
10
10
  end
@@ -81,7 +81,7 @@ module Gollum
81
81
  :enabled => MarkupRegisterUtils::gem_exists?("creole"),
82
82
  :reverse_links => true)
83
83
  register(:rst, "reStructuredText",
84
- :enabled => MarkupRegisterUtils::executable_exists?("python2"),
84
+ :enabled => MarkupRegisterUtils::executable_exists?("python3"),
85
85
  :extensions => ['rest', 'rst'])
86
86
  register(:asciidoc, "AsciiDoc",
87
87
  :skip_filters => [:Tags],
@@ -1,5 +1,5 @@
1
1
  module Gollum
2
2
  module Lib
3
- VERSION = '5.1.2'
3
+ VERSION = '5.1.3'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gollum-lib
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.1.2
4
+ version: 5.1.3
5
5
  platform: java
6
6
  authors:
7
7
  - Tom Preston-Werner