wwwjdic 13.0.1 → 16.1.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.
Files changed (97) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG +60 -1
  3. data/Gemfile +7 -1
  4. data/README.md +500 -225
  5. data/Rakefile +10 -3
  6. data/copyright.md +17 -29
  7. data/examples/basics.rb +53 -45
  8. data/examples/translate.rb +159 -86
  9. data/examples/uri.rb +46 -78
  10. data/html/CHANGELOG.html +90 -35
  11. data/html/COPYING_md.html +26 -38
  12. data/html/Gemfile.html +25 -35
  13. data/html/Object.html +838 -74
  14. data/html/README_md.html +322 -175
  15. data/html/Rakefile.html +28 -38
  16. data/html/WWWJDic.html +63 -104
  17. data/html/WWWJDic/ParsableDuckType.html +38 -58
  18. data/html/WWWJDic/Parser.html +52 -92
  19. data/html/WWWJDic/Parsers.html +29 -35
  20. data/html/WWWJDic/Parsers/Dict.html +50 -76
  21. data/html/WWWJDic/Parsers/Display.html +45 -69
  22. data/html/WWWJDic/Parsers/Key.html +46 -70
  23. data/html/WWWJDic/Parsers/Search.html +41 -61
  24. data/html/WWWJDic/Parsers/Server.html +45 -69
  25. data/html/WWWJDic/Splitter.html +81 -175
  26. data/html/WWWJDic/Utils.html +30 -36
  27. data/html/WWWJDic/Utils/Downloader.html +41 -41
  28. data/html/WWWJDic/Utils/Downloader/Downloader.html +65 -92
  29. data/html/WWWJDic/Utils/Raisers.html +46 -98
  30. data/html/WWWJDic/WWWJDic.html +166 -348
  31. data/html/copyright_md.html +219 -239
  32. data/html/created.rid +33 -58
  33. data/html/css/rdoc.css +638 -590
  34. data/html/index.html +313 -182
  35. data/html/js/darkfish.js +84 -161
  36. data/html/js/navigation.js +4 -40
  37. data/html/js/navigation.js.gz +0 -0
  38. data/html/js/search.js +109 -109
  39. data/html/js/search_index.js +1 -1
  40. data/html/js/search_index.js.gz +0 -0
  41. data/html/js/searcher.js +228 -229
  42. data/html/js/searcher.js.gz +0 -0
  43. data/html/table_of_contents.html +161 -200
  44. data/lib/wwwjdic.rb +14 -15
  45. data/lib/wwwjdic/application.rb +68 -36
  46. data/lib/wwwjdic/constants.rb +56 -12
  47. data/lib/wwwjdic/locales/de.yml +9 -4
  48. data/lib/wwwjdic/locales/en.yml +9 -4
  49. data/lib/wwwjdic/locales/es.yml +9 -4
  50. data/lib/wwwjdic/locales/fr.yml +9 -4
  51. data/lib/wwwjdic/locales/hu.yml +9 -4
  52. data/lib/wwwjdic/locales/it.yml +9 -4
  53. data/lib/wwwjdic/locales/ja.yml +11 -5
  54. data/lib/wwwjdic/locales/nl.yml +9 -4
  55. data/lib/wwwjdic/locales/ru.yml +9 -4
  56. data/lib/wwwjdic/locales/sl.yml +9 -4
  57. data/lib/wwwjdic/locales/sv.yml +9 -4
  58. data/lib/wwwjdic/parser.rb +13 -8
  59. data/lib/wwwjdic/parsers/dict.rb +11 -8
  60. data/lib/wwwjdic/parsers/display.rb +8 -3
  61. data/lib/wwwjdic/parsers/key.rb +9 -3
  62. data/lib/wwwjdic/parsers/search.rb +10 -3
  63. data/lib/wwwjdic/parsers/server.rb +8 -3
  64. data/lib/wwwjdic/utils/downloader.rb +37 -34
  65. data/lib/wwwjdic/utils/raisers.rb +12 -15
  66. data/lib/wwwjdic/utils/splitter.rb +32 -18
  67. data/lib/wwwjdic/version.rb +22 -8
  68. data/test/test_helper.rb +10 -1
  69. data/test/test_wwwjdic.rb +10 -4
  70. data/test/wwwjdic/locales/de.yml +9 -1
  71. data/test/wwwjdic/locales/en.yml +9 -1
  72. data/test/wwwjdic/locales/es.yml +9 -1
  73. data/test/wwwjdic/locales/fr.yml +9 -1
  74. data/test/wwwjdic/locales/hu.yml +9 -1
  75. data/test/wwwjdic/locales/it.yml +10 -1
  76. data/test/wwwjdic/locales/ja.yml +11 -2
  77. data/test/wwwjdic/locales/nl.yml +9 -1
  78. data/test/wwwjdic/locales/ru.yml +9 -1
  79. data/test/wwwjdic/locales/sl.yml +9 -1
  80. data/test/wwwjdic/locales/sv.yml +9 -1
  81. data/test/wwwjdic/locales/test_locales.rb +41 -24
  82. data/test/wwwjdic/parsers/test_dict.rb +65 -37
  83. data/test/wwwjdic/parsers/test_display.rb +11 -5
  84. data/test/wwwjdic/parsers/test_key.rb +10 -4
  85. data/test/wwwjdic/parsers/test_server.rb +11 -5
  86. data/test/wwwjdic/test_application.rb +199 -149
  87. data/test/wwwjdic/test_parsable_duck_type.rb +9 -5
  88. data/test/wwwjdic/utils/test_downloader.rb +7 -1
  89. data/test/wwwjdic/utils/test_raisers.rb +46 -29
  90. data/wwwjdic.gemspec +44 -26
  91. metadata +55 -43
  92. data/acknowledgements.md +0 -55
  93. data/authors.md +0 -67
  94. data/html/acknowledgements_md.html +0 -149
  95. data/html/authors_md.html +0 -181
  96. data/html/js/jquery.js +0 -4
  97. data/html/wwwjdic_gemspec.html +0 -161
data/examples/uri.rb CHANGED
@@ -1,6 +1,8 @@
1
+ # frozen_string_literal: true
2
+
1
3
  #--
2
4
  # wwwjdic
3
- # Copyright © 2014, 2015, 2016, 2017, 2018, 2019 Marco Bresciani
5
+ # © 2014-2021 Marco Bresciani
4
6
  #
5
7
  # This file is part of wwwjdic.
6
8
  #
@@ -16,114 +18,80 @@
16
18
  #
17
19
  # You should have received a copy of the GNU General Public License
18
20
  # along with wwwjdic. If not, see <http://www.gnu.org/licenses/>.
21
+ #
22
+ # SPDX-FileCopyrightText: 2014-2021 Marco Bresciani
23
+ #
24
+ # SPDX-License-Identifier: GPL-3.0-or-later
19
25
  #++
20
26
 
21
27
  require_relative '../lib/wwwjdic'
22
28
 
23
29
  i = 0
24
30
 
25
- # Creates the WWWJDic object
26
- puts '------------------------------------------'
27
- puts "Basics: '#{i}'. Creates the WWWJDic object."
31
+ # Create the WWWJDic object
32
+ puts '=========================================='
33
+ puts "URI #{i}: Create the WWWJDic object."
28
34
  puts 'irb(main):001:0> a_wwwjdic = WWWJDic::breener'
29
- a_wwwjdic = WWWJDic::breener
35
+ a_wwwjdic = WWWJDic.breener
36
+ puts '------------------------------------------'
30
37
  puts
31
38
  i += 1
32
39
 
33
- # Computes the default basic URI to translate '翻訳' in English
34
- # (http://www.edrdg.org/cgi-bin/wwwjdic/wwwjdic.cgi?1MUQ%E7%BF%BB%E8%A8%B3)
35
- puts '------------------------------------------'
36
- puts "Basics: '#{i}'. Computes the default basic URI to translate '翻訳' in English (http://www.edrdg.org/cgi-bin/wwwjdic/wwwjdic.cgi?1MUQ%E7%BF%BB%E8%A8%B3)."
40
+ # rubocop:disable Style/AsciiComments
41
+ # Compute the default basic URI to translate '翻訳' in English
42
+ # rubocop:enable Style/AsciiComments
43
+ # http://www.edrdg.org/cgi-bin/wwwjdic/wwwjdic.cgi?1MUQ%E7%BF%BB%E8%A8%B3
44
+ puts '=========================================='
45
+ puts "URI #{i}: Compute the default basic URI to translate '翻訳' in English (http://www.edrdg.org/cgi-bin/wwwjdic/wwwjdic.cgi?1MUQ%E7%BF%BB%E8%A8%B3)."
37
46
  puts "irb(main):001:0> a_wwwjdic.uri '翻訳'"
38
47
  puts a_wwwjdic.uri '翻訳'
48
+ puts '------------------------------------------'
39
49
  puts
40
50
  i += 1
41
51
 
42
- # Computes the default raw URI to translate '翻訳' in English
43
- # (http://www.edrdg.org/cgi-bin/wwwjdic/wwwjdic.cgi?1ZUQ%E7%BF%BB%E8%A8%B3)
44
- puts '------------------------------------------'
45
- puts "Basics: '#{i}'. Computes the default raw URI to translate '翻訳' in English (http://www.edrdg.org/cgi-bin/wwwjdic/wwwjdic.cgi?1ZUQ%E7%BF%BB%E8%A8%B3)."
52
+ # rubocop:disable Style/AsciiComments
53
+ # Compute the default raw URI to translate '翻訳' in English
54
+ # rubocop:enable Style/AsciiComments
55
+ # http://www.edrdg.org/cgi-bin/wwwjdic/wwwjdic.cgi?1ZUQ%E7%BF%BB%E8%A8%B3
56
+ puts '=========================================='
57
+ puts "URI #{i}: Compute the default raw URI to translate '翻訳' in English (http://www.edrdg.org/cgi-bin/wwwjdic/wwwjdic.cgi?1ZUQ%E7%BF%BB%E8%A8%B3)."
46
58
  puts "irb(main):001:0> a_wwwjdic.raw_uri '翻訳'"
47
59
  puts a_wwwjdic.raw_uri '翻訳'
60
+ puts '------------------------------------------'
48
61
  puts
49
62
  i += 1
50
63
 
51
- # Computes the default JSON URI to translate '翻訳' in English
52
- # ({"翻訳":"http://www.edrdg.org/cgi-bin/wwwjdic/wwwjdic.cgi?1MUQ%E7%BF%BB%E8%A8%B3"})
53
- puts '------------------------------------------'
54
- puts "Basics: '#{i}'. Computes the default JSON URI to translate '翻訳' in English ({\"翻訳\":\"http://www.edrdg.org/cgi-bin/wwwjdic/wwwjdic.cgi?1MUQ%E7%BF%BB%E8%A8%B3\"})."
64
+ # rubocop:disable Style/AsciiComments
65
+ # Compute the default JSON URI to translate '翻訳' in English
66
+ # {"翻訳":"http://www.edrdg.org/cgi-bin/wwwjdic/wwwjdic.cgi?1MUQ%E7%BF%BB%E8%A8%B3"}
67
+ # rubocop:enable Style/AsciiComments
68
+ puts '=========================================='
69
+ puts "URI #{i}: Compute the default JSON URI to translate '翻訳' in English ({\"翻訳\":\"http://www.edrdg.org/cgi-bin/wwwjdic/wwwjdic.cgi?1MUQ%E7%BF%BB%E8%A8%B3\"})."
55
70
  puts "irb(main):001:0> a_wwwjdic.json_uri '翻訳'"
56
71
  puts a_wwwjdic.json_uri '翻訳'
72
+ puts '------------------------------------------'
57
73
  puts
58
74
  i += 1
59
75
 
60
- # Computes the default basic URI to translate '翻訳' in Italian
61
- # (http://www.edrdg.org/cgi-bin/wwwjdic/wwwjdic.cgi?OMUQ%E7%BF%BB%E8%A8%B3)
62
- puts '------------------------------------------'
63
- puts "Basics: '#{i}'. Computes the default basic URI to translate '翻訳' in Italian (http://www.edrdg.org/cgi-bin/wwwjdic/wwwjdic.cgi?OMUQ%E7%BF%BB%E8%A8%B3)."
76
+ # rubocop:disable Style/AsciiComments
77
+ # Compute the default basic URI to translate '翻訳' in Italian
78
+ # rubocop:enable Style/AsciiComments
79
+ # http://www.edrdg.org/cgi-bin/wwwjdic/wwwjdic.cgi?OMUQ%E7%BF%BB%E8%A8%B3
80
+ puts '=========================================='
81
+ puts "URI #{i}: Compute the default basic URI to translate '翻訳' in Italian (http://www.edrdg.org/cgi-bin/wwwjdic/wwwjdic.cgi?OMUQ%E7%BF%BB%E8%A8%B3)."
64
82
  puts "irb(main):001:0> a_wwwjdic.uri '翻訳', dict: 'Japanese-Italian'"
65
83
  puts a_wwwjdic.uri '翻訳', dict: 'Japanese-Italian'
84
+ puts '------------------------------------------'
66
85
  puts
67
86
  i += 1
68
87
 
69
- # Computes the default JSON URI to translate '翻訳' in German
70
- # (http://www.csse.monash.edu.au/~jwb/cgi-bin/wwwjdic.cgi?GMUQ%E7%BF%BB%E8%A8%B3)
71
- puts '------------------------------------------'
72
- puts "Basics: '#{i}'. Computes the default basic URI to translate '翻訳' in German, through Monash university URI (http://www.csse.monash.edu.au/~jwb/cgi-bin/wwwjdic.cgi?GMUQ%E7%BF%BB%E8%A8%B3)."
88
+ # rubocop:disable Style/AsciiComments
89
+ # Compute the default basic URI to translate '翻訳' in German, through Monash university URI
90
+ # rubocop:enable Style/AsciiComments
91
+ # http://nihongo.monash.edu/cgi-bin/wwwjdic?GMUQ%E7%BF%BB%E8%A8%B3
92
+ puts '=========================================='
93
+ puts "URI #{i}: Compute the default basic URI to translate '翻訳' in German, through Monash university URI (http://nihongo.monash.edu/cgi-bin/wwwjdic?GMUQ%E7%BF%BB%E8%A8%B3)."
73
94
  puts "irb(main):001:0> a_wwwjdic.uri '翻訳', dict: 'Japanese-German (WaDoku)', server: :monash"
74
95
  puts a_wwwjdic.uri '翻訳', dict: 'Japanese-German (WaDoku)', server: :monash
75
- puts
76
- i += 1
77
-
78
- # Prints the current (default) WWWJDic configuration URL.
79
- # (http://www.edrdg.org/cgi-bin/wwwjdic/wwwjdic.cgi?1M)
80
- puts '------------------------------------------'
81
- puts "Basics: '#{i}'. Prints the current (default) WWWJDic configuration URL (http://www.edrdg.org/cgi-bin/wwwjdic/wwwjdic.cgi?1M)."
82
- puts 'irb(main):001:0> puts a_wwwjdic'
83
- puts a_wwwjdic
84
- puts
85
- i += 1
86
-
87
- # Change the server value to Monash one.
88
- # ()
89
- puts '------------------------------------------'
90
- puts "Basics: '#{i}'. Change the server value to Monash one."
91
- puts 'irb(main):001:0> a_wwwjdic.server = :monash'
92
- a_wwwjdic.server = :monash
93
- puts
94
- i += 1
95
-
96
- # Prints the (currently set) server
97
- # (http://www.csse.monash.edu.au/~jwb/cgi-bin/wwwjdic.cgi?)
98
- puts '------------------------------------------'
99
- puts "Basics: '#{i}'. Prints the (currently set) server (http://www.csse.monash.edu.au/~jwb/cgi-bin/wwwjdic.cgi?)."
100
- puts 'irb(main):001:0> puts a_wwwjdic.server'
101
- puts a_wwwjdic.server
102
- puts
103
- i += 1
104
-
105
- # Prints the WWWJDic configuration URL with currently set configuration.
106
- # (http://www.csse.monash.edu.au/~jwb/cgi-bin/wwwjdic.cgi?1M)
107
- puts '------------------------------------------'
108
- puts "Basics: '#{i}'. Prints the WWWJDic configuration URL with currently set configuration (http://www.csse.monash.edu.au/~jwb/cgi-bin/wwwjdic.cgi?1M)."
109
- puts 'irb(main):001:0> puts a_wwwjdic'
110
- puts a_wwwjdic
111
- puts
112
- i += 1
113
-
114
- # Resets the configuration to default values.
115
- # (http://www.csse.monash.edu.au/~jwb/cgi-bin/wwwjdic.cgi?1M)
116
- puts '------------------------------------------'
117
- puts "Basics: '#{i}'. Resets the configuration to default values."
118
- puts 'irb(main):001:0> a_wwwjdic.reset'
119
- a_wwwjdic.reset
120
- puts
121
- i += 1
122
-
123
- # Prints the current (default) WWWJDic configuration URL.
124
- # (http://www.edrdg.org/cgi-bin/wwwjdic/wwwjdic.cgi?1M)
125
96
  puts '------------------------------------------'
126
- puts "Basics: '#{i}'. Prints the current (default) WWWJDic configuration URL (http://www.edrdg.org/cgi-bin/wwwjdic/wwwjdic.cgi?1M)."
127
- puts 'irb(main):001:0> puts a_wwwjdic'
128
- puts a_wwwjdic
129
97
  puts
data/html/CHANGELOG.html CHANGED
@@ -4,26 +4,27 @@
4
4
  <head>
5
5
  <meta charset="UTF-8">
6
6
 
7
- <title>CHANGELOG - wwwjdic 13.0.1</title>
7
+ <title>CHANGELOG - wwwjdic 16.1.0</title>
8
8
 
9
9
  <script type="text/javascript">
10
10
  var rdoc_rel_prefix = "./";
11
11
  var index_rel_prefix = "./";
12
12
  </script>
13
13
 
14
- <script src="./js/jquery.js"></script>
15
- <script src="./js/darkfish.js"></script>
14
+ <script defer src="./js/navigation.js"></script>
15
+ <script defer src="./js/search.js"></script>
16
+ <script defer src="./js/search_index.js"></script>
17
+ <script defer src="./js/searcher.js"></script>
18
+ <script defer src="./js/darkfish.js"></script>
16
19
 
17
20
  <link href="./css/fonts.css" rel="stylesheet">
18
21
  <link href="./css/rdoc.css" rel="stylesheet">
19
22
 
20
23
 
21
-
22
-
23
- <body id="top" role="document" class="file">
24
+ <body class="file" id="top" role="document">
24
25
  <nav role="navigation">
25
26
  <div id="project-navigation">
26
- <div id="home-section" role="region" title="Quick navigation" class="nav-section">
27
+ <div class="nav-section" id="home-section" role="region" title="Quick navigation">
27
28
  <h2>
28
29
  <a href="./index.html" rel="home">Home</a>
29
30
  </h2>
@@ -35,28 +36,32 @@
35
36
  </div>
36
37
  </div>
37
38
 
38
- <div id="search-section" role="search" class="project-section initially-hidden">
39
- <form action="#" method="get" accept-charset="utf-8">
39
+ <div class="project-section initially-hidden" id="search-section" role="search">
40
+ <form accept-charset="utf-8" action="#" method="get">
40
41
  <div id="search-field-wrapper">
41
- <input id="search-field" role="combobox" aria-label="Search"
42
- aria-autocomplete="list" aria-controls="search-results"
43
- type="text" name="search" placeholder="Search" spellcheck="false"
44
- title="Type to search, Up and Down to navigate, Enter to load">
42
+ <input aria-autocomplete="list" aria-controls="search-results" aria-label="Search"
43
+ id="search-field" name="search"
44
+ placeholder="Search" role="combobox" spellcheck="false" title="Type to search, Up and Down to navigate, Enter to load"
45
+ type="text">
45
46
  </div>
46
47
 
47
- <ul id="search-results" aria-label="Search Results"
48
- aria-busy="false" aria-expanded="false"
49
- aria-atomic="false" class="initially-hidden"></ul>
48
+ <ul aria-atomic="false" aria-busy="false"
49
+ aria-expanded="false" aria-label="Search Results"
50
+ class="initially-hidden" id="search-results"></ul>
50
51
  </form>
51
52
  </div>
52
53
 
53
54
  </div>
54
55
 
55
-
56
+
56
57
  <div class="nav-section">
57
58
  <h3>Table of Contents</h3>
58
59
 
59
60
  <ul class="link-list" role="directory">
61
+ <li><a href="#label-Version+16.1.0">Version 16.1.0</a>
62
+ <li><a href="#label-Version+16.0.0">Version 16.0.0</a>
63
+ <li><a href="#label-Version+15.0.0">Version 15.0.0</a>
64
+ <li><a href="#label-Version+14.0.0">Version 14.0.0</a>
60
65
  <li><a href="#label-Version+13.0.1">Version 13.0.1</a>
61
66
  <li><a href="#label-Version+13.0.0">Version 13.0.0</a>
62
67
  <li><a href="#label-Version+12.0.0">Version 12.0.0</a>
@@ -103,36 +108,87 @@
103
108
 
104
109
 
105
110
  <div id="project-metadata">
106
- <div id="fileindex-section" class="nav-section">
111
+
112
+ <div class="nav-section" id="fileindex-section">
107
113
  <h3>Pages</h3>
108
114
 
109
115
  <ul class="link-list">
110
-
111
116
  <li><a href="./CHANGELOG.html">CHANGELOG</a>
112
-
113
117
  <li><a href="./COPYING_md.html">COPYING</a>
114
-
115
118
  <li><a href="./Gemfile.html">Gemfile</a>
116
-
117
119
  <li><a href="./README_md.html">README</a>
118
-
119
120
  <li><a href="./Rakefile.html">Rakefile</a>
120
-
121
- <li><a href="./acknowledgements_md.html">acknowledgements</a>
122
-
123
- <li><a href="./authors_md.html">authors</a>
124
-
125
121
  <li><a href="./copyright_md.html">copyright</a>
126
-
127
- <li><a href="./wwwjdic_gemspec.html">wwwjdic.gemspec</a>
128
-
129
122
  </ul>
130
123
  </div>
131
124
 
132
125
  </div>
133
126
  </nav>
134
127
 
135
- <main role="main" aria-label="Page CHANGELOG">
128
+ <main aria-label="Page CHANGELOG" role="main">
129
+
130
+ <h1 id="label-Version+16.1.0">Version 16.1.0<span><a href="#label-Version+16.1.0">&para;</a> <a href="#top">&uarr;</a></span></h1>
131
+
132
+ <pre>* PATCH update gem dependencies.
133
+ * PATCH fix somw Rubocop offenses
134
+ * IN PROGRESS: improving application RDoc to better comply with SemVer
135
+ point 1 (Software using Semantic Versioning MUST declare a public
136
+ API. This API could be declared in the code itself or exist strictly
137
+ in documentation. However it is done, it should be precise and
138
+ comprehensive.)</pre>
139
+
140
+ <h1 id="label-Version+16.0.0">Version 16.0.0<span><a href="#label-Version+16.0.0">&para;</a> <a href="#top">&uarr;</a></span></h1>
141
+
142
+ <pre>* MAJOR update from Ruby &#39;~&gt; 2.7&#39; to Ruby &#39;~&gt; 3.0&#39;.
143
+ * MINOR update IntelliJ IDEA (RubyGem) project configuration.
144
+ * PATCH update gem dependencies.
145
+ * IN PROGRESS: restoring key configuration as allowed parameter, to
146
+ allow user asking for specific searches. Search key currently fixed
147
+ to &#39;E&#39; (exact match) type search.
148
+ * IN PROGRESS: improving application RDoc to better comply with SemVer
149
+ point 1 (Software using Semantic Versioning MUST declare a public
150
+ API. This API could be declared in the code itself or exist strictly
151
+ in documentation. However it is done, it should be precise and
152
+ comprehensive.)</pre>
153
+
154
+ <h1 id="label-Version+15.0.0">Version 15.0.0<span><a href="#label-Version+15.0.0">&para;</a> <a href="#top">&uarr;</a></span></h1>
155
+
156
+ <pre>* MAJOR changed key search type default from &quot;exact&quot; to &quot;english&quot;.
157
+ * MAJOR changed Monash dictionary server reference URL.
158
+ * MINOR introduce compliance to REUSE tool from FSF Europe
159
+ * MINOR add dependency to Rubocop
160
+ * PATCH update copyright notices
161
+ * PATCH remove test data form I18N files.
162
+ * PATCH update gem dependencies.
163
+ * PATCH update IntelliJ IDEA (RubyGem) project configuration.
164
+ * PATCH update to Ruby 2.7.x new things
165
+ * IN PROGRESS: restoring key configuration as allowed parameter, to
166
+ allow user asking for specific searches. Search key currently fixed
167
+ to &#39;E&#39; (exact match) type search.
168
+ * IN PROGRESS: improving application RDoc to better comply with SemVer
169
+ point 1 (Software using Semantic Versioning MUST declare a public
170
+ API. This API could be declared in the code itself or exist strictly
171
+ in documentation. However it is done, it should be precise and
172
+ comprehensive.)</pre>
173
+
174
+ <h1 id="label-Version+14.0.0">Version 14.0.0<span><a href="#label-Version+14.0.0">&para;</a> <a href="#top">&uarr;</a></span></h1>
175
+
176
+ <pre>* MAJOR update from Ruby &#39;~&gt; 2.6&#39; to Ruby &#39;~&gt; 2.7&#39;.
177
+ * MINOR update IntelliJ IDEA (RubyGem) project configuration.
178
+ * MINOR add simplecov code coverage.
179
+ * PATCH update gem dependencies.
180
+ * PATCH change all asserts to matchers
181
+ * PATCH update copyright notice
182
+ * PATCH Fix deprecated methods calls for Minitest version 6.
183
+ * IN PROGRESS: translation example.
184
+ * IN PROGRESS: restoring key configuration as allowed parameter, to
185
+ allow user asking for specific searches. Search key currently fixed
186
+ to &#39;Q&#39; (exact match) type search.
187
+ * IN PROGRESS: improving application RDoc to better comply with SemVer
188
+ point 1 (Software using Semantic Versioning MUST declare a public
189
+ API. This API could be declared in the code itself or exist strictly
190
+ in documentation. However it is done, it should be precise and
191
+ comprehensive.)</pre>
136
192
 
137
193
  <h1 id="label-Version+13.0.1">Version 13.0.1<span><a href="#label-Version+13.0.1">&para;</a> <a href="#top">&uarr;</a></span></h1>
138
194
 
@@ -589,7 +645,7 @@
589
645
 
590
646
  <p>wwwjdic</p>
591
647
 
592
- <p>Copyright © 2014, 2015, 2016, 2017, 2018, 2019 Marco Bresciani</p>
648
+ <p 2014-2021 Marco Bresciani</p>
593
649
 
594
650
  <p>This file is part of wwwjdic.</p>
595
651
 
@@ -605,7 +661,6 @@
605
661
 
606
662
  <footer id="validator-badges" role="contentinfo">
607
663
  <p><a href="https://validator.w3.org/check/referer">Validate</a>
608
- <p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.1.1.
664
+ <p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.3.2.
609
665
  <p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
610
666
  </footer>
611
-
data/html/COPYING_md.html CHANGED
@@ -4,26 +4,27 @@
4
4
  <head>
5
5
  <meta charset="UTF-8">
6
6
 
7
- <title>COPYING - wwwjdic 13.0.1</title>
7
+ <title>COPYING - wwwjdic 16.1.0</title>
8
8
 
9
9
  <script type="text/javascript">
10
10
  var rdoc_rel_prefix = "./";
11
11
  var index_rel_prefix = "./";
12
12
  </script>
13
13
 
14
- <script src="./js/jquery.js"></script>
15
- <script src="./js/darkfish.js"></script>
14
+ <script defer src="./js/navigation.js"></script>
15
+ <script defer src="./js/search.js"></script>
16
+ <script defer src="./js/search_index.js"></script>
17
+ <script defer src="./js/searcher.js"></script>
18
+ <script defer src="./js/darkfish.js"></script>
16
19
 
17
20
  <link href="./css/fonts.css" rel="stylesheet">
18
21
  <link href="./css/rdoc.css" rel="stylesheet">
19
22
 
20
23
 
21
-
22
-
23
- <body id="top" role="document" class="file">
24
+ <body class="file" id="top" role="document">
24
25
  <nav role="navigation">
25
26
  <div id="project-navigation">
26
- <div id="home-section" role="region" title="Quick navigation" class="nav-section">
27
+ <div class="nav-section" id="home-section" role="region" title="Quick navigation">
27
28
  <h2>
28
29
  <a href="./index.html" rel="home">Home</a>
29
30
  </h2>
@@ -35,24 +36,24 @@
35
36
  </div>
36
37
  </div>
37
38
 
38
- <div id="search-section" role="search" class="project-section initially-hidden">
39
- <form action="#" method="get" accept-charset="utf-8">
39
+ <div class="project-section initially-hidden" id="search-section" role="search">
40
+ <form accept-charset="utf-8" action="#" method="get">
40
41
  <div id="search-field-wrapper">
41
- <input id="search-field" role="combobox" aria-label="Search"
42
- aria-autocomplete="list" aria-controls="search-results"
43
- type="text" name="search" placeholder="Search" spellcheck="false"
44
- title="Type to search, Up and Down to navigate, Enter to load">
42
+ <input aria-autocomplete="list" aria-controls="search-results" aria-label="Search"
43
+ id="search-field" name="search"
44
+ placeholder="Search" role="combobox" spellcheck="false" title="Type to search, Up and Down to navigate, Enter to load"
45
+ type="text">
45
46
  </div>
46
47
 
47
- <ul id="search-results" aria-label="Search Results"
48
- aria-busy="false" aria-expanded="false"
49
- aria-atomic="false" class="initially-hidden"></ul>
48
+ <ul aria-atomic="false" aria-busy="false"
49
+ aria-expanded="false" aria-label="Search Results"
50
+ class="initially-hidden" id="search-results"></ul>
50
51
  </form>
51
52
  </div>
52
53
 
53
54
  </div>
54
55
 
55
-
56
+
56
57
  <div class="nav-section">
57
58
  <h3>Table of Contents</h3>
58
59
 
@@ -84,36 +85,24 @@
84
85
 
85
86
 
86
87
  <div id="project-metadata">
87
- <div id="fileindex-section" class="nav-section">
88
+
89
+ <div class="nav-section" id="fileindex-section">
88
90
  <h3>Pages</h3>
89
91
 
90
92
  <ul class="link-list">
91
-
92
93
  <li><a href="./CHANGELOG.html">CHANGELOG</a>
93
-
94
94
  <li><a href="./COPYING_md.html">COPYING</a>
95
-
96
95
  <li><a href="./Gemfile.html">Gemfile</a>
97
-
98
96
  <li><a href="./README_md.html">README</a>
99
-
100
97
  <li><a href="./Rakefile.html">Rakefile</a>
101
-
102
- <li><a href="./acknowledgements_md.html">acknowledgements</a>
103
-
104
- <li><a href="./authors_md.html">authors</a>
105
-
106
98
  <li><a href="./copyright_md.html">copyright</a>
107
-
108
- <li><a href="./wwwjdic_gemspec.html">wwwjdic.gemspec</a>
109
-
110
99
  </ul>
111
100
  </div>
112
101
 
113
102
  </div>
114
103
  </nav>
115
104
 
116
- <main role="main" aria-label="Page COPYING.md">
105
+ <main aria-label="Page COPYING.md" role="main">
117
106
 
118
107
  <h3 id="label-GNU+GENERAL+PUBLIC+LICENSE">GNU GENERAL PUBLIC LICENSE<span><a href="#label-GNU+GENERAL+PUBLIC+LICENSE">&para;</a> <a href="#top">&uarr;</a></span></h3>
119
108
 
@@ -127,7 +116,7 @@
127
116
 
128
117
  <p>The GNU General Public License is a free, copyleft license for software and other kinds of works.</p>
129
118
 
130
- <p>The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program–to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its <a href="authors_md.html">authors</a>. You can apply it to your programs, too.</p>
119
+ <p>The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program–to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too.</p>
131
120
 
132
121
  <p>When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things.</p>
133
122
 
@@ -137,7 +126,7 @@
137
126
 
138
127
  <p>Developers that use the GNU GPL protect your rights with two steps: (1) assert <a href="copyright_md.html">copyright</a> on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it.</p>
139
128
 
140
- <p>For the developers&#39; and <a href="authors_md.html">authors</a>&#39; protection, the GPL clearly explains that there is no warranty for this free software. For both users&#39; and <a href="authors_md.html">authors</a>&#39; sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to <a href="authors_md.html">authors</a> of previous versions.</p>
129
+ <p>For the developers&#39; and authors&#39; protection, the GPL clearly explains that there is no warranty for this free software. For both users&#39; and authors&#39; sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions.</p>
141
130
 
142
131
  <p>Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users&#39; freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users.</p>
143
132
 
@@ -255,11 +244,11 @@
255
244
  </li><li>
256
245
  <p>c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or</p>
257
246
  </li><li>
258
- <p>d) Limiting the use for publicity purposes of names of licensors or <a href="authors_md.html">authors</a> of the material; or</p>
247
+ <p>d) Limiting the use for publicity purposes of names of licensors or authors of the material; or</p>
259
248
  </li><li>
260
249
  <p>e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or</p>
261
250
  </li><li>
262
- <p>f) Requiring indemnification of licensors and <a href="authors_md.html">authors</a> of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and <a href="authors_md.html">authors</a>.</p>
251
+ <p>f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors.</p>
263
252
  </li></ul>
264
253
 
265
254
  <p>All other non-permissive additional terms are considered “further restrictions” within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying.</p>
@@ -383,7 +372,6 @@
383
372
 
384
373
  <footer id="validator-badges" role="contentinfo">
385
374
  <p><a href="https://validator.w3.org/check/referer">Validate</a>
386
- <p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.1.1.
375
+ <p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.3.2.
387
376
  <p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
388
377
  </footer>
389
-