add missing licenses
correct outdated info/instructions
This commit is contained in:
17
INSTALL
17
INSTALL
@ -1,20 +1,15 @@
|
|||||||
Syndie can be built from source with a modern (1.6+) java development kit. You
|
Syndie can be built from source with a modern (1.6+) java development kit. You
|
||||||
must have ant (1.7+), and the source release includes HSQLDB (1.8.0.7), though
|
must have ant (1.7+), and the source release includes HSQLDB (1.8.1.3).
|
||||||
newer revisions should work. You will need SWT as well - grab the latest
|
You will need SWT as well--grab the latest version for your OS and
|
||||||
version for your OS and architecture from http://www.eclipse.org/swt/ (or from
|
architecture from http://www.eclipse.org/swt/ (or from your favorite package
|
||||||
your favorite package manager).
|
manager).
|
||||||
|
|
||||||
I2P and SWT are required to compile Syndie. You could either
|
I2P and SWT are required to compile Syndie. You could either
|
||||||
- symlink i2p.jar and swt.jar to ./lib
|
|
||||||
- (recommended) set properties to tell the build process where to find
|
- (recommended) set properties to tell the build process where to find
|
||||||
the necessary jar files. See 'build.properties' for more information.
|
the necessary jar files. See 'build.properties' for more information.
|
||||||
|
- (not recommended) symlink i2p.jar and swt.jar to ./lib
|
||||||
|
|
||||||
Alternatively, add a line to the file nbproject/private/private.properties
|
To build a normal java instance, run "ant pkg". To build a self-contained
|
||||||
(creating a new directory or file if necessary):
|
|
||||||
swt.dir=../swt-I20061214-1445-gtk-linux-x86
|
|
||||||
(or whatever the path to the directory containing swt.jar is)
|
|
||||||
|
|
||||||
To build a normal java instance, run "ant jar". To build a self-contained
|
|
||||||
syndie.jar that includes the dependencies, run "ant dist".
|
syndie.jar that includes the dependencies, run "ant dist".
|
||||||
|
|
||||||
To run it from within the source directory, use "ant run". To run with the
|
To run it from within the source directory, use "ant run". To run with the
|
||||||
|
59
LICENSE
59
LICENSE
@ -2,14 +2,61 @@ Unless marked otherwise, all code and content making up this package
|
|||||||
is released into the public domain. Code included in this package
|
is released into the public domain. Code included in this package
|
||||||
must be under BSD or MIT compatible licenses.
|
must be under BSD or MIT compatible licenses.
|
||||||
|
|
||||||
HSQLDB 1.8.0.7 (hsqldb.jar and servlet.jar) is bundled and is licensed according to
|
HSQLDB 1.8.1.3 (hsqldb.jar) is bundled and is licensed according to
|
||||||
lib/hsqldb_lic.txt (BSD-like)
|
lib/hsqldb_lic.txt (BSD-like)
|
||||||
|
|
||||||
The jazzy 0.5.2 spellchecking engine (under src/com/swabunga) is bundled
|
The jazzy 0.5.2 spellchecking engine (under src/com/swabunga) is bundled
|
||||||
and is LGPL v2.1 licensed.
|
and is LGPL v2.1 licensed.
|
||||||
|
|
||||||
SWT is used for the GUI, and is either bundled with various installers
|
SWT is used for the GUI, and is either bundled with various installers or is
|
||||||
or is linked by the end user. The bundled releases are distributed
|
linked by the end user. The bundled releases are distributed under SWT's terms
|
||||||
under SWT's terms (the Eclipse Public License) - see LICENSE-EPL-v1.0.html. Most icons
|
(the Eclipse Public License) - see LICENSE-EPL-v1.0.html. Most icons included
|
||||||
included in Syndie's GUI come from Eclipse and are licensed under the
|
in Syndie's GUI come from Eclipse and are licensed under the EPL as well.
|
||||||
EPL as well.
|
|
||||||
|
I2P's core (i2p.jar) is bundled with various installers or is linked by the end
|
||||||
|
user and is released into public domain except as listed below:
|
||||||
|
|
||||||
|
ElGamal and DSA code:
|
||||||
|
Copyright (c) 2003, TheCrypto
|
||||||
|
See doc/licenses/LICENSE-ElGamalDSA.txt
|
||||||
|
|
||||||
|
SHA256 and HMAC-SHA256:
|
||||||
|
Copyright (c) 2000 - 2004 The Legion Of The Bouncy Castle
|
||||||
|
See doc/licenses/LICENSE-SHA256.txt
|
||||||
|
|
||||||
|
AES code:
|
||||||
|
Copyright (c) 1995-2005 The Cryptix Foundation Limited.
|
||||||
|
See doc/licenses/LICENSE-Cryptix.txt
|
||||||
|
|
||||||
|
Crypto filters:
|
||||||
|
From the xlattice app - http://xlattice.sourceforge.net/
|
||||||
|
See doc/licenses/LICENSE-BSD.txt
|
||||||
|
|
||||||
|
SNTP code:
|
||||||
|
Copyright (c) 2004, Adam Buckley
|
||||||
|
See doc/licenses/LICENSE-SNTP.txt
|
||||||
|
|
||||||
|
PRNG:
|
||||||
|
Copyright (C) 2001, 2002, Free Software Foundation, Inc.
|
||||||
|
See doc/licenses/LICENSE-LGPLv2.1.txt
|
||||||
|
|
||||||
|
HashCash code:
|
||||||
|
Copyright 2006 Gregory Rubin grrubin@gmail.com
|
||||||
|
See doc/licenses/LICENSE-HashCash.txt
|
||||||
|
|
||||||
|
GettextResource from gettext v0.18:
|
||||||
|
Copyright (C) 2001, 2007 Free Software Foundation, Inc.
|
||||||
|
See doc/licenses/LICENSE-LGPLv2.1.txt
|
||||||
|
|
||||||
|
SSLEepGet:
|
||||||
|
Contains some code Copyright 2006 Sun Microsystems, Inc.
|
||||||
|
See doc/licenses/LICENSE-InstallCert.txt
|
||||||
|
|
||||||
|
BlockFile:
|
||||||
|
Copyright (c) 2006, Matthew Estes
|
||||||
|
See doc/licenses/LICENSE-BlockFile.txt
|
||||||
|
|
||||||
|
SipHashInline:
|
||||||
|
Copyright 2012 Hiroshi Nakamura <nahi@ruby-lang.org>
|
||||||
|
See doc/licenses/LICENSE-Apache2.0.txt
|
||||||
|
|
||||||
|
8
README
8
README
@ -8,15 +8,13 @@ This package contains:
|
|||||||
- CHANGES: change log for Syndie
|
- CHANGES: change log for Syndie
|
||||||
- CREDITS: who has contributed to the Syndie development effort
|
- CREDITS: who has contributed to the Syndie development effort
|
||||||
- LICENSE: license information for the Syndie codebase
|
- LICENSE: license information for the Syndie codebase
|
||||||
|
- data/: various resources e.g. images, db updates, etc.
|
||||||
- doc/syndie.1: unix style manual page for the syndie command
|
- doc/syndie.1: unix style manual page for the syndie command
|
||||||
- doc/web/: HTML documentation for Syndie
|
- doc/web/: HTML documentation for Syndie
|
||||||
- bin/: contains the main Syndie command, sample Syndie scripts,
|
- bin/: contains the main Syndie commands, sample Syndie scripts,
|
||||||
and an example perl CGI for operating an HTTP archive
|
and an example perl CGI for operating an HTTP archive
|
||||||
- lib/: compiled java libraries
|
- lib/: compiled java libraries
|
||||||
- resources/: localized data, etc
|
- resources/: misc. things not shipped in syndie.jar
|
||||||
- src/: source code
|
- src/: source code
|
||||||
- Makefile.nix: makefile for building syndie with GCJ for the current platform
|
|
||||||
- Makefile.mingw: build a native windows executable with mingw/GCJ from *nix
|
|
||||||
- build.xml: build the java code
|
- build.xml: build the java code
|
||||||
- nbproject/: developer setup for NetBeans users
|
|
||||||
|
|
||||||
|
13
build.xml
13
build.xml
@ -684,8 +684,19 @@
|
|||||||
<copy todir="${pkgtemp.dir}/doc/web">
|
<copy todir="${pkgtemp.dir}/doc/web">
|
||||||
<fileset dir="doc/web" />
|
<fileset dir="doc/web" />
|
||||||
</copy>
|
</copy>
|
||||||
<copy file="LICENSE" todir="${pkgtemp.dir}/doc/licenses"/>
|
<copy file="LICENSE" todir="${pkgtemp.dir}/doc/"/>
|
||||||
<copy file="lib/hsqldb_lic.txt" todir="${pkgtemp.dir}/doc/licenses" />
|
<copy file="lib/hsqldb_lic.txt" todir="${pkgtemp.dir}/doc/licenses" />
|
||||||
|
<copy todir="${pkgtemp.dir}/doc/licenses">
|
||||||
|
<fileset dir="doc/licenses/" excludes="SWT/**" />
|
||||||
|
</copy>
|
||||||
|
<replaceregexp file="${pkgtemp.dir}/doc/LICENSE" byline="true"
|
||||||
|
match="doc/licenses/"
|
||||||
|
replace="licenses/">
|
||||||
|
</replaceregexp>
|
||||||
|
<replaceregexp file="${pkgtemp.dir}/doc/LICENSE" byline="true"
|
||||||
|
match="lib/hsqldb_lic.txt"
|
||||||
|
replace="licenses/hsqldb_lic.txt">
|
||||||
|
</replaceregexp>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
|
|
||||||
|
202
doc/licenses/LICENSE-Apache2.0.txt
Normal file
202
doc/licenses/LICENSE-Apache2.0.txt
Normal file
@ -0,0 +1,202 @@
|
|||||||
|
|
||||||
|
Apache License
|
||||||
|
Version 2.0, January 2004
|
||||||
|
http://www.apache.org/licenses/
|
||||||
|
|
||||||
|
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
||||||
|
|
||||||
|
1. Definitions.
|
||||||
|
|
||||||
|
"License" shall mean the terms and conditions for use, reproduction,
|
||||||
|
and distribution as defined by Sections 1 through 9 of this document.
|
||||||
|
|
||||||
|
"Licensor" shall mean the copyright owner or entity authorized by
|
||||||
|
the copyright owner that is granting the License.
|
||||||
|
|
||||||
|
"Legal Entity" shall mean the union of the acting entity and all
|
||||||
|
other entities that control, are controlled by, or are under common
|
||||||
|
control with that entity. For the purposes of this definition,
|
||||||
|
"control" means (i) the power, direct or indirect, to cause the
|
||||||
|
direction or management of such entity, whether by contract or
|
||||||
|
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
||||||
|
outstanding shares, or (iii) beneficial ownership of such entity.
|
||||||
|
|
||||||
|
"You" (or "Your") shall mean an individual or Legal Entity
|
||||||
|
exercising permissions granted by this License.
|
||||||
|
|
||||||
|
"Source" form shall mean the preferred form for making modifications,
|
||||||
|
including but not limited to software source code, documentation
|
||||||
|
source, and configuration files.
|
||||||
|
|
||||||
|
"Object" form shall mean any form resulting from mechanical
|
||||||
|
transformation or translation of a Source form, including but
|
||||||
|
not limited to compiled object code, generated documentation,
|
||||||
|
and conversions to other media types.
|
||||||
|
|
||||||
|
"Work" shall mean the work of authorship, whether in Source or
|
||||||
|
Object form, made available under the License, as indicated by a
|
||||||
|
copyright notice that is included in or attached to the work
|
||||||
|
(an example is provided in the Appendix below).
|
||||||
|
|
||||||
|
"Derivative Works" shall mean any work, whether in Source or Object
|
||||||
|
form, that is based on (or derived from) the Work and for which the
|
||||||
|
editorial revisions, annotations, elaborations, or other modifications
|
||||||
|
represent, as a whole, an original work of authorship. For the purposes
|
||||||
|
of this License, Derivative Works shall not include works that remain
|
||||||
|
separable from, or merely link (or bind by name) to the interfaces of,
|
||||||
|
the Work and Derivative Works thereof.
|
||||||
|
|
||||||
|
"Contribution" shall mean any work of authorship, including
|
||||||
|
the original version of the Work and any modifications or additions
|
||||||
|
to that Work or Derivative Works thereof, that is intentionally
|
||||||
|
submitted to Licensor for inclusion in the Work by the copyright owner
|
||||||
|
or by an individual or Legal Entity authorized to submit on behalf of
|
||||||
|
the copyright owner. For the purposes of this definition, "submitted"
|
||||||
|
means any form of electronic, verbal, or written communication sent
|
||||||
|
to the Licensor or its representatives, including but not limited to
|
||||||
|
communication on electronic mailing lists, source code control systems,
|
||||||
|
and issue tracking systems that are managed by, or on behalf of, the
|
||||||
|
Licensor for the purpose of discussing and improving the Work, but
|
||||||
|
excluding communication that is conspicuously marked or otherwise
|
||||||
|
designated in writing by the copyright owner as "Not a Contribution."
|
||||||
|
|
||||||
|
"Contributor" shall mean Licensor and any individual or Legal Entity
|
||||||
|
on behalf of whom a Contribution has been received by Licensor and
|
||||||
|
subsequently incorporated within the Work.
|
||||||
|
|
||||||
|
2. Grant of Copyright License. Subject to the terms and conditions of
|
||||||
|
this License, each Contributor hereby grants to You a perpetual,
|
||||||
|
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||||
|
copyright license to reproduce, prepare Derivative Works of,
|
||||||
|
publicly display, publicly perform, sublicense, and distribute the
|
||||||
|
Work and such Derivative Works in Source or Object form.
|
||||||
|
|
||||||
|
3. Grant of Patent License. Subject to the terms and conditions of
|
||||||
|
this License, each Contributor hereby grants to You a perpetual,
|
||||||
|
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||||
|
(except as stated in this section) patent license to make, have made,
|
||||||
|
use, offer to sell, sell, import, and otherwise transfer the Work,
|
||||||
|
where such license applies only to those patent claims licensable
|
||||||
|
by such Contributor that are necessarily infringed by their
|
||||||
|
Contribution(s) alone or by combination of their Contribution(s)
|
||||||
|
with the Work to which such Contribution(s) was submitted. If You
|
||||||
|
institute patent litigation against any entity (including a
|
||||||
|
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
||||||
|
or a Contribution incorporated within the Work constitutes direct
|
||||||
|
or contributory patent infringement, then any patent licenses
|
||||||
|
granted to You under this License for that Work shall terminate
|
||||||
|
as of the date such litigation is filed.
|
||||||
|
|
||||||
|
4. Redistribution. You may reproduce and distribute copies of the
|
||||||
|
Work or Derivative Works thereof in any medium, with or without
|
||||||
|
modifications, and in Source or Object form, provided that You
|
||||||
|
meet the following conditions:
|
||||||
|
|
||||||
|
(a) You must give any other recipients of the Work or
|
||||||
|
Derivative Works a copy of this License; and
|
||||||
|
|
||||||
|
(b) You must cause any modified files to carry prominent notices
|
||||||
|
stating that You changed the files; and
|
||||||
|
|
||||||
|
(c) You must retain, in the Source form of any Derivative Works
|
||||||
|
that You distribute, all copyright, patent, trademark, and
|
||||||
|
attribution notices from the Source form of the Work,
|
||||||
|
excluding those notices that do not pertain to any part of
|
||||||
|
the Derivative Works; and
|
||||||
|
|
||||||
|
(d) If the Work includes a "NOTICE" text file as part of its
|
||||||
|
distribution, then any Derivative Works that You distribute must
|
||||||
|
include a readable copy of the attribution notices contained
|
||||||
|
within such NOTICE file, excluding those notices that do not
|
||||||
|
pertain to any part of the Derivative Works, in at least one
|
||||||
|
of the following places: within a NOTICE text file distributed
|
||||||
|
as part of the Derivative Works; within the Source form or
|
||||||
|
documentation, if provided along with the Derivative Works; or,
|
||||||
|
within a display generated by the Derivative Works, if and
|
||||||
|
wherever such third-party notices normally appear. The contents
|
||||||
|
of the NOTICE file are for informational purposes only and
|
||||||
|
do not modify the License. You may add Your own attribution
|
||||||
|
notices within Derivative Works that You distribute, alongside
|
||||||
|
or as an addendum to the NOTICE text from the Work, provided
|
||||||
|
that such additional attribution notices cannot be construed
|
||||||
|
as modifying the License.
|
||||||
|
|
||||||
|
You may add Your own copyright statement to Your modifications and
|
||||||
|
may provide additional or different license terms and conditions
|
||||||
|
for use, reproduction, or distribution of Your modifications, or
|
||||||
|
for any such Derivative Works as a whole, provided Your use,
|
||||||
|
reproduction, and distribution of the Work otherwise complies with
|
||||||
|
the conditions stated in this License.
|
||||||
|
|
||||||
|
5. Submission of Contributions. Unless You explicitly state otherwise,
|
||||||
|
any Contribution intentionally submitted for inclusion in the Work
|
||||||
|
by You to the Licensor shall be under the terms and conditions of
|
||||||
|
this License, without any additional terms or conditions.
|
||||||
|
Notwithstanding the above, nothing herein shall supersede or modify
|
||||||
|
the terms of any separate license agreement you may have executed
|
||||||
|
with Licensor regarding such Contributions.
|
||||||
|
|
||||||
|
6. Trademarks. This License does not grant permission to use the trade
|
||||||
|
names, trademarks, service marks, or product names of the Licensor,
|
||||||
|
except as required for reasonable and customary use in describing the
|
||||||
|
origin of the Work and reproducing the content of the NOTICE file.
|
||||||
|
|
||||||
|
7. Disclaimer of Warranty. Unless required by applicable law or
|
||||||
|
agreed to in writing, Licensor provides the Work (and each
|
||||||
|
Contributor provides its Contributions) on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
||||||
|
implied, including, without limitation, any warranties or conditions
|
||||||
|
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
||||||
|
PARTICULAR PURPOSE. You are solely responsible for determining the
|
||||||
|
appropriateness of using or redistributing the Work and assume any
|
||||||
|
risks associated with Your exercise of permissions under this License.
|
||||||
|
|
||||||
|
8. Limitation of Liability. In no event and under no legal theory,
|
||||||
|
whether in tort (including negligence), contract, or otherwise,
|
||||||
|
unless required by applicable law (such as deliberate and grossly
|
||||||
|
negligent acts) or agreed to in writing, shall any Contributor be
|
||||||
|
liable to You for damages, including any direct, indirect, special,
|
||||||
|
incidental, or consequential damages of any character arising as a
|
||||||
|
result of this License or out of the use or inability to use the
|
||||||
|
Work (including but not limited to damages for loss of goodwill,
|
||||||
|
work stoppage, computer failure or malfunction, or any and all
|
||||||
|
other commercial damages or losses), even if such Contributor
|
||||||
|
has been advised of the possibility of such damages.
|
||||||
|
|
||||||
|
9. Accepting Warranty or Additional Liability. While redistributing
|
||||||
|
the Work or Derivative Works thereof, You may choose to offer,
|
||||||
|
and charge a fee for, acceptance of support, warranty, indemnity,
|
||||||
|
or other liability obligations and/or rights consistent with this
|
||||||
|
License. However, in accepting such obligations, You may act only
|
||||||
|
on Your own behalf and on Your sole responsibility, not on behalf
|
||||||
|
of any other Contributor, and only if You agree to indemnify,
|
||||||
|
defend, and hold each Contributor harmless for any liability
|
||||||
|
incurred by, or claims asserted against, such Contributor by reason
|
||||||
|
of your accepting any such warranty or additional liability.
|
||||||
|
|
||||||
|
END OF TERMS AND CONDITIONS
|
||||||
|
|
||||||
|
APPENDIX: How to apply the Apache License to your work.
|
||||||
|
|
||||||
|
To apply the Apache License to your work, attach the following
|
||||||
|
boilerplate notice, with the fields enclosed by brackets "[]"
|
||||||
|
replaced with your own identifying information. (Don't include
|
||||||
|
the brackets!) The text should be enclosed in the appropriate
|
||||||
|
comment syntax for the file format. We also recommend that a
|
||||||
|
file or class name and description of purpose be included on the
|
||||||
|
same "printed page" as the copyright notice for easier
|
||||||
|
identification within third-party archives.
|
||||||
|
|
||||||
|
Copyright [yyyy] [name of copyright owner]
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
27
doc/licenses/LICENSE-BSD.txt
Normal file
27
doc/licenses/LICENSE-BSD.txt
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
Copyright (c) 2009, The I2P Project
|
||||||
|
All rights reserved.
|
||||||
|
|
||||||
|
Redistribution and use in source and binary forms, with or without
|
||||||
|
modification, are permitted provided that the following conditions are met:
|
||||||
|
|
||||||
|
* Redistributions of source code must retain the above copyright
|
||||||
|
notice, this list of conditions and the following disclaimer.
|
||||||
|
* Redistributions in binary form must reproduce the above copyright
|
||||||
|
notice, this list of conditions and the following disclaimer in
|
||||||
|
the documentation and/or other materials provided with the
|
||||||
|
distribution.
|
||||||
|
* Neither the name of the I2P nor the names of its
|
||||||
|
contributors may be used to endorse or promote products derived
|
||||||
|
from this software without specific prior written permission.
|
||||||
|
|
||||||
|
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.
|
26
doc/licenses/LICENSE-BlockFile.txt
Normal file
26
doc/licenses/LICENSE-BlockFile.txt
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
Copyright (c) 2006, Matthew Estes
|
||||||
|
All rights reserved.
|
||||||
|
|
||||||
|
Redistribution and use in source and binary forms, with or without
|
||||||
|
modification, are permitted provided that the following conditions are met:
|
||||||
|
|
||||||
|
* Redistributions of source code must retain the above copyright
|
||||||
|
notice, this list of conditions and the following disclaimer.
|
||||||
|
* Redistributions in binary form must reproduce the above copyright
|
||||||
|
notice, this list of conditions and the following disclaimer in the
|
||||||
|
documentation and/or other materials provided with the distribution.
|
||||||
|
* Neither the name of Metanotion Software nor the names of its
|
||||||
|
contributors may be used to endorse or promote products derived from this
|
||||||
|
software without specific prior written permission.
|
||||||
|
|
||||||
|
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.
|
28
doc/licenses/LICENSE-Cryptix.txt
Normal file
28
doc/licenses/LICENSE-Cryptix.txt
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
Cryptix General License
|
||||||
|
|
||||||
|
Copyright (c) 1995-2005 The Cryptix Foundation Limited.
|
||||||
|
All rights reserved.
|
||||||
|
|
||||||
|
Redistribution and use in source and binary forms, with or without
|
||||||
|
modification, are permitted provided that the following conditions are
|
||||||
|
met:
|
||||||
|
|
||||||
|
1. Redistributions of source code must retain the copyright notice,
|
||||||
|
this list of conditions and the following disclaimer.
|
||||||
|
2. Redistributions in binary form must reproduce the above copyright
|
||||||
|
notice, this list of conditions and the following disclaimer in
|
||||||
|
the documentation and/or other materials provided with the
|
||||||
|
distribution.
|
||||||
|
|
||||||
|
THIS SOFTWARE IS PROVIDED BY THE CRYPTIX FOUNDATION LIMITED 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 CRYPTIX FOUNDATION LIMITED 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.
|
28
doc/licenses/LICENSE-ElGamalDSA.txt
Normal file
28
doc/licenses/LICENSE-ElGamalDSA.txt
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2003, TheCrypto
|
||||||
|
* All rights reserved.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* - Redistributions of source code must retain the above copyright notice, this
|
||||||
|
* list of conditions and the following disclaimer.
|
||||||
|
* - Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
* this list of conditions and the following disclaimer in the documentation
|
||||||
|
* and/or other materials provided with the distribution.
|
||||||
|
* - Neither the name of the TheCrypto may be used to endorse or promote
|
||||||
|
* products derived from this software without specific prior written
|
||||||
|
* permission.
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
*/
|
2
doc/licenses/LICENSE-HashCash.txt
Normal file
2
doc/licenses/LICENSE-HashCash.txt
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
Copyright 2006 Gregory Rubin grrubin@gmail.com
|
||||||
|
Permission is given to use, modify, and or distribute this code so long as this message remains attached
|
29
doc/licenses/LICENSE-InstallCert.txt
Normal file
29
doc/licenses/LICENSE-InstallCert.txt
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
Copyright 2006 Sun Microsystems, Inc. All Rights Reserved.
|
||||||
|
|
||||||
|
Redistribution and use in source and binary forms, with or without
|
||||||
|
modification, are permitted provided that the following conditions
|
||||||
|
are met:
|
||||||
|
|
||||||
|
- Redistributions of source code must retain the above copyright
|
||||||
|
notice, this list of conditions and the following disclaimer.
|
||||||
|
|
||||||
|
- Redistributions in binary form must reproduce the above copyright
|
||||||
|
notice, this list of conditions and the following disclaimer in the
|
||||||
|
documentation and/or other materials provided with the distribution.
|
||||||
|
|
||||||
|
- Neither the name of Sun Microsystems nor the names of its
|
||||||
|
contributors may be used to endorse or promote products derived
|
||||||
|
from this software without specific prior written permission.
|
||||||
|
|
||||||
|
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.
|
||||||
|
|
26
doc/licenses/LICENSE-SHA256.txt
Normal file
26
doc/licenses/LICENSE-SHA256.txt
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2000 - 2004 The Legion Of The Bouncy Castle
|
||||||
|
* (http://www.bouncycastle.org)
|
||||||
|
*
|
||||||
|
* 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:
|
||||||
|
*
|
||||||
|
* The above copyright notice and this permission notice shall be
|
||||||
|
* included in all copies or substantial portions of the Software.
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
*
|
||||||
|
*/
|
43
doc/licenses/LICENSE-SNTP.txt
Normal file
43
doc/licenses/LICENSE-SNTP.txt
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
> Date: Fri, 13 Aug 2004 15:58:30 +1200 (NZST)
|
||||||
|
> Message-ID: <1776.202.37.75.101.1092369510.squirrel@202.37.75.101>
|
||||||
|
> From: adam@adambuckley.net
|
||||||
|
> To: jrandom@i2p.net
|
||||||
|
>
|
||||||
|
> [...]
|
||||||
|
>
|
||||||
|
> I hereby authorize my NtpClient.java and NtpMessage.java code to be
|
||||||
|
> redistributed under the BSD license for the purpose of integration with
|
||||||
|
> the I2P project, providing that I am credited as the original author of
|
||||||
|
> the code.
|
||||||
|
>
|
||||||
|
> [...]
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2004, Adam Buckley
|
||||||
|
* All rights reserved.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* - Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions and the following disclaimer.
|
||||||
|
* - Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
* this list of conditions and the following disclaimer in the documentation
|
||||||
|
* and/or other materials provided with the distribution.
|
||||||
|
* - Neither the name of Adam Buckley nor the names of its contributors may be
|
||||||
|
* used to endorse or promote products derived from this software without
|
||||||
|
* specific prior written permission.
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
*
|
||||||
|
*/
|
Reference in New Issue
Block a user