wwwjdic 13.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 +7 -0
- data/CHANGELOG +419 -0
- data/COPYING.md +675 -0
- data/Gemfile +21 -0
- data/README.md +303 -0
- data/Rakefile +52 -0
- data/acknowledgements.md +55 -0
- data/authors.md +67 -0
- data/copyright.md +377 -0
- data/examples/basics.rb +117 -0
- data/examples/translate.rb +128 -0
- data/examples/uri.rb +129 -0
- data/html/CHANGELOG.html +597 -0
- data/html/COPYING_md.html +389 -0
- data/html/Gemfile.html +104 -0
- data/html/Object.html +185 -0
- data/html/README_md.html +343 -0
- data/html/Rakefile.html +137 -0
- data/html/WWWJDic/ParsableDuckType.html +159 -0
- data/html/WWWJDic/Parser.html +233 -0
- data/html/WWWJDic/Parsers/Dict.html +191 -0
- data/html/WWWJDic/Parsers/Display.html +184 -0
- data/html/WWWJDic/Parsers/Key.html +221 -0
- data/html/WWWJDic/Parsers/Search.html +214 -0
- data/html/WWWJDic/Parsers/Server.html +182 -0
- data/html/WWWJDic/Parsers.html +96 -0
- data/html/WWWJDic/Splitter.html +378 -0
- data/html/WWWJDic/Utils/Downloader/Downloader.html +227 -0
- data/html/WWWJDic/Utils/Downloader.html +108 -0
- data/html/WWWJDic/Utils/Raisers.html +235 -0
- data/html/WWWJDic/Utils.html +108 -0
- data/html/WWWJDic/WWWJDic.html +715 -0
- data/html/WWWJDic.html +348 -0
- data/html/acknowledgements_md.html +149 -0
- data/html/authors_md.html +181 -0
- data/html/copyright_md.html +422 -0
- data/html/created.rid +59 -0
- data/html/css/fonts.css +167 -0
- data/html/css/rdoc.css +590 -0
- data/html/fonts/Lato-Light.ttf +0 -0
- data/html/fonts/Lato-LightItalic.ttf +0 -0
- data/html/fonts/Lato-Regular.ttf +0 -0
- data/html/fonts/Lato-RegularItalic.ttf +0 -0
- data/html/fonts/SourceCodePro-Bold.ttf +0 -0
- data/html/fonts/SourceCodePro-Regular.ttf +0 -0
- data/html/images/add.png +0 -0
- data/html/images/arrow_up.png +0 -0
- data/html/images/brick.png +0 -0
- data/html/images/brick_link.png +0 -0
- data/html/images/bug.png +0 -0
- data/html/images/bullet_black.png +0 -0
- data/html/images/bullet_toggle_minus.png +0 -0
- data/html/images/bullet_toggle_plus.png +0 -0
- data/html/images/date.png +0 -0
- data/html/images/delete.png +0 -0
- data/html/images/find.png +0 -0
- data/html/images/loadingAnimation.gif +0 -0
- data/html/images/macFFBgHack.png +0 -0
- data/html/images/package.png +0 -0
- data/html/images/page_green.png +0 -0
- data/html/images/page_white_text.png +0 -0
- data/html/images/page_white_width.png +0 -0
- data/html/images/plugin.png +0 -0
- data/html/images/ruby.png +0 -0
- data/html/images/tag_blue.png +0 -0
- data/html/images/tag_green.png +0 -0
- data/html/images/transparent.png +0 -0
- data/html/images/wrench.png +0 -0
- data/html/images/wrench_orange.png +0 -0
- data/html/images/zoom.png +0 -0
- data/html/index.html +363 -0
- data/html/js/darkfish.js +161 -0
- data/html/js/jquery.js +4 -0
- data/html/js/navigation.js +141 -0
- data/html/js/navigation.js.gz +0 -0
- data/html/js/search.js +109 -0
- data/html/js/search_index.js +1 -0
- data/html/js/search_index.js.gz +0 -0
- data/html/js/searcher.js +229 -0
- data/html/js/searcher.js.gz +0 -0
- data/html/table_of_contents.html +541 -0
- data/html/wwwjdic_gemspec.html +161 -0
- data/lib/wwwjdic/application.rb +233 -0
- data/lib/wwwjdic/constants.rb +113 -0
- data/lib/wwwjdic/locales/de.yml +29 -0
- data/lib/wwwjdic/locales/en.yml +29 -0
- data/lib/wwwjdic/locales/es.yml +29 -0
- data/lib/wwwjdic/locales/fr.yml +29 -0
- data/lib/wwwjdic/locales/hu.yml +29 -0
- data/lib/wwwjdic/locales/it.yml +29 -0
- data/lib/wwwjdic/locales/ja.yml +30 -0
- data/lib/wwwjdic/locales/nl.yml +29 -0
- data/lib/wwwjdic/locales/ru.yml +29 -0
- data/lib/wwwjdic/locales/sl.yml +29 -0
- data/lib/wwwjdic/locales/sv.yml +29 -0
- data/lib/wwwjdic/parser.rb +46 -0
- data/lib/wwwjdic/parsers/dict.rb +58 -0
- data/lib/wwwjdic/parsers/display.rb +50 -0
- data/lib/wwwjdic/parsers/key.rb +75 -0
- data/lib/wwwjdic/parsers/search.rb +60 -0
- data/lib/wwwjdic/parsers/server.rb +47 -0
- data/lib/wwwjdic/utils/downloader.rb +135 -0
- data/lib/wwwjdic/utils/raisers.rb +67 -0
- data/lib/wwwjdic/utils/splitter.rb +84 -0
- data/lib/wwwjdic/version.rb +20 -0
- data/lib/wwwjdic.rb +57 -0
- data/test/test_helper.rb +40 -0
- data/test/test_wwwjdic.rb +32 -0
- data/test/wwwjdic/locales/de.yml +22 -0
- data/test/wwwjdic/locales/en.yml +22 -0
- data/test/wwwjdic/locales/es.yml +22 -0
- data/test/wwwjdic/locales/fr.yml +22 -0
- data/test/wwwjdic/locales/hu.yml +22 -0
- data/test/wwwjdic/locales/it.yml +21 -0
- data/test/wwwjdic/locales/ja.yml +23 -0
- data/test/wwwjdic/locales/nl.yml +22 -0
- data/test/wwwjdic/locales/ru.yml +22 -0
- data/test/wwwjdic/locales/sl.yml +22 -0
- data/test/wwwjdic/locales/sv.yml +22 -0
- data/test/wwwjdic/locales/test_locales.rb +65 -0
- data/test/wwwjdic/parsers/test_dict.rb +73 -0
- data/test/wwwjdic/parsers/test_display.rb +51 -0
- data/test/wwwjdic/parsers/test_key.rb +52 -0
- data/test/wwwjdic/parsers/test_server.rb +51 -0
- data/test/wwwjdic/test_application.rb +219 -0
- data/test/wwwjdic/test_parsable_duck_type.rb +37 -0
- data/test/wwwjdic/utils/test_downloader.rb +41 -0
- data/test/wwwjdic/utils/test_raisers.rb +59 -0
- data/wwwjdic.gemspec +74 -0
- metadata +309 -0
data/html/WWWJDic.html
ADDED
@@ -0,0 +1,348 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
|
3
|
+
<html>
|
4
|
+
<head>
|
5
|
+
<meta charset="UTF-8">
|
6
|
+
|
7
|
+
<title>module WWWJDic - wwwjdic 13.0.0</title>
|
8
|
+
|
9
|
+
<script type="text/javascript">
|
10
|
+
var rdoc_rel_prefix = "./";
|
11
|
+
var index_rel_prefix = "./";
|
12
|
+
</script>
|
13
|
+
|
14
|
+
<script src="./js/jquery.js"></script>
|
15
|
+
<script src="./js/darkfish.js"></script>
|
16
|
+
|
17
|
+
<link href="./css/fonts.css" rel="stylesheet">
|
18
|
+
<link href="./css/rdoc.css" rel="stylesheet">
|
19
|
+
|
20
|
+
|
21
|
+
|
22
|
+
|
23
|
+
<body id="top" role="document" class="module">
|
24
|
+
<nav role="navigation">
|
25
|
+
<div id="project-navigation">
|
26
|
+
<div id="home-section" role="region" title="Quick navigation" class="nav-section">
|
27
|
+
<h2>
|
28
|
+
<a href="./index.html" rel="home">Home</a>
|
29
|
+
</h2>
|
30
|
+
|
31
|
+
<div id="table-of-contents-navigation">
|
32
|
+
<a href="./table_of_contents.html#pages">Pages</a>
|
33
|
+
<a href="./table_of_contents.html#classes">Classes</a>
|
34
|
+
<a href="./table_of_contents.html#methods">Methods</a>
|
35
|
+
</div>
|
36
|
+
</div>
|
37
|
+
|
38
|
+
<div id="search-section" role="search" class="project-section initially-hidden">
|
39
|
+
<form action="#" method="get" accept-charset="utf-8">
|
40
|
+
<div id="search-field-wrapper">
|
41
|
+
<input id="search-field" role="combobox" aria-label="Search"
|
42
|
+
aria-autocomplete="list" aria-controls="search-results"
|
43
|
+
type="text" name="search" placeholder="Search" spellcheck="false"
|
44
|
+
title="Type to search, Up and Down to navigate, Enter to load">
|
45
|
+
</div>
|
46
|
+
|
47
|
+
<ul id="search-results" aria-label="Search Results"
|
48
|
+
aria-busy="false" aria-expanded="false"
|
49
|
+
aria-atomic="false" class="initially-hidden"></ul>
|
50
|
+
</form>
|
51
|
+
</div>
|
52
|
+
|
53
|
+
</div>
|
54
|
+
|
55
|
+
|
56
|
+
|
57
|
+
<div id="class-metadata">
|
58
|
+
|
59
|
+
|
60
|
+
|
61
|
+
|
62
|
+
<!-- Method Quickref -->
|
63
|
+
<div id="method-list-section" class="nav-section">
|
64
|
+
<h3>Methods</h3>
|
65
|
+
|
66
|
+
<ul class="link-list" role="directory">
|
67
|
+
|
68
|
+
<li ><a href="#method-c-breener">::breener</a>
|
69
|
+
|
70
|
+
</ul>
|
71
|
+
</div>
|
72
|
+
|
73
|
+
</div>
|
74
|
+
</nav>
|
75
|
+
|
76
|
+
<main role="main" aria-labelledby="module-WWWJDic">
|
77
|
+
<h1 id="module-WWWJDic" class="module">
|
78
|
+
module WWWJDic
|
79
|
+
</h1>
|
80
|
+
|
81
|
+
<section class="description">
|
82
|
+
<dl class="rdoc-list note-list"><dt>Author
|
83
|
+
<dd>
|
84
|
+
<p><a href="mailto:marcobresciani_1974@libero.it">Marco Bresciani</a></p>
|
85
|
+
</dd><dt>Copyright
|
86
|
+
<dd>
|
87
|
+
<p>Copyright © 2014, 2015, 2016, 2017, 2018, 2019 Marco Bresciani</p>
|
88
|
+
</dd><dt>License
|
89
|
+
<dd>
|
90
|
+
<p>GNU General Public License version 3</p>
|
91
|
+
</dd></dl>
|
92
|
+
|
93
|
+
</section>
|
94
|
+
|
95
|
+
|
96
|
+
<section id="5Buntitled-5D" class="documentation-section">
|
97
|
+
|
98
|
+
|
99
|
+
|
100
|
+
|
101
|
+
|
102
|
+
<section class="constants-list">
|
103
|
+
<header>
|
104
|
+
<h3>Constants</h3>
|
105
|
+
</header>
|
106
|
+
<dl>
|
107
|
+
|
108
|
+
<dt id="ALLOWED_PARAMS">ALLOWED_PARAMS
|
109
|
+
|
110
|
+
<dd><p>Allowed parameters for configuration</p>
|
111
|
+
|
112
|
+
|
113
|
+
<dt id="ALL_PARAMS">ALL_PARAMS
|
114
|
+
|
115
|
+
<dd><p>All parameters for configuration</p>
|
116
|
+
|
117
|
+
|
118
|
+
<dt id="AVAIL_LANGS">AVAIL_LANGS
|
119
|
+
|
120
|
+
<dd><p>Numeric codes for language-specific dictionaries</p>
|
121
|
+
|
122
|
+
|
123
|
+
<dt id="DICTIONARY_CODES">DICTIONARY_CODES
|
124
|
+
|
125
|
+
<dd><p>Numeric codes for dictionaries usage</p>
|
126
|
+
|
127
|
+
|
128
|
+
<dt id="DICTIONARY_NAMES">DICTIONARY_NAMES
|
129
|
+
|
130
|
+
<dd><p>Naming for all supported dictionaries</p>
|
131
|
+
|
132
|
+
|
133
|
+
<dt id="DICTS_BY_CODES">DICTS_BY_CODES
|
134
|
+
|
135
|
+
<dd><p>Mapping between dictionaries names with codes</p>
|
136
|
+
|
137
|
+
|
138
|
+
<dt id="DICTS_BY_NAMES">DICTS_BY_NAMES
|
139
|
+
|
140
|
+
<dd><p>Mapping between dictionaries codes with names</p>
|
141
|
+
|
142
|
+
|
143
|
+
<dt id="DISPLAY">DISPLAY
|
144
|
+
|
145
|
+
<dd><p>Display modes</p>
|
146
|
+
|
147
|
+
|
148
|
+
<dt id="KANJIDIC_CODES">KANJIDIC_CODES
|
149
|
+
|
150
|
+
<dd><p>KANJIDIC letter codes (see <a href="http://www.edrdg.org/kanjidic/kanjidic.html">www.edrdg.org/kanjidic/kanjidic.html</a>)</p>
|
151
|
+
<dl class="rdoc-list label-list"><dt>U
|
152
|
+
<dd>
|
153
|
+
<p>the Unicode/ISO 10646 code of the kanji in hexadecimal;</p>
|
154
|
+
</dd><dt>N
|
155
|
+
<dd>
|
156
|
+
<p>the index in Nelson (Modern Reader's Japanese-English Character</p>
|
157
|
+
</dd></dl>
|
158
|
+
|
159
|
+
<p>Dictionary)</p>
|
160
|
+
<dl class="rdoc-list label-list"><dt>B
|
161
|
+
<dd>
|
162
|
+
<p>the classification radical number of the kanji (as in Nelson);</p>
|
163
|
+
</dd><dt>C
|
164
|
+
<dd>
|
165
|
+
<p>the “classical” radical number (where this differs from the one</p>
|
166
|
+
</dd></dl>
|
167
|
+
|
168
|
+
<p>used in Nelson);</p>
|
169
|
+
<dl class="rdoc-list label-list"><dt>S
|
170
|
+
<dd>
|
171
|
+
<p>the total stroke-count of the kanji;</p>
|
172
|
+
</dd><dt>G
|
173
|
+
<dd>
|
174
|
+
<p>the “grade” of the kanji, In this case, G2 means it is a Jouyou</p>
|
175
|
+
</dd></dl>
|
176
|
+
|
177
|
+
<p>(general use) kanji taught in the second year of elementary schooling in Japan;</p>
|
178
|
+
<dl class="rdoc-list label-list"><dt>H
|
179
|
+
<dd>
|
180
|
+
<p>the index in Halpern (New Japanese-English Character</p>
|
181
|
+
</dd></dl>
|
182
|
+
|
183
|
+
<p>Dictionary);</p>
|
184
|
+
<dl class="rdoc-list label-list"><dt>F
|
185
|
+
<dd>
|
186
|
+
<p>the rank-order frequency of occurrence of the kanji in Japanese;</p>
|
187
|
+
</dd><dt>P
|
188
|
+
<dd>
|
189
|
+
<p>the “SKIP” coding of the kanji, as used in Halpern;</p>
|
190
|
+
</dd><dt>K
|
191
|
+
<dd>
|
192
|
+
<p>the index in the Gakken Kanji Dictionary (A New Dictionary of</p>
|
193
|
+
</dd></dl>
|
194
|
+
|
195
|
+
<p>Kanji Usage);</p>
|
196
|
+
<dl class="rdoc-list label-list"><dt>L
|
197
|
+
<dd>
|
198
|
+
<p>the index in Heisig (Remembering The Kanji);</p>
|
199
|
+
</dd><dt>I
|
200
|
+
<dd>
|
201
|
+
<p>the index in the Spahn & Hadamitsky dictionary.</p>
|
202
|
+
</dd><dt>Q
|
203
|
+
<dd>
|
204
|
+
<p>the Four-Corner code;</p>
|
205
|
+
</dd><dt>MN,MP
|
206
|
+
<dd>
|
207
|
+
<p>the index and page number in the 13-volume Morohashi</p>
|
208
|
+
</dd></dl>
|
209
|
+
|
210
|
+
<p>“DaiKanWaJiten”;</p>
|
211
|
+
<dl class="rdoc-list label-list"><dt>E
|
212
|
+
<dd>
|
213
|
+
<p>the index in Henshall (A Guide To Remembering Japanese</p>
|
214
|
+
</dd></dl>
|
215
|
+
|
216
|
+
<p>Characters);</p>
|
217
|
+
<dl class="rdoc-list label-list"><dt>Y
|
218
|
+
<dd>
|
219
|
+
<p>the PinYin (Chinese) pronunciation(s) of the kanji;</p>
|
220
|
+
</dd></dl>
|
221
|
+
|
222
|
+
|
223
|
+
<dt id="KEYS">KEYS
|
224
|
+
|
225
|
+
<dd><p>k is the key type:</p>
|
226
|
+
|
227
|
+
<pre>for dictionary lookups
|
228
|
+
for English keys use E, or P to get just "common words", Q</pre>
|
229
|
+
|
230
|
+
<p>to get an “exact match” and R to get both;</p>
|
231
|
+
|
232
|
+
<pre>for Japanese keys use J (this is mandatory for romaji keys),</pre>
|
233
|
+
|
234
|
+
<p>P to get just “common words” (doesn't work with romaji), K for keys starting with kanji (first position), and L for kanji keys in any position.</p>
|
235
|
+
|
236
|
+
<pre>for kanji lookups, use M followed by the KANJIDIC letter codes</pre>
|
237
|
+
|
238
|
+
<p>(B, U, V, N, etc.) or J if a reading or kanji is being provided. An optional stroke-count or stroke-count range can be included by placing it between “=” characters;</p>
|
239
|
+
|
240
|
+
<pre>for text glossing use G, or H to turn on the "no repeated</pre>
|
241
|
+
|
242
|
+
<p>translations“ option.</p>
|
243
|
+
|
244
|
+
<pre>for multi-radical kanji lookups use J for jouyou kanji-only, H</pre>
|
245
|
+
|
246
|
+
<p>to include JIS X 0212 kanji, and X for anything else. An optional stroke-count or stroke-count range can be included by placing it between “=” characters.</p>
|
247
|
+
|
248
|
+
<pre>for example sentence lookups with indexed words use E for EUC,</pre>
|
249
|
+
|
250
|
+
<p>ISO-2022-JP or UCS, S for Shift_JIS and U for UTF-8, followed by “lookupword=n=kana=”. The kana is optional and is there to disambiguate between different headwords. For “n”, 1 => random selection of 10, anything else => display up to 100 sentences starting at n.</p>
|
251
|
+
|
252
|
+
<pre>for example sentence lookups using a regular expression, use E</pre>
|
253
|
+
|
254
|
+
<p>for EUC, ISO-2022-JP or UCS, S for Shift_JIS and U for UTF-8, followed by the search string. Up to 99 example sentences may be displayed.</p>
|
255
|
+
|
256
|
+
|
257
|
+
<dt id="TEST_REFERENCE_URI">TEST_REFERENCE_URI
|
258
|
+
|
259
|
+
<dd><p>Example basic URI (profile part) for testing purposes.</p>
|
260
|
+
|
261
|
+
|
262
|
+
<dt id="URIS">URIS
|
263
|
+
|
264
|
+
<dd><p>URIs for Backdoor Entry/API</p>
|
265
|
+
|
266
|
+
|
267
|
+
<dt id="URI_DEFAULT">URI_DEFAULT
|
268
|
+
|
269
|
+
<dd><p>Reference URI for Backdoor Entry/API</p>
|
270
|
+
|
271
|
+
|
272
|
+
<dt id="URI_OLD">URI_OLD
|
273
|
+
|
274
|
+
<dd><p>Monash URI for Backdoor Entry/API</p>
|
275
|
+
|
276
|
+
|
277
|
+
<dt id="VERSION">VERSION
|
278
|
+
|
279
|
+
<dd><p>Current version number for <a href="WWWJDic/WWWJDic.html"><code>WWWJDic</code></a> gem.</p>
|
280
|
+
|
281
|
+
|
282
|
+
</dl>
|
283
|
+
</section>
|
284
|
+
|
285
|
+
|
286
|
+
|
287
|
+
|
288
|
+
|
289
|
+
<section id="public-class-5Buntitled-5D-method-details" class="method-section">
|
290
|
+
<header>
|
291
|
+
<h3>Public Class Methods</h3>
|
292
|
+
</header>
|
293
|
+
|
294
|
+
|
295
|
+
<div id="method-c-breener" class="method-detail ">
|
296
|
+
|
297
|
+
<div class="method-heading">
|
298
|
+
<span class="method-name">breener</span><span
|
299
|
+
class="method-args">()</span>
|
300
|
+
|
301
|
+
<span class="method-click-advice">click to toggle source</span>
|
302
|
+
|
303
|
+
</div>
|
304
|
+
|
305
|
+
|
306
|
+
<div class="method-description">
|
307
|
+
|
308
|
+
<p>Creates a new <a href="WWWJDic/WWWJDic.html"><code>WWWJDic</code></a> object (from the verb 'to Breen'… :) ).</p>
|
309
|
+
<dl class="rdoc-list note-list"><dt>Usage
|
310
|
+
<dd><ul><li>
|
311
|
+
<p><code>new_wwwjdic = WWWJDic::breener</code></p>
|
312
|
+
</li></ul>
|
313
|
+
</dd><dt>Returns
|
314
|
+
<dd>
|
315
|
+
<p>a <code>WWWJDic</code> object.</p>
|
316
|
+
</dd></dl>
|
317
|
+
|
318
|
+
|
319
|
+
|
320
|
+
|
321
|
+
<div class="method-source-code" id="breener-source">
|
322
|
+
<pre> <span class="ruby-comment"># File lib/wwwjdic.rb</span>
|
323
|
+
<span class="line-num">41</span> <span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier ruby-title">breener</span>
|
324
|
+
<span class="line-num">42</span> <span class="ruby-constant">WWWJDic</span>.<span class="ruby-identifier">new</span>(<span class="ruby-identifier">parser</span>)
|
325
|
+
<span class="line-num">43</span> <span class="ruby-keyword">end</span></pre>
|
326
|
+
</div>
|
327
|
+
|
328
|
+
</div>
|
329
|
+
|
330
|
+
|
331
|
+
|
332
|
+
|
333
|
+
</div>
|
334
|
+
|
335
|
+
|
336
|
+
</section>
|
337
|
+
|
338
|
+
</section>
|
339
|
+
|
340
|
+
</main>
|
341
|
+
|
342
|
+
|
343
|
+
<footer id="validator-badges" role="contentinfo">
|
344
|
+
<p><a href="https://validator.w3.org/check/referer">Validate</a>
|
345
|
+
<p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.1.1.
|
346
|
+
<p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
|
347
|
+
</footer>
|
348
|
+
|
@@ -0,0 +1,149 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
|
3
|
+
<html>
|
4
|
+
<head>
|
5
|
+
<meta charset="UTF-8">
|
6
|
+
|
7
|
+
<title>acknowledgements - wwwjdic 13.0.0</title>
|
8
|
+
|
9
|
+
<script type="text/javascript">
|
10
|
+
var rdoc_rel_prefix = "./";
|
11
|
+
var index_rel_prefix = "./";
|
12
|
+
</script>
|
13
|
+
|
14
|
+
<script src="./js/jquery.js"></script>
|
15
|
+
<script src="./js/darkfish.js"></script>
|
16
|
+
|
17
|
+
<link href="./css/fonts.css" rel="stylesheet">
|
18
|
+
<link href="./css/rdoc.css" rel="stylesheet">
|
19
|
+
|
20
|
+
|
21
|
+
|
22
|
+
|
23
|
+
<body id="top" role="document" class="file">
|
24
|
+
<nav role="navigation">
|
25
|
+
<div id="project-navigation">
|
26
|
+
<div id="home-section" role="region" title="Quick navigation" class="nav-section">
|
27
|
+
<h2>
|
28
|
+
<a href="./index.html" rel="home">Home</a>
|
29
|
+
</h2>
|
30
|
+
|
31
|
+
<div id="table-of-contents-navigation">
|
32
|
+
<a href="./table_of_contents.html#pages">Pages</a>
|
33
|
+
<a href="./table_of_contents.html#classes">Classes</a>
|
34
|
+
<a href="./table_of_contents.html#methods">Methods</a>
|
35
|
+
</div>
|
36
|
+
</div>
|
37
|
+
|
38
|
+
<div id="search-section" role="search" class="project-section initially-hidden">
|
39
|
+
<form action="#" method="get" accept-charset="utf-8">
|
40
|
+
<div id="search-field-wrapper">
|
41
|
+
<input id="search-field" role="combobox" aria-label="Search"
|
42
|
+
aria-autocomplete="list" aria-controls="search-results"
|
43
|
+
type="text" name="search" placeholder="Search" spellcheck="false"
|
44
|
+
title="Type to search, Up and Down to navigate, Enter to load">
|
45
|
+
</div>
|
46
|
+
|
47
|
+
<ul id="search-results" aria-label="Search Results"
|
48
|
+
aria-busy="false" aria-expanded="false"
|
49
|
+
aria-atomic="false" class="initially-hidden"></ul>
|
50
|
+
</form>
|
51
|
+
</div>
|
52
|
+
|
53
|
+
</div>
|
54
|
+
|
55
|
+
|
56
|
+
<div class="nav-section">
|
57
|
+
<h3>Table of Contents</h3>
|
58
|
+
|
59
|
+
<ul class="link-list" role="directory">
|
60
|
+
<li><a href="#label-Acknowledgements">Acknowledgements</a>
|
61
|
+
<li><a href="#label-An+HTTP-2FHTTPS-2FFTP+file+downloader+library-2FCLI+based+upon+MiniPortile-27s+HTTP+implementation.">An HTTP/HTTPS/FTP file downloader library/CLI based upon MiniPortile's HTTP implementation.</a>
|
62
|
+
</ul>
|
63
|
+
</div>
|
64
|
+
|
65
|
+
|
66
|
+
<div id="project-metadata">
|
67
|
+
<div id="fileindex-section" class="nav-section">
|
68
|
+
<h3>Pages</h3>
|
69
|
+
|
70
|
+
<ul class="link-list">
|
71
|
+
|
72
|
+
<li><a href="./CHANGELOG.html">CHANGELOG</a>
|
73
|
+
|
74
|
+
<li><a href="./COPYING_md.html">COPYING</a>
|
75
|
+
|
76
|
+
<li><a href="./Gemfile.html">Gemfile</a>
|
77
|
+
|
78
|
+
<li><a href="./README_md.html">README</a>
|
79
|
+
|
80
|
+
<li><a href="./Rakefile.html">Rakefile</a>
|
81
|
+
|
82
|
+
<li><a href="./acknowledgements_md.html">acknowledgements</a>
|
83
|
+
|
84
|
+
<li><a href="./authors_md.html">authors</a>
|
85
|
+
|
86
|
+
<li><a href="./copyright_md.html">copyright</a>
|
87
|
+
|
88
|
+
<li><a href="./wwwjdic_gemspec.html">wwwjdic.gemspec</a>
|
89
|
+
|
90
|
+
</ul>
|
91
|
+
</div>
|
92
|
+
|
93
|
+
</div>
|
94
|
+
</nav>
|
95
|
+
|
96
|
+
<main role="main" aria-label="Page acknowledgements.md">
|
97
|
+
<!--
|
98
|
+
wwwjdic
|
99
|
+
|
100
|
+
Copyright © 2014, 2015, 2016, 2017, 2018, 2019 Marco Bresciani
|
101
|
+
|
102
|
+
This file is part of wwwjdic.
|
103
|
+
|
104
|
+
wwwjdic is free software: you can redistribute it and/or modify it under
|
105
|
+
the terms of the GNU General Public License as published by the Free
|
106
|
+
Software Foundation, either version 3 of the License, or (at your
|
107
|
+
option) any later version.
|
108
|
+
|
109
|
+
wwwjdic is distributed in the hope that it will be useful, but WITHOUT
|
110
|
+
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
111
|
+
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
112
|
+
more details.
|
113
|
+
|
114
|
+
You should have received a copy of the GNU General Public License along
|
115
|
+
with wwwjdic. If not, see <http://www.gnu.org/licenses/>.
|
116
|
+
-->
|
117
|
+
<h1 id="label-Acknowledgements">Acknowledgements<span><a href="#label-Acknowledgements">¶</a> <a href="#top">↑</a></span></h1>
|
118
|
+
|
119
|
+
<p>FSIJ理事会の理事長、新部裕さんの日本語の翻訳。 Japanese translation by Yutaka Niibe, President of Free Software Initiative of Japan.</p>
|
120
|
+
|
121
|
+
<p>Thanks to Łukasz Niemier for his suggestions on possible improvements.</p>
|
122
|
+
|
123
|
+
<h2 id="label-An+HTTP-2FHTTPS-2FFTP+file+downloader+library-2FCLI+based+upon+MiniPortile-27s+HTTP+implementation.">An HTTP/HTTPS/FTP file downloader library/CLI based upon MiniPortile's HTTP implementation.<span><a href="#label-An+HTTP-2FHTTPS-2FFTP+file+downloader+library-2FCLI+based+upon+MiniPortile-27s+HTTP+implementation.">¶</a> <a href="#top">↑</a></span></h2>
|
124
|
+
|
125
|
+
<p><a href="https://gist.github.com/jonforums/2202048">An HTTP/HTTPS/FTP file downloader library/CLI based upon MiniPortile’s HTTP implementation.</a> gist by Jon Maken. About <em>An HTTP/HTTPS/FTP file downloader library/CLI based upon MiniPortile's HTTP implementation</em>, please note that “License: 3-clause BSD”. This license is GNU GPLv3 compatible according to <a href="http://www.gnu.org/licenses/license-list.en.html#ModifiedBSD">www.gnu.org/licenses/license-list.en.html#ModifiedBSD</a>.</p>
|
126
|
+
<hr>
|
127
|
+
|
128
|
+
<p>wwwjdic</p>
|
129
|
+
|
130
|
+
<p>Copyright © 2014, 2015, 2016, 2017, 2018, 2019 Marco Bresciani</p>
|
131
|
+
|
132
|
+
<p>This file is part of wwwjdic.</p>
|
133
|
+
|
134
|
+
<p>wwwjdic is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.</p>
|
135
|
+
|
136
|
+
<p>wwwjdic is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.</p>
|
137
|
+
|
138
|
+
<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
|
+
|
140
|
+
</main>
|
141
|
+
|
142
|
+
|
143
|
+
|
144
|
+
<footer id="validator-badges" role="contentinfo">
|
145
|
+
<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>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
|
148
|
+
</footer>
|
149
|
+
|
@@ -0,0 +1,181 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
|
3
|
+
<html>
|
4
|
+
<head>
|
5
|
+
<meta charset="UTF-8">
|
6
|
+
|
7
|
+
<title>authors - wwwjdic 13.0.0</title>
|
8
|
+
|
9
|
+
<script type="text/javascript">
|
10
|
+
var rdoc_rel_prefix = "./";
|
11
|
+
var index_rel_prefix = "./";
|
12
|
+
</script>
|
13
|
+
|
14
|
+
<script src="./js/jquery.js"></script>
|
15
|
+
<script src="./js/darkfish.js"></script>
|
16
|
+
|
17
|
+
<link href="./css/fonts.css" rel="stylesheet">
|
18
|
+
<link href="./css/rdoc.css" rel="stylesheet">
|
19
|
+
|
20
|
+
|
21
|
+
|
22
|
+
|
23
|
+
<body id="top" role="document" class="file">
|
24
|
+
<nav role="navigation">
|
25
|
+
<div id="project-navigation">
|
26
|
+
<div id="home-section" role="region" title="Quick navigation" class="nav-section">
|
27
|
+
<h2>
|
28
|
+
<a href="./index.html" rel="home">Home</a>
|
29
|
+
</h2>
|
30
|
+
|
31
|
+
<div id="table-of-contents-navigation">
|
32
|
+
<a href="./table_of_contents.html#pages">Pages</a>
|
33
|
+
<a href="./table_of_contents.html#classes">Classes</a>
|
34
|
+
<a href="./table_of_contents.html#methods">Methods</a>
|
35
|
+
</div>
|
36
|
+
</div>
|
37
|
+
|
38
|
+
<div id="search-section" role="search" class="project-section initially-hidden">
|
39
|
+
<form action="#" method="get" accept-charset="utf-8">
|
40
|
+
<div id="search-field-wrapper">
|
41
|
+
<input id="search-field" role="combobox" aria-label="Search"
|
42
|
+
aria-autocomplete="list" aria-controls="search-results"
|
43
|
+
type="text" name="search" placeholder="Search" spellcheck="false"
|
44
|
+
title="Type to search, Up and Down to navigate, Enter to load">
|
45
|
+
</div>
|
46
|
+
|
47
|
+
<ul id="search-results" aria-label="Search Results"
|
48
|
+
aria-busy="false" aria-expanded="false"
|
49
|
+
aria-atomic="false" class="initially-hidden"></ul>
|
50
|
+
</form>
|
51
|
+
</div>
|
52
|
+
|
53
|
+
</div>
|
54
|
+
|
55
|
+
|
56
|
+
<div class="nav-section">
|
57
|
+
<h3>Table of Contents</h3>
|
58
|
+
|
59
|
+
<ul class="link-list" role="directory">
|
60
|
+
<li><a href="#label-Project+and+gem+owned+by">Project and gem owned by</a>
|
61
|
+
<li><a href="#label-Authors+list+-28in+appearing+order-29">Authors list (in appearing order)</a>
|
62
|
+
<li><a href="#label-Translations+Authors+-28in+appearing+order-29">Translations Authors (in appearing order)</a>
|
63
|
+
</ul>
|
64
|
+
</div>
|
65
|
+
|
66
|
+
|
67
|
+
<div id="project-metadata">
|
68
|
+
<div id="fileindex-section" class="nav-section">
|
69
|
+
<h3>Pages</h3>
|
70
|
+
|
71
|
+
<ul class="link-list">
|
72
|
+
|
73
|
+
<li><a href="./CHANGELOG.html">CHANGELOG</a>
|
74
|
+
|
75
|
+
<li><a href="./COPYING_md.html">COPYING</a>
|
76
|
+
|
77
|
+
<li><a href="./Gemfile.html">Gemfile</a>
|
78
|
+
|
79
|
+
<li><a href="./README_md.html">README</a>
|
80
|
+
|
81
|
+
<li><a href="./Rakefile.html">Rakefile</a>
|
82
|
+
|
83
|
+
<li><a href="./acknowledgements_md.html">acknowledgements</a>
|
84
|
+
|
85
|
+
<li><a href="./authors_md.html">authors</a>
|
86
|
+
|
87
|
+
<li><a href="./copyright_md.html">copyright</a>
|
88
|
+
|
89
|
+
<li><a href="./wwwjdic_gemspec.html">wwwjdic.gemspec</a>
|
90
|
+
|
91
|
+
</ul>
|
92
|
+
</div>
|
93
|
+
|
94
|
+
</div>
|
95
|
+
</nav>
|
96
|
+
|
97
|
+
<main role="main" aria-label="Page authors.md">
|
98
|
+
<!--
|
99
|
+
wwwjdic
|
100
|
+
|
101
|
+
Copyright © 2014, 2015, 2016, 2017, 2018, 2019 Marco Bresciani
|
102
|
+
|
103
|
+
This file is part of wwwjdic.
|
104
|
+
|
105
|
+
wwwjdic is free software: you can redistribute it and/or modify it under
|
106
|
+
the terms of the GNU General Public License as published by the Free
|
107
|
+
Software Foundation, either version 3 of the License, or (at your
|
108
|
+
option) any later version.
|
109
|
+
|
110
|
+
wwwjdic is distributed in the hope that it will be useful, but WITHOUT
|
111
|
+
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
112
|
+
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
113
|
+
more details.
|
114
|
+
|
115
|
+
You should have received a copy of the GNU General Public License along
|
116
|
+
with wwwjdic. If not, see <http://www.gnu.org/licenses/>.
|
117
|
+
-->
|
118
|
+
<h1 id="label-Project+and+gem+owned+by">Project and gem owned by<span><a href="#label-Project+and+gem+owned+by">¶</a> <a href="#top">↑</a></span></h1>
|
119
|
+
<ul><li>
|
120
|
+
<p><em>Author</em>: <a href="mailto:marcobresciani_1974@libero.it">Marco Bresciani</a></p>
|
121
|
+
</li></ul>
|
122
|
+
|
123
|
+
<h1 id="label-Authors+list+-28in+appearing+order-29">Authors list (in appearing order)<span><a href="#label-Authors+list+-28in+appearing+order-29">¶</a> <a href="#top">↑</a></span></h1>
|
124
|
+
<ul><li>
|
125
|
+
<p><em>Author</em>: <a href="mailto:marcobresciani_1974@libero.it">Marco Bresciani</a></p>
|
126
|
+
</li><li>
|
127
|
+
<p><em>Contributor</em>: <a href="http://www.csse.monash.edu.au/~jwb/index.html">Jim Breen</a></p>
|
128
|
+
</li><li>
|
129
|
+
<p><em>Author</em>: <a href="mailto:jon.forums@gmail.com">Jon Maken</a>, <a href="https://gist.github.com/jonforums/2202048">An HTTP/HTTPS/FTP file downloader library/CLI based upon MiniPortile’s HTTP implementation.</a></p>
|
130
|
+
</li></ul>
|
131
|
+
|
132
|
+
<h2 id="label-Translations+Authors+-28in+appearing+order-29">Translations Authors (in appearing order)<span><a href="#label-Translations+Authors+-28in+appearing+order-29">¶</a> <a href="#top">↑</a></span></h2>
|
133
|
+
<ul><li>
|
134
|
+
<p><em>Italiano</em>: <a href="mailto:marcobresciani_1974@libero.it">Marco Bresciani</a></p>
|
135
|
+
</li><li>
|
136
|
+
<p><em>English</em>: <a href="mailto:marcobresciani_1974@libero.it">Marco Bresciani</a></p>
|
137
|
+
</li><li>
|
138
|
+
<p><em>日本語</em>: <a href="mailto:gniibe@fsij.org">新部裕</a></p>
|
139
|
+
</li><li>
|
140
|
+
<p><em>Russian</em>: Google Translate</p>
|
141
|
+
</li><li>
|
142
|
+
<p><em>German</em>: Google Translate</p>
|
143
|
+
</li><li>
|
144
|
+
<p><em>Spanish</em>: Google Translate</p>
|
145
|
+
</li><li>
|
146
|
+
<p><em>French</em>: Google Translate</p>
|
147
|
+
</li><li>
|
148
|
+
<p><em>Hungarian</em>: Google Translate</p>
|
149
|
+
</li><li>
|
150
|
+
<p><em>Dutch</em>: Google Translate</p>
|
151
|
+
</li><li>
|
152
|
+
<p><em>Slovenian</em>: Google Translate</p>
|
153
|
+
</li><li>
|
154
|
+
<p><em>Swedish</em>: Google Translate</p>
|
155
|
+
</li></ul>
|
156
|
+
|
157
|
+
<p>No one else, yet.</p>
|
158
|
+
<hr>
|
159
|
+
|
160
|
+
<p>wwwjdic</p>
|
161
|
+
|
162
|
+
<p>Copyright © 2014, 2015, 2016, 2017, 2018, 2019 Marco Bresciani</p>
|
163
|
+
|
164
|
+
<p>This file is part of wwwjdic.</p>
|
165
|
+
|
166
|
+
<p>wwwjdic is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.</p>
|
167
|
+
|
168
|
+
<p>wwwjdic is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.</p>
|
169
|
+
|
170
|
+
<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>
|
171
|
+
|
172
|
+
</main>
|
173
|
+
|
174
|
+
|
175
|
+
|
176
|
+
<footer id="validator-badges" role="contentinfo">
|
177
|
+
<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>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
|
180
|
+
</footer>
|
181
|
+
|