wwwjdic 13.0.1 → 14.0.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 +19 -1
  3. data/Gemfile +1 -1
  4. data/README.md +79 -73
  5. data/Rakefile +2 -2
  6. data/acknowledgements.md +2 -2
  7. data/authors.md +2 -2
  8. data/copyright.md +4 -4
  9. data/examples/basics.rb +1 -1
  10. data/examples/translate.rb +1 -1
  11. data/examples/uri.rb +1 -1
  12. data/html/CHANGELOG.html +28 -7
  13. data/html/COPYING_md.html +7 -6
  14. data/html/Gemfile.html +8 -7
  15. data/html/Object.html +7 -4
  16. data/html/README_md.html +34 -47
  17. data/html/Rakefile.html +10 -9
  18. data/html/WWWJDic.html +11 -8
  19. data/html/WWWJDic/ParsableDuckType.html +9 -6
  20. data/html/WWWJDic/Parser.html +9 -6
  21. data/html/WWWJDic/Parsers.html +7 -4
  22. data/html/WWWJDic/Parsers/Dict.html +8 -5
  23. data/html/WWWJDic/Parsers/Display.html +8 -5
  24. data/html/WWWJDic/Parsers/Key.html +8 -5
  25. data/html/WWWJDic/Parsers/Search.html +8 -5
  26. data/html/WWWJDic/Parsers/Server.html +8 -5
  27. data/html/WWWJDic/Splitter.html +8 -5
  28. data/html/WWWJDic/Utils.html +8 -5
  29. data/html/WWWJDic/Utils/Downloader.html +7 -4
  30. data/html/WWWJDic/Utils/Downloader/Downloader.html +7 -4
  31. data/html/WWWJDic/Utils/Raisers.html +23 -20
  32. data/html/WWWJDic/WWWJDic.html +14 -11
  33. data/html/acknowledgements_md.html +9 -8
  34. data/html/authors_md.html +9 -8
  35. data/html/copyright_md.html +198 -195
  36. data/html/created.rid +57 -58
  37. data/html/css/rdoc.css +35 -6
  38. data/html/index.html +34 -47
  39. data/html/js/darkfish.js +22 -99
  40. data/html/js/navigation.js +4 -40
  41. data/html/js/navigation.js.gz +0 -0
  42. data/html/js/search.js +32 -31
  43. data/html/js/search_index.js +1 -1
  44. data/html/js/search_index.js.gz +0 -0
  45. data/html/js/searcher.js +6 -6
  46. data/html/js/searcher.js.gz +0 -0
  47. data/html/table_of_contents.html +10 -10
  48. data/lib/wwwjdic.rb +4 -2
  49. data/lib/wwwjdic/application.rb +8 -8
  50. data/lib/wwwjdic/constants.rb +1 -1
  51. data/lib/wwwjdic/locales/de.yml +3 -1
  52. data/lib/wwwjdic/locales/en.yml +3 -1
  53. data/lib/wwwjdic/locales/es.yml +3 -1
  54. data/lib/wwwjdic/locales/fr.yml +3 -2
  55. data/lib/wwwjdic/locales/hu.yml +3 -2
  56. data/lib/wwwjdic/locales/it.yml +3 -2
  57. data/lib/wwwjdic/locales/ja.yml +3 -3
  58. data/lib/wwwjdic/locales/nl.yml +3 -1
  59. data/lib/wwwjdic/locales/ru.yml +3 -1
  60. data/lib/wwwjdic/locales/sl.yml +3 -1
  61. data/lib/wwwjdic/locales/sv.yml +3 -1
  62. data/lib/wwwjdic/parser.rb +3 -3
  63. data/lib/wwwjdic/parsers/dict.rb +2 -2
  64. data/lib/wwwjdic/parsers/display.rb +2 -2
  65. data/lib/wwwjdic/parsers/key.rb +2 -2
  66. data/lib/wwwjdic/parsers/search.rb +2 -2
  67. data/lib/wwwjdic/parsers/server.rb +2 -2
  68. data/lib/wwwjdic/utils/downloader.rb +2 -2
  69. data/lib/wwwjdic/utils/raisers.rb +4 -3
  70. data/lib/wwwjdic/utils/splitter.rb +2 -2
  71. data/lib/wwwjdic/version.rb +16 -8
  72. data/test/test_helper.rb +4 -1
  73. data/test/test_wwwjdic.rb +4 -4
  74. data/test/wwwjdic/locales/de.yml +1 -1
  75. data/test/wwwjdic/locales/en.yml +1 -1
  76. data/test/wwwjdic/locales/es.yml +1 -1
  77. data/test/wwwjdic/locales/fr.yml +1 -1
  78. data/test/wwwjdic/locales/hu.yml +1 -1
  79. data/test/wwwjdic/locales/it.yml +3 -3
  80. data/test/wwwjdic/locales/ja.yml +1 -1
  81. data/test/wwwjdic/locales/nl.yml +1 -1
  82. data/test/wwwjdic/locales/ru.yml +1 -1
  83. data/test/wwwjdic/locales/sl.yml +1 -1
  84. data/test/wwwjdic/locales/sv.yml +1 -1
  85. data/test/wwwjdic/locales/test_locales.rb +11 -11
  86. data/test/wwwjdic/parsers/test_dict.rb +4 -4
  87. data/test/wwwjdic/parsers/test_display.rb +4 -4
  88. data/test/wwwjdic/parsers/test_key.rb +3 -3
  89. data/test/wwwjdic/parsers/test_server.rb +4 -4
  90. data/test/wwwjdic/test_application.rb +30 -30
  91. data/test/wwwjdic/test_parsable_duck_type.rb +3 -3
  92. data/test/wwwjdic/utils/test_downloader.rb +1 -1
  93. data/test/wwwjdic/utils/test_raisers.rb +1 -1
  94. data/wwwjdic.gemspec +15 -14
  95. metadata +26 -28
  96. data/html/js/jquery.js +0 -4
  97. data/html/wwwjdic_gemspec.html +0 -161
@@ -4,15 +4,18 @@
4
4
  <head>
5
5
  <meta charset="UTF-8">
6
6
 
7
- <title>class WWWJDic::WWWJDic - wwwjdic 13.0.1</title>
7
+ <title>class WWWJDic::WWWJDic - wwwjdic 14.0.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 src="../js/navigation.js" defer></script>
15
+ <script src="../js/search.js" defer></script>
16
+ <script src="../js/search_index.js" defer></script>
17
+ <script src="../js/searcher.js" defer></script>
18
+ <script src="../js/darkfish.js" defer></script>
16
19
 
17
20
  <link href="../css/fonts.css" rel="stylesheet">
18
21
  <link href="../css/rdoc.css" rel="stylesheet">
@@ -115,7 +118,7 @@
115
118
  <p><a href="mailto:marcobresciani_1974@libero.it">Marco Bresciani</a></p>
116
119
  </dd><dt>Copyright
117
120
  <dd>
118
- <p>Copyright © 2014, 2015, 2016, 2017, 2018, 2019 Marco Bresciani</p>
121
+ <p>Copyright © 2014, 2015, 2016, 2017, 2018, 2019, 2020 Marco Bresciani</p>
119
122
  </dd><dt>License
120
123
  <dd>
121
124
  <p>GNU General Public License version 3</p>
@@ -303,7 +306,7 @@
303
306
  <span class="line-num">117</span> <span class="ruby-keyword">def</span> <span class="ruby-identifier ruby-title">json_translate</span>(<span class="ruby-identifier">word</span> = <span class="ruby-keyword">nil</span>, <span class="ruby-identifier">args</span> = {}, <span class="ruby-identifier">filename</span> = <span class="ruby-keyword">nil</span>)
304
307
  <span class="line-num">118</span> <span class="ruby-identifier">translation</span> = <span class="ruby-identifier">translate</span>(<span class="ruby-identifier">word</span>, <span class="ruby-identifier">args</span>)
305
308
  <span class="line-num">119</span>
306
- <span class="line-num">120</span> <span class="ruby-identifier">a_hash</span> = <span class="ruby-constant">Hash</span>.<span class="ruby-identifier">new</span>
309
+ <span class="line-num">120</span> <span class="ruby-identifier">a_hash</span> = {}
307
310
  <span class="line-num">121</span> <span class="ruby-identifier">a_hash</span>[<span class="ruby-identifier">word</span>.<span class="ruby-identifier">to_sym</span>] = <span class="ruby-identifier">raw_uri</span>(<span class="ruby-identifier">word</span>, <span class="ruby-identifier">args</span>)
308
311
  <span class="line-num">122</span>
309
312
  <span class="line-num">123</span> <span class="ruby-identifier">the_splitter</span> = <span class="ruby-constant">Splitter</span>.<span class="ruby-identifier">new</span> <span class="ruby-identifier">translation</span>
@@ -319,7 +322,7 @@
319
322
  <span class="line-num">133</span>
320
323
  <span class="line-num">134</span> <span class="ruby-identifier">result</span> = <span class="ruby-identifier">a_hash</span>.<span class="ruby-identifier">to_json</span>
321
324
  <span class="line-num">135</span>
322
- <span class="line-num">136</span> <span class="ruby-constant">File</span>.<span class="ruby-identifier">open</span>(<span class="ruby-identifier">filename</span>, <span class="ruby-string">&#39;w+&#39;</span>) {<span class="ruby-operator">|</span><span class="ruby-identifier">f</span><span class="ruby-operator">|</span> <span class="ruby-identifier">f</span> <span class="ruby-operator">&lt;&lt;</span> <span class="ruby-constant">JSON</span>.<span class="ruby-identifier">pretty_generate</span>(<span class="ruby-identifier">a_hash</span>)} <span class="ruby-keyword">unless</span> <span class="ruby-identifier">filename</span>.<span class="ruby-identifier">nil?</span>
325
+ <span class="line-num">136</span> <span class="ruby-constant">File</span>.<span class="ruby-identifier">open</span>(<span class="ruby-identifier">filename</span>, <span class="ruby-string">&#39;w+&#39;</span>) { <span class="ruby-operator">|</span><span class="ruby-identifier">f</span><span class="ruby-operator">|</span> <span class="ruby-identifier">f</span> <span class="ruby-operator">&lt;&lt;</span> <span class="ruby-constant">JSON</span>.<span class="ruby-identifier">pretty_generate</span>(<span class="ruby-identifier">a_hash</span>) } <span class="ruby-keyword">unless</span> <span class="ruby-identifier">filename</span>.<span class="ruby-identifier">nil?</span>
323
326
  <span class="line-num">137</span>
324
327
  <span class="line-num">138</span> <span class="ruby-identifier">result</span>
325
328
  <span class="line-num">139</span> <span class="ruby-keyword">end</span></pre>
@@ -360,7 +363,7 @@
360
363
  <span class="line-num">86</span> <span class="ruby-keyword">def</span> <span class="ruby-identifier ruby-title">json_uri</span>(<span class="ruby-identifier">word</span> = <span class="ruby-keyword">nil</span>, <span class="ruby-identifier">args</span> = {})
361
364
  <span class="line-num">87</span> <span class="ruby-identifier">an_uri</span> = <span class="ruby-identifier">uri</span>(<span class="ruby-identifier">word</span>, <span class="ruby-identifier">args</span>)
362
365
  <span class="line-num">88</span>
363
- <span class="line-num">89</span> <span class="ruby-identifier">result</span> = <span class="ruby-constant">Hash</span>.<span class="ruby-identifier">new</span>
366
+ <span class="line-num">89</span> <span class="ruby-identifier">result</span> = {}
364
367
  <span class="line-num">90</span> <span class="ruby-identifier">result</span>[<span class="ruby-identifier">word</span>] = <span class="ruby-identifier">an_uri</span>
365
368
  <span class="line-num">91</span>
366
369
  <span class="line-num">92</span> <span class="ruby-identifier">result</span>.<span class="ruby-identifier">to_json</span>
@@ -400,7 +403,7 @@
400
403
  <div class="method-source-code" id="raw_uri-source">
401
404
  <pre> <span class="ruby-comment"># File lib/wwwjdic/application.rb</span>
402
405
  <span class="line-num">76</span> <span class="ruby-keyword">def</span> <span class="ruby-identifier ruby-title">raw_uri</span>(<span class="ruby-identifier">word</span> = <span class="ruby-keyword">nil</span>, <span class="ruby-identifier">args</span> = {})
403
- <span class="line-num">77</span> <span class="ruby-identifier">args</span> = <span class="ruby-constant">Hash</span>.<span class="ruby-identifier">new</span> <span class="ruby-keyword">if</span> <span class="ruby-identifier">args</span>.<span class="ruby-identifier">nil?</span>
406
+ <span class="line-num">77</span> <span class="ruby-identifier">args</span> = {} <span class="ruby-keyword">if</span> <span class="ruby-identifier">args</span>.<span class="ruby-identifier">nil?</span>
404
407
  <span class="line-num">78</span> <span class="ruby-identifier">args</span>[<span class="ruby-value">:display</span>] = <span class="ruby-value">:raw</span>
405
408
  <span class="line-num">79</span> <span class="ruby-identifier">uri</span>(<span class="ruby-identifier">word</span>, <span class="ruby-identifier">args</span>)
406
409
  <span class="line-num">80</span> <span class="ruby-keyword">end</span></pre>
@@ -435,7 +438,7 @@
435
438
  <div class="method-source-code" id="reset-source">
436
439
  <pre> <span class="ruby-comment"># File lib/wwwjdic/application.rb</span>
437
440
  <span class="line-num">182</span> <span class="ruby-keyword">def</span> <span class="ruby-identifier ruby-title">reset</span>
438
- <span class="line-num">183</span> <span class="ruby-ivar">@defaults</span> = <span class="ruby-constant">Hash</span>.<span class="ruby-identifier">new</span>
441
+ <span class="line-num">183</span> <span class="ruby-ivar">@defaults</span> = {}
439
442
  <span class="line-num">184</span> <span class="ruby-ivar">@defaults</span>[<span class="ruby-value">:dict</span>] = <span class="ruby-string">&#39;1&#39;</span>
440
443
  <span class="line-num">185</span> <span class="ruby-ivar">@defaults</span>[<span class="ruby-value">:display</span>] = <span class="ruby-value">:regular</span>
441
444
  <span class="line-num">186</span>
@@ -677,7 +680,7 @@
677
680
  <span class="line-num">55</span> <span class="ruby-identifier">raise</span> <span class="ruby-constant">ArgumentError</span>, <span class="ruby-constant">I18n</span>.<span class="ruby-identifier">t</span>(<span class="ruby-string">&#39;error.param&#39;</span>, <span class="ruby-value">value:</span> <span class="ruby-identifier">word</span>) <span class="ruby-keyword">if</span> <span class="ruby-identifier">word</span>.<span class="ruby-identifier">empty?</span>
678
681
  <span class="line-num">56</span> <span class="ruby-identifier">raise</span> <span class="ruby-constant">ArgumentError</span>, <span class="ruby-constant">I18n</span>.<span class="ruby-identifier">t</span>(<span class="ruby-string">&#39;error.param&#39;</span>, <span class="ruby-value">value:</span> <span class="ruby-identifier">args</span>) <span class="ruby-keyword">unless</span> <span class="ruby-identifier">args</span>.<span class="ruby-identifier">keys</span>.<span class="ruby-identifier">to_set</span>.<span class="ruby-identifier">proper_subset?</span> <span class="ruby-constant">Set</span>.<span class="ruby-identifier">new</span>(<span class="ruby-constant">ALLOWED_PARAMS</span>)
679
682
  <span class="line-num">57</span>
680
- <span class="line-num">58</span> <span class="ruby-identifier">params</span> = <span class="ruby-constant">Hash</span>.<span class="ruby-identifier">new</span>
683
+ <span class="line-num">58</span> <span class="ruby-identifier">params</span> = {}
681
684
  <span class="line-num">59</span> <span class="ruby-identifier">params</span>[<span class="ruby-value">:search</span>] = <span class="ruby-identifier">word</span>
682
685
  <span class="line-num">60</span> <span class="ruby-ivar">@defaults</span>[<span class="ruby-value">:search</span>] = <span class="ruby-identifier">word</span>
683
686
  <span class="line-num">61</span>
@@ -709,7 +712,7 @@
709
712
 
710
713
  <footer id="validator-badges" role="contentinfo">
711
714
  <p><a href="https://validator.w3.org/check/referer">Validate</a>
712
- <p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.1.1.
715
+ <p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.2.1.
713
716
  <p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
714
717
  </footer>
715
718
 
@@ -4,15 +4,18 @@
4
4
  <head>
5
5
  <meta charset="UTF-8">
6
6
 
7
- <title>acknowledgements - wwwjdic 13.0.1</title>
7
+ <title>acknowledgements - wwwjdic 14.0.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 src="./js/navigation.js" defer></script>
15
+ <script src="./js/search.js" defer></script>
16
+ <script src="./js/search_index.js" defer></script>
17
+ <script src="./js/searcher.js" defer></script>
18
+ <script src="./js/darkfish.js" defer></script>
16
19
 
17
20
  <link href="./css/fonts.css" rel="stylesheet">
18
21
  <link href="./css/rdoc.css" rel="stylesheet">
@@ -85,8 +88,6 @@
85
88
 
86
89
  <li><a href="./copyright_md.html">copyright</a>
87
90
 
88
- <li><a href="./wwwjdic_gemspec.html">wwwjdic.gemspec</a>
89
-
90
91
  </ul>
91
92
  </div>
92
93
 
@@ -97,7 +98,7 @@
97
98
  <!--
98
99
  wwwjdic
99
100
 
100
- Copyright © 2014, 2015, 2016, 2017, 2018, 2019 Marco Bresciani
101
+ Copyright © 2014, 2015, 2016, 2017, 2018, 2019, 2020 Marco Bresciani
101
102
 
102
103
  This file is part of wwwjdic.
103
104
 
@@ -127,7 +128,7 @@ with wwwjdic. If not, see <http://www.gnu.org/licenses/>.
127
128
 
128
129
  <p>wwwjdic</p>
129
130
 
130
- <p>Copyright © 2014, 2015, 2016, 2017, 2018, 2019 Marco Bresciani</p>
131
+ <p>Copyright © 2014, 2015, 2016, 2017, 2018, 2019, 2020 Marco Bresciani</p>
131
132
 
132
133
  <p>This file is part of wwwjdic.</p>
133
134
 
@@ -143,7 +144,7 @@ with wwwjdic. If not, see <http://www.gnu.org/licenses/>.
143
144
 
144
145
  <footer id="validator-badges" role="contentinfo">
145
146
  <p><a href="https://validator.w3.org/check/referer">Validate</a>
146
- <p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.1.1.
147
+ <p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.2.1.
147
148
  <p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
148
149
  </footer>
149
150
 
@@ -4,15 +4,18 @@
4
4
  <head>
5
5
  <meta charset="UTF-8">
6
6
 
7
- <title>authors - wwwjdic 13.0.1</title>
7
+ <title>authors - wwwjdic 14.0.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 src="./js/navigation.js" defer></script>
15
+ <script src="./js/search.js" defer></script>
16
+ <script src="./js/search_index.js" defer></script>
17
+ <script src="./js/searcher.js" defer></script>
18
+ <script src="./js/darkfish.js" defer></script>
16
19
 
17
20
  <link href="./css/fonts.css" rel="stylesheet">
18
21
  <link href="./css/rdoc.css" rel="stylesheet">
@@ -86,8 +89,6 @@
86
89
 
87
90
  <li><a href="./copyright_md.html">copyright</a>
88
91
 
89
- <li><a href="./wwwjdic_gemspec.html">wwwjdic.gemspec</a>
90
-
91
92
  </ul>
92
93
  </div>
93
94
 
@@ -98,7 +99,7 @@
98
99
  <!--
99
100
  wwwjdic
100
101
 
101
- Copyright © 2014, 2015, 2016, 2017, 2018, 2019 Marco Bresciani
102
+ Copyright © 2014, 2015, 2016, 2017, 2018, 2019, 2020 Marco Bresciani
102
103
 
103
104
  This file is part of wwwjdic.
104
105
 
@@ -159,7 +160,7 @@ with wwwjdic. If not, see <http://www.gnu.org/licenses/>.
159
160
 
160
161
  <p>wwwjdic</p>
161
162
 
162
- <p>Copyright © 2014, 2015, 2016, 2017, 2018, 2019 Marco Bresciani</p>
163
+ <p>Copyright © 2014, 2015, 2016, 2017, 2018, 2019, 2020 Marco Bresciani</p>
163
164
 
164
165
  <p>This file is part of wwwjdic.</p>
165
166
 
@@ -175,7 +176,7 @@ with wwwjdic. If not, see <http://www.gnu.org/licenses/>.
175
176
 
176
177
  <footer id="validator-badges" role="contentinfo">
177
178
  <p><a href="https://validator.w3.org/check/referer">Validate</a>
178
- <p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.1.1.
179
+ <p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.2.1.
179
180
  <p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
180
181
  </footer>
181
182
 
@@ -4,15 +4,18 @@
4
4
  <head>
5
5
  <meta charset="UTF-8">
6
6
 
7
- <title>copyright - wwwjdic 13.0.1</title>
7
+ <title>copyright - wwwjdic 14.0.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 src="./js/navigation.js" defer></script>
15
+ <script src="./js/search.js" defer></script>
16
+ <script src="./js/search_index.js" defer></script>
17
+ <script src="./js/searcher.js" defer></script>
18
+ <script src="./js/darkfish.js" defer></script>
16
19
 
17
20
  <link href="./css/fonts.css" rel="stylesheet">
18
21
  <link href="./css/rdoc.css" rel="stylesheet">
@@ -92,8 +95,6 @@
92
95
 
93
96
  <li><a href="./copyright_md.html">copyright</a>
94
97
 
95
- <li><a href="./wwwjdic_gemspec.html">wwwjdic.gemspec</a>
96
-
97
98
  </ul>
98
99
  </div>
99
100
 
@@ -104,7 +105,7 @@
104
105
  <!--
105
106
  wwwjdic
106
107
 
107
- Copyright © 2014, 2015, 2016, 2017, 2018, 2019 Marco Bresciani
108
+ Copyright © 2014, 2015, 2016, 2017, 2018, 2019, 2020 Marco Bresciani
108
109
 
109
110
  This file is part of wwwjdic.
110
111
 
@@ -123,11 +124,11 @@ with wwwjdic. If not, see <http://www.gnu.org/licenses/>.
123
124
  -->
124
125
  <h1 id="label-Copyright+Notes">Copyright Notes<span><a href="#label-Copyright+Notes">&para;</a> <a href="#top">&uarr;</a></span></h1>
125
126
 
126
- <p>2019-02-26 update.</p>
127
+ <p>2020-03-12 update.</p>
127
128
 
128
129
  <p>wwwjdic</p>
129
130
 
130
- <p>Copyright © 2014, 2015, 2016, 2017, 2018, 2019 Marco Bresciani</p>
131
+ <p>Copyright © 2014, 2015, 2016, 2017, 2018, 2019, 2020 Marco Bresciani</p>
131
132
 
132
133
  <p>This file is part of wwwjdic.</p>
133
134
 
@@ -169,98 +170,100 @@ with wwwjdic. If not, see <http://www.gnu.org/licenses/>.
169
170
 
170
171
  <p>This license is copied below, and is also available with a FAQ at: <a href="http://scripts.sil.org/OFL">scripts.sil.org/OFL</a></p>
171
172
 
172
- <pre> -----------------------------------------------------------
173
- SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
174
- -----------------------------------------------------------
175
-
176
- PREAMBLE
177
- The goals of the Open Font License (OFL) are to stimulate
178
- worldwide development of collaborative font projects, to support
179
- the font creation efforts of academic and linguistic communities,
180
- and to provide a free and open framework in which fonts may be
181
- shared and improved in partnership with others.
182
-
183
- The OFL allows the licensed fonts to be used, studied, modified
184
- and redistributed freely as long as they are not sold by
185
- themselves. The fonts, including any derivative works, can be
186
- bundled, embedded, redistributed and/or sold with any software
187
- provided that any reserved names are not used by derivative
188
- works. The fonts and derivatives, however, cannot be released
189
- under any other type of license. The requirement for fonts to
190
- remain under this license does not apply to any document created
191
- using the fonts or their derivatives.
192
-
193
- DEFINITIONS
194
- &quot;Font Software&quot; refers to the set of files released by the
195
- Copyright Holder(s) under this license and clearly marked as
196
- such. This may include source files, build scripts and
197
- documentation.
198
-
199
- &quot;Reserved Font Name&quot; refers to any names specified as such after
200
- the copyright statement(s).
201
-
202
- &quot;Original Version&quot; refers to the collection of Font Software
203
- components as distributed by the Copyright Holder(s).
204
-
205
- &quot;Modified Version&quot; refers to any derivative made by adding to,
206
- deleting, or substituting -- in part or in whole -- any of the
207
- components of the Original Version, by changing formats or by
208
- porting the Font Software to a new environment.
209
-
210
- &quot;Author&quot; refers to any designer, engineer, programmer, technical
211
- writer or other person who contributed to the Font Software.
212
-
213
- PERMISSION &amp; CONDITIONS
214
- Permission is hereby granted, free of charge, to any person
215
- obtaining a copy of the Font Software, to use, study, copy,
216
- merge, embed, modify, redistribute, and sell modified and
217
- unmodified copies of the Font Software, subject to the following
218
- conditions:
219
-
220
- 1) Neither the Font Software nor any of its individual
221
- components, in Original or Modified Versions, may be sold by
222
- itself.
223
-
224
- 2) Original or Modified Versions of the Font Software may be
225
- bundled, redistributed and/or sold with any software, provided
226
- that each copy contains the above copyright notice and this
227
- license. These can be included either as stand-alone text files,
228
- human-readable headers or in the appropriate machine-readable
229
- metadata fields within text or binary files as long as those
230
- fields can be easily viewed by the user.
231
-
232
- 3) No Modified Version of the Font Software may use the Reserved
233
- Font Name(s) unless explicit written permission is granted by the
234
- corresponding Copyright Holder. This restriction only applies to
235
- the primary font name as presented to the users.
236
-
237
- 4) The name(s) of the Copyright Holder(s) or the Author(s) of the
238
- Font Software shall not be used to promote, endorse or advertise
239
- any Modified Version, except to acknowledge the contribution(s)
240
- of the Copyright Holder(s) and the Author(s) or with their
241
- explicit written permission.
242
-
243
- 5) The Font Software, modified or unmodified, in part or in
244
- whole, must be distributed entirely under this license, and must
245
- not be distributed under any other license. The requirement for
246
- fonts to remain under this license does not apply to any document
247
- created using the Font Software.
248
-
249
- TERMINATION
250
- This license becomes null and void if any of the above conditions
251
- are not met.
252
-
253
- DISCLAIMER
254
- THE FONT SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY
255
- KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY
256
- WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE
257
- AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER
258
- RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY
259
- CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL,
260
- SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER
261
- IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
262
- THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER
263
- DEALINGS IN THE FONT SOFTWARE.</pre>
173
+ <pre>/*
174
+ * -----------------------------------------------------------
175
+ * SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
176
+ * -----------------------------------------------------------
177
+ *
178
+ * PREAMBLE
179
+ * The goals of the Open Font License (OFL) are to stimulate
180
+ * worldwide development of collaborative font projects, to support
181
+ * the font creation efforts of academic and linguistic communities,
182
+ * and to provide a free and open framework in which fonts may be
183
+ * shared and improved in partnership with others.
184
+ *
185
+ * The OFL allows the licensed fonts to be used, studied, modified
186
+ * and redistributed freely as long as they are not sold by
187
+ * themselves. The fonts, including any derivative works, can be
188
+ * bundled, embedded, redistributed and/or sold with any software
189
+ * provided that any reserved names are not used by derivative
190
+ * works. The fonts and derivatives, however, cannot be released
191
+ * under any other type of license. The requirement for fonts to
192
+ * remain under this license does not apply to any document created
193
+ * using the fonts or their derivatives.
194
+ *
195
+ * DEFINITIONS
196
+ * &quot;Font Software&quot; refers to the set of files released by the
197
+ * Copyright Holder(s) under this license and clearly marked as
198
+ * such. This may include source files, build scripts and
199
+ * documentation.
200
+ *
201
+ * &quot;Reserved Font Name&quot; refers to any names specified as such after
202
+ * the copyright statement(s).
203
+ *
204
+ * &quot;Original Version&quot; refers to the collection of Font Software
205
+ * components as distributed by the Copyright Holder(s).
206
+ *
207
+ * &quot;Modified Version&quot; refers to any derivative made by adding to,
208
+ * deleting, or substituting -- in part or in whole -- any of the
209
+ * components of the Original Version, by changing formats or by
210
+ * porting the Font Software to a new environment.
211
+ *
212
+ * &quot;Author&quot; refers to any designer, engineer, programmer, technical
213
+ * writer or other person who contributed to the Font Software.
214
+ *
215
+ * PERMISSION &amp; CONDITIONS
216
+ * Permission is hereby granted, free of charge, to any person
217
+ * obtaining a copy of the Font Software, to use, study, copy,
218
+ * merge, embed, modify, redistribute, and sell modified and
219
+ * unmodified copies of the Font Software, subject to the following
220
+ * conditions:
221
+ *
222
+ * 1) Neither the Font Software nor any of its individual
223
+ * components, in Original or Modified Versions, may be sold by
224
+ * itself.
225
+ *
226
+ * 2) Original or Modified Versions of the Font Software may be
227
+ * bundled, redistributed and/or sold with any software, provided
228
+ * that each copy contains the above copyright notice and this
229
+ * license. These can be included either as stand-alone text files,
230
+ * human-readable headers or in the appropriate machine-readable
231
+ * metadata fields within text or binary files as long as those
232
+ * fields can be easily viewed by the user.
233
+ *
234
+ * 3) No Modified Version of the Font Software may use the Reserved
235
+ * Font Name(s) unless explicit written permission is granted by the
236
+ * corresponding Copyright Holder. This restriction only applies to
237
+ * the primary font name as presented to the users.
238
+ *
239
+ * 4) The name(s) of the Copyright Holder(s) or the Author(s) of the
240
+ * Font Software shall not be used to promote, endorse or advertise
241
+ * any Modified Version, except to acknowledge the contribution(s)
242
+ * of the Copyright Holder(s) and the Author(s) or with their
243
+ * explicit written permission.
244
+ *
245
+ * 5) The Font Software, modified or unmodified, in part or in
246
+ * whole, must be distributed entirely under this license, and must
247
+ * not be distributed under any other license. The requirement for
248
+ * fonts to remain under this license does not apply to any document
249
+ * created using the Font Software.
250
+ *
251
+ * TERMINATION
252
+ * This license becomes null and void if any of the above conditions
253
+ * are not met.
254
+ *
255
+ * DISCLAIMER
256
+ * THE FONT SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY
257
+ * KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY
258
+ * WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE
259
+ * AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER
260
+ * RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY
261
+ * CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL,
262
+ * SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER
263
+ * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
264
+ * THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER
265
+ * DEALINGS IN THE FONT SOFTWARE.
266
+ */</pre>
264
267
 
265
268
  <h3 id="label-Lato+Font">Lato Font<span><a href="#label-Lato+Font">&para;</a> <a href="#top">&uarr;</a></span></h3>
266
269
 
@@ -271,99 +274,99 @@ with wwwjdic. If not, see <http://www.gnu.org/licenses/>.
271
274
  <p>This license is copied below, and is also available with a FAQ at: <a href="http://scripts.sil.org/OFL">scripts.sil.org/OFL</a></p>
272
275
 
273
276
  <pre>/*
274
- -----------------------------------------------------------
275
- SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
276
- -----------------------------------------------------------
277
-
278
- PREAMBLE
279
- The goals of the Open Font License (OFL) are to stimulate
280
- worldwide development of collaborative font projects, to support
281
- the font creation efforts of academic and linguistic communities,
282
- and to provide a free and open framework in which fonts may be
283
- shared and improved in partnership with others.
284
-
285
- The OFL allows the licensed fonts to be used, studied, modified
286
- and redistributed freely as long as they are not sold by
287
- themselves. The fonts, including any derivative works, can be
288
- bundled, embedded, redistributed and/or sold with any software
289
- provided that any reserved names are not used by derivative
290
- works. The fonts and derivatives, however, cannot be released
291
- under any other type of license. The requirement for fonts to
292
- remain under this license does not apply to any document created
293
- using the fonts or their derivatives.
294
-
295
- DEFINITIONS
296
- &quot;Font Software&quot; refers to the set of files released by the
297
- Copyright Holder(s) under this license and clearly marked as
298
- such. This may include source files, build scripts and
299
- documentation.
300
-
301
- &quot;Reserved Font Name&quot; refers to any names specified as such after
302
- the copyright statement(s).
303
-
304
- &quot;Original Version&quot; refers to the collection of Font Software
305
- components as distributed by the Copyright Holder(s).
306
-
307
- &quot;Modified Version&quot; refers to any derivative made by adding to,
308
- deleting, or substituting -- in part or in whole -- any of the
309
- components of the Original Version, by changing formats or by
310
- porting the Font Software to a new environment.
311
-
312
- &quot;Author&quot; refers to any designer, engineer, programmer, technical
313
- writer or other person who contributed to the Font Software.
314
-
315
- PERMISSION &amp; CONDITIONS
316
- Permission is hereby granted, free of charge, to any person
317
- obtaining a copy of the Font Software, to use, study, copy,
318
- merge, embed, modify, redistribute, and sell modified and
319
- unmodified copies of the Font Software, subject to the following
320
- conditions:
321
-
322
- 1) Neither the Font Software nor any of its individual
323
- components, in Original or Modified Versions, may be sold by
324
- itself.
325
-
326
- 2) Original or Modified Versions of the Font Software may be
327
- bundled, redistributed and/or sold with any software, provided
328
- that each copy contains the above copyright notice and this
329
- license. These can be included either as stand-alone text files,
330
- human-readable headers or in the appropriate machine-readable
331
- metadata fields within text or binary files as long as those
332
- fields can be easily viewed by the user.
333
-
334
- 3) No Modified Version of the Font Software may use the Reserved
335
- Font Name(s) unless explicit written permission is granted by the
336
- corresponding Copyright Holder. This restriction only applies to
337
- the primary font name as presented to the users.
338
-
339
- 4) The name(s) of the Copyright Holder(s) or the Author(s) of the
340
- Font Software shall not be used to promote, endorse or advertise
341
- any Modified Version, except to acknowledge the contribution(s)
342
- of the Copyright Holder(s) and the Author(s) or with their
343
- explicit written permission.
344
-
345
- 5) The Font Software, modified or unmodified, in part or in
346
- whole, must be distributed entirely under this license, and must
347
- not be distributed under any other license. The requirement for
348
- fonts to remain under this license does not apply to any document
349
- created using the Font Software.
350
-
351
- TERMINATION
352
- This license becomes null and void if any of the above conditions
353
- are not met.
354
-
355
- DISCLAIMER
356
- THE FONT SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY
357
- KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY
358
- WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE
359
- AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER
360
- RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY
361
- CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL,
362
- SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER
363
- IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
364
- THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER
365
- DEALINGS IN THE FONT SOFTWARE.
366
- /</pre>
277
+ * -----------------------------------------------------------
278
+ * SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
279
+ * -----------------------------------------------------------
280
+ *
281
+ * PREAMBLE
282
+ * The goals of the Open Font License (OFL) are to stimulate
283
+ * worldwide development of collaborative font projects, to support
284
+ * the font creation efforts of academic and linguistic communities,
285
+ * and to provide a free and open framework in which fonts may be
286
+ * shared and improved in partnership with others.
287
+ *
288
+ * The OFL allows the licensed fonts to be used, studied, modified
289
+ * and redistributed freely as long as they are not sold by
290
+ * themselves. The fonts, including any derivative works, can be
291
+ * bundled, embedded, redistributed and/or sold with any software
292
+ * provided that any reserved names are not used by derivative
293
+ * works. The fonts and derivatives, however, cannot be released
294
+ * under any other type of license. The requirement for fonts to
295
+ * remain under this license does not apply to any document created
296
+ * using the fonts or their derivatives.
297
+ *
298
+ * DEFINITIONS
299
+ * &quot;Font Software&quot; refers to the set of files released by the
300
+ * Copyright Holder(s) under this license and clearly marked as
301
+ * such. This may include source files, build scripts and
302
+ * documentation.
303
+ *
304
+ * &quot;Reserved Font Name&quot; refers to any names specified as such after
305
+ * the copyright statement(s).
306
+ *
307
+ * &quot;Original Version&quot; refers to the collection of Font Software
308
+ * components as distributed by the Copyright Holder(s).
309
+ *
310
+ * &quot;Modified Version&quot; refers to any derivative made by adding to,
311
+ * deleting, or substituting -- in part or in whole -- any of the
312
+ * components of the Original Version, by changing formats or by
313
+ * porting the Font Software to a new environment.
314
+ *
315
+ * &quot;Author&quot; refers to any designer, engineer, programmer, technical
316
+ * writer or other person who contributed to the Font Software.
317
+ *
318
+ * PERMISSION &amp; CONDITIONS
319
+ * Permission is hereby granted, free of charge, to any person
320
+ * obtaining a copy of the Font Software, to use, study, copy,
321
+ * merge, embed, modify, redistribute, and sell modified and
322
+ * unmodified copies of the Font Software, subject to the following
323
+ * conditions:
324
+ *
325
+ * 1) Neither the Font Software nor any of its individual
326
+ * components, in Original or Modified Versions, may be sold by
327
+ * itself.
328
+ *
329
+ * 2) Original or Modified Versions of the Font Software may be
330
+ * bundled, redistributed and/or sold with any software, provided
331
+ * that each copy contains the above copyright notice and this
332
+ * license. These can be included either as stand-alone text files,
333
+ * human-readable headers or in the appropriate machine-readable
334
+ * metadata fields within text or binary files as long as those
335
+ * fields can be easily viewed by the user.
336
+ *
337
+ * 3) No Modified Version of the Font Software may use the Reserved
338
+ * Font Name(s) unless explicit written permission is granted by the
339
+ * corresponding Copyright Holder. This restriction only applies to
340
+ * the primary font name as presented to the users.
341
+ *
342
+ * 4) The name(s) of the Copyright Holder(s) or the Author(s) of the
343
+ * Font Software shall not be used to promote, endorse or advertise
344
+ * any Modified Version, except to acknowledge the contribution(s)
345
+ * of the Copyright Holder(s) and the Author(s) or with their
346
+ * explicit written permission.
347
+ *
348
+ * 5) The Font Software, modified or unmodified, in part or in
349
+ * whole, must be distributed entirely under this license, and must
350
+ * not be distributed under any other license. The requirement for
351
+ * fonts to remain under this license does not apply to any document
352
+ * created using the Font Software.
353
+ *
354
+ * TERMINATION
355
+ * This license becomes null and void if any of the above conditions
356
+ * are not met.
357
+ *
358
+ * DISCLAIMER
359
+ * THE FONT SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY
360
+ * KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY
361
+ * WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE
362
+ * AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER
363
+ * RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY
364
+ * CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL,
365
+ * SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER
366
+ * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
367
+ * THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER
368
+ * DEALINGS IN THE FONT SOFTWARE.
369
+ */</pre>
367
370
 
368
371
  <h3 id="label-Silk+Icons">Silk Icons<span><a href="#label-Silk+Icons">&para;</a> <a href="#top">&uarr;</a></span></h3>
369
372
 
@@ -400,7 +403,7 @@ with wwwjdic. If not, see <http://www.gnu.org/licenses/>.
400
403
 
401
404
  <p>wwwjdic</p>
402
405
 
403
- <p>Copyright © 2014, 2015, 2016, 2017, 2018, 2019 Marco Bresciani</p>
406
+ <p>Copyright © 2014, 2015, 2016, 2017, 2018, 2019, 2020 Marco Bresciani</p>
404
407
 
405
408
  <p>This file is part of wwwjdic.</p>
406
409
 
@@ -416,7 +419,7 @@ with wwwjdic. If not, see <http://www.gnu.org/licenses/>.
416
419
 
417
420
  <footer id="validator-badges" role="contentinfo">
418
421
  <p><a href="https://validator.w3.org/check/referer">Validate</a>
419
- <p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.1.1.
422
+ <p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.2.1.
420
423
  <p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
421
424
  </footer>
422
425