wwwjdic 13.0.0 → 16.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 +63 -1
  3. data/Gemfile +9 -1
  4. data/README.md +499 -225
  5. data/Rakefile +12 -3
  6. data/copyright.md +17 -29
  7. data/examples/basics.rb +55 -45
  8. data/examples/translate.rb +161 -86
  9. data/examples/uri.rb +50 -78
  10. data/html/CHANGELOG.html +80 -21
  11. data/html/COPYING_md.html +13 -24
  12. data/html/Gemfile.html +12 -21
  13. data/html/Object.html +810 -45
  14. data/html/README_md.html +309 -161
  15. data/html/Rakefile.html +15 -24
  16. data/html/WWWJDic.html +41 -81
  17. data/html/WWWJDic/ParsableDuckType.html +15 -34
  18. data/html/WWWJDic/Parser.html +25 -64
  19. data/html/WWWJDic/Parsers.html +8 -13
  20. data/html/WWWJDic/Parsers/Dict.html +29 -54
  21. data/html/WWWJDic/Parsers/Display.html +24 -47
  22. data/html/WWWJDic/Parsers/Key.html +25 -48
  23. data/html/WWWJDic/Parsers/Search.html +19 -38
  24. data/html/WWWJDic/Parsers/Server.html +24 -47
  25. data/html/WWWJDic/Splitter.html +49 -142
  26. data/html/WWWJDic/Utils.html +9 -14
  27. data/html/WWWJDic/Utils/Downloader.html +8 -13
  28. data/html/WWWJDic/Utils/Downloader/Downloader.html +29 -63
  29. data/html/WWWJDic/Utils/Raisers.html +21 -72
  30. data/html/WWWJDic/WWWJDic.html +131 -312
  31. data/html/copyright_md.html +206 -225
  32. data/html/created.rid +33 -58
  33. data/html/css/rdoc.css +35 -6
  34. data/html/index.html +301 -169
  35. data/html/js/darkfish.js +22 -99
  36. data/html/js/navigation.js +4 -40
  37. data/html/js/navigation.js.gz +0 -0
  38. data/html/js/search.js +32 -31
  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 +6 -6
  42. data/html/js/searcher.js.gz +0 -0
  43. data/html/table_of_contents.html +160 -197
  44. data/lib/wwwjdic.rb +16 -15
  45. data/lib/wwwjdic/application.rb +69 -36
  46. data/lib/wwwjdic/constants.rb +48 -10
  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 +15 -8
  59. data/lib/wwwjdic/parsers/dict.rb +13 -8
  60. data/lib/wwwjdic/parsers/display.rb +10 -3
  61. data/lib/wwwjdic/parsers/key.rb +11 -3
  62. data/lib/wwwjdic/parsers/search.rb +12 -3
  63. data/lib/wwwjdic/parsers/server.rb +10 -3
  64. data/lib/wwwjdic/utils/downloader.rb +27 -30
  65. data/lib/wwwjdic/utils/raisers.rb +14 -15
  66. data/lib/wwwjdic/utils/splitter.rb +33 -18
  67. data/lib/wwwjdic/version.rb +28 -20
  68. data/test/test_helper.rb +12 -1
  69. data/test/test_wwwjdic.rb +12 -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 +43 -24
  82. data/test/wwwjdic/parsers/test_dict.rb +67 -37
  83. data/test/wwwjdic/parsers/test_display.rb +13 -5
  84. data/test/wwwjdic/parsers/test_key.rb +12 -4
  85. data/test/wwwjdic/parsers/test_server.rb +13 -5
  86. data/test/wwwjdic/test_application.rb +201 -149
  87. data/test/wwwjdic/test_parsable_duck_type.rb +11 -6
  88. data/test/wwwjdic/utils/test_downloader.rb +9 -1
  89. data/test/wwwjdic/utils/test_raisers.rb +48 -29
  90. data/wwwjdic.gemspec +46 -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
@@ -4,22 +4,23 @@
4
4
  <head>
5
5
  <meta charset="UTF-8">
6
6
 
7
- <title>copyright - wwwjdic 13.0.0</title>
7
+ <title>copyright - wwwjdic 16.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">
19
22
 
20
23
 
21
-
22
-
23
24
  <body id="top" role="document" class="file">
24
25
  <nav role="navigation">
25
26
  <div id="project-navigation">
@@ -63,37 +64,23 @@
63
64
  <li><a href="#label-Sorce+Code+Pro+Font+-28-26+fonts.css-29">Sorce Code Pro Font (&amp; fonts.css)</a>
64
65
  <li><a href="#label-Lato+Font">Lato Font</a>
65
66
  <li><a href="#label-Silk+Icons">Silk Icons</a>
66
- <li><a href="#label-jquery.js">jquery.js</a>
67
- <li><a href="#label-Sizzle.js">Sizzle.js</a>
68
67
  <li><a href="#label-JsonIndex+generator+-28navigation.js+-26+search.js+-26+search_index.js+-26+searcher.js-29">JsonIndex generator (navigation.js &amp; search.js &amp; search_index.js &amp; searcher.js)</a>
69
68
  </ul>
70
69
  </div>
71
70
 
72
71
 
73
72
  <div id="project-metadata">
74
- <div id="fileindex-section" class="nav-section">
73
+
74
+ <div id="fileindex-section" class="nav-section">
75
75
  <h3>Pages</h3>
76
76
 
77
77
  <ul class="link-list">
78
-
79
78
  <li><a href="./CHANGELOG.html">CHANGELOG</a>
80
-
81
79
  <li><a href="./COPYING_md.html">COPYING</a>
82
-
83
80
  <li><a href="./Gemfile.html">Gemfile</a>
84
-
85
81
  <li><a href="./README_md.html">README</a>
86
-
87
82
  <li><a href="./Rakefile.html">Rakefile</a>
88
-
89
- <li><a href="./acknowledgements_md.html">acknowledgements</a>
90
-
91
- <li><a href="./authors_md.html">authors</a>
92
-
93
83
  <li><a href="./copyright_md.html">copyright</a>
94
-
95
- <li><a href="./wwwjdic_gemspec.html">wwwjdic.gemspec</a>
96
-
97
84
  </ul>
98
85
  </div>
99
86
 
@@ -104,7 +91,7 @@
104
91
  <!--
105
92
  wwwjdic
106
93
 
107
- Copyright © 2014, 2015, 2016, 2017, 2018, 2019 Marco Bresciani
94
+ © 2014 Marco Bresciani
108
95
 
109
96
  This file is part of wwwjdic.
110
97
 
@@ -120,14 +107,18 @@ more details.
120
107
 
121
108
  You should have received a copy of the GNU General Public License along
122
109
  with wwwjdic. If not, see <http://www.gnu.org/licenses/>.
110
+
111
+ SPDX-FileCopyrightText: 2014 Marco Bresciani
112
+
113
+ SPDX-License-Identifier: FSFAP
123
114
  -->
124
115
  <h1 id="label-Copyright+Notes">Copyright Notes<span><a href="#label-Copyright+Notes">&para;</a> <a href="#top">&uarr;</a></span></h1>
125
116
 
126
- <p>2019-02-26 update.</p>
117
+ <p>2020-11-10 update.</p>
127
118
 
128
119
  <p>wwwjdic</p>
129
120
 
130
- <p>Copyright © 2014, 2015, 2016, 2017, 2018, 2019 Marco Bresciani</p>
121
+ <p 2014 Marco Bresciani</p>
131
122
 
132
123
  <p>This file is part of wwwjdic.</p>
133
124
 
@@ -137,11 +128,11 @@ with wwwjdic. If not, see <http://www.gnu.org/licenses/>.
137
128
 
138
129
  <p>You should have received a copy of the GNU General Public License along with wwwjdic. If not, see <a href="http://www.gnu.org/licenses">www.gnu.org/licenses</a>/.</p>
139
130
 
140
- <p>All project files, except for those listed in whole RDoc section below are released according to the above notice. The contributed code by Peter R. Marreck and Jon Maken are released according to their own licenses, specified inside the source code and checked being compatible with GNU GPLv3 license and the free software philosophy.</p>
131
+ <p>All project files, except for those listed in whole <a href="#rdoc">RDoc</a> section below, are released according to the above notice. The contributed code by Peter R. Marreck and Jon Maken are released according to their own licenses, specified inside the source code and checked being compatible with GNU GPLv3 license and the free software philosophy.</p>
141
132
 
142
133
  <h2 id="label-RDoc">RDoc<span><a href="#label-RDoc">&para;</a> <a href="#top">&uarr;</a></span></h2>
143
134
 
144
- <p>Documents in the html directory are automatically generated by Ruby RDoc tool, with Markdown syntax. Automatically included files have the following licenses:</p>
135
+ <p>Ruby RDoc tool automatically generated documents in the <code>html</code> directory using Markdown syntax. Automatically included files have the following licenses:</p>
145
136
 
146
137
  <h3 id="label-Darkfish+-28darkfish.js+-26+rdoc.css-29">Darkfish (darkfish.js &amp; rdoc.css)<span><a href="#label-Darkfish+-28darkfish.js+-26+rdoc.css-29">&para;</a> <a href="#top">&uarr;</a></span></h3>
147
138
 
@@ -169,98 +160,100 @@ with wwwjdic. If not, see <http://www.gnu.org/licenses/>.
169
160
 
170
161
  <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
162
 
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>
163
+ <pre>/*
164
+ * -----------------------------------------------------------
165
+ * SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
166
+ * -----------------------------------------------------------
167
+ *
168
+ * PREAMBLE
169
+ * The goals of the Open Font License (OFL) are to stimulate
170
+ * worldwide development of collaborative font projects, to support
171
+ * the font creation efforts of academic and linguistic communities,
172
+ * and to provide a free and open framework in which fonts may be
173
+ * shared and improved in partnership with others.
174
+ *
175
+ * The OFL allows the licensed fonts to be used, studied, modified
176
+ * and redistributed freely as long as they are not sold by
177
+ * themselves. The fonts, including any derivative works, can be
178
+ * bundled, embedded, redistributed and/or sold with any software
179
+ * provided that any reserved names are not used by derivative
180
+ * works. The fonts and derivatives, however, cannot be released
181
+ * under any other type of license. The requirement for fonts to
182
+ * remain under this license does not apply to any document created
183
+ * using the fonts or their derivatives.
184
+ *
185
+ * DEFINITIONS
186
+ * &quot;Font Software&quot; refers to the set of files released by the
187
+ * Copyright Holder(s) under this license and clearly marked as
188
+ * such. This may include source files, build scripts and
189
+ * documentation.
190
+ *
191
+ * &quot;Reserved Font Name&quot; refers to any names specified as such after
192
+ * the copyright statement(s).
193
+ *
194
+ * &quot;Original Version&quot; refers to the collection of Font Software
195
+ * components as distributed by the Copyright Holder(s).
196
+ *
197
+ * &quot;Modified Version&quot; refers to any derivative made by adding to,
198
+ * deleting, or substituting -- in part or in whole -- any of the
199
+ * components of the Original Version, by changing formats or by
200
+ * porting the Font Software to a new environment.
201
+ *
202
+ * &quot;Author&quot; refers to any designer, engineer, programmer, technical
203
+ * writer or other person who contributed to the Font Software.
204
+ *
205
+ * PERMISSION &amp; CONDITIONS
206
+ * Permission is hereby granted, free of charge, to any person
207
+ * obtaining a copy of the Font Software, to use, study, copy,
208
+ * merge, embed, modify, redistribute, and sell modified and
209
+ * unmodified copies of the Font Software, subject to the following
210
+ * conditions:
211
+ *
212
+ * 1) Neither the Font Software nor any of its individual
213
+ * components, in Original or Modified Versions, may be sold by
214
+ * itself.
215
+ *
216
+ * 2) Original or Modified Versions of the Font Software may be
217
+ * bundled, redistributed and/or sold with any software, provided
218
+ * that each copy contains the above copyright notice and this
219
+ * license. These can be included either as stand-alone text files,
220
+ * human-readable headers or in the appropriate machine-readable
221
+ * metadata fields within text or binary files as long as those
222
+ * fields can be easily viewed by the user.
223
+ *
224
+ * 3) No Modified Version of the Font Software may use the Reserved
225
+ * Font Name(s) unless explicit written permission is granted by the
226
+ * corresponding Copyright Holder. This restriction only applies to
227
+ * the primary font name as presented to the users.
228
+ *
229
+ * 4) The name(s) of the Copyright Holder(s) or the Author(s) of the
230
+ * Font Software shall not be used to promote, endorse or advertise
231
+ * any Modified Version, except to acknowledge the contribution(s)
232
+ * of the Copyright Holder(s) and the Author(s) or with their
233
+ * explicit written permission.
234
+ *
235
+ * 5) The Font Software, modified or unmodified, in part or in
236
+ * whole, must be distributed entirely under this license, and must
237
+ * not be distributed under any other license. The requirement for
238
+ * fonts to remain under this license does not apply to any document
239
+ * created using the Font Software.
240
+ *
241
+ * TERMINATION
242
+ * This license becomes null and void if any of the above conditions
243
+ * are not met.
244
+ *
245
+ * DISCLAIMER
246
+ * THE FONT SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY
247
+ * KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY
248
+ * WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE
249
+ * AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER
250
+ * RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY
251
+ * CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL,
252
+ * SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER
253
+ * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
254
+ * THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER
255
+ * DEALINGS IN THE FONT SOFTWARE.
256
+ */</pre>
264
257
 
265
258
  <h3 id="label-Lato+Font">Lato Font<span><a href="#label-Lato+Font">&para;</a> <a href="#top">&uarr;</a></span></h3>
266
259
 
@@ -271,99 +264,99 @@ with wwwjdic. If not, see <http://www.gnu.org/licenses/>.
271
264
  <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
265
 
273
266
  <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>
267
+ * -----------------------------------------------------------
268
+ * SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
269
+ * -----------------------------------------------------------
270
+ *
271
+ * PREAMBLE
272
+ * The goals of the Open Font License (OFL) are to stimulate
273
+ * worldwide development of collaborative font projects, to support
274
+ * the font creation efforts of academic and linguistic communities,
275
+ * and to provide a free and open framework in which fonts may be
276
+ * shared and improved in partnership with others.
277
+ *
278
+ * The OFL allows the licensed fonts to be used, studied, modified
279
+ * and redistributed freely as long as they are not sold by
280
+ * themselves. The fonts, including any derivative works, can be
281
+ * bundled, embedded, redistributed and/or sold with any software
282
+ * provided that any reserved names are not used by derivative
283
+ * works. The fonts and derivatives, however, cannot be released
284
+ * under any other type of license. The requirement for fonts to
285
+ * remain under this license does not apply to any document created
286
+ * using the fonts or their derivatives.
287
+ *
288
+ * DEFINITIONS
289
+ * &quot;Font Software&quot; refers to the set of files released by the
290
+ * Copyright Holder(s) under this license and clearly marked as
291
+ * such. This may include source files, build scripts and
292
+ * documentation.
293
+ *
294
+ * &quot;Reserved Font Name&quot; refers to any names specified as such after
295
+ * the copyright statement(s).
296
+ *
297
+ * &quot;Original Version&quot; refers to the collection of Font Software
298
+ * components as distributed by the Copyright Holder(s).
299
+ *
300
+ * &quot;Modified Version&quot; refers to any derivative made by adding to,
301
+ * deleting, or substituting -- in part or in whole -- any of the
302
+ * components of the Original Version, by changing formats or by
303
+ * porting the Font Software to a new environment.
304
+ *
305
+ * &quot;Author&quot; refers to any designer, engineer, programmer, technical
306
+ * writer or other person who contributed to the Font Software.
307
+ *
308
+ * PERMISSION &amp; CONDITIONS
309
+ * Permission is hereby granted, free of charge, to any person
310
+ * obtaining a copy of the Font Software, to use, study, copy,
311
+ * merge, embed, modify, redistribute, and sell modified and
312
+ * unmodified copies of the Font Software, subject to the following
313
+ * conditions:
314
+ *
315
+ * 1) Neither the Font Software nor any of its individual
316
+ * components, in Original or Modified Versions, may be sold by
317
+ * itself.
318
+ *
319
+ * 2) Original or Modified Versions of the Font Software may be
320
+ * bundled, redistributed and/or sold with any software, provided
321
+ * that each copy contains the above copyright notice and this
322
+ * license. These can be included either as stand-alone text files,
323
+ * human-readable headers or in the appropriate machine-readable
324
+ * metadata fields within text or binary files as long as those
325
+ * fields can be easily viewed by the user.
326
+ *
327
+ * 3) No Modified Version of the Font Software may use the Reserved
328
+ * Font Name(s) unless explicit written permission is granted by the
329
+ * corresponding Copyright Holder. This restriction only applies to
330
+ * the primary font name as presented to the users.
331
+ *
332
+ * 4) The name(s) of the Copyright Holder(s) or the Author(s) of the
333
+ * Font Software shall not be used to promote, endorse or advertise
334
+ * any Modified Version, except to acknowledge the contribution(s)
335
+ * of the Copyright Holder(s) and the Author(s) or with their
336
+ * explicit written permission.
337
+ *
338
+ * 5) The Font Software, modified or unmodified, in part or in
339
+ * whole, must be distributed entirely under this license, and must
340
+ * not be distributed under any other license. The requirement for
341
+ * fonts to remain under this license does not apply to any document
342
+ * created using the Font Software.
343
+ *
344
+ * TERMINATION
345
+ * This license becomes null and void if any of the above conditions
346
+ * are not met.
347
+ *
348
+ * DISCLAIMER
349
+ * THE FONT SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY
350
+ * KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY
351
+ * WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE
352
+ * AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER
353
+ * RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY
354
+ * CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL,
355
+ * SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER
356
+ * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
357
+ * THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER
358
+ * DEALINGS IN THE FONT SOFTWARE.
359
+ */</pre>
367
360
 
368
361
  <h3 id="label-Silk+Icons">Silk Icons<span><a href="#label-Silk+Icons">&para;</a> <a href="#top">&uarr;</a></span></h3>
369
362
 
@@ -373,18 +366,6 @@ with wwwjdic. If not, see <http://www.gnu.org/licenses/>.
373
366
 
374
367
  <p>The icons can also be used under Creative Commons Attribution 3.0 License (Hi Debian folks!) with the following requirements: As an author, I would appreciate a reference to my authorship of the Silk icon set contents within a readme file or equivalent documentation for the software which includes the set or a subset of the icons contained within.</p>
375
368
 
376
- <h3 id="label-jquery.js">jquery.js<span><a href="#label-jquery.js">&para;</a> <a href="#top">&uarr;</a></span></h3>
377
-
378
- <p>jQuery JavaScript Library v1.6.2 <a href="http://jquery.com">jquery.com</a>/</p>
379
-
380
- <p>Copyright 2011, John Resig Dual licensed under the MIT or GPL Version 2 licenses. <a href="http://jquery.org/license">jquery.org/license</a></p>
381
-
382
- <h4 id="label-Sizzle.js">Sizzle.js<span><a href="#label-Sizzle.js">&para;</a> <a href="#top">&uarr;</a></span></h4>
383
-
384
- <p>Includes Sizzle.js <a href="http://sizzlejs.com">sizzlejs.com</a>/</p>
385
-
386
- <p>Copyright 2011, The Dojo Foundation Released under the MIT, BSD, and GPL Licenses. Date: Thu Jun 30 14:16:56 2011 -0400</p>
387
-
388
369
  <h3 id="label-JsonIndex+generator+-28navigation.js+-26+search.js+-26+search_index.js+-26+searcher.js-29">JsonIndex generator (navigation.js &amp; search.js &amp; search_index.js &amp; searcher.js)<span><a href="#label-JsonIndex+generator+-28navigation.js+-26+search.js+-26+search_index.js+-26+searcher.js-29">&para;</a> <a href="#top">&uarr;</a></span></h3>
389
370
 
390
371
  <p>See <a href="http://www.ruby-doc.org/stdlib-2.0/libdoc/rdoc/rdoc/RDoc/Generator/JsonIndex.html">www.ruby-doc.org/stdlib-2.0/libdoc/rdoc/rdoc/RDoc/Generator/JsonIndex.html</a></p>
@@ -400,7 +381,7 @@ with wwwjdic. If not, see <http://www.gnu.org/licenses/>.
400
381
 
401
382
  <p>wwwjdic</p>
402
383
 
403
- <p>Copyright © 2014, 2015, 2016, 2017, 2018, 2019 Marco Bresciani</p>
384
+ <p 2014 Marco Bresciani</p>
404
385
 
405
386
  <p>This file is part of wwwjdic.</p>
406
387
 
@@ -416,7 +397,7 @@ with wwwjdic. If not, see <http://www.gnu.org/licenses/>.
416
397
 
417
398
  <footer id="validator-badges" role="contentinfo">
418
399
  <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.
400
+ <p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.3.0.
420
401
  <p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
421
402
  </footer>
422
403