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.
- checksums.yaml +4 -4
- data/CHANGELOG +19 -1
- data/Gemfile +1 -1
- data/README.md +79 -73
- data/Rakefile +2 -2
- data/acknowledgements.md +2 -2
- data/authors.md +2 -2
- data/copyright.md +4 -4
- data/examples/basics.rb +1 -1
- data/examples/translate.rb +1 -1
- data/examples/uri.rb +1 -1
- data/html/CHANGELOG.html +28 -7
- data/html/COPYING_md.html +7 -6
- data/html/Gemfile.html +8 -7
- data/html/Object.html +7 -4
- data/html/README_md.html +34 -47
- data/html/Rakefile.html +10 -9
- data/html/WWWJDic.html +11 -8
- data/html/WWWJDic/ParsableDuckType.html +9 -6
- data/html/WWWJDic/Parser.html +9 -6
- data/html/WWWJDic/Parsers.html +7 -4
- data/html/WWWJDic/Parsers/Dict.html +8 -5
- data/html/WWWJDic/Parsers/Display.html +8 -5
- data/html/WWWJDic/Parsers/Key.html +8 -5
- data/html/WWWJDic/Parsers/Search.html +8 -5
- data/html/WWWJDic/Parsers/Server.html +8 -5
- data/html/WWWJDic/Splitter.html +8 -5
- data/html/WWWJDic/Utils.html +8 -5
- data/html/WWWJDic/Utils/Downloader.html +7 -4
- data/html/WWWJDic/Utils/Downloader/Downloader.html +7 -4
- data/html/WWWJDic/Utils/Raisers.html +23 -20
- data/html/WWWJDic/WWWJDic.html +14 -11
- data/html/acknowledgements_md.html +9 -8
- data/html/authors_md.html +9 -8
- data/html/copyright_md.html +198 -195
- data/html/created.rid +57 -58
- data/html/css/rdoc.css +35 -6
- data/html/index.html +34 -47
- data/html/js/darkfish.js +22 -99
- data/html/js/navigation.js +4 -40
- data/html/js/navigation.js.gz +0 -0
- data/html/js/search.js +32 -31
- data/html/js/search_index.js +1 -1
- data/html/js/search_index.js.gz +0 -0
- data/html/js/searcher.js +6 -6
- data/html/js/searcher.js.gz +0 -0
- data/html/table_of_contents.html +10 -10
- data/lib/wwwjdic.rb +4 -2
- data/lib/wwwjdic/application.rb +8 -8
- data/lib/wwwjdic/constants.rb +1 -1
- data/lib/wwwjdic/locales/de.yml +3 -1
- data/lib/wwwjdic/locales/en.yml +3 -1
- data/lib/wwwjdic/locales/es.yml +3 -1
- data/lib/wwwjdic/locales/fr.yml +3 -2
- data/lib/wwwjdic/locales/hu.yml +3 -2
- data/lib/wwwjdic/locales/it.yml +3 -2
- data/lib/wwwjdic/locales/ja.yml +3 -3
- data/lib/wwwjdic/locales/nl.yml +3 -1
- data/lib/wwwjdic/locales/ru.yml +3 -1
- data/lib/wwwjdic/locales/sl.yml +3 -1
- data/lib/wwwjdic/locales/sv.yml +3 -1
- data/lib/wwwjdic/parser.rb +3 -3
- data/lib/wwwjdic/parsers/dict.rb +2 -2
- data/lib/wwwjdic/parsers/display.rb +2 -2
- data/lib/wwwjdic/parsers/key.rb +2 -2
- data/lib/wwwjdic/parsers/search.rb +2 -2
- data/lib/wwwjdic/parsers/server.rb +2 -2
- data/lib/wwwjdic/utils/downloader.rb +2 -2
- data/lib/wwwjdic/utils/raisers.rb +4 -3
- data/lib/wwwjdic/utils/splitter.rb +2 -2
- data/lib/wwwjdic/version.rb +16 -8
- data/test/test_helper.rb +4 -1
- data/test/test_wwwjdic.rb +4 -4
- data/test/wwwjdic/locales/de.yml +1 -1
- data/test/wwwjdic/locales/en.yml +1 -1
- data/test/wwwjdic/locales/es.yml +1 -1
- data/test/wwwjdic/locales/fr.yml +1 -1
- data/test/wwwjdic/locales/hu.yml +1 -1
- data/test/wwwjdic/locales/it.yml +3 -3
- data/test/wwwjdic/locales/ja.yml +1 -1
- data/test/wwwjdic/locales/nl.yml +1 -1
- data/test/wwwjdic/locales/ru.yml +1 -1
- data/test/wwwjdic/locales/sl.yml +1 -1
- data/test/wwwjdic/locales/sv.yml +1 -1
- data/test/wwwjdic/locales/test_locales.rb +11 -11
- data/test/wwwjdic/parsers/test_dict.rb +4 -4
- data/test/wwwjdic/parsers/test_display.rb +4 -4
- data/test/wwwjdic/parsers/test_key.rb +3 -3
- data/test/wwwjdic/parsers/test_server.rb +4 -4
- data/test/wwwjdic/test_application.rb +30 -30
- data/test/wwwjdic/test_parsable_duck_type.rb +3 -3
- data/test/wwwjdic/utils/test_downloader.rb +1 -1
- data/test/wwwjdic/utils/test_raisers.rb +1 -1
- data/wwwjdic.gemspec +15 -14
- metadata +26 -28
- data/html/js/jquery.js +0 -4
- data/html/wwwjdic_gemspec.html +0 -161
data/html/WWWJDic/WWWJDic.html
CHANGED
@@ -4,15 +4,18 @@
|
|
4
4
|
<head>
|
5
5
|
<meta charset="UTF-8">
|
6
6
|
|
7
|
-
<title>class WWWJDic::WWWJDic - wwwjdic
|
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/
|
15
|
-
<script src="../js/
|
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> =
|
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">'w+'</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"><<</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">'w+'</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"><<</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> =
|
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> =
|
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> =
|
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">'1'</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">'error.param'</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">'error.param'</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> =
|
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.
|
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
|
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/
|
15
|
-
<script src="./js/
|
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.
|
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
|
|
data/html/authors_md.html
CHANGED
@@ -4,15 +4,18 @@
|
|
4
4
|
<head>
|
5
5
|
<meta charset="UTF-8">
|
6
6
|
|
7
|
-
<title>authors - wwwjdic
|
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/
|
15
|
-
<script src="./js/
|
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.
|
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
|
|
data/html/copyright_md.html
CHANGED
@@ -4,15 +4,18 @@
|
|
4
4
|
<head>
|
5
5
|
<meta charset="UTF-8">
|
6
6
|
|
7
|
-
<title>copyright - wwwjdic
|
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/
|
15
|
-
<script src="./js/
|
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">¶</a> <a href="#top">↑</a></span></h1>
|
125
126
|
|
126
|
-
<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
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
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
|
+
* "Font Software" 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
|
+
* "Reserved Font Name" refers to any names specified as such after
|
202
|
+
* the copyright statement(s).
|
203
|
+
*
|
204
|
+
* "Original Version" refers to the collection of Font Software
|
205
|
+
* components as distributed by the Copyright Holder(s).
|
206
|
+
*
|
207
|
+
* "Modified Version" 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
|
+
* "Author" refers to any designer, engineer, programmer, technical
|
213
|
+
* writer or other person who contributed to the Font Software.
|
214
|
+
*
|
215
|
+
* PERMISSION & 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 "AS IS", 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">¶</a> <a href="#top">↑</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
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
|
357
|
-
|
358
|
-
|
359
|
-
|
360
|
-
|
361
|
-
|
362
|
-
|
363
|
-
|
364
|
-
|
365
|
-
|
366
|
-
|
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
|
+
* "Font Software" 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
|
+
* "Reserved Font Name" refers to any names specified as such after
|
305
|
+
* the copyright statement(s).
|
306
|
+
*
|
307
|
+
* "Original Version" refers to the collection of Font Software
|
308
|
+
* components as distributed by the Copyright Holder(s).
|
309
|
+
*
|
310
|
+
* "Modified Version" 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
|
+
* "Author" refers to any designer, engineer, programmer, technical
|
316
|
+
* writer or other person who contributed to the Font Software.
|
317
|
+
*
|
318
|
+
* PERMISSION & 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 "AS IS", 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">¶</a> <a href="#top">↑</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.
|
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
|
|