wwwjdic 14.0.0 → 15.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (93) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG +19 -0
  3. data/Gemfile +5 -1
  4. data/README.md +461 -192
  5. data/Rakefile +7 -2
  6. data/copyright.md +17 -29
  7. data/examples/basics.rb +51 -45
  8. data/examples/translate.rb +135 -86
  9. data/examples/uri.rb +34 -78
  10. data/html/CHANGELOG.html +48 -31
  11. data/html/COPYING_md.html +31 -35
  12. data/html/Gemfile.html +28 -32
  13. data/html/Object.html +71 -71
  14. data/html/README_md.html +326 -159
  15. data/html/Rakefile.html +29 -33
  16. data/html/WWWJDic.html +137 -98
  17. data/html/WWWJDic/ParsableDuckType.html +55 -55
  18. data/html/WWWJDic/Parser.html +88 -88
  19. data/html/WWWJDic/Parsers.html +33 -33
  20. data/html/WWWJDic/Parsers/Dict.html +71 -73
  21. data/html/WWWJDic/Parsers/Display.html +66 -66
  22. data/html/WWWJDic/Parsers/Key.html +67 -67
  23. data/html/WWWJDic/Parsers/Search.html +59 -58
  24. data/html/WWWJDic/Parsers/Server.html +66 -66
  25. data/html/WWWJDic/Splitter.html +173 -172
  26. data/html/WWWJDic/Utils.html +34 -34
  27. data/html/WWWJDic/Utils/Downloader.html +33 -33
  28. data/html/WWWJDic/Utils/Downloader/Downloader.html +91 -89
  29. data/html/WWWJDic/Utils/Raisers.html +95 -95
  30. data/html/WWWJDic/WWWJDic.html +343 -345
  31. data/html/copyright_md.html +37 -51
  32. data/html/created.rid +55 -57
  33. data/html/index.html +334 -164
  34. data/html/js/darkfish.js +84 -84
  35. data/html/js/navigation.js.gz +0 -0
  36. data/html/js/search.js +110 -110
  37. data/html/js/search_index.js +1 -1
  38. data/html/js/search_index.js.gz +0 -0
  39. data/html/js/searcher.js +229 -229
  40. data/html/js/searcher.js.gz +0 -0
  41. data/html/table_of_contents.html +44 -75
  42. data/lib/wwwjdic.rb +7 -11
  43. data/lib/wwwjdic/application.rb +13 -7
  44. data/lib/wwwjdic/constants.rb +16 -8
  45. data/lib/wwwjdic/locales/de.yml +5 -4
  46. data/lib/wwwjdic/locales/en.yml +5 -4
  47. data/lib/wwwjdic/locales/es.yml +5 -4
  48. data/lib/wwwjdic/locales/fr.yml +6 -4
  49. data/lib/wwwjdic/locales/hu.yml +6 -4
  50. data/lib/wwwjdic/locales/it.yml +6 -4
  51. data/lib/wwwjdic/locales/ja.yml +8 -4
  52. data/lib/wwwjdic/locales/nl.yml +5 -4
  53. data/lib/wwwjdic/locales/ru.yml +5 -4
  54. data/lib/wwwjdic/locales/sl.yml +5 -4
  55. data/lib/wwwjdic/locales/sv.yml +5 -4
  56. data/lib/wwwjdic/parser.rb +8 -4
  57. data/lib/wwwjdic/parsers/dict.rb +9 -7
  58. data/lib/wwwjdic/parsers/display.rb +6 -2
  59. data/lib/wwwjdic/parsers/key.rb +8 -3
  60. data/lib/wwwjdic/parsers/search.rb +8 -3
  61. data/lib/wwwjdic/parsers/server.rb +6 -2
  62. data/lib/wwwjdic/utils/downloader.rb +21 -23
  63. data/lib/wwwjdic/utils/raisers.rb +7 -3
  64. data/lib/wwwjdic/utils/splitter.rb +20 -14
  65. data/lib/wwwjdic/version.rb +2 -6
  66. data/test/test_helper.rb +5 -1
  67. data/test/test_wwwjdic.rb +6 -2
  68. data/test/wwwjdic/locales/de.yml +7 -1
  69. data/test/wwwjdic/locales/en.yml +7 -1
  70. data/test/wwwjdic/locales/es.yml +7 -1
  71. data/test/wwwjdic/locales/fr.yml +7 -1
  72. data/test/wwwjdic/locales/hu.yml +7 -1
  73. data/test/wwwjdic/locales/it.yml +10 -3
  74. data/test/wwwjdic/locales/ja.yml +9 -2
  75. data/test/wwwjdic/locales/nl.yml +7 -1
  76. data/test/wwwjdic/locales/ru.yml +7 -1
  77. data/test/wwwjdic/locales/sl.yml +7 -1
  78. data/test/wwwjdic/locales/sv.yml +7 -1
  79. data/test/wwwjdic/locales/test_locales.rb +12 -9
  80. data/test/wwwjdic/parsers/test_dict.rb +6 -2
  81. data/test/wwwjdic/parsers/test_display.rb +6 -2
  82. data/test/wwwjdic/parsers/test_key.rb +6 -2
  83. data/test/wwwjdic/parsers/test_server.rb +6 -2
  84. data/test/wwwjdic/test_application.rb +12 -8
  85. data/test/wwwjdic/test_parsable_duck_type.rb +6 -2
  86. data/test/wwwjdic/utils/test_downloader.rb +5 -1
  87. data/test/wwwjdic/utils/test_raisers.rb +10 -6
  88. data/wwwjdic.gemspec +30 -14
  89. metadata +50 -22
  90. data/acknowledgements.md +0 -55
  91. data/authors.md +0 -67
  92. data/html/acknowledgements_md.html +0 -150
  93. data/html/authors_md.html +0 -182
@@ -1,55 +0,0 @@
1
- <!--
2
- wwwjdic
3
-
4
- Copyright © 2014, 2015, 2016, 2017, 2018, 2019, 2020 Marco Bresciani
5
-
6
- This file is part of wwwjdic.
7
-
8
- wwwjdic is free software: you can redistribute it and/or modify it under
9
- the terms of the GNU General Public License as published by the Free
10
- Software Foundation, either version 3 of the License, or (at your
11
- option) any later version.
12
-
13
- wwwjdic is distributed in the hope that it will be useful, but WITHOUT
14
- ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
15
- FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
16
- more details.
17
-
18
- You should have received a copy of the GNU General Public License along
19
- with wwwjdic. If not, see <http://www.gnu.org/licenses/>.
20
- -->
21
-
22
- # Acknowledgements
23
- FSIJ理事会の理事長、新部裕さんの日本語の翻訳。 Japanese translation by
24
- Yutaka Niibe, President of Free Software Initiative of Japan.
25
-
26
- Thanks to Łukasz Niemier for his suggestions on possible improvements.
27
-
28
- ## An HTTP/HTTPS/FTP file downloader library/CLI based upon MiniPortile's HTTP implementation.
29
- [An HTTP/HTTPS/FTP file downloader library/CLI based upon MiniPortile's
30
- HTTP implementation.](https://gist.github.com/jonforums/2202048) gist by
31
- Jon Maken. About *An HTTP/HTTPS/FTP file downloader library/CLI based
32
- upon MiniPortile's HTTP implementation*, please note that "License:
33
- 3-clause BSD". This license is GNU GPLv3 compatible according to
34
- <http://www.gnu.org/licenses/license-list.en.html#ModifiedBSD>.
35
-
36
- ------------------------------------------
37
-
38
- wwwjdic
39
-
40
- Copyright © 2014, 2015, 2016, 2017, 2018, 2019, 2020 Marco Bresciani
41
-
42
- This file is part of wwwjdic.
43
-
44
- wwwjdic is free software: you can redistribute it and/or modify it under
45
- the terms of the GNU General Public License as published by the Free
46
- Software Foundation, either version 3 of the License, or (at your
47
- option) any later version.
48
-
49
- wwwjdic is distributed in the hope that it will be useful, but WITHOUT
50
- ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
51
- FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
52
- more details.
53
-
54
- You should have received a copy of the GNU General Public License along
55
- with wwwjdic. If not, see <http://www.gnu.org/licenses/>.
data/authors.md DELETED
@@ -1,67 +0,0 @@
1
- <!--
2
- wwwjdic
3
-
4
- Copyright © 2014, 2015, 2016, 2017, 2018, 2019, 2020 Marco Bresciani
5
-
6
- This file is part of wwwjdic.
7
-
8
- wwwjdic is free software: you can redistribute it and/or modify it under
9
- the terms of the GNU General Public License as published by the Free
10
- Software Foundation, either version 3 of the License, or (at your
11
- option) any later version.
12
-
13
- wwwjdic is distributed in the hope that it will be useful, but WITHOUT
14
- ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
15
- FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
16
- more details.
17
-
18
- You should have received a copy of the GNU General Public License along
19
- with wwwjdic. If not, see <http://www.gnu.org/licenses/>.
20
- -->
21
-
22
- # Project and gem owned by
23
- * *Author*: [Marco Bresciani](mailto:marcobresciani_1974@libero.it)
24
-
25
- # Authors list (in appearing order)
26
- * *Author*: [Marco Bresciani](mailto:marcobresciani_1974@libero.it)
27
- * *Contributor*: [Jim
28
- Breen](http://www.csse.monash.edu.au/~jwb/index.html)
29
- * *Author*: [Jon Maken](mailto:jon.forums@gmail.com), [An HTTP/HTTPS/FTP
30
- file downloader library/CLI based upon MiniPortile's HTTP
31
- implementation.](https://gist.github.com/jonforums/2202048)
32
-
33
- ## Translations Authors (in appearing order)
34
- * *Italiano*: [Marco Bresciani](mailto:marcobresciani_1974@libero.it)
35
- * *English*: [Marco Bresciani](mailto:marcobresciani_1974@libero.it)
36
- * *日本語*: [新部裕](mailto:gniibe@fsij.org)
37
- * *Russian*: Google Translate
38
- * *German*: Google Translate
39
- * *Spanish*: Google Translate
40
- * *French*: Google Translate
41
- * *Hungarian*: Google Translate
42
- * *Dutch*: Google Translate
43
- * *Slovenian*: Google Translate
44
- * *Swedish*: Google Translate
45
-
46
- No one else, yet.
47
-
48
- ------------------------------------------
49
-
50
- wwwjdic
51
-
52
- Copyright © 2014, 2015, 2016, 2017, 2018, 2019, 2020 Marco Bresciani
53
-
54
- This file is part of wwwjdic.
55
-
56
- wwwjdic is free software: you can redistribute it and/or modify it under
57
- the terms of the GNU General Public License as published by the Free
58
- Software Foundation, either version 3 of the License, or (at your
59
- option) any later version.
60
-
61
- wwwjdic is distributed in the hope that it will be useful, but WITHOUT
62
- ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
63
- FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
64
- more details.
65
-
66
- You should have received a copy of the GNU General Public License along
67
- with wwwjdic. If not, see <http://www.gnu.org/licenses/>.
@@ -1,150 +0,0 @@
1
- <!DOCTYPE html>
2
-
3
- <html>
4
- <head>
5
- <meta charset="UTF-8">
6
-
7
- <title>acknowledgements - wwwjdic 14.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/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>
19
-
20
- <link href="./css/fonts.css" rel="stylesheet">
21
- <link href="./css/rdoc.css" rel="stylesheet">
22
-
23
-
24
-
25
-
26
- <body id="top" role="document" class="file">
27
- <nav role="navigation">
28
- <div id="project-navigation">
29
- <div id="home-section" role="region" title="Quick navigation" class="nav-section">
30
- <h2>
31
- <a href="./index.html" rel="home">Home</a>
32
- </h2>
33
-
34
- <div id="table-of-contents-navigation">
35
- <a href="./table_of_contents.html#pages">Pages</a>
36
- <a href="./table_of_contents.html#classes">Classes</a>
37
- <a href="./table_of_contents.html#methods">Methods</a>
38
- </div>
39
- </div>
40
-
41
- <div id="search-section" role="search" class="project-section initially-hidden">
42
- <form action="#" method="get" accept-charset="utf-8">
43
- <div id="search-field-wrapper">
44
- <input id="search-field" role="combobox" aria-label="Search"
45
- aria-autocomplete="list" aria-controls="search-results"
46
- type="text" name="search" placeholder="Search" spellcheck="false"
47
- title="Type to search, Up and Down to navigate, Enter to load">
48
- </div>
49
-
50
- <ul id="search-results" aria-label="Search Results"
51
- aria-busy="false" aria-expanded="false"
52
- aria-atomic="false" class="initially-hidden"></ul>
53
- </form>
54
- </div>
55
-
56
- </div>
57
-
58
-
59
- <div class="nav-section">
60
- <h3>Table of Contents</h3>
61
-
62
- <ul class="link-list" role="directory">
63
- <li><a href="#label-Acknowledgements">Acknowledgements</a>
64
- <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&#39;s HTTP implementation.</a>
65
- </ul>
66
- </div>
67
-
68
-
69
- <div id="project-metadata">
70
- <div id="fileindex-section" class="nav-section">
71
- <h3>Pages</h3>
72
-
73
- <ul class="link-list">
74
-
75
- <li><a href="./CHANGELOG.html">CHANGELOG</a>
76
-
77
- <li><a href="./COPYING_md.html">COPYING</a>
78
-
79
- <li><a href="./Gemfile.html">Gemfile</a>
80
-
81
- <li><a href="./README_md.html">README</a>
82
-
83
- <li><a href="./Rakefile.html">Rakefile</a>
84
-
85
- <li><a href="./acknowledgements_md.html">acknowledgements</a>
86
-
87
- <li><a href="./authors_md.html">authors</a>
88
-
89
- <li><a href="./copyright_md.html">copyright</a>
90
-
91
- </ul>
92
- </div>
93
-
94
- </div>
95
- </nav>
96
-
97
- <main role="main" aria-label="Page acknowledgements.md">
98
- <!--
99
- wwwjdic
100
-
101
- Copyright © 2014, 2015, 2016, 2017, 2018, 2019, 2020 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-Acknowledgements">Acknowledgements<span><a href="#label-Acknowledgements">&para;</a> <a href="#top">&uarr;</a></span></h1>
119
-
120
- <p>FSIJ理事会の理事長、新部裕さんの日本語の翻訳。 Japanese translation by Yutaka Niibe, President of Free Software Initiative of Japan.</p>
121
-
122
- <p>Thanks to Łukasz Niemier for his suggestions on possible improvements.</p>
123
-
124
- <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&#39;s HTTP implementation.<span><a href="#label-An+HTTP-2FHTTPS-2FFTP+file+downloader+library-2FCLI+based+upon+MiniPortile-27s+HTTP+implementation.">&para;</a> <a href="#top">&uarr;</a></span></h2>
125
-
126
- <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&#39;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>
127
- <hr>
128
-
129
- <p>wwwjdic</p>
130
-
131
- <p>Copyright © 2014, 2015, 2016, 2017, 2018, 2019, 2020 Marco Bresciani</p>
132
-
133
- <p>This file is part of wwwjdic.</p>
134
-
135
- <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>
136
-
137
- <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>
138
-
139
- <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>
140
-
141
- </main>
142
-
143
-
144
-
145
- <footer id="validator-badges" role="contentinfo">
146
- <p><a href="https://validator.w3.org/check/referer">Validate</a>
147
- <p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.2.1.
148
- <p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
149
- </footer>
150
-
@@ -1,182 +0,0 @@
1
- <!DOCTYPE html>
2
-
3
- <html>
4
- <head>
5
- <meta charset="UTF-8">
6
-
7
- <title>authors - wwwjdic 14.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/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>
19
-
20
- <link href="./css/fonts.css" rel="stylesheet">
21
- <link href="./css/rdoc.css" rel="stylesheet">
22
-
23
-
24
-
25
-
26
- <body id="top" role="document" class="file">
27
- <nav role="navigation">
28
- <div id="project-navigation">
29
- <div id="home-section" role="region" title="Quick navigation" class="nav-section">
30
- <h2>
31
- <a href="./index.html" rel="home">Home</a>
32
- </h2>
33
-
34
- <div id="table-of-contents-navigation">
35
- <a href="./table_of_contents.html#pages">Pages</a>
36
- <a href="./table_of_contents.html#classes">Classes</a>
37
- <a href="./table_of_contents.html#methods">Methods</a>
38
- </div>
39
- </div>
40
-
41
- <div id="search-section" role="search" class="project-section initially-hidden">
42
- <form action="#" method="get" accept-charset="utf-8">
43
- <div id="search-field-wrapper">
44
- <input id="search-field" role="combobox" aria-label="Search"
45
- aria-autocomplete="list" aria-controls="search-results"
46
- type="text" name="search" placeholder="Search" spellcheck="false"
47
- title="Type to search, Up and Down to navigate, Enter to load">
48
- </div>
49
-
50
- <ul id="search-results" aria-label="Search Results"
51
- aria-busy="false" aria-expanded="false"
52
- aria-atomic="false" class="initially-hidden"></ul>
53
- </form>
54
- </div>
55
-
56
- </div>
57
-
58
-
59
- <div class="nav-section">
60
- <h3>Table of Contents</h3>
61
-
62
- <ul class="link-list" role="directory">
63
- <li><a href="#label-Project+and+gem+owned+by">Project and gem owned by</a>
64
- <li><a href="#label-Authors+list+-28in+appearing+order-29">Authors list (in appearing order)</a>
65
- <li><a href="#label-Translations+Authors+-28in+appearing+order-29">Translations Authors (in appearing order)</a>
66
- </ul>
67
- </div>
68
-
69
-
70
- <div id="project-metadata">
71
- <div id="fileindex-section" class="nav-section">
72
- <h3>Pages</h3>
73
-
74
- <ul class="link-list">
75
-
76
- <li><a href="./CHANGELOG.html">CHANGELOG</a>
77
-
78
- <li><a href="./COPYING_md.html">COPYING</a>
79
-
80
- <li><a href="./Gemfile.html">Gemfile</a>
81
-
82
- <li><a href="./README_md.html">README</a>
83
-
84
- <li><a href="./Rakefile.html">Rakefile</a>
85
-
86
- <li><a href="./acknowledgements_md.html">acknowledgements</a>
87
-
88
- <li><a href="./authors_md.html">authors</a>
89
-
90
- <li><a href="./copyright_md.html">copyright</a>
91
-
92
- </ul>
93
- </div>
94
-
95
- </div>
96
- </nav>
97
-
98
- <main role="main" aria-label="Page authors.md">
99
- <!--
100
- wwwjdic
101
-
102
- Copyright © 2014, 2015, 2016, 2017, 2018, 2019, 2020 Marco Bresciani
103
-
104
- This file is part of wwwjdic.
105
-
106
- wwwjdic is free software: you can redistribute it and/or modify it under
107
- the terms of the GNU General Public License as published by the Free
108
- Software Foundation, either version 3 of the License, or (at your
109
- option) any later version.
110
-
111
- wwwjdic is distributed in the hope that it will be useful, but WITHOUT
112
- ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
113
- FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
114
- more details.
115
-
116
- You should have received a copy of the GNU General Public License along
117
- with wwwjdic. If not, see <http://www.gnu.org/licenses/>.
118
- -->
119
- <h1 id="label-Project+and+gem+owned+by">Project and gem owned by<span><a href="#label-Project+and+gem+owned+by">&para;</a> <a href="#top">&uarr;</a></span></h1>
120
- <ul><li>
121
- <p><em>Author</em>: <a href="mailto:marcobresciani_1974@libero.it">Marco Bresciani</a></p>
122
- </li></ul>
123
-
124
- <h1 id="label-Authors+list+-28in+appearing+order-29">Authors list (in appearing order)<span><a href="#label-Authors+list+-28in+appearing+order-29">&para;</a> <a href="#top">&uarr;</a></span></h1>
125
- <ul><li>
126
- <p><em>Author</em>: <a href="mailto:marcobresciani_1974@libero.it">Marco Bresciani</a></p>
127
- </li><li>
128
- <p><em>Contributor</em>: <a href="http://www.csse.monash.edu.au/~jwb/index.html">Jim Breen</a></p>
129
- </li><li>
130
- <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>
131
- </li></ul>
132
-
133
- <h2 id="label-Translations+Authors+-28in+appearing+order-29">Translations Authors (in appearing order)<span><a href="#label-Translations+Authors+-28in+appearing+order-29">&para;</a> <a href="#top">&uarr;</a></span></h2>
134
- <ul><li>
135
- <p><em>Italiano</em>: <a href="mailto:marcobresciani_1974@libero.it">Marco Bresciani</a></p>
136
- </li><li>
137
- <p><em>English</em>: <a href="mailto:marcobresciani_1974@libero.it">Marco Bresciani</a></p>
138
- </li><li>
139
- <p><em>日本語</em>: <a href="mailto:gniibe@fsij.org">新部裕</a></p>
140
- </li><li>
141
- <p><em>Russian</em>: Google Translate</p>
142
- </li><li>
143
- <p><em>German</em>: Google Translate</p>
144
- </li><li>
145
- <p><em>Spanish</em>: Google Translate</p>
146
- </li><li>
147
- <p><em>French</em>: Google Translate</p>
148
- </li><li>
149
- <p><em>Hungarian</em>: Google Translate</p>
150
- </li><li>
151
- <p><em>Dutch</em>: Google Translate</p>
152
- </li><li>
153
- <p><em>Slovenian</em>: Google Translate</p>
154
- </li><li>
155
- <p><em>Swedish</em>: Google Translate</p>
156
- </li></ul>
157
-
158
- <p>No one else, yet.</p>
159
- <hr>
160
-
161
- <p>wwwjdic</p>
162
-
163
- <p>Copyright © 2014, 2015, 2016, 2017, 2018, 2019, 2020 Marco Bresciani</p>
164
-
165
- <p>This file is part of wwwjdic.</p>
166
-
167
- <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>
168
-
169
- <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>
170
-
171
- <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>
172
-
173
- </main>
174
-
175
-
176
-
177
- <footer id="validator-badges" role="contentinfo">
178
- <p><a href="https://validator.w3.org/check/referer">Validate</a>
179
- <p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.2.1.
180
- <p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
181
- </footer>
182
-