mirror of
https://github.com/go-gitea/gitea.git
synced 2024-12-13 16:09:48 +08:00
[skip ci] Updated licenses and gitignores
This commit is contained in:
parent
c986718965
commit
145b583631
@ -29,7 +29,7 @@ CASS.ini
|
||||
*.gzlc
|
||||
|
||||
## gitignore reference sites
|
||||
# https://git-scm.com/book/en/v2/Git-Basics-Recording-Changes-to-the-Repository#Ignoring-Files
|
||||
# https://git-scm.com/book/en/v2/Git-Basics-Recording-Changes-to-the-Repository#_ignoring
|
||||
# https://git-scm.com/docs/gitignore
|
||||
# https://help.github.com/articles/ignoring-files/
|
||||
|
||||
|
62
options/gitignore/ECU-TEST
Normal file
62
options/gitignore/ECU-TEST
Normal file
@ -0,0 +1,62 @@
|
||||
# gitignore template for ECU-TEST workspaces - by TraceTronic https://tracetronic.com
|
||||
# website: https://www.ecu-test.com
|
||||
# * all directories are related to the default directories, please adapt the .gitignore if you use customized
|
||||
# directories
|
||||
|
||||
# Dynamic workspace settings
|
||||
# * We don't recommend to ignore the .workspace directory, because of important project specific settings
|
||||
# local user settings
|
||||
.workspace/ETdrive.xml
|
||||
.workspace/favorites.xml
|
||||
.workspace/filters.xml
|
||||
.workspace/generators.xml
|
||||
.workspace/history.xml
|
||||
.workspace/parallelExecution.xml
|
||||
.workspace/signalviewer.xml
|
||||
.workspace/signalViewerHistory.json
|
||||
.workspace/signalviewer2layout.xml
|
||||
.workspace/testeditor.xml
|
||||
.workspace/tooladapter.xml
|
||||
.workspace/view.xml
|
||||
# optional, if your process depends on this file remove exclusion
|
||||
.workspace/interactiveexecution.xml
|
||||
.workspace/pythonlibrary.xml
|
||||
# deprecated, support for older versions
|
||||
.workspace/traceexplorer.xml
|
||||
|
||||
# Custom file formats and test dependencies
|
||||
# * you can manage your artifacts also with TEST-GUIDE (https://www.test-guide.info) and reference them via Playbooks
|
||||
*.arxml
|
||||
*.a2l
|
||||
*.dbc
|
||||
*.hex
|
||||
*.s19
|
||||
[tT]estdata
|
||||
[tT]estdaten
|
||||
|
||||
# Test results and test execution related content
|
||||
# * Git is not intended to store and provide test results for all iterations
|
||||
# * We recommend to use TEST-GUIDE (https://www.test-guide.info) for the test report management
|
||||
TestReports
|
||||
|
||||
# Report generators and templates
|
||||
# * if you want to provide (f.e.) your own report generators exclude the directory here and ignore only the
|
||||
# unnecessary subdirectories
|
||||
Templates
|
||||
|
||||
# Exclude large binary artifacts
|
||||
# * you can manage your artifacts also with TEST-GUIDE (https://www.test-guide.info) and reference them via Playbooks
|
||||
Offline-FIUs
|
||||
Offline-Models
|
||||
Offline-SGBDs
|
||||
*.exe
|
||||
*.msi
|
||||
*.zip
|
||||
*.7z
|
||||
|
||||
# Exclude default and custom temporary directories
|
||||
Backup_*
|
||||
|
||||
# Python bytecode and cache files
|
||||
__pycache__/
|
||||
*.py[cod]
|
@ -22,3 +22,6 @@
|
||||
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
|
||||
hs_err_pid*
|
||||
replay_pid*
|
||||
|
||||
# Kotlin Gradle plugin data, see https://kotlinlang.org/docs/whatsnew20.html#new-directory-for-kotlin-data-in-gradle-projects
|
||||
.kotlin/
|
@ -21,3 +21,10 @@ Homestead.yaml
|
||||
Homestead.json
|
||||
/.vagrant
|
||||
.phpunit.result.cache
|
||||
|
||||
/public/build
|
||||
/storage/pail
|
||||
.env.backup
|
||||
.env.production
|
||||
.phpactor.json
|
||||
auth.json
|
||||
|
6
options/gitignore/Move
Normal file
6
options/gitignore/Move
Normal file
@ -0,0 +1,6 @@
|
||||
# Generated by Move
|
||||
# will have compiled files
|
||||
build/
|
||||
|
||||
# Remove possibly saving credentials to the git repository
|
||||
.aptos/
|
42
options/gitignore/OpenTofu
Normal file
42
options/gitignore/OpenTofu
Normal file
@ -0,0 +1,42 @@
|
||||
# Local .terraform directories
|
||||
**/.terraform/*
|
||||
|
||||
# .tfstate files
|
||||
*.tfstate
|
||||
*.tfstate.*
|
||||
|
||||
# Crash log files
|
||||
crash.log
|
||||
crash.*.log
|
||||
|
||||
# Exclude all .tfvars files, which are likely to contain sensitive data, such as
|
||||
# password, private keys, and other secrets. These should not be part of version
|
||||
# control as they are data points which are potentially sensitive and subject
|
||||
# to change depending on the environment.
|
||||
*.tfvars
|
||||
*.tfvars.json
|
||||
|
||||
# Ignore override files as they are usually used to override resources locally and so
|
||||
# are not checked in
|
||||
override.tf
|
||||
override.tofu
|
||||
override.tf.json
|
||||
override.tofu.json
|
||||
*_override.tf
|
||||
*_override.tofu
|
||||
*_override.tf.json
|
||||
*_override.tofu.json
|
||||
|
||||
# Ignore transient lock info files created by tofu apply
|
||||
.terraform.tfstate.lock.info
|
||||
|
||||
# Include override files you do wish to add to version control using negated pattern
|
||||
# !example_override.tf
|
||||
# !example_override.tofu
|
||||
|
||||
# Include tfplan files to ignore the plan output of command: tofu plan -out=tfplan
|
||||
# example: *tfplan*
|
||||
|
||||
# Ignore CLI configuration files
|
||||
.terraformrc
|
||||
terraform.rc
|
@ -94,6 +94,12 @@ ipython_config.py
|
||||
# install all needed dependencies.
|
||||
#Pipfile.lock
|
||||
|
||||
# UV
|
||||
# Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
|
||||
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
||||
# commonly ignored for libraries.
|
||||
#uv.lock
|
||||
|
||||
# poetry
|
||||
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
|
||||
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
||||
|
@ -59,6 +59,7 @@ sysinfo.txt
|
||||
*.apk
|
||||
*.aab
|
||||
*.unitypackage
|
||||
*.unitypackage.meta
|
||||
*.app
|
||||
|
||||
# Crashlytics generated file
|
||||
|
@ -82,6 +82,8 @@ StyleCopReport.xml
|
||||
*.pgc
|
||||
*.pgd
|
||||
*.rsp
|
||||
# but not Directory.Build.rsp, as it configures directory-level build defaults
|
||||
!Directory.Build.rsp
|
||||
*.sbr
|
||||
*.tlb
|
||||
*.tli
|
||||
|
27
options/license/CC-PDM-1.0
Normal file
27
options/license/CC-PDM-1.0
Normal file
@ -0,0 +1,27 @@
|
||||
No Copyright
|
||||
|
||||
This work has been identified as being free of known restrictions under
|
||||
copyright law, including all related and neighboring rights.
|
||||
|
||||
|
||||
You can copy, modify, distribute and perform the work, even for commercial
|
||||
purposes, all without asking permission. See Other Information below.
|
||||
|
||||
Other Information
|
||||
|
||||
The work may not be free of known copyright restrictions in all jurisdictions .
|
||||
|
||||
Persons may have other rights in or related to the work, such as patent or
|
||||
trademark rights, and others may have rights in how the work is used, such as
|
||||
publicity or privacy rights.
|
||||
|
||||
In some jurisdictions moral rights of the author may persist beyond the term of
|
||||
copyright. These rights may include the right to be identified as the author
|
||||
and the right to object to derogatory treatments.
|
||||
|
||||
Unless expressly stated otherwise, the person who identified the work makes no
|
||||
warranties about the work, and disclaims liability for all uses of the work, to
|
||||
the fullest extent permitted by applicable law.
|
||||
|
||||
When using or citing the work, you should not imply endorsement by the author
|
||||
or the person who identified the work.
|
198
options/license/CC-SA-1.0
Normal file
198
options/license/CC-SA-1.0
Normal file
@ -0,0 +1,198 @@
|
||||
Creative Commons Legal Code
|
||||
|
||||
ShareAlike 1.0
|
||||
|
||||
CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL
|
||||
SERVICES. DISTRIBUTION OF THIS DRAFT LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT
|
||||
RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS.
|
||||
CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND
|
||||
DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE.
|
||||
|
||||
License
|
||||
|
||||
THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE
|
||||
COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY
|
||||
COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS
|
||||
AUTHORIZED UNDER THIS LICENSE IS PROHIBITED.
|
||||
|
||||
BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE
|
||||
BOUND BY THE TERMS OF THIS LICENSE. THE LICENSOR GRANTS YOU THE RIGHTS
|
||||
CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND
|
||||
CONDITIONS.
|
||||
|
||||
1. Definitions
|
||||
|
||||
a. "Collective Work" means a work, such as a periodical issue, anthology or
|
||||
encyclopedia, in which the Work in its entirety in unmodified form, along
|
||||
with a number of other contributions, constituting separate and independent
|
||||
works in themselves, are assembled into a collective whole. A work that
|
||||
constitutes a Collective Work will not be considered a Derivative Work (as
|
||||
defined below) for the purposes of this License.
|
||||
b. "Derivative Work" means a work based upon the Work or upon the Work and
|
||||
other pre-existing works, such as a translation, musical arrangement,
|
||||
dramatization, fictionalization, motion picture version, sound recording,
|
||||
art reproduction, abridgment, condensation, or any other form in which the
|
||||
Work may be recast, transformed, or adapted, except that a work that
|
||||
constitutes a Collective Work will not be considered a Derivative Work for
|
||||
the purpose of this License.
|
||||
c. "Licensor" means the individual or entity that offers the Work under the
|
||||
terms of this License.
|
||||
d. "Original Author" means the individual or entity who created the Work.
|
||||
e. "Work" means the copyrightable work of authorship offered under the terms
|
||||
of this License.
|
||||
f. "You" means an individual or entity exercising rights under this License
|
||||
who has not previously violated the terms of this License with respect to
|
||||
the Work, or who has received express permission from the Licensor to
|
||||
exercise rights under this License despite a previous violation.
|
||||
|
||||
2. Fair Use Rights. Nothing in this license is intended to reduce, limit, or
|
||||
restrict any rights arising from fair use, first sale or other limitations on
|
||||
the exclusive rights of the copyright owner under copyright law or other
|
||||
applicable laws.
|
||||
|
||||
3. License Grant. Subject to the terms and conditions of this License, Licensor
|
||||
hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the
|
||||
duration of the applicable copyright) license to exercise the rights in the
|
||||
Work as stated below:
|
||||
|
||||
a. to reproduce the Work, to incorporate the Work into one or more Collective
|
||||
Works, and to reproduce the Work as incorporated in the Collective Works;
|
||||
b. to create and reproduce Derivative Works;
|
||||
c. to distribute copies or phonorecords of, display publicly, perform
|
||||
publicly, and perform publicly by means of a digital audio transmission the
|
||||
Work including as incorporated in Collective Works;
|
||||
d. to distribute copies or phonorecords of, display publicly, perform
|
||||
publicly, and perform publicly by means of a digital audio transmission
|
||||
Derivative Works;
|
||||
|
||||
The above rights may be exercised in all media and formats whether now known or
|
||||
hereafter devised. The above rights include the right to make such
|
||||
modifications as are technically necessary to exercise the rights in other
|
||||
media and formats. All rights not expressly granted by Licensor are hereby
|
||||
reserved.
|
||||
|
||||
4. Restrictions. The license granted in Section 3 above is expressly made
|
||||
subject to and limited by the following restrictions:
|
||||
|
||||
a. You may distribute, publicly display, publicly perform, or publicly
|
||||
digitally perform the Work only under the terms of this License, and You
|
||||
must include a copy of, or the Uniform Resource Identifier for, this
|
||||
License with every copy or phonorecord of the Work You distribute, publicly
|
||||
display, publicly perform, or publicly digitally perform. You may not offer
|
||||
or impose any terms on the Work that alter or restrict the terms of this
|
||||
License or the recipients' exercise of the rights granted hereunder. You
|
||||
may not sublicense the Work. You must keep intact all notices that refer to
|
||||
this License and to the disclaimer of warranties. You may not distribute,
|
||||
publicly display, publicly perform, or publicly digitally perform the Work
|
||||
with any technological measures that control access or use of the Work in a
|
||||
manner inconsistent with the terms of this License Agreement. The above
|
||||
applies to the Work as incorporated in a Collective Work, but this does not
|
||||
require the Collective Work apart from the Work itself to be made subject
|
||||
to the terms of this License. If You create a Collective Work, upon notice
|
||||
from any Licensor You must, to the extent practicable, remove from the
|
||||
Collective Work any reference to such Licensor or the Original Author, as
|
||||
requested. If You create a Derivative Work, upon notice from any Licensor
|
||||
You must, to the extent practicable, remove from the Derivative Work any
|
||||
reference to such Licensor or the Original Author, as requested.
|
||||
b. You may distribute, publicly display, publicly perform, or publicly
|
||||
digitally perform a Derivative Work only under the terms of this License,
|
||||
and You must include a copy of, or the Uniform Resource Identifier for,
|
||||
this License with every copy or phonorecord of each Derivative Work You
|
||||
distribute, publicly display, publicly perform, or publicly digitally
|
||||
perform. You may not offer or impose any terms on the Derivative Works that
|
||||
alter or restrict the terms of this License or the recipients' exercise of
|
||||
the rights granted hereunder, and You must keep intact all notices that
|
||||
refer to this License and to the disclaimer of warranties. You may not
|
||||
distribute, publicly display, publicly perform, or publicly digitally
|
||||
perform the Derivative Work with any technological measures that control
|
||||
access or use of the Work in a manner inconsistent with the terms of this
|
||||
License Agreement. The above applies to the Derivative Work as incorporated
|
||||
in a Collective Work, but this does not require the Collective Work apart
|
||||
from the Derivative Work itself to be made subject to the terms of this
|
||||
License.
|
||||
|
||||
5. Representations, Warranties and Disclaimer
|
||||
|
||||
a. By offering the Work for public release under this License, Licensor
|
||||
represents and warrants that, to the best of Licensor's knowledge after
|
||||
reasonable inquiry:
|
||||
i. Licensor has secured all rights in the Work necessary to grant the
|
||||
license rights hereunder and to permit the lawful exercise of the
|
||||
rights granted hereunder without You having any obligation to pay any
|
||||
royalties, compulsory license fees, residuals or any other payments;
|
||||
ii. The Work does not infringe the copyright, trademark, publicity rights,
|
||||
common law rights or any other right of any third party or constitute
|
||||
defamation, invasion of privacy or other tortious injury to any third
|
||||
party.
|
||||
b. EXCEPT AS EXPRESSLY STATED IN THIS LICENSE OR OTHERWISE AGREED IN WRITING
|
||||
OR REQUIRED BY APPLICABLE LAW, THE WORK IS LICENSED ON AN "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING,
|
||||
WITHOUT LIMITATION, ANY WARRANTIES REGARDING THE CONTENTS OR ACCURACY OF
|
||||
THE WORK.
|
||||
|
||||
6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW,
|
||||
AND EXCEPT FOR DAMAGES ARISING FROM LIABILITY TO A THIRD PARTY RESULTING FROM
|
||||
BREACH OF THE WARRANTIES IN SECTION 5, IN NO EVENT WILL LICENSOR BE LIABLE TO
|
||||
YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR
|
||||
EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF
|
||||
LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
|
||||
|
||||
7. Termination
|
||||
|
||||
a. This License and the rights granted hereunder will terminate automatically
|
||||
upon any breach by You of the terms of this License. Individuals or
|
||||
entities who have received Derivative Works or Collective Works from You
|
||||
under this License, however, will not have their licenses terminated
|
||||
provided such individuals or entities remain in full compliance with those
|
||||
licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of
|
||||
this License.
|
||||
b. Subject to the above terms and conditions, the license granted here is
|
||||
perpetual (for the duration of the applicable copyright in the Work).
|
||||
Notwithstanding the above, Licensor reserves the right to release the Work
|
||||
under different license terms or to stop distributing the Work at any time;
|
||||
provided, however that any such election will not serve to withdraw this
|
||||
License (or any other license that has been, or is required to be, granted
|
||||
under the terms of this License), and this License will continue in full
|
||||
force and effect unless terminated as stated above.
|
||||
|
||||
8. Miscellaneous
|
||||
|
||||
a. Each time You distribute or publicly digitally perform the Work or a
|
||||
Collective Work, the Licensor offers to the recipient a license to the Work
|
||||
on the same terms and conditions as the license granted to You under this
|
||||
License.
|
||||
b. Each time You distribute or publicly digitally perform a Derivative Work,
|
||||
Licensor offers to the recipient a license to the original Work on the same
|
||||
terms and conditions as the license granted to You under this License.
|
||||
c. If any provision of this License is invalid or unenforceable under
|
||||
applicable law, it shall not affect the validity or enforceability of the
|
||||
remainder of the terms of this License, and without further action by the
|
||||
parties to this agreement, such provision shall be reformed to the minimum
|
||||
extent necessary to make such provision valid and enforceable.
|
||||
d. No term or provision of this License shall be deemed waived and no breach
|
||||
consented to unless such waiver or consent shall be in writing and signed
|
||||
by the party to be charged with such waiver or consent.
|
||||
e. This License constitutes the entire agreement between the parties with
|
||||
respect to the Work licensed here. There are no understandings, agreements
|
||||
or representations with respect to the Work not specified here. Licensor
|
||||
shall not be bound by any additional provisions that may appear in any
|
||||
communication from You. This License may not be modified without the mutual
|
||||
written agreement of the Licensor and You.
|
||||
|
||||
Creative Commons is not a party to this License, and makes no warranty
|
||||
whatsoever in connection with the Work. Creative Commons will not be liable to
|
||||
You or any party on any legal theory for any damages whatsoever, including
|
||||
without limitation any general, special, incidental or consequential damages
|
||||
arising in connection to this license. Notwithstanding the foregoing two (2)
|
||||
sentences, if Creative Commons has expressly identified itself as the Licensor
|
||||
hereunder, it shall have all rights and obligations of Licensor.
|
||||
|
||||
Except for the limited purpose of indicating to the public that the Work is
|
||||
licensed under the CCPL, neither party will use the trademark "Creative
|
||||
Commons" or any related trademark or logo of Creative Commons without the prior
|
||||
written consent of Creative Commons. Any permitted use will be in compliance
|
||||
with Creative Commons' then-current trademark usage guidelines, as may be
|
||||
published on its website or otherwise made available upon request from time to
|
||||
time.
|
||||
|
||||
Creative Commons may be contacted at http://creativecommons.org/.
|
4
options/license/CGAL-linking-exception
Normal file
4
options/license/CGAL-linking-exception
Normal file
@ -0,0 +1,4 @@
|
||||
As a special exception, you have permission to link this library
|
||||
with the CGAL library (http://www.cgal.org) and distribute executables,
|
||||
as long as you follow the requirements of the GNU GPL in regard to
|
||||
all of the software in the executable aside from CGAL.
|
18
options/license/Independent-modules-exception
Normal file
18
options/license/Independent-modules-exception
Normal file
@ -0,0 +1,18 @@
|
||||
This is the file COPYING.FPC, it applies to the Free Pascal Run-Time Library
|
||||
(RTL) and packages (packages) distributed by members of the Free Pascal
|
||||
Development Team.
|
||||
|
||||
The source code of the Free Pascal Runtime Libraries and packages are
|
||||
distributed under the Library GNU General Public License
|
||||
(see the file COPYING) with the following modification:
|
||||
|
||||
As a special exception, the copyright holders of this library give you
|
||||
permission to link this library with independent modules to produce an
|
||||
executable, regardless of the license terms of these independent modules,
|
||||
and to copy and distribute the resulting executable under terms of your choice,
|
||||
provided that you also meet, for each linked independent module, the terms
|
||||
and conditions of the license of that module. An independent module is a module
|
||||
which is not derived from or based on this library. If you modify this
|
||||
library, you may extend this exception to your version of the library, but you are
|
||||
not obligated to do so. If you do not wish to do so, delete this exception
|
||||
statement from your version.
|
27
options/license/InnoSetup
Normal file
27
options/license/InnoSetup
Normal file
@ -0,0 +1,27 @@
|
||||
Inno Setup License
|
||||
==================
|
||||
|
||||
Except where otherwise noted, all of the documentation and software included in the Inno Setup
|
||||
package is copyrighted by Jordan Russell.
|
||||
|
||||
Copyright (C) 1997-2024 Jordan Russell. All rights reserved.
|
||||
Portions Copyright (C) 2000-2024 Martijn Laan. All rights reserved.
|
||||
|
||||
This software is provided "as-is," without any express or implied warranty. In no event shall the
|
||||
author be held liable for any damages arising from the use of this software.
|
||||
|
||||
Permission is granted to anyone to use this software for any purpose, including commercial
|
||||
applications, and to alter and redistribute it, provided that the following conditions are met:
|
||||
|
||||
1. All redistributions of source code files must retain all copyright notices that are currently in
|
||||
place, and this list of conditions without modification.
|
||||
|
||||
2. All redistributions in binary form must retain all occurrences of the above copyright notice and
|
||||
web site addresses that are currently in place (for example, in the About boxes).
|
||||
|
||||
3. The origin of this software must not be misrepresented; you must not claim that you wrote the
|
||||
original software. If you use this software to distribute a product, an acknowledgment in the
|
||||
product documentation would be appreciated but is not required.
|
||||
|
||||
4. Modified versions in source or binary form must be plainly marked as such, and must not be
|
||||
misrepresented as being the original software.
|
@ -1,110 +1,372 @@
|
||||
MOTOSOTO OPEN SOURCE LICENSE - Version 0.9.1
|
||||
|
||||
This Motosoto Open Source License (the "License") applies to "Community Portal Server" and related software products as well as any updatesor maintenance releases of that software ("Motosoto Products") that are distributed by Motosoto.Com B.V. ("Licensor"). Any Motosoto Product licensed pursuant to this License is a "Licensed Product." Licensed Product, in its entirety, is protected by Dutch copyright law. This License identifies the terms under which you may use, copy, distribute or modify Licensed Product and has been submitted to the Open Software Initiative (OSI) for approval.
|
||||
This Motosoto Open Source License (the "License") applies to "Community Portal Server" and related
|
||||
software products as well as any updatesor maintenance releases of that software ("Motosoto
|
||||
Products") that are distributed by Motosoto.Com B.V. ("Licensor"). Any Motosoto Product licensed
|
||||
pursuant to this License is a "Licensed Product." Licensed Product, in its entirety, is protected
|
||||
by Dutch copyright law. This License identifies the terms under which you may use, copy, distribute
|
||||
or modify Licensed Product and has been submitted to the Open Software Initiative (OSI) for
|
||||
approval.
|
||||
|
||||
Preamble
|
||||
|
||||
This Preamble is intended to describe, in plain English, the nature and scope of this License. However, this Preamble is not a part of this license. The legal effect of this License is dependent only upon the terms of the License and not this Preamble. This License complies with the Open Source Definition and has been approved by Open Source Initiative. Software distributed under this License may be marked as "OSI Certified Open Source Software."
|
||||
This Preamble is intended to describe, in plain English, the nature and scope of this License.
|
||||
However, this Preamble is not a part of this license. The legal effect of this License is dependent
|
||||
only upon the terms of the License and not this Preamble. This License complies with the Open
|
||||
Source Definition and has been approved by Open Source Initiative. Software distributed under this
|
||||
License may be marked as "OSI Certified Open Source Software."
|
||||
|
||||
This License provides that:
|
||||
|
||||
1. You may use, sell or give away the Licensed Product, alone or as a component of an aggregate software distribution containing programs from several different sources. No royalty or other fee is required.
|
||||
1. You may use, sell or give away the Licensed Product, alone or as a component of an aggregate
|
||||
software distribution containing programs from several different sources. No royalty or other fee
|
||||
is required.
|
||||
|
||||
2. Both Source Code and executable versions of the Licensed Product, including Modifications made by previous Contributors, are available for your use. (The terms "Licensed Product," "Modifications," "Contributors" and "Source Code" are defined in the License.)
|
||||
2. Both Source Code and executable versions of the Licensed Product, including Modifications made
|
||||
by previous Contributors, are available for your use. (The terms "Licensed Product,"
|
||||
"Modifications," "Contributors" and "Source Code" are defined in the License.)
|
||||
|
||||
3. You are allowed to make Modifications to the Licensed Product, and you can create Derivative Works from it. (The term "Derivative Works" is defined in the License.)
|
||||
3. You are allowed to make Modifications to the Licensed Product, and you can create Derivative
|
||||
Works from it. (The term "Derivative Works" is defined in the License.)
|
||||
|
||||
4. By accepting the Licensed Product under the provisions of this License, you agree that any Modifications you make to the Licensed Product and then distribute are governed by the provisions of this License. In particular, you must make the Source Code of your Modifications available to others.
|
||||
4. By accepting the Licensed Product under the provisions of this License, you agree that any
|
||||
Modifications you make to the Licensed Product and then distribute are governed by the provisions
|
||||
of this License. In particular, you must make the Source Code of your Modifications available to
|
||||
others.
|
||||
|
||||
5. You may use the Licensed Product for any purpose, but the Licensor is not providing you any warranty whatsoever, nor is the Licensor accepting any liability in the event that the Licensed Product doesn't work properly or causes you any injury or damages.
|
||||
5. You may use the Licensed Product for any purpose, but the Licensor is not providing you any
|
||||
warranty whatsoever, nor is the Licensor accepting any liability in the event that the Licensed
|
||||
Product doesn't work properly or causes you any injury or damages.
|
||||
|
||||
6. If you sublicense the Licensed Product or Derivative Works, you may charge fees for warranty or support, or for accepting indemnity or liability obligations to your customers. You cannot charge for the Source Code.
|
||||
6. If you sublicense the Licensed Product or Derivative Works, you may charge fees for warranty or
|
||||
support, or for accepting indemnity or liability obligations to your customers. You cannot charge
|
||||
for the Source Code.
|
||||
|
||||
7. If you assert any patent claims against the Licensor relating to the Licensed Product, or if you breach any terms of the License, your rights to the Licensed Product under this License automatically terminate.
|
||||
7. If you assert any patent claims against the Licensor relating to the Licensed Product, or if you
|
||||
breach any terms of the License, your rights to the Licensed Product under this License
|
||||
automatically terminate.
|
||||
|
||||
You may use this License to distribute your own Derivative Works, in which case the provisions of this License will apply to your Derivative Works just as they do to the original Licensed Product.
|
||||
You may use this License to distribute your own Derivative Works, in which case the provisions of
|
||||
this License will apply to your Derivative Works just as they do to the original Licensed Product.
|
||||
|
||||
Alternatively, you may distribute your Derivative Works under any other OSI-approved Open Source license, or under a proprietary license of your choice. If you use any license other than this License, however, you must continue to fulfill the requirements of this License (including the provisions relating to publishing the Source Code) for those portions of your Derivative Works that consist of the Licensed Product, including the files containing Modifications.
|
||||
Alternatively, you may distribute your Derivative Works under any other OSI-approved Open Source
|
||||
license, or under a proprietary license of your choice. If you use any license other than this
|
||||
License, however, you must continue to fulfill the requirements of this License (including the
|
||||
provisions relating to publishing the Source Code) for those portions of your Derivative Works that
|
||||
consist of the Licensed Product, including the files containing Modifications.
|
||||
|
||||
New versions of this License may be published from time to time. You may choose to continue to use the license terms in this version of the License or those from the new version. However, only the Licensor has the right to change the License terms as they apply to the Licensed Product. This License relies on precise definitions for certain terms. Those terms are defined when they are first used, and the definitions are repeated for your convenience in a Glossary at the end of the License.
|
||||
New versions of this License may be published from time to time. You may choose to continue to use
|
||||
the license terms in this version of the License or those from the new version. However, only the
|
||||
Licensor has the right to change the License terms as they apply to the Licensed Product. This
|
||||
License relies on precise definitions for certain terms. Those terms are defined when they are
|
||||
first used, and the definitions are repeated for your convenience in a Glossary at the end of the
|
||||
License.
|
||||
|
||||
License Terms
|
||||
|
||||
1. Grant of License From Licensor.
|
||||
|
||||
Licensor hereby grants you a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, to do the following:
|
||||
Licensor hereby grants you a world-wide, royalty-free, non-exclusive license, subject to third
|
||||
party intellectual property claims, to do the following:
|
||||
|
||||
a. Use, reproduce, modify, display, perform, sublicense and distribute Licensed Product or portions thereof (including Modifications as hereinafter defined), in both Source Code or as an executable program. "Source Code" means the preferred form for making modifications to the Licensed Product, including all modules contained therein, plus any associated interface definition files, scripts used to control compilation and installation of an executable program, or a list of differential comparisons against the Source Code of the Licensed Product.
|
||||
a. Use, reproduce, modify, display, perform, sublicense and distribute Licensed Product or
|
||||
portions thereof (including Modifications as hereinafter defined), in both Source Code or as an
|
||||
executable program. "Source Code" means the preferred form for making modifications to the Licensed
|
||||
Product, including all modules contained therein, plus any associated interface definition files,
|
||||
scripts used to control compilation and installation of an executable program, or a list of
|
||||
differential comparisons against the Source Code of the Licensed Product.
|
||||
|
||||
b. Create Derivative Works (as that term is defined under Dutch copyright law) of Licensed Product by adding to or deleting from the substance or structure of said Licensed Product.
|
||||
b. Create Derivative Works (as that term is defined under Dutch copyright law) of Licensed
|
||||
Product by adding to or deleting from the substance or structure of said Licensed Product.
|
||||
|
||||
c. Under claims of patents now or hereafter owned or controlled by Licensor, to make, use, sell, offer for sale, have made, and/or otherwise dispose of Licensed Product or portions thereof, but solely to the extent that any such claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of Licensed Product or portions thereof or Derivative Works thereof.
|
||||
c. Under claims of patents now or hereafter owned or controlled by Licensor, to make, use,
|
||||
sell, offer for sale, have made, and/or otherwise dispose of Licensed Product or portions thereof,
|
||||
but solely to the extent that any such claim is necessary to enable you to make, use, sell, offer
|
||||
for sale, have made, and/or otherwise dispose of Licensed Product or portions thereof or Derivative
|
||||
Works thereof.
|
||||
|
||||
2. Grant of License to Modifications From Contributor.
|
||||
|
||||
"Modifications" means any additions to or deletions from the substance or structure of (i) a file containing Licensed Product, or (ii) any new file that contains any part of Licensed Product. Hereinafter in this License, the term "Licensed Product" shall include all previous Modifications that you receive from any Contributor. By application of the provisions in Section 4(a) below, each person or entity who created or contributed to the creation of, and distributed, a Modification (a "Contributor") hereby grants you a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims, to do the following:
|
||||
"Modifications" means any additions to or deletions from the substance or structure of (i) a file
|
||||
containing Licensed Product, or (ii) any new file that contains any part of Licensed Product.
|
||||
Hereinafter in this License, the term "Licensed Product" shall include all previous Modifications
|
||||
that you receive from any Contributor. By application of the provisions in Section 4(a) below, each
|
||||
person or entity who created or contributed to the creation of, and distributed, a Modification (a
|
||||
"Contributor") hereby grants you a world-wide, royalty-free, non-exclusive license, subject to
|
||||
third party intellectual property claims, to do the following:
|
||||
|
||||
a. Use, reproduce, modify, display, perform, sublicense and distribute any Modifications created by such Contributor or portions thereof, in both Source Code or as an executable program, either on an unmodified basis or as part of Derivative Works.
|
||||
a. Use, reproduce, modify, display, perform, sublicense and distribute any Modifications
|
||||
created by such Contributor or portions thereof, in both Source Code or as an executable program,
|
||||
either on an unmodified basis or as part of Derivative Works.
|
||||
|
||||
b. Under claims of patents now or hereafter owned or controlled by Contributor, to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof, but solely to the extent that any such claim is necessary to enable you to make, use, sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof or Derivative Works thereof.
|
||||
b. Under claims of patents now or hereafter owned or controlled by Contributor, to make, use,
|
||||
sell, offer for sale, have made, and/or otherwise dispose of Modifications or portions thereof, but
|
||||
solely to the extent that any such claim is necessary to enable you to make, use, sell, offer for
|
||||
sale, have made, and/or otherwise dispose of Modifications or portions thereof or Derivative Works
|
||||
thereof.
|
||||
|
||||
3. Exclusions From License Grant.
|
||||
|
||||
Nothing in this License shall be deemed to grant any rights to trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor or any Contributor except as expressly stated herein. No patent license is granted separate from the Licensed Product, for code that you delete from the Licensed Product, or for combinations of the Licensed Product with other software or hardware. No right is granted to the trademarks of Licensor or any Contributor even if such marks are included in the Licensed Product. Nothing in this License shall be interpreted to prohibit Licensor from licensing under different terms from this License any code that Licensor otherwise would have a right to license.
|
||||
Nothing in this License shall be deemed to grant any rights to trademarks, copyrights, patents,
|
||||
trade secrets or any other intellectual property of Licensor or any Contributor except as expressly
|
||||
stated herein. No patent license is granted separate from the Licensed Product, for code that you
|
||||
delete from the Licensed Product, or for combinations of the Licensed Product with other software
|
||||
or hardware. No right is granted to the trademarks of Licensor or any Contributor even if such
|
||||
marks are included in the Licensed Product. Nothing in this License shall be interpreted to
|
||||
prohibit Licensor from licensing under different terms from this License any code that Licensor
|
||||
otherwise would have a right to license.
|
||||
|
||||
4. Your Obligations Regarding Distribution.
|
||||
|
||||
a. Application of This License to Your Modifications. As an express condition for your use of the Licensed Product, you hereby agree that any Modifications that you create or to which you contribute, and which you distribute, are governed by the terms of this License including, without limitation, Section 2. Any Modifications that you create or to which you contribute may be distributed only under the terms of this License or a future version of this License released under Section 7. You must include a copy of this License with every copy of the Modifications you distribute. You agree not to offer or impose any terms on any Source Code or executable version of the Licensed Product or Modifications that alter or restrict the applicable version of this License or the recipients' rights hereunder. However, you may include an additional document offering the additional rights described in Section 4(e).
|
||||
a. Application of This License to Your Modifications. As an express condition for your use of
|
||||
the Licensed Product, you hereby agree that any Modifications that you create or to which you
|
||||
contribute, and which you distribute, are governed by the terms of this License including, without
|
||||
limitation, Section 2. Any Modifications that you create or to which you contribute may be
|
||||
distributed only under the terms of this License or a future version of this License released under
|
||||
Section 7. You must include a copy of this License with every copy of the Modifications you
|
||||
distribute. You agree not to offer or impose any terms on any Source Code or executable version of
|
||||
the Licensed Product or Modifications that alter or restrict the applicable version of this License
|
||||
or the recipients' rights hereunder. However, you may include an additional document offering the
|
||||
additional rights described in Section 4(e).
|
||||
|
||||
b. Availability of Source Code. You must make available, under the terms of this License, the Source Code of the Licensed Product and any Modifications that you distribute, either on the same media as you distribute any executable or other form of the Licensed Product, or via a mechanism generally accepted in the software development community for the electronic transfer of data (an "Electronic Distribution Mechanism"). The Source Code for any version of Licensed Product or Modifications that you distribute must remain available for at least twelve (12) months after the date it initially became available, or at least six (6) months after a subsequent version of said Licensed Product or Modifications has been made available. You are responsible for ensuring that the Source Code version remains available even if the Electronic Distribution Mechanism is maintained by a third party.
|
||||
b. Availability of Source Code. You must make available, under the terms of this License, the
|
||||
Source Code of the Licensed Product and any Modifications that you distribute, either on the same
|
||||
media as you distribute any executable or other form of the Licensed Product, or via a mechanism
|
||||
generally accepted in the software development community for the electronic transfer of data (an
|
||||
"Electronic Distribution Mechanism"). The Source Code for any version of Licensed Product or
|
||||
Modifications that you distribute must remain available for at least twelve (12) months after the
|
||||
date it initially became available, or at least six (6) months after a subsequent version of said
|
||||
Licensed Product or Modifications has been made available. You are responsible for ensuring that
|
||||
the Source Code version remains available even if the Electronic Distribution Mechanism is
|
||||
maintained by a third party.
|
||||
|
||||
c. Description of Modifications. You must cause any Modifications that you create or to which you contribute, and which you distribute, to contain a file documenting the additions, changes or deletions you made to create or contribute to those Modifications, and the dates of any such additions, changes or deletions. You must include a prominent statement that the Modifications are derived, directly or indirectly, from the Licensed Product and include the names of the Licensor and any Contributor to the Licensed Product in (i) the Source Code and (ii) in any notice displayed by a version of the Licensed Product you distribute or in related documentation in which you describe the origin or ownership of the Licensed Product. You may not modify or delete any preexisting copyright notices in the Licensed Product.
|
||||
c. Description of Modifications. You must cause any Modifications that you create or to which
|
||||
you contribute, and which you distribute, to contain a file documenting the additions, changes or
|
||||
deletions you made to create or contribute to those Modifications, and the dates of any such
|
||||
additions, changes or deletions. You must include a prominent statement that the Modifications are
|
||||
derived, directly or indirectly, from the Licensed Product and include the names of the Licensor
|
||||
and any Contributor to the Licensed Product in (i) the Source Code and (ii) in any notice displayed
|
||||
by a version of the Licensed Product you distribute or in related documentation in which you
|
||||
describe the origin or ownership of the Licensed Product. You may not modify or delete any
|
||||
preexisting copyright notices in the Licensed Product.
|
||||
|
||||
d. Intellectual Property Matters.
|
||||
i. Third Party Claims. If you have knowledge that a license to a third party's intellectual property right is required to exercise the rights granted by this License, you must include a text file with the Source Code distribution titled "LEGAL" that describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If you obtain such knowledge after you make any Modifications available as described in Section 4(b), you shall promptly modify the LEGAL file in all copies you make available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Licensed Product from you that new knowledge has been obtained.
|
||||
i. Third Party Claims. If you have knowledge that a license to a third party's
|
||||
intellectual property right is required to exercise the rights granted by this License, you must
|
||||
include a text file with the Source Code distribution titled "LEGAL" that describes the claim and
|
||||
the party making the claim in sufficient detail that a recipient will know whom to contact. If you
|
||||
obtain such knowledge after you make any Modifications available as described in Section 4(b), you
|
||||
shall promptly modify the LEGAL file in all copies you make available thereafter and shall take
|
||||
other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated to
|
||||
inform those who received the Licensed Product from you that new knowledge has been obtained.
|
||||
|
||||
ii. Contributor APIs. If your Modifications include an application programming interface ("API") and you have knowledge of patent licenses that are reasonably necessary to implement that API, you must also include this information in the LEGAL file.
|
||||
ii. Contributor APIs. If your Modifications include an application programming interface
|
||||
("API") and you have knowledge of patent licenses that are reasonably necessary to implement that
|
||||
API, you must also include this information in the LEGAL file.
|
||||
|
||||
iii. Representations. You represent that, except as disclosed pursuant to 4(d)(i) above, you believe that any Modifications you distribute are your original creations and that you have sufficient rights to grant the rights conveyed by this License.
|
||||
iii. Representations. You represent that, except as disclosed pursuant to 4(d)(i) above,
|
||||
you believe that any Modifications you distribute are your original creations and that you have
|
||||
sufficient rights to grant the rights conveyed by this License.
|
||||
|
||||
e. Required Notices. You must duplicate this License in any documentation you provide along with the Source Code of any Modifications you create or to which you contribute, and which you distribute, wherever you describe recipients' rights relating to Licensed Product. You must duplicate the notice contained in Exhibit A (the "Notice") in each file of the Source Code of any copy you distribute of the Licensed Product. If you created a Modification, you may add your name as a Contributor to the Notice. If it is not possible to put the Notice in a particular Source Code file due to its structure, then you must include such Notice in a location (such as a relevant directory file) where a user would be likely to look for such a notice. You may choose to offer, and charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Licensed Product. However, you may do so only on your own behalf, and not on behalf of the Licensor or any Contributor. You must make it clear that any such warranty, support, indemnity or liability obligation is offered by you alone, and you hereby agree to indemnify the Licensor and every Contributor for any liability incurred by the Licensor or such Contributor as a result of warranty, support, indemnity or liability terms you offer.
|
||||
e. Required Notices. You must duplicate this License in any documentation you provide along
|
||||
with the Source Code of any Modifications you create or to which you contribute, and which you
|
||||
distribute, wherever you describe recipients' rights relating to Licensed Product. You must
|
||||
duplicate the notice contained in Exhibit A (the "Notice") in each file of the Source Code of any
|
||||
copy you distribute of the Licensed Product. If you created a Modification, you may add your name
|
||||
as a Contributor to the Notice. If it is not possible to put the Notice in a particular Source Code
|
||||
file due to its structure, then you must include such Notice in a location (such as a relevant
|
||||
directory file) where a user would be likely to look for such a notice. You may choose to offer,
|
||||
and charge a fee for, warranty, support, indemnity or liability obligations to one or more
|
||||
recipients of Licensed Product. However, you may do so only on your own behalf, and not on behalf
|
||||
of the Licensor or any Contributor. You must make it clear that any such warranty, support,
|
||||
indemnity or liability obligation is offered by you alone, and you hereby agree to indemnify the
|
||||
Licensor and every Contributor for any liability incurred by the Licensor or such Contributor as a
|
||||
result of warranty, support, indemnity or liability terms you offer.
|
||||
|
||||
f. Distribution of Executable Versions. You may distribute Licensed Product as an executable program under a license of your choice that may contain terms different from this License provided (i) you have satisfied the requirements of Sections 4(a) through 4(e) for that distribution, (ii) you include a conspicuous notice in the executable version, related documentation and collateral materials stating that the Source Code version of the Licensed Product is available under the terms of this License, including a description of how and where you have fulfilled the obligations of Section 4(b), (iii) you retain all existing copyright notices in the Licensed Product, and (iv) you make it clear that any terms that differ from this License are offered by you alone, not by Licensor or any Contributor. You hereby agree to indemnify the Licensor and every Contributor for any liability incurred by Licensor or such Contributor as a result of any terms you offer.
|
||||
f. Distribution of Executable Versions. You may distribute Licensed Product as an executable
|
||||
program under a license of your choice that may contain terms different from this License provided
|
||||
(i) you have satisfied the requirements of Sections 4(a) through 4(e) for that distribution, (ii)
|
||||
you include a conspicuous notice in the executable version, related documentation and collateral
|
||||
materials stating that the Source Code version of the Licensed Product is available under the terms
|
||||
of this License, including a description of how and where you have fulfilled the obligations of
|
||||
Section 4(b), (iii) you retain all existing copyright notices in the Licensed Product, and (iv) you
|
||||
make it clear that any terms that differ from this License are offered by you alone, not by
|
||||
Licensor or any Contributor. You hereby agree to indemnify the Licensor and every Contributor for
|
||||
any liability incurred by Licensor or such Contributor as a result of any terms you offer.
|
||||
|
||||
g. Distribution of Derivative Works. You may create Derivative Works (e.g., combinations of some or all of the Licensed Product with other code) and distribute the Derivative Works as products under any other license you select, with the proviso that the requirements of this License are fulfilled for those portions of the Derivative Works that consist of the Licensed Product or any Modifications thereto.
|
||||
g. Distribution of Derivative Works. You may create Derivative Works (e.g., combinations of
|
||||
some or all of the Licensed Product with other code) and distribute the Derivative Works as
|
||||
products under any other license you select, with the proviso that the requirements of this License
|
||||
are fulfilled for those portions of the Derivative Works that consist of the Licensed Product or
|
||||
any Modifications thereto.
|
||||
|
||||
5. Inability to Comply Due to Statute or Regulation.
|
||||
|
||||
If it is impossible for you to comply with any of the terms of this License with respect to some or all of the Licensed Product due to statute, judicial order, or regulation, then you must (i) comply with the terms of this License to the maximum extent possible, (ii) cite the statute or regulation that prohibits you from adhering to the License, and (iii) describe the limitations and the code they affect. Such description must be included in the LEGAL file described in Section 4(d), and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill at computer programming to be able to understand it.
|
||||
If it is impossible for you to comply with any of the terms of this License with respect to some or
|
||||
all of the Licensed Product due to statute, judicial order, or regulation, then you must (i) comply
|
||||
with the terms of this License to the maximum extent possible, (ii) cite the statute or regulation
|
||||
that prohibits you from adhering to the License, and (iii) describe the limitations and the code
|
||||
they affect. Such description must be included in the LEGAL file described in Section 4(d), and
|
||||
must be included with all distributions of the Source Code. Except to the extent prohibited by
|
||||
statute or regulation, such description must be sufficiently detailed for a recipient of ordinary
|
||||
skill at computer programming to be able to understand it.
|
||||
|
||||
6. Application of This License.
|
||||
|
||||
This License applies to code to which Licensor or Contributor has attached the Notice in Exhibit A, which is incorporated herein by this reference.
|
||||
This License applies to code to which Licensor or Contributor has attached the Notice in Exhibit A,
|
||||
which is incorporated herein by this reference.
|
||||
|
||||
7. Versions of This License.
|
||||
|
||||
a. Version. The Motosoto Open Source License is derived from the Jabber Open Source License. All changes are related to applicable law and the location of court.
|
||||
a. Version. The Motosoto Open Source License is derived from the Jabber Open Source License.
|
||||
All changes are related to applicable law and the location of court.
|
||||
|
||||
b. New Versions. Licensor may publish from time to time revised and/or new versions of the License.
|
||||
b. New Versions. Licensor may publish from time to time revised and/or new versions of the
|
||||
License.
|
||||
|
||||
c. Effect of New Versions. Once Licensed Product has been published under a particular version of the License, you may always continue to use it under the terms of that version. You may also choose to use such Licensed Product under the terms of any subsequent version of the License published by Licensor. No one other than Lic ensor has the right to modify the terms applicable to Licensed Product created under this License.
|
||||
c. Effect of New Versions. Once Licensed Product has been published under a particular version
|
||||
of the License, you may always continue to use it under the terms of that version. You may also
|
||||
choose to use such Licensed Product under the terms of any subsequent version of the License
|
||||
published by Licensor. No one other than Lic ensor has the right to modify the terms applicable to
|
||||
Licensed Product created under this License.
|
||||
|
||||
d. Derivative Works of this License. If you create or use a modified version of this License, which you may do only in order to apply it to software that is not already a Licensed Product under this License, you must rename your license so that it is not confusingly similar to this License, and must make it clear that your license contains terms that differ from this License. In so naming your license, you may not use any trademark of Licensor or any Contributor.
|
||||
d. Derivative Works of this License. If you create or use a modified version of this License,
|
||||
which you may do only in order to apply it to software that is not already a Licensed Product under
|
||||
this License, you must rename your license so that it is not confusingly similar to this License,
|
||||
and must make it clear that your license contains terms that differ from this License. In so naming
|
||||
your license, you may not use any trademark of Licensor or any Contributor.
|
||||
|
||||
8. Disclaimer of Warranty.
|
||||
|
||||
LICENSED PRODUCT IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE LICENSED PRODUCT IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LICENSED PRODUCT IS WITH YOU. SHOULD LICENSED PRODUCT PROVE DEFECTIVE IN ANY RESPECT, YOU (AND NOT THE LICENSOR OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF LICENSED PRODUCT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.
|
||||
LICENSED PRODUCT IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTY OF ANY KIND,
|
||||
EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE LICENSED PRODUCT IS
|
||||
FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS
|
||||
TO THE QUALITY AND PERFORMANCE OF THE LICENSED PRODUCT IS WITH YOU. SHOULD LICENSED PRODUCT PROVE
|
||||
DEFECTIVE IN ANY RESPECT, YOU (AND NOT THE LICENSOR OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF
|
||||
ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL
|
||||
PART OF THIS LICENSE. NO USE OF LICENSED PRODUCT IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS
|
||||
DISCLAIMER.
|
||||
|
||||
9. Termination.
|
||||
|
||||
a. Automatic Termination Upon Breach. This license and the rights granted hereunder will terminate automatically if you fail to comply with the terms herein and fail to cure such breach within thirty (30) days of becoming aware of the breach. All sublicenses to the Licensed Product that are properly granted shall survive any termination of this license. Provisions that, by their nature, must remain in effect beyond the termination of this License, shall survive.
|
||||
a. Automatic Termination Upon Breach. This license and the rights granted hereunder will
|
||||
terminate automatically if you fail to comply with the terms herein and fail to cure such breach
|
||||
within thirty (30) days of becoming aware of the breach. All sublicenses to the Licensed Product
|
||||
that are properly granted shall survive any termination of this license. Provisions that, by their
|
||||
nature, must remain in effect beyond the termination of this License, shall survive.
|
||||
|
||||
b. Termination Upon Assertion of Patent Infringement. If you initiate litigation by asserting a patent infringement claim (excluding declaratory judgment actions) against Licensor or a Contributor (Licensor or Contributor against whom you file such an action is referred to herein as "Respondent") alleging that Licensed Product directly or indirectly infringes any patent, then any and all rights granted by such Respondent to you under Sections 1 or 2 of this License shall terminate prospectively upon sixty (60) days notice from Respondent (the "Notice Period") unless within that Notice Period you either agree in writing (i) to pay Respondent a mutually agreeable reasonably royalty for your past or future use of Licensed Product made by such Respondent, or (ii) withdraw your litigation claim with respect to Licensed Product against such Respondent. If within said Notice Period a reasonable royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not withdrawn, the rights granted by Licensor to you under Sections 1 and 2 automatically terminate at the expiration of said Notice Period.
|
||||
b. Termination Upon Assertion of Patent Infringement. If you initiate litigation by asserting
|
||||
a patent infringement claim (excluding declaratory judgment actions) against Licensor or a
|
||||
Contributor (Licensor or Contributor against whom you file such an action is referred to herein as
|
||||
"Respondent") alleging that Licensed Product directly or indirectly infringes any patent, then any
|
||||
and all rights granted by such Respondent to you under Sections 1 or 2 of this License shall
|
||||
terminate prospectively upon sixty (60) days notice from Respondent (the "Notice Period") unless
|
||||
within that Notice Period you either agree in writing (i) to pay Respondent a mutually agreeable
|
||||
reasonably royalty for your past or future use of Licensed Product made by such Respondent, or (ii)
|
||||
withdraw your litigation claim with respect to Licensed Product against such Respondent. If within
|
||||
said Notice Period a reasonable royalty and payment arrangement are not mutually agreed upon in
|
||||
writing by the parties or the litigation claim is not withdrawn, the rights granted by Licensor to
|
||||
you under Sections 1 and 2 automatically terminate at the expiration of said Notice Period.
|
||||
|
||||
c. Reasonable Value of This License. If you assert a patent infringement claim against Respondent alleging that Licensed Product directly or indirectly infringes any patent where such claim is resolved (such as by license or settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses granted by said Respondent under Sections 1 and 2 shall be taken into account in determining the amount or value of any payment or license.
|
||||
c. Reasonable Value of This License. If you assert a patent infringement claim against
|
||||
Respondent alleging that Licensed Product directly or indirectly infringes any patent where such
|
||||
claim is resolved (such as by license or settlement) prior to the initiation of patent infringement
|
||||
litigation, then the reasonable value of the licenses granted by said Respondent under Sections 1
|
||||
and 2 shall be taken into account in determining the amount or value of any payment or license.
|
||||
|
||||
d. No Retroactive Effect of Termination. In the event of termination under Sections 9(a) or 9(b) above, all end user license agreements (excluding licenses to distributors and reselle rs) that have been validly granted by you or any distributor hereunder prior to termination shall survive termination.
|
||||
d. No Retroactive Effect of Termination. In the event of termination under Sections 9(a) or
|
||||
9(b) above, all end user license agreements (excluding licenses to distributors and reselle rs)
|
||||
that have been validly granted by you or any distributor hereunder prior to termination shall
|
||||
survive termination.
|
||||
|
||||
10. Limitation of Liability.
|
||||
|
||||
UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE LICENSOR, ANY CONTRIBUTOR, OR ANY DISTRIBUTOR OF LICENSED PRODUCT, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY
|
||||
UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR
|
||||
OTHERWISE, SHALL THE LICENSOR, ANY CONTRIBUTOR, OR ANY DISTRIBUTOR OF LICENSED PRODUCT, OR ANY
|
||||
SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR
|
||||
CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL,
|
||||
WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES,
|
||||
EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF
|
||||
LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY's
|
||||
NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE
|
||||
EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY
|
||||
NOT APPLY TO YOU.
|
||||
|
||||
11. Responsibility for Claims.
|
||||
|
||||
As between Licensor and Contributors, each party is responsible for claims and damages arising,
|
||||
directly or indirectly, out of its utilization of rights under this License. You agree to work with
|
||||
Licensor and Contributors to distribute such responsibility on an equitable basis. Nothing herein is
|
||||
intended or shall be deemed to constitute any admission of liability.
|
||||
|
||||
12. U.S. Government End Users.
|
||||
|
||||
The Licensed Product is a "commercial item," as that term is defined in 48 C.F.R. 2.101 (Oct. 1995),
|
||||
consisting of "commercial computer software" and "commercial computer software documentation,"
|
||||
as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and
|
||||
48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire
|
||||
Licensed Product with only those rights set forth herein.
|
||||
|
||||
13. Miscellaneous.
|
||||
This License represents the complete agreement concerning the subject matter hereof. If any
|
||||
provision of this License is held to be unenforceable, such provision shall be reformed only
|
||||
to the extent necessary to make it enforceable. This License shall be governed by Dutch law
|
||||
provisions. The application of the United Nations Convention on Contracts for the International
|
||||
Sale of Goods is expressly excluded. You and Licensor expressly waive any rights to a jury trial
|
||||
in any litigation concerning Licensed Product or this License. Any law or regulation that provides
|
||||
that the language of a contract shall be construed against the drafter shall not apply to this License.
|
||||
|
||||
14. Definition of "You" in This License.
|
||||
"You" throughout this License, whether in upper or lower case, means an individual or a legal entity
|
||||
exercising rights under, and complying with all of the terms of, this License or a future version of
|
||||
this License issued under Section 7. For legal entities, "you" includes any entity that controls, is
|
||||
controlled by, or is under common control with you. For 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.
|
||||
|
||||
15. Glossary.
|
||||
All defined terms in this License that are used in more than one Section of this License are
|
||||
repeated here, in alphabetical order, for the convenience of the reader. The Section of this
|
||||
License in which each defined term is first used is shown in parentheses.
|
||||
|
||||
Contributor: Each person or entity who created or contributed to the creation of, and distributed, a Modification. (See Section 2)
|
||||
|
||||
Derivative Works: That term as used in this License is defined under Dutch copyright law. (See Section 1(b))
|
||||
|
||||
License: This Motosoto Open Source License. (See first paragraph of License)
|
||||
|
||||
Licensed Product: Any Motosoto Product licensed pursuant to this License. The term
|
||||
"Licensed Product" includes all previous Modifications from any Contributor that you receive.
|
||||
(See first paragraph of License and Section 2)
|
||||
|
||||
Licensor: Motosoto.Com B.V.. (See first paragraph of License)
|
||||
|
||||
Modifications: Any additions to or deletions from the substance or structure of (i) a file
|
||||
containing Licensed Product, or (ii) any new file that contains any part of Licensed Product. (See Section 2)
|
||||
|
||||
Notice: The notice contained in Exhibit A. (See Section 4(e))
|
||||
|
||||
Source Code: The preferred form for making modifications to the Licensed Product, including
|
||||
all modules contained therein, plus any associated interface definition files, scripts used
|
||||
to control compilation and installation of an executable program, or a list of differential
|
||||
comparisons against the Source Code of the Licensed Product. (See Section 1(a))
|
||||
|
||||
You: This term is defined in Section 14 of this License.
|
||||
|
||||
EXHIBIT A
|
||||
The Notice below must appear in each file of the Source Code of any copy you distribute of the Licensed Product or any Modifications thereto. Contributors to any Modifications may add their own copyright notices to identify their own contributions.
|
||||
|
||||
License:
|
||||
The contents of this file are subject to the Motosoto Open Source License Version 0.9 (the "License"). You may not copy or use this file, in either source code or executable form, except in compliance with the License. You may obtain a copy of the License at http://www.motosoto.com/license/ or at http://www.opensource.org/.
|
||||
|
||||
Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License.
|
||||
|
||||
Copyrights:
|
||||
Portions created by or assigned to Motosoto.com B.V. are Copyright (c) 2000-2001 Motosoto.com B.V.
|
||||
All Rights Reserved. Contact information for Motosoto.com B.V. is available at http://www.motosoto.com/.
|
||||
|
||||
Acknowledgements
|
||||
Special thanks to the Motosoto Open Source Contributors for their suggestions and support of Motosoto.
|
||||
|
||||
Modifications:
|
||||
|
144
options/license/SMAIL-GPL
Normal file
144
options/license/SMAIL-GPL
Normal file
@ -0,0 +1,144 @@
|
||||
SMAIL GENERAL PUBLIC LICENSE
|
||||
(Clarified 11 Feb 1988)
|
||||
|
||||
Copyright (C) 1988 Landon Curt Noll & Ronald S. Karr
|
||||
Copyright (C) 1992 Ronald S. Karr
|
||||
Copyleft (GNU) 1988 Landon Curt Noll & Ronald S. Karr
|
||||
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license, but changing it is not allowed. You can also
|
||||
use this wording to make the terms for other programs.
|
||||
|
||||
The license agreements of most software companies keep you at the
|
||||
mercy of those companies. By contrast, our general public license is
|
||||
intended to give everyone the right to share SMAIL. To make sure that
|
||||
you get the rights we want you to have, we need to make restrictions
|
||||
that forbid anyone to deny you these rights or to ask you to surrender
|
||||
the rights. Hence this license agreement.
|
||||
|
||||
Specifically, we want to make sure that you have the right to give
|
||||
away copies of SMAIL, that you receive source code or else can get it
|
||||
if you want it, that you can change SMAIL or use pieces of it in new
|
||||
free programs, and that you know you can do these things.
|
||||
|
||||
To make sure that everyone has such rights, we have to forbid you to
|
||||
deprive anyone else of these rights. For example, if you distribute
|
||||
copies of SMAIL, you must give the recipients all the rights that you
|
||||
have. You must make sure that they, too, receive or can get the
|
||||
source code. And you must tell them their rights.
|
||||
|
||||
Also, for our own protection, we must make certain that everyone
|
||||
finds out that there is no warranty for SMAIL. If SMAIL is modified by
|
||||
someone else and passed on, we want its recipients to know that what
|
||||
they have is not what we distributed, so that any problems introduced
|
||||
by others will not reflect on our reputation.
|
||||
|
||||
Therefore we (Landon Curt Noll and Ronald S. Karr) make the following
|
||||
terms which say what you must do to be allowed to distribute or change
|
||||
SMAIL.
|
||||
|
||||
|
||||
COPYING POLICIES
|
||||
|
||||
1. You may copy and distribute verbatim copies of SMAIL source code
|
||||
as you receive it, in any medium, provided that you conspicuously and
|
||||
appropriately publish on each copy a valid copyright notice "Copyright
|
||||
(C) 1988 Landon Curt Noll & Ronald S. Karr" (or with whatever year is
|
||||
appropriate); keep intact the notices on all files that refer to this
|
||||
License Agreement and to the absence of any warranty; and give any
|
||||
other recipients of the SMAIL program a copy of this License
|
||||
Agreement along with the program. You may charge a distribution fee
|
||||
for the physical act of transferring a copy.
|
||||
|
||||
2. You may modify your copy or copies of SMAIL or any portion of it,
|
||||
and copy and distribute such modifications under the terms of
|
||||
Paragraph 1 above, provided that you also do the following:
|
||||
|
||||
a) cause the modified files to carry prominent notices stating
|
||||
that you changed the files and the date of any change; and
|
||||
|
||||
b) cause the whole of any work that you distribute or publish,
|
||||
that in whole or in part contains or is a derivative of SMAIL or
|
||||
any part thereof, to be licensed at no charge to all third
|
||||
parties on terms identical to those contained in this License
|
||||
Agreement (except that you may choose to grant more extensive
|
||||
warranty protection to some or all third parties, at your option).
|
||||
|
||||
c) You may charge a distribution fee for the physical act of
|
||||
transferring a copy, and you may at your option offer warranty
|
||||
protection in exchange for a fee.
|
||||
|
||||
Mere aggregation of another unrelated program with this program (or its
|
||||
derivative) on a volume of a storage or distribution medium does not bring
|
||||
the other program under the scope of these terms.
|
||||
|
||||
3. You may copy and distribute SMAIL (or a portion or derivative of it,
|
||||
under Paragraph 2) in object code or executable form under the terms of
|
||||
Paragraphs 1 and 2 above provided that you also do one of the following:
|
||||
|
||||
a) accompany it with the complete corresponding machine-readable
|
||||
source code, which must be distributed under the terms of
|
||||
Paragraphs 1 and 2 above; or,
|
||||
|
||||
b) accompany it with a written offer, valid for at least three
|
||||
years, to give any third party free (except for a nominal
|
||||
shipping charge) a complete machine-readable copy of the
|
||||
corresponding source code, to be distributed under the terms of
|
||||
Paragraphs 1 and 2 above; or,
|
||||
|
||||
c) accompany it with the information you received as to where the
|
||||
corresponding source code may be obtained. (This alternative is
|
||||
allowed only for non-commercial distribution and only if you
|
||||
received the program in object code or executable form alone.)
|
||||
|
||||
For an executable file, complete source code means all the source code for
|
||||
all modules it contains; but, as a special exception, it need not include
|
||||
source code for modules which are standard libraries that accompany the
|
||||
operating system on which the executable file runs.
|
||||
|
||||
4. You may not copy, sublicense, distribute or transfer SMAIL
|
||||
except as expressly provided under this License Agreement. Any attempt
|
||||
otherwise to copy, sublicense, distribute or transfer SMAIL is void and
|
||||
your rights to use the program under this License agreement shall be
|
||||
automatically terminated. However, parties who have received computer
|
||||
software programs from you with this License Agreement will not have
|
||||
their licenses terminated so long as such parties remain in full compliance.
|
||||
|
||||
5. If you wish to incorporate parts of SMAIL into other free
|
||||
programs whose distribution conditions are different, write to Landon
|
||||
Curt Noll & Ronald S. Karr via the Free Software Foundation at 51
|
||||
Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. We have not yet
|
||||
worked out a simple rule that can be stated here, but we will often
|
||||
permit this. We will be guided by the two goals of preserving the
|
||||
free status of all derivatives of our free software and of promoting
|
||||
the sharing and reuse of software.
|
||||
|
||||
Your comments and suggestions about our licensing policies and our
|
||||
software are welcome! This contract was based on the contract made by
|
||||
the Free Software Foundation. Please contact the Free Software
|
||||
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301,
|
||||
USA, or call (617) 542-5942 for details on copylefted material in
|
||||
general.
|
||||
|
||||
NO WARRANTY
|
||||
|
||||
BECAUSE SMAIL IS LICENSED FREE OF CHARGE, WE PROVIDE ABSOLUTELY NO
|
||||
WARRANTY, TO THE EXTENT PERMITTED BY APPLICABLE STATE LAW. EXCEPT WHEN
|
||||
OTHERWISE STATED IN WRITING, LANDON CURT NOLL & RONALD S. KARR AND/OR
|
||||
OTHER PARTIES PROVIDE SMAIL "AS IS" WITHOUT WARRANTY OF ANY KIND,
|
||||
EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|
||||
THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF SMAIL IS WITH
|
||||
YOU. SHOULD SMAIL PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL
|
||||
NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||
|
||||
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW WILL LANDON CURT NOLL &
|
||||
RONALD S. KARR AND/OR ANY OTHER PARTY WHO MAY MODIFY AND REDISTRIBUTE
|
||||
SMAIL AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
||||
LOST PROFITS, LOST MONIES, OR OTHER SPECIAL, INCIDENTAL OR
|
||||
CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE
|
||||
(INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED
|
||||
INACCURATE OR LOSSES SUSTAINED BY THIRD PARTIES OR A FAILURE OF THE
|
||||
PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS) SMAIL, EVEN IF YOU HAVE
|
||||
BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES, OR FOR ANY CLAIM BY
|
||||
ANY OTHER PARTY.
|
11
options/license/any-OSI-perl-modules
Normal file
11
options/license/any-OSI-perl-modules
Normal file
@ -0,0 +1,11 @@
|
||||
This software may be redistributed under the terms of the GPL, LGPL,
|
||||
modified BSD, or Artistic license, or any of the other OSI approved
|
||||
licenses listed at http://www.opensource.org/licenses/alphabetical.
|
||||
Distribution is allowed under all of these licenses, or any smaller
|
||||
subset of multiple or just one of these licenses.
|
||||
|
||||
When using a packaged version, please refer to the package metadata to see
|
||||
under which license terms it was distributed. Alternatively, a distributor
|
||||
may choose to replace the LICENSE section of the documentation and/or
|
||||
include a LICENSE file to reflect the license(s) they chose to redistribute
|
||||
under.
|
17
options/license/generic-xts
Normal file
17
options/license/generic-xts
Normal file
@ -0,0 +1,17 @@
|
||||
Copyright (C) 2008, Damien Miller
|
||||
Copyright (C) 2011, Alex Hornung
|
||||
|
||||
Permission to use, copy, and modify this software with or without fee
|
||||
is hereby granted, provided that this entire notice is included in
|
||||
all copies of any software which is or includes a copy or
|
||||
modification of this software.
|
||||
You may use this code under the GNU public license if you so wish. Please
|
||||
contribute changes back to the authors under this freer than GPL license
|
||||
so that we may further the use of strong encryption without limitations to
|
||||
all.
|
||||
|
||||
THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR
|
||||
IMPLIED WARRANTY. IN PARTICULAR, NONE OF THE AUTHORS MAKES ANY
|
||||
REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE
|
||||
MERCHANTABILITY OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR
|
||||
PURPOSE.
|
16
options/license/mxml-exception
Normal file
16
options/license/mxml-exception
Normal file
@ -0,0 +1,16 @@
|
||||
Mini-XML
|
||||
|
||||
Copyright © 2003-2024 by Michael R Sweet
|
||||
|
||||
|
||||
(Optional) Exceptions to the Apache 2.0 License:
|
||||
================================================
|
||||
|
||||
In addition, if you combine or link compiled forms of this Software with
|
||||
software that is licensed under the GPLv2 or LGPLv2 (“Combined Software”) and if
|
||||
a court of competent jurisdiction determines that the patent provision (Section
|
||||
3), the indemnity provision (Section 9) or other Section of the License
|
||||
conflicts with the conditions of the GPLv2 or LGPLv2, you may retroactively and
|
||||
prospectively choose to deem waived or otherwise exclude such Section(s) of the
|
||||
License, but only in their entirety and only with respect to the Combined
|
||||
Software.
|
5
options/license/wwl
Normal file
5
options/license/wwl
Normal file
@ -0,0 +1,5 @@
|
||||
db@FreeBSD.ORG wrote this file. As long as you retain this notice you
|
||||
can do whatever you want with this code, except you may not
|
||||
license it under any form of the GPL.
|
||||
A postcard or QSL card showing me you appreciate
|
||||
this code would be nice. Diane Bruce va3db
|
Loading…
Reference in New Issue
Block a user