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
@@ -0,0 +1,422 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
|
3
|
+
<html>
|
4
|
+
<head>
|
5
|
+
<meta charset="UTF-8">
|
6
|
+
|
7
|
+
<title>copyright - 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-Copyright+Notes">Copyright Notes</a>
|
61
|
+
<li><a href="#label-RDoc">RDoc</a>
|
62
|
+
<li><a href="#label-Darkfish+-28darkfish.js+-26+rdoc.css-29">Darkfish (darkfish.js & rdoc.css)</a>
|
63
|
+
<li><a href="#label-Sorce+Code+Pro+Font+-28-26+fonts.css-29">Sorce Code Pro Font (& fonts.css)</a>
|
64
|
+
<li><a href="#label-Lato+Font">Lato Font</a>
|
65
|
+
<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
|
+
<li><a href="#label-JsonIndex+generator+-28navigation.js+-26+search.js+-26+search_index.js+-26+searcher.js-29">JsonIndex generator (navigation.js & search.js & search_index.js & searcher.js)</a>
|
69
|
+
</ul>
|
70
|
+
</div>
|
71
|
+
|
72
|
+
|
73
|
+
<div id="project-metadata">
|
74
|
+
<div id="fileindex-section" class="nav-section">
|
75
|
+
<h3>Pages</h3>
|
76
|
+
|
77
|
+
<ul class="link-list">
|
78
|
+
|
79
|
+
<li><a href="./CHANGELOG.html">CHANGELOG</a>
|
80
|
+
|
81
|
+
<li><a href="./COPYING_md.html">COPYING</a>
|
82
|
+
|
83
|
+
<li><a href="./Gemfile.html">Gemfile</a>
|
84
|
+
|
85
|
+
<li><a href="./README_md.html">README</a>
|
86
|
+
|
87
|
+
<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
|
+
<li><a href="./copyright_md.html">copyright</a>
|
94
|
+
|
95
|
+
<li><a href="./wwwjdic_gemspec.html">wwwjdic.gemspec</a>
|
96
|
+
|
97
|
+
</ul>
|
98
|
+
</div>
|
99
|
+
|
100
|
+
</div>
|
101
|
+
</nav>
|
102
|
+
|
103
|
+
<main role="main" aria-label="Page copyright.md">
|
104
|
+
<!--
|
105
|
+
wwwjdic
|
106
|
+
|
107
|
+
Copyright © 2014, 2015, 2016, 2017, 2018, 2019 Marco Bresciani
|
108
|
+
|
109
|
+
This file is part of wwwjdic.
|
110
|
+
|
111
|
+
wwwjdic is free software: you can redistribute it and/or modify it under
|
112
|
+
the terms of the GNU General Public License as published by the Free
|
113
|
+
Software Foundation, either version 3 of the License, or (at your
|
114
|
+
option) any later version.
|
115
|
+
|
116
|
+
wwwjdic is distributed in the hope that it will be useful, but WITHOUT
|
117
|
+
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
118
|
+
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
119
|
+
more details.
|
120
|
+
|
121
|
+
You should have received a copy of the GNU General Public License along
|
122
|
+
with wwwjdic. If not, see <http://www.gnu.org/licenses/>.
|
123
|
+
-->
|
124
|
+
<h1 id="label-Copyright+Notes">Copyright Notes<span><a href="#label-Copyright+Notes">¶</a> <a href="#top">↑</a></span></h1>
|
125
|
+
|
126
|
+
<p>2019-02-26 update.</p>
|
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
|
+
<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>
|
141
|
+
|
142
|
+
<h2 id="label-RDoc">RDoc<span><a href="#label-RDoc">¶</a> <a href="#top">↑</a></span></h2>
|
143
|
+
|
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>
|
145
|
+
|
146
|
+
<h3 id="label-Darkfish+-28darkfish.js+-26+rdoc.css-29">Darkfish (darkfish.js & rdoc.css)<span><a href="#label-Darkfish+-28darkfish.js+-26+rdoc.css-29">¶</a> <a href="#top">↑</a></span></h3>
|
147
|
+
|
148
|
+
<p>See <a href="http://www.ruby-doc.org/stdlib-2.0/libdoc/rdoc/rdoc/RDoc/Generator/Darkfish.html">www.ruby-doc.org/stdlib-2.0/libdoc/rdoc/rdoc/RDoc/Generator/Darkfish.html</a></p>
|
149
|
+
|
150
|
+
<p>Copyright © 2007, 2008, Michael Granger. All rights reserved.</p>
|
151
|
+
|
152
|
+
<p>Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:</p>
|
153
|
+
|
154
|
+
<p>Redistributions of source code must retain the above <a href="copyright_md.html">copyright</a> notice, this list of conditions and the following disclaimer.</p>
|
155
|
+
|
156
|
+
<p>Redistributions in binary form must reproduce the above <a href="copyright_md.html">copyright</a> notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.</p>
|
157
|
+
|
158
|
+
<p>Neither the name of the author/s, nor the names of the project's contributors may be used to endorse or promote products derived from this software without specific prior written permission.</p>
|
159
|
+
|
160
|
+
<p>THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS “AS IS” AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</p>
|
161
|
+
|
162
|
+
<p>Darkfish uses the Silk Icons set by Mark James.</p>
|
163
|
+
|
164
|
+
<h3 id="label-Sorce+Code+Pro+Font+-28-26+fonts.css-29">Sorce Code Pro Font (& fonts.css)<span><a href="#label-Sorce+Code+Pro+Font+-28-26+fonts.css-29">¶</a> <a href="#top">↑</a></span></h3>
|
165
|
+
|
166
|
+
<p>Copyright 2010, 2012 Adobe Systems Incorporated (<a href="http://www.adobe.com">www.adobe.com</a>/), with Reserved Font Name “Source”. All Rights Reserved. Source is a trademark of Adobe Systems Incorporated in the United States and/or other countries.</p>
|
167
|
+
|
168
|
+
<p>This Font Software is licensed under the SIL Open Font License, Version 1.1.</p>
|
169
|
+
|
170
|
+
<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
|
+
<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
|
+
"Font Software" 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
|
+
"Reserved Font Name" refers to any names specified as such after
|
200
|
+
the copyright statement(s).
|
201
|
+
|
202
|
+
"Original Version" refers to the collection of Font Software
|
203
|
+
components as distributed by the Copyright Holder(s).
|
204
|
+
|
205
|
+
"Modified Version" 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
|
+
"Author" refers to any designer, engineer, programmer, technical
|
211
|
+
writer or other person who contributed to the Font Software.
|
212
|
+
|
213
|
+
PERMISSION & 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 "AS IS", 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>
|
264
|
+
|
265
|
+
<h3 id="label-Lato+Font">Lato Font<span><a href="#label-Lato+Font">¶</a> <a href="#top">↑</a></span></h3>
|
266
|
+
|
267
|
+
<p>Copyright © 2010, Łukasz Dziedzic (<a href="mailto:dziedzic@typoland.com">dziedzic@typoland.com</a>), with Reserved Font Name Lato.</p>
|
268
|
+
|
269
|
+
<p>This Font Software is licensed under the SIL Open Font License, Version 1.1.</p>
|
270
|
+
|
271
|
+
<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
|
+
|
273
|
+
<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
|
+
"Font Software" 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
|
+
"Reserved Font Name" refers to any names specified as such after
|
302
|
+
the copyright statement(s).
|
303
|
+
|
304
|
+
"Original Version" refers to the collection of Font Software
|
305
|
+
components as distributed by the Copyright Holder(s).
|
306
|
+
|
307
|
+
"Modified Version" 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
|
+
"Author" refers to any designer, engineer, programmer, technical
|
313
|
+
writer or other person who contributed to the Font Software.
|
314
|
+
|
315
|
+
PERMISSION & 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 "AS IS", 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>
|
367
|
+
|
368
|
+
<h3 id="label-Silk+Icons">Silk Icons<span><a href="#label-Silk+Icons">¶</a> <a href="#top">↑</a></span></h3>
|
369
|
+
|
370
|
+
<p>See <a href="http://www.famfamfam.com/lab/icons/silk">www.famfamfam.com/lab/icons/silk</a>/</p>
|
371
|
+
|
372
|
+
<p>This work is licensed under a Creative Commons Attribution 2.5 License. This means you may use it for any purpose, and make any changes you like. All I ask is that you include a link back to this page in your credits (although a giant link on every page of your website really isn't needed, contact me to discuss specifics).</p>
|
373
|
+
|
374
|
+
<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
|
+
|
376
|
+
<h3 id="label-jquery.js">jquery.js<span><a href="#label-jquery.js">¶</a> <a href="#top">↑</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">¶</a> <a href="#top">↑</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
|
+
<h3 id="label-JsonIndex+generator+-28navigation.js+-26+search.js+-26+search_index.js+-26+searcher.js-29">JsonIndex generator (navigation.js & search.js & search_index.js & searcher.js)<span><a href="#label-JsonIndex+generator+-28navigation.js+-26+search.js+-26+search_index.js+-26+searcher.js-29">¶</a> <a href="#top">↑</a></span></h3>
|
389
|
+
|
390
|
+
<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>
|
391
|
+
|
392
|
+
<p>Copyright © 2009 Vladimir Kolesnikov</p>
|
393
|
+
|
394
|
+
<p>Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:</p>
|
395
|
+
|
396
|
+
<p>The above <a href="copyright_md.html">copyright</a> notice and this permission notice shall be included in all copies or substantial portions of the Software.</p>
|
397
|
+
|
398
|
+
<p>THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.</p>
|
399
|
+
<hr>
|
400
|
+
|
401
|
+
<p>wwwjdic</p>
|
402
|
+
|
403
|
+
<p>Copyright © 2014, 2015, 2016, 2017, 2018, 2019 Marco Bresciani</p>
|
404
|
+
|
405
|
+
<p>This file is part of wwwjdic.</p>
|
406
|
+
|
407
|
+
<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>
|
408
|
+
|
409
|
+
<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>
|
410
|
+
|
411
|
+
<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>
|
412
|
+
|
413
|
+
</main>
|
414
|
+
|
415
|
+
|
416
|
+
|
417
|
+
<footer id="validator-badges" role="contentinfo">
|
418
|
+
<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.
|
420
|
+
<p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
|
421
|
+
</footer>
|
422
|
+
|
data/html/created.rid
ADDED
@@ -0,0 +1,59 @@
|
|
1
|
+
Mon, 06 May 2019 15:03:57 +0200
|
2
|
+
CHANGELOG Mon, 06 May 2019 15:01:36 +0200
|
3
|
+
COPYING.md Mon, 25 Feb 2019 15:42:16 +0100
|
4
|
+
Gemfile Tue, 26 Feb 2019 12:20:36 +0100
|
5
|
+
README.md Fri, 01 Mar 2019 15:00:00 +0100
|
6
|
+
Rakefile Tue, 26 Feb 2019 12:27:31 +0100
|
7
|
+
acknowledgements.md Mon, 25 Feb 2019 15:40:22 +0100
|
8
|
+
authors.md Tue, 23 Apr 2019 11:48:58 +0200
|
9
|
+
copyright.md Tue, 26 Feb 2019 12:20:36 +0100
|
10
|
+
examples/basics.rb Tue, 23 Apr 2019 13:04:30 +0200
|
11
|
+
examples/translate.rb Tue, 23 Apr 2019 13:04:30 +0200
|
12
|
+
examples/uri.rb Tue, 23 Apr 2019 13:05:10 +0200
|
13
|
+
lib/wwwjdic/application.rb Tue, 23 Apr 2019 14:18:07 +0200
|
14
|
+
lib/wwwjdic/constants.rb Tue, 23 Apr 2019 14:27:33 +0200
|
15
|
+
lib/wwwjdic/locales/de.yml Fri, 01 Mar 2019 14:34:54 +0100
|
16
|
+
lib/wwwjdic/locales/en.yml Fri, 01 Mar 2019 14:34:50 +0100
|
17
|
+
lib/wwwjdic/locales/es.yml Fri, 01 Mar 2019 14:34:45 +0100
|
18
|
+
lib/wwwjdic/locales/fr.yml Fri, 01 Mar 2019 14:34:39 +0100
|
19
|
+
lib/wwwjdic/locales/hu.yml Fri, 01 Mar 2019 14:34:34 +0100
|
20
|
+
lib/wwwjdic/locales/it.yml Fri, 01 Mar 2019 14:36:02 +0100
|
21
|
+
lib/wwwjdic/locales/ja.yml Fri, 01 Mar 2019 14:34:09 +0100
|
22
|
+
lib/wwwjdic/locales/nl.yml Fri, 01 Mar 2019 14:33:47 +0100
|
23
|
+
lib/wwwjdic/locales/ru.yml Fri, 01 Mar 2019 14:33:40 +0100
|
24
|
+
lib/wwwjdic/locales/sl.yml Fri, 01 Mar 2019 14:33:36 +0100
|
25
|
+
lib/wwwjdic/locales/sv.yml Fri, 01 Mar 2019 14:36:02 +0100
|
26
|
+
lib/wwwjdic/parser.rb Tue, 23 Apr 2019 11:48:58 +0200
|
27
|
+
lib/wwwjdic/parsers/dict.rb Tue, 23 Apr 2019 11:48:58 +0200
|
28
|
+
lib/wwwjdic/parsers/display.rb Tue, 23 Apr 2019 11:48:59 +0200
|
29
|
+
lib/wwwjdic/parsers/key.rb Tue, 23 Apr 2019 11:48:58 +0200
|
30
|
+
lib/wwwjdic/parsers/search.rb Tue, 23 Apr 2019 11:48:58 +0200
|
31
|
+
lib/wwwjdic/parsers/server.rb Tue, 23 Apr 2019 11:48:58 +0200
|
32
|
+
lib/wwwjdic/utils/downloader.rb Fri, 01 Mar 2019 14:40:14 +0100
|
33
|
+
lib/wwwjdic/utils/raisers.rb Tue, 23 Apr 2019 11:48:58 +0200
|
34
|
+
lib/wwwjdic/utils/splitter.rb Wed, 24 Apr 2019 17:39:09 +0200
|
35
|
+
lib/wwwjdic/version.rb Mon, 06 May 2019 15:00:53 +0200
|
36
|
+
lib/wwwjdic.rb Tue, 23 Apr 2019 11:48:58 +0200
|
37
|
+
test/test_helper.rb Fri, 01 Mar 2019 14:50:11 +0100
|
38
|
+
test/test_wwwjdic.rb Fri, 01 Mar 2019 14:50:29 +0100
|
39
|
+
test/wwwjdic/locales/de.yml Tue, 23 Apr 2019 14:41:33 +0200
|
40
|
+
test/wwwjdic/locales/en.yml Tue, 23 Apr 2019 14:41:33 +0200
|
41
|
+
test/wwwjdic/locales/es.yml Tue, 23 Apr 2019 14:41:33 +0200
|
42
|
+
test/wwwjdic/locales/fr.yml Tue, 23 Apr 2019 14:41:33 +0200
|
43
|
+
test/wwwjdic/locales/hu.yml Tue, 23 Apr 2019 14:41:33 +0200
|
44
|
+
test/wwwjdic/locales/it.yml Tue, 23 Apr 2019 14:41:33 +0200
|
45
|
+
test/wwwjdic/locales/ja.yml Tue, 23 Apr 2019 14:41:33 +0200
|
46
|
+
test/wwwjdic/locales/nl.yml Tue, 23 Apr 2019 14:41:33 +0200
|
47
|
+
test/wwwjdic/locales/ru.yml Tue, 23 Apr 2019 14:41:33 +0200
|
48
|
+
test/wwwjdic/locales/sl.yml Tue, 23 Apr 2019 14:41:33 +0200
|
49
|
+
test/wwwjdic/locales/sv.yml Tue, 23 Apr 2019 14:41:33 +0200
|
50
|
+
test/wwwjdic/locales/test_locales.rb Fri, 01 Mar 2019 14:50:29 +0100
|
51
|
+
test/wwwjdic/parsers/test_dict.rb Tue, 23 Apr 2019 13:10:06 +0200
|
52
|
+
test/wwwjdic/parsers/test_display.rb Tue, 23 Apr 2019 13:10:06 +0200
|
53
|
+
test/wwwjdic/parsers/test_key.rb Tue, 23 Apr 2019 14:24:37 +0200
|
54
|
+
test/wwwjdic/parsers/test_server.rb Tue, 23 Apr 2019 13:10:06 +0200
|
55
|
+
test/wwwjdic/test_application.rb Tue, 23 Apr 2019 13:35:29 +0200
|
56
|
+
test/wwwjdic/test_parsable_duck_type.rb Tue, 23 Apr 2019 11:48:59 +0200
|
57
|
+
test/wwwjdic/utils/test_downloader.rb Fri, 01 Mar 2019 14:48:49 +0100
|
58
|
+
test/wwwjdic/utils/test_raisers.rb Fri, 01 Mar 2019 14:48:56 +0100
|
59
|
+
wwwjdic.gemspec Tue, 23 Apr 2019 11:48:58 +0200
|
data/html/css/fonts.css
ADDED
@@ -0,0 +1,167 @@
|
|
1
|
+
/*
|
2
|
+
* Copyright 2010, 2012 Adobe Systems Incorporated (http://www.adobe.com/),
|
3
|
+
* with Reserved Font Name "Source". All Rights Reserved. Source is a
|
4
|
+
* trademark of Adobe Systems Incorporated in the United States and/or other
|
5
|
+
* countries.
|
6
|
+
*
|
7
|
+
* This Font Software is licensed under the SIL Open Font License, Version
|
8
|
+
* 1.1.
|
9
|
+
*
|
10
|
+
* This license is copied below, and is also available with a FAQ at:
|
11
|
+
* http://scripts.sil.org/OFL
|
12
|
+
*/
|
13
|
+
|
14
|
+
@font-face {
|
15
|
+
font-family: "Source Code Pro";
|
16
|
+
font-style: normal;
|
17
|
+
font-weight: 400;
|
18
|
+
src: local("Source Code Pro"),
|
19
|
+
local("SourceCodePro-Regular"),
|
20
|
+
url("../fonts/SourceCodePro-Regular.ttf") format("truetype");
|
21
|
+
}
|
22
|
+
|
23
|
+
@font-face {
|
24
|
+
font-family: "Source Code Pro";
|
25
|
+
font-style: normal;
|
26
|
+
font-weight: 700;
|
27
|
+
src: local("Source Code Pro Bold"),
|
28
|
+
local("SourceCodePro-Bold"),
|
29
|
+
url("../fonts/SourceCodePro-Bold.ttf") format("truetype");
|
30
|
+
}
|
31
|
+
|
32
|
+
/*
|
33
|
+
* Copyright (c) 2010, Łukasz Dziedzic (dziedzic@typoland.com),
|
34
|
+
* with Reserved Font Name Lato.
|
35
|
+
*
|
36
|
+
* This Font Software is licensed under the SIL Open Font License, Version
|
37
|
+
* 1.1.
|
38
|
+
*
|
39
|
+
* This license is copied below, and is also available with a FAQ at:
|
40
|
+
* http://scripts.sil.org/OFL
|
41
|
+
*/
|
42
|
+
|
43
|
+
@font-face {
|
44
|
+
font-family: "Lato";
|
45
|
+
font-style: normal;
|
46
|
+
font-weight: 300;
|
47
|
+
src: local("Lato Light"),
|
48
|
+
local("Lato-Light"),
|
49
|
+
url("../fonts/Lato-Light.ttf") format("truetype");
|
50
|
+
}
|
51
|
+
|
52
|
+
@font-face {
|
53
|
+
font-family: "Lato";
|
54
|
+
font-style: italic;
|
55
|
+
font-weight: 300;
|
56
|
+
src: local("Lato Light Italic"),
|
57
|
+
local("Lato-LightItalic"),
|
58
|
+
url("../fonts/Lato-LightItalic.ttf") format("truetype");
|
59
|
+
}
|
60
|
+
|
61
|
+
@font-face {
|
62
|
+
font-family: "Lato";
|
63
|
+
font-style: normal;
|
64
|
+
font-weight: 700;
|
65
|
+
src: local("Lato Regular"),
|
66
|
+
local("Lato-Regular"),
|
67
|
+
url("../fonts/Lato-Regular.ttf") format("truetype");
|
68
|
+
}
|
69
|
+
|
70
|
+
@font-face {
|
71
|
+
font-family: "Lato";
|
72
|
+
font-style: italic;
|
73
|
+
font-weight: 700;
|
74
|
+
src: local("Lato Italic"),
|
75
|
+
local("Lato-Italic"),
|
76
|
+
url("../fonts/Lato-RegularItalic.ttf") format("truetype");
|
77
|
+
}
|
78
|
+
|
79
|
+
/*
|
80
|
+
* -----------------------------------------------------------
|
81
|
+
* SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
|
82
|
+
* -----------------------------------------------------------
|
83
|
+
*
|
84
|
+
* PREAMBLE
|
85
|
+
* The goals of the Open Font License (OFL) are to stimulate worldwide
|
86
|
+
* development of collaborative font projects, to support the font creation
|
87
|
+
* efforts of academic and linguistic communities, and to provide a free and
|
88
|
+
* open framework in which fonts may be shared and improved in partnership
|
89
|
+
* with others.
|
90
|
+
*
|
91
|
+
* The OFL allows the licensed fonts to be used, studied, modified and
|
92
|
+
* redistributed freely as long as they are not sold by themselves. The
|
93
|
+
* fonts, including any derivative works, can be bundled, embedded,
|
94
|
+
* redistributed and/or sold with any software provided that any reserved
|
95
|
+
* names are not used by derivative works. The fonts and derivatives,
|
96
|
+
* however, cannot be released under any other type of license. The
|
97
|
+
* requirement for fonts to remain under this license does not apply
|
98
|
+
* to any document created using the fonts or their derivatives.
|
99
|
+
*
|
100
|
+
* DEFINITIONS
|
101
|
+
* "Font Software" refers to the set of files released by the Copyright
|
102
|
+
* Holder(s) under this license and clearly marked as such. This may
|
103
|
+
* include source files, build scripts and documentation.
|
104
|
+
*
|
105
|
+
* "Reserved Font Name" refers to any names specified as such after the
|
106
|
+
* copyright statement(s).
|
107
|
+
*
|
108
|
+
* "Original Version" refers to the collection of Font Software components as
|
109
|
+
* distributed by the Copyright Holder(s).
|
110
|
+
*
|
111
|
+
* "Modified Version" refers to any derivative made by adding to, deleting,
|
112
|
+
* or substituting -- in part or in whole -- any of the components of the
|
113
|
+
* Original Version, by changing formats or by porting the Font Software to a
|
114
|
+
* new environment.
|
115
|
+
*
|
116
|
+
* "Author" refers to any designer, engineer, programmer, technical
|
117
|
+
* writer or other person who contributed to the Font Software.
|
118
|
+
*
|
119
|
+
* PERMISSION & CONDITIONS
|
120
|
+
* Permission is hereby granted, free of charge, to any person obtaining
|
121
|
+
* a copy of the Font Software, to use, study, copy, merge, embed, modify,
|
122
|
+
* redistribute, and sell modified and unmodified copies of the Font
|
123
|
+
* Software, subject to the following conditions:
|
124
|
+
*
|
125
|
+
* 1) Neither the Font Software nor any of its individual components,
|
126
|
+
* in Original or Modified Versions, may be sold by itself.
|
127
|
+
*
|
128
|
+
* 2) Original or Modified Versions of the Font Software may be bundled,
|
129
|
+
* redistributed and/or sold with any software, provided that each copy
|
130
|
+
* contains the above copyright notice and this license. These can be
|
131
|
+
* included either as stand-alone text files, human-readable headers or
|
132
|
+
* in the appropriate machine-readable metadata fields within text or
|
133
|
+
* binary files as long as those fields can be easily viewed by the user.
|
134
|
+
*
|
135
|
+
* 3) No Modified Version of the Font Software may use the Reserved Font
|
136
|
+
* Name(s) unless explicit written permission is granted by the corresponding
|
137
|
+
* Copyright Holder. This restriction only applies to the primary font name as
|
138
|
+
* presented to the users.
|
139
|
+
*
|
140
|
+
* 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
|
141
|
+
* Software shall not be used to promote, endorse or advertise any
|
142
|
+
* Modified Version, except to acknowledge the contribution(s) of the
|
143
|
+
* Copyright Holder(s) and the Author(s) or with their explicit written
|
144
|
+
* permission.
|
145
|
+
*
|
146
|
+
* 5) The Font Software, modified or unmodified, in part or in whole,
|
147
|
+
* must be distributed entirely under this license, and must not be
|
148
|
+
* distributed under any other license. The requirement for fonts to
|
149
|
+
* remain under this license does not apply to any document created
|
150
|
+
* using the Font Software.
|
151
|
+
*
|
152
|
+
* TERMINATION
|
153
|
+
* This license becomes null and void if any of the above conditions are
|
154
|
+
* not met.
|
155
|
+
*
|
156
|
+
* DISCLAIMER
|
157
|
+
* THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
158
|
+
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
|
159
|
+
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
|
160
|
+
* OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
|
161
|
+
* COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
162
|
+
* INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
|
163
|
+
* DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
164
|
+
* FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
|
165
|
+
* OTHER DEALINGS IN THE FONT SOFTWARE.
|
166
|
+
*/
|
167
|
+
|