From 92bdd776c9bb3a79a40c34b488b2e6d5f87a520c Mon Sep 17 00:00:00 2001 From: Chris Meyers Date: Mon, 14 Sep 2015 14:57:46 -0400 Subject: [PATCH 01/17] rbac job & job template performance fix --- awx/main/access.py | 33 ++++++++++++++++++--------------- 1 file changed, 18 insertions(+), 15 deletions(-) diff --git a/awx/main/access.py b/awx/main/access.py index e5f0c4df95..e401eecac2 100644 --- a/awx/main/access.py +++ b/awx/main/access.py @@ -869,16 +869,17 @@ class JobTemplateAccess(BaseAccess): Q(credential_id__in=credential_ids) | Q(credential__isnull=True), Q(cloud_credential_id__in=credential_ids) | Q(cloud_credential__isnull=True), ) - org_admin_qs = base_qs.filter( + org_admin_ids = set(base_qs.filter( Q(project__organizations__admins__in=[self.user]) | (Q(project__isnull=True) & Q(job_type=PERM_INVENTORY_SCAN) & Q(inventory__organization__admins__in=[self.user])) - ) + ).values_list('id', flat=True)) allowed_deploy = [PERM_JOBTEMPLATE_CREATE, PERM_INVENTORY_DEPLOY] allowed_check = [PERM_JOBTEMPLATE_CREATE, PERM_INVENTORY_DEPLOY, PERM_INVENTORY_CHECK] team_ids = set(Team.objects.filter(users__in=[self.user]).values_list('id', flat=True)) + # TODO: I think the below queries can be combined deploy_permissions_ids = set(Permission.objects.filter( Q(user=self.user) | Q(team_id__in=team_ids), active=True, @@ -890,23 +891,24 @@ class JobTemplateAccess(BaseAccess): permission_type__in=allowed_check, ).values_list('id', flat=True)) - perm_deploy_qs = base_qs.filter( + perm_deploy_ids = set(base_qs.filter( job_type=PERM_INVENTORY_DEPLOY, inventory__permissions__in=deploy_permissions_ids, project__permissions__in=deploy_permissions_ids, inventory__permissions__pk=F('project__permissions__pk'), inventory_id__in=inventory_ids, - ) + ).values_list('id', flat=True)) - perm_check_qs = base_qs.filter( + perm_check_ids = set(base_qs.filter( job_type=PERM_INVENTORY_CHECK, inventory__permissions__in=check_permissions_ids, project__permissions__in=check_permissions_ids, inventory__permissions__pk=F('project__permissions__pk'), inventory_id__in=inventory_ids, - ) + ).values_list('id', flat=True)) - return org_admin_qs | perm_deploy_qs | perm_check_qs + base_ids = org_admin_ids.union(perm_deploy_ids).union(perm_check_ids) + return base_qs.filter(id__in=base_ids) def can_read(self, obj): # you can only see the job templates that you have permission to launch. @@ -1081,15 +1083,16 @@ class JobAccess(BaseAccess): base_qs = qs.filter( credential_id__in=credential_ids, ) - org_admin_qs = base_qs.filter( + org_admin_ids = set(base_qs.filter( Q(project__organizations__admins__in=[self.user]) | (Q(project__isnull=True) & Q(job_type=PERM_INVENTORY_SCAN) & Q(inventory__organization__admins__in=[self.user])) - ) + ).values_list('id', flat=True)) allowed_deploy = [PERM_JOBTEMPLATE_CREATE, PERM_INVENTORY_DEPLOY] allowed_check = [PERM_JOBTEMPLATE_CREATE, PERM_INVENTORY_DEPLOY, PERM_INVENTORY_CHECK] team_ids = set(Team.objects.filter(users__in=[self.user]).values_list('id', flat=True)) + # TODO: I think the below queries can be combined deploy_permissions_ids = set(Permission.objects.filter( Q(user=self.user) | Q(team__in=team_ids), active=True, @@ -1101,22 +1104,22 @@ class JobAccess(BaseAccess): permission_type__in=allowed_check, ).values_list('id', flat=True)) - perm_deploy_qs = base_qs.filter( + perm_deploy_ids = set(base_qs.filter( job_type=PERM_INVENTORY_DEPLOY, inventory__permissions__in=deploy_permissions_ids, project__permissions__in=deploy_permissions_ids, inventory__permissions__pk=F('project__permissions__pk'), - ) + ).values_list('id', flat=True)) - perm_check_qs = base_qs.filter( + perm_check_ids = set(base_qs.filter( job_type=PERM_INVENTORY_CHECK, inventory__permissions__in=check_permissions_ids, project__permissions__in=check_permissions_ids, inventory__permissions__pk=F('project__permissions__pk'), - ) + ).values_list('id', flat=True)) - # FIXME: I *think* this should work... needs more testing. - return org_admin_qs | perm_deploy_qs | perm_check_qs + base_ids = org_admin_ids.union(perm_deploy_ids).union(perm_check_ids) + return base_qs.filter(id__in=base_ids) def can_add(self, data): if not data or '_method' in data: # So the browseable API will work? From b57144046bbaeb110d27162b744baf0be55ed1f4 Mon Sep 17 00:00:00 2001 From: James Laska Date: Sun, 13 Sep 2015 15:40:32 -0400 Subject: [PATCH 02/17] Add support for pbuilder chroot builds Additional fixes include: * Clean and pyc files in debian/rules * Reprepro changes * Update debian standards version * Update OS distro detection --- .dput.cf | 6 ++ .mini-dinstall.cf | 16 +++++ Makefile | 155 ++++++++++++++++++++++++++++++---------------- 3 files changed, 122 insertions(+), 55 deletions(-) create mode 100644 .dput.cf create mode 100644 .mini-dinstall.cf diff --git a/.dput.cf b/.dput.cf new file mode 100644 index 0000000000..11dbd7a659 --- /dev/null +++ b/.dput.cf @@ -0,0 +1,6 @@ +[mini_dinstall] +fqdn = localhost +method = local +incoming = FIXME/deb-repo/mini-dinstall/incoming +run_dinstall = 0 +post_upload_command = mini-dinstall -b -v diff --git a/.mini-dinstall.cf b/.mini-dinstall.cf new file mode 100644 index 0000000000..d8c2bc8fa0 --- /dev/null +++ b/.mini-dinstall.cf @@ -0,0 +1,16 @@ +[DEFAULT] +archivedir = FIXME/deb-repo +mail_to = +verify_sigs = false +architectures = all, amd64 +archive_style = flat +generate_release = true +mail_on_success = false +release_codename = ansible-tower +release_description = Ansible Tower +release_label = ansible-tower +release_origin = ansible-tower + +[trusty] + +[precise] diff --git a/Makefile b/Makefile index 9310c4db34..2cd568e135 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -PYTHON=python +PYTHON = python SITELIB=$(shell $(PYTHON) -c "from distutils.sysconfig import get_python_lib; print get_python_lib()") OFFICIAL ?= no PACKER ?= packer @@ -67,7 +67,7 @@ SETUP_TAR_CHECKSUM=$(NAME)-setup-CHECKSUM DEBUILD_BIN ?= debuild DEBUILD_OPTS = --source-option="-I" DPUT_BIN ?= dput -DPUT_OPTS ?= +DPUT_OPTS ?= -c .dput.cf -u ifeq ($(OFFICIAL),yes) DEB_DIST ?= stable # Sign official builds @@ -76,11 +76,20 @@ else DEB_DIST ?= unstable # Do not sign development builds DEBUILD_OPTS += -uc -us - DPUT_OPTS += -u endif DEBUILD = $(DEBUILD_BIN) $(DEBUILD_OPTS) -DEB_PPA ?= reprepro +DEB_PPA ?= mini_dinstall DEB_ARCH ?= amd64 +DEB_NVR = $(NAME)_$(VERSION)-$(RELEASE)~$(DEB_DIST) +DEB_NVRA = $(DEB_NVR)_$(DEB_ARCH) +DEB_NVRS = $(DEB_NVR)_source +DEB_TAR_NAME=$(NAME)-$(VERSION) +DEB_TAR_FILE=$(NAME)_$(VERSION).orig.tar.gz + +# pbuilder parameters +PBUILDER_CACHE_DIR = /var/cache/pbuilder +PBUILDER_BIN ?= pbuilder +PBUILDER_OPTS ?= --debootstrapopts --variant=buildd --distribution $(DEB_DIST) --architecture $(DEB_ARCH) --basetgz $(PBUILDER_CACHE_DIR)/$(DEB_DIST)-$(DEB_ARCH)-base.tgz --buildresult $(PWD)/deb-build # RPM build parameters MOCK_BIN ?= mock @@ -107,11 +116,28 @@ OFFLINE_TAR_FILE = $(OFFLINE_TAR_NAME).tar.gz OFFLINE_TAR_LINK = $(NAME)-setup-bundle-latest.$(DIST_FULL).tar.gz OFFLINE_TAR_CHECKSUM=$(NAME)-setup-bundle-CHECKSUM -DISTRO := $(shell . /etc/os-release 2>/dev/null && echo $${ID} || echo redhat) +# Detect underlying OS distribution +DISTRO ?= +ifneq (,$(wildcard /etc/lsb-release)) + DISTRO = $(shell . /etc/lsb-release && echo $${DISTRIB_ID} | tr '[:upper:]' '[:lower:]') +endif +ifneq (,$(wildcard /etc/os-release)) + DISTRO = $(shell . /etc/os-release && echo $${ID}) +endif +ifneq (,$(wildcard /etc/fedora-release)) + DISTRO = fedora +endif +ifneq (,$(wildcard /etc/centos-release)) + DISTRO = centos +endif +ifneq (,$(wildcard /etc/redhat-release)) + DISTRO = redhat +endif + +# Adjust `setup.py install` parameters based on OS distribution +SETUP_INSTALL_ARGS = --skip-build --no-compile --root=$(DESTDIR) -v ifeq ($(DISTRO),ubuntu) - SETUP_INSTALL_ARGS = --skip-build --no-compile --root=$(DESTDIR) -v --install-layout=deb -else - SETUP_INSTALL_ARGS = --skip-build --no-compile --root=$(DESTDIR) -v + SETUP_INSTALL_ARGS += --install-layout=deb endif .DEFAULT_GOAL := build @@ -122,7 +148,7 @@ endif receiver test test_coverage coverage_html ui_analysis_report test_ui test_jenkins dev_build \ release_build release_clean sdist rpmtar mock-rpm mock-srpm rpm-sign \ devjs minjs testjs testjs_ci node-tests browser-tests jshint ngdocs sync_ui \ - deb deb-src debian reprepro setup_tarball \ + deb deb-src debian debsign pbuilder reprepro setup_tarball \ virtualbox-ovf virtualbox-centos-7 virtualbox-centos-6 \ clean-bundle setup_bundle_tarball @@ -353,7 +379,8 @@ devjs: node_modules clean-ui Brocfile.js bower.json Gruntfile.js $(BROCCOLI) build awx/ui/dist -- --debug # Build minified JS/CSS. -minjs: node_modules clean-ui Brocfile.js +minjs: awx/ui/dist/tower.min.css.gz +awx/ui/dist/tower.min.css.gz: node_modules Brocfile.js $(BROCCOLI) build awx/ui/dist -- --silent --no-debug --no-tests --compress --no-docs --no-sourcemaps minjs_ci: node_modules clean-ui Brocfile.js @@ -391,7 +418,7 @@ tar-build/$(SETUP_TAR_CHECKSUM): setup_tarball: tar-build/$(SETUP_TAR_FILE) tar-build/$(SETUP_TAR_CHECKSUM) @echo "#############################################" - @echo "Setup artifacts:" + @echo "Artifacts:" @echo tar-build/$(SETUP_TAR_FILE) @echo tar-build/$(SETUP_TAR_LINK) @echo tar-build/$(SETUP_TAR_CHECKSUM) @@ -401,10 +428,14 @@ release_clean: -(rm *.tar) -(rm -rf ($RELEASE)) -dist/$(SDIST_TAR_FILE): +dist/$(SDIST_TAR_FILE): awx/ui/dist/tower.min.css.gz BUILD="$(BUILD)" $(PYTHON) setup.py sdist -sdist: minjs dist/$(SDIST_TAR_FILE) +sdist: dist/$(SDIST_TAR_FILE) + @echo "#############################################" + @echo "Artifacts:" + @echo dist/$(SDIST_TAR_FILE) + @echo "#############################################" # Build setup bundle tarball setup-bundle-build: @@ -455,22 +486,22 @@ rpmtar: sdist rpm-build/$(SDIST_TAR_FILE) rpm-build/$(RPM_NVR).src.rpm: /etc/mock/$(MOCK_CFG).cfg $(MOCK_BIN) -r $(MOCK_CFG) --resultdir rpm-build --buildsrpm --spec rpm-build/$(NAME).spec --sources rpm-build \ --define "tower_version $(VERSION)" --define "tower_release $(RELEASE)" - @echo "#############################################" - @echo "SRPM artifacts:" - @echo rpm-build/$(RPM_NVR).src.rpm - @echo "#############################################" mock-srpm: rpmtar rpm-build/$(RPM_NVR).src.rpm + @echo "#############################################" + @echo "Artifacts:" + @echo rpm-build/$(RPM_NVR).src.rpm + @echo "#############################################" rpm-build/$(RPM_NVR).$(RPM_ARCH).rpm: rpm-build/$(RPM_NVR).src.rpm $(MOCK_BIN) -r $(MOCK_CFG) --resultdir rpm-build --rebuild rpm-build/$(RPM_NVR).src.rpm \ --define "tower_version $(VERSION)" --define "tower_release $(RELEASE)" - @echo "#############################################" - @echo "RPM artifacts:" - @echo rpm-build/$(RPM_NVR).$(RPM_ARCH).rpm - @echo "#############################################" mock-rpm: rpmtar rpm-build/$(RPM_NVR).$(RPM_ARCH).rpm + @echo "#############################################" + @echo "Artifacts:" + @echo rpm-build/$(RPM_NVR).$(RPM_ARCH).rpm + @echo "#############################################" ifeq ($(OFFICIAL),yes) rpm-build/$(GPG_FILE): rpm-build @@ -483,63 +514,77 @@ endif deb-build: mkdir -p $@ -deb-build/$(SDIST_TAR_NAME): - mkdir -p deb-build +deb-build/$(DEB_TAR_NAME): dist/$(SDIST_TAR_FILE) + mkdir -p $(dir $@) tar -C deb-build/ -xvf dist/$(SDIST_TAR_FILE) - cp -a packaging/debian deb-build/$(SDIST_TAR_NAME)/ - cp packaging/remove_tower_source.py deb-build/$(SDIST_TAR_NAME)/debian/ - sed -ie "s#^$(NAME) (\([^)]*\)) \([^;]*\);#$(NAME) ($(VERSION)-$(RELEASE)) $(DEB_DIST);#" deb-build/$(SDIST_TAR_NAME)/debian/changelog + mv deb-build/$(SDIST_TAR_NAME) deb-build/$(DEB_TAR_NAME) + cd deb-build && tar czf $(DEB_TAR_FILE) $(DEB_TAR_NAME) + cp -a packaging/debian deb-build/$(DEB_TAR_NAME)/ + cp packaging/remove_tower_source.py deb-build/$(DEB_TAR_NAME)/debian/ + sed -ie "s#^$(NAME) (\([^)]*\)) \([^;]*\);#$(NAME) ($(VERSION)-$(RELEASE)~$(DEB_DIST)) $(DEB_DIST);#" deb-build/$(DEB_TAR_NAME)/debian/changelog ifeq ($(OFFICIAL),yes) -debian: sdist deb-build/$(SDIST_TAR_NAME) deb-build/$(GPG_FILE) +debian: deb-build/$(DEB_TAR_NAME) deb-build/$(GPG_FILE) deb-build/$(GPG_FILE): deb-build $(GPG_BIN) --export -a "${GPG_KEY}" > "$@" else -debian: sdist deb-build/$(SDIST_TAR_NAME) +debian: deb-build/$(DEB_TAR_NAME) endif -deb-build/$(NAME)_$(VERSION)-$(RELEASE)_$(DEB_ARCH).deb: - cd deb-build/$(SDIST_TAR_NAME) && $(DEBUILD) -b +deb-build/$(DEB_NVR).dsc: deb-build/$(DEB_TAR_NAME) + cd deb-build/$(DEB_TAR_NAME) && $(DEBUILD) -S + +deb-src: deb-build/$(DEB_NVR).dsc @echo "#############################################" - @echo "DEB artifacts:" - @echo deb-build/$(NAME)_$(VERSION)-$(RELEASE)_$(DEB_ARCH).deb + @echo "Artifacts:" + @echo deb-build/$(DEB_NVR).dsc + @echo deb-build/$(DEB_NVRS).changes @echo "#############################################" -deb: debian deb-build/$(NAME)_$(VERSION)-$(RELEASE)_$(DEB_ARCH).deb +$(PBUILDER_CACHE_DIR)/$(DEB_DIST)-$(DEB_ARCH)-base.tgz: + $(PBUILDER_BIN) create $(PBUILDER_OPTS) -deb-build/$(NAME)_$(VERSION)-$(RELEASE)_source.changes: - cd deb-build/$(SDIST_TAR_NAME) && $(DEBUILD) -S +pbuilder: $(PBUILDER_CACHE_DIR)/$(DEB_DIST)-$(DEB_ARCH)-base.tgz deb-build/$(DEB_NVRA).deb + +deb-build/$(DEB_NVRA).deb: deb-build/$(DEB_NVR).dsc $(PBUILDER_CACHE_DIR)/$(DEB_DIST)-$(DEB_ARCH)-base.tgz + # cd deb-build/$(DEB_TAR_NAME) && $(DEBUILD) -b + $(PBUILDER_BIN) update $(PBUILDER_OPTS) + $(PBUILDER_BIN) execute $(PBUILDER_OPTS) --save-after-exec packaging/pbuilder/setup.sh $(DEB_DIST) + $(PBUILDER_BIN) build $(PBUILDER_OPTS) deb-build/$(DEB_NVR).dsc + +deb: deb-build/$(DEB_NVRA).deb @echo "#############################################" - @echo "DEB artifacts:" - @echo deb-build/$(NAME)_$(VERSION)-$(RELEASE)_source.changes + @echo "Artifacts:" + @echo deb-build/$(DEB_NVRA).deb @echo "#############################################" -deb-src: debian deb-build/$(NAME)_$(VERSION)-$(RELEASE)_source.changes +deb-upload: deb-build/$(DEB_NVRA).changes + $(DPUT_BIN) $(DPUT_OPTS) $(DEB_PPA) deb-build/$(DEB_NVRA).changes -deb-upload: deb - $(DPUT_BIN) $(DPUT_OPTS) $(DEB_PPA) deb-build/$(NAME)_$(VERSION)-$(RELEASE)_$(DEB_ARCH).changes ; \ +dput: deb-build/$(DEB_NVRA).changes + $(DPUT_BIN) $(DPUT_OPTS) $(DEB_PPA) deb-build/$(DEB_NVRA).changes -deb-src-upload: deb-src - $(DPUT_BIN) $(DPUT_OPTS) $(DEB_PPA) deb-build/$(NAME)_$(VERSION)-$(RELEASE)_source.changes ; \ +deb-src-upload: deb-build/$(DEB_NVRS).changes + $(DPUT_BIN) $(DPUT_OPTS) $(DEB_PPA) deb-build/$(DEB_NVRS).changes -reprepro: deb - mkdir -p $@/conf - cp -a packaging/reprepro/* $@/conf/ +debsign: deb-build/$(DEB_NVRS).changes debian deb-build/$(DEB_NVR).dsc + debsign -k$(GPG_KEY) deb-build/$(DEB_NVRS).changes deb-build/$(DEB_NVR).dsc + +reprepro/conf: + mkdir -p $@ + cp -a packaging/reprepro/* $@/ if [ "$(OFFICIAL)" = "yes" ] ; then \ echo "ask-passphrase" >> $@/conf/options; \ sed -i -e 's|^\(Codename:\)|SignWith: $(GPG_KEY)\n\1|' $@/conf/distributions ; \ fi - @DEB=deb-build/$(NAME)_$(VERSION)-$(RELEASE)_$(DEB_ARCH).deb ; \ - for DIST in trusty precise ; do \ - echo "Removing '$(NAME)' from the $${DIST} apt repo" ; \ - echo reprepro --export=force -b $@ remove $${DIST} $(NAME) ; \ - done; \ - reprepro --export=force -b $@ clearvanished; \ - for DIST in trusty precise ; do \ - echo "Adding $${DEB} to the $${DIST} apt repo"; \ - reprepro --keepunreferencedfiles --export=force -b $@ --ignore=brokenold includedeb $${DIST} $${DEB} ; \ - done; \ + +reprepro: deb-build/$(DEB_NVRA).deb reprepro/conf + reprepro --export=force -b $@ clearvanished + for COMPONENT in non-free ; do \ + reprepro --export=force -b $@ -C $$COMPONENT remove $(DEB_DIST) $(NAME) ; \ + reprepro --export=force -b $@ --keepunreferencedfiles --ignore=brokenold -C $$COMPONENT includedeb $(DEB_DIST) deb-build/$(DEB_NVRA).deb ; \ + done # # Packer build targets From 68416fc8e0850673dcb47a1ffeea886778ba9a92 Mon Sep 17 00:00:00 2001 From: John Mitchell Date: Thu, 17 Sep 2015 00:01:25 -0400 Subject: [PATCH 03/17] add js library licenses --- docs/licenses/angular-animate.txt | 9 + docs/licenses/angular-codemirror.txt | 21 ++ docs/licenses/angular-cookies.txt | 21 ++ docs/licenses/angular-filters.txt | 67 ++++++ docs/licenses/angular-md5.txt | 21 ++ docs/licenses/angular-mocks.txt | 21 ++ docs/licenses/angular-moment.txt | 21 ++ docs/licenses/angular-resource.txt | 21 ++ docs/licenses/angular-route.txt | 21 ++ docs/licenses/angular-sanitize.txt | 21 ++ docs/licenses/angular-scheduler.txt | 20 ++ docs/licenses/angular-tz-extensions.txt | 9 + docs/licenses/angular.txt | 21 ++ docs/licenses/bootstrap-datepicker.txt | 201 ++++++++++++++++++ docs/licenses/bootstrap.txt | 21 ++ docs/licenses/codemirror.txt | 19 ++ docs/licenses/components-font-awesome.txt | 4 + docs/licenses/d3.txt | 26 +++ docs/licenses/ember-cli-test-loader.txt | 19 ++ docs/licenses/jQuery.dotdotdot.txt | 32 +++ .../javascript-detect-element-resize.txt | 20 ++ docs/licenses/jquery-ui.txt | 44 ++++ docs/licenses/jquery.txt | 21 ++ docs/licenses/jqueryui.txt | 26 +++ docs/licenses/js-yaml.txt | 21 ++ docs/licenses/jsonlint.txt | 7 + docs/licenses/kapusta-jquery.sparkline.txt | 10 + docs/licenses/loader.js.txt | 19 ++ docs/licenses/lodash.txt | 22 ++ docs/licenses/lrInfiniteScroll.txt | 19 ++ docs/licenses/moment.txt | 22 ++ docs/licenses/nvd3.txt | 67 ++++++ docs/licenses/rrule.txt | 65 ++++++ docs/licenses/scrollto.txt | 22 ++ docs/licenses/select2-bootstrap-theme.txt | 21 ++ docs/licenses/select2.txt | 21 ++ docs/licenses/sizzle.txt | 32 +++ docs/licenses/socket.io-client.txt | 22 ++ docs/licenses/timezone-js.txt | 5 + docs/licenses/twitter.txt | 21 ++ docs/licenses/underscore.txt | 23 ++ 41 files changed, 1146 insertions(+) create mode 100644 docs/licenses/angular-animate.txt create mode 100644 docs/licenses/angular-codemirror.txt create mode 100644 docs/licenses/angular-cookies.txt create mode 100644 docs/licenses/angular-filters.txt create mode 100644 docs/licenses/angular-md5.txt create mode 100644 docs/licenses/angular-mocks.txt create mode 100644 docs/licenses/angular-moment.txt create mode 100644 docs/licenses/angular-resource.txt create mode 100644 docs/licenses/angular-route.txt create mode 100644 docs/licenses/angular-sanitize.txt create mode 100644 docs/licenses/angular-scheduler.txt create mode 100644 docs/licenses/angular-tz-extensions.txt create mode 100644 docs/licenses/angular.txt create mode 100644 docs/licenses/bootstrap-datepicker.txt create mode 100644 docs/licenses/bootstrap.txt create mode 100644 docs/licenses/codemirror.txt create mode 100644 docs/licenses/components-font-awesome.txt create mode 100644 docs/licenses/d3.txt create mode 100644 docs/licenses/ember-cli-test-loader.txt create mode 100644 docs/licenses/jQuery.dotdotdot.txt create mode 100644 docs/licenses/javascript-detect-element-resize.txt create mode 100644 docs/licenses/jquery-ui.txt create mode 100644 docs/licenses/jquery.txt create mode 100644 docs/licenses/jqueryui.txt create mode 100644 docs/licenses/js-yaml.txt create mode 100644 docs/licenses/jsonlint.txt create mode 100644 docs/licenses/kapusta-jquery.sparkline.txt create mode 100644 docs/licenses/loader.js.txt create mode 100644 docs/licenses/lodash.txt create mode 100644 docs/licenses/lrInfiniteScroll.txt create mode 100644 docs/licenses/moment.txt create mode 100644 docs/licenses/nvd3.txt create mode 100644 docs/licenses/rrule.txt create mode 100644 docs/licenses/scrollto.txt create mode 100644 docs/licenses/select2-bootstrap-theme.txt create mode 100644 docs/licenses/select2.txt create mode 100644 docs/licenses/sizzle.txt create mode 100644 docs/licenses/socket.io-client.txt create mode 100644 docs/licenses/timezone-js.txt create mode 100644 docs/licenses/twitter.txt create mode 100644 docs/licenses/underscore.txt diff --git a/docs/licenses/angular-animate.txt b/docs/licenses/angular-animate.txt new file mode 100644 index 0000000000..8ee066ef5c --- /dev/null +++ b/docs/licenses/angular-animate.txt @@ -0,0 +1,9 @@ +The MIT License + +Copyright (c) 2010-2015 Google, Inc. http://angularjs.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. diff --git a/docs/licenses/angular-codemirror.txt b/docs/licenses/angular-codemirror.txt new file mode 100644 index 0000000000..15ddac4fb9 --- /dev/null +++ b/docs/licenses/angular-codemirror.txt @@ -0,0 +1,21 @@ +Copyright (c) 2014 Chris Houseknecht + +The MIT License (MIT) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of angular-codemirror 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. diff --git a/docs/licenses/angular-cookies.txt b/docs/licenses/angular-cookies.txt new file mode 100644 index 0000000000..46eb817fdf --- /dev/null +++ b/docs/licenses/angular-cookies.txt @@ -0,0 +1,21 @@ +The MIT License + +Copyright (c) 2010-2012 Google, Inc. http://angularjs.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. diff --git a/docs/licenses/angular-filters.txt b/docs/licenses/angular-filters.txt new file mode 100644 index 0000000000..ede96c7aab --- /dev/null +++ b/docs/licenses/angular-filters.txt @@ -0,0 +1,67 @@ +Copyright 2014 Francesco Pontillo + +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. + +--- + +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: + +You must give any other recipients of the Work or Derivative Works a copy of this License; and +You must cause any modified files to carry prominent notices stating that You changed the files; and +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 +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. diff --git a/docs/licenses/angular-md5.txt b/docs/licenses/angular-md5.txt new file mode 100644 index 0000000000..af9bf42f58 --- /dev/null +++ b/docs/licenses/angular-md5.txt @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2014 PatrickJS + +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. diff --git a/docs/licenses/angular-mocks.txt b/docs/licenses/angular-mocks.txt new file mode 100644 index 0000000000..46eb817fdf --- /dev/null +++ b/docs/licenses/angular-mocks.txt @@ -0,0 +1,21 @@ +The MIT License + +Copyright (c) 2010-2012 Google, Inc. http://angularjs.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. diff --git a/docs/licenses/angular-moment.txt b/docs/licenses/angular-moment.txt new file mode 100644 index 0000000000..c27243df02 --- /dev/null +++ b/docs/licenses/angular-moment.txt @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2013-2015 Uri Shaked and contributors + +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. diff --git a/docs/licenses/angular-resource.txt b/docs/licenses/angular-resource.txt new file mode 100644 index 0000000000..46eb817fdf --- /dev/null +++ b/docs/licenses/angular-resource.txt @@ -0,0 +1,21 @@ +The MIT License + +Copyright (c) 2010-2012 Google, Inc. http://angularjs.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. diff --git a/docs/licenses/angular-route.txt b/docs/licenses/angular-route.txt new file mode 100644 index 0000000000..46eb817fdf --- /dev/null +++ b/docs/licenses/angular-route.txt @@ -0,0 +1,21 @@ +The MIT License + +Copyright (c) 2010-2012 Google, Inc. http://angularjs.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. diff --git a/docs/licenses/angular-sanitize.txt b/docs/licenses/angular-sanitize.txt new file mode 100644 index 0000000000..46eb817fdf --- /dev/null +++ b/docs/licenses/angular-sanitize.txt @@ -0,0 +1,21 @@ +The MIT License + +Copyright (c) 2010-2012 Google, Inc. http://angularjs.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. diff --git a/docs/licenses/angular-scheduler.txt b/docs/licenses/angular-scheduler.txt new file mode 100644 index 0000000000..8e6c0e1a34 --- /dev/null +++ b/docs/licenses/angular-scheduler.txt @@ -0,0 +1,20 @@ +The MIT License (MIT) + +Copyright (c) 2014 Ansible, Inc. + +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. diff --git a/docs/licenses/angular-tz-extensions.txt b/docs/licenses/angular-tz-extensions.txt new file mode 100644 index 0000000000..9443e795f2 --- /dev/null +++ b/docs/licenses/angular-tz-extensions.txt @@ -0,0 +1,9 @@ +The MIT License (MIT) + +Copyright (c) 2013 Michael Ahlers + +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. diff --git a/docs/licenses/angular.txt b/docs/licenses/angular.txt new file mode 100644 index 0000000000..ad1397a3bd --- /dev/null +++ b/docs/licenses/angular.txt @@ -0,0 +1,21 @@ +The MIT License + +Copyright (c) 2010-2015 Google, Inc. http://angularjs.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. diff --git a/docs/licenses/bootstrap-datepicker.txt b/docs/licenses/bootstrap-datepicker.txt new file mode 100644 index 0000000000..794f69a1ca --- /dev/null +++ b/docs/licenses/bootstrap-datepicker.txt @@ -0,0 +1,201 @@ +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. diff --git a/docs/licenses/bootstrap.txt b/docs/licenses/bootstrap.txt new file mode 100644 index 0000000000..8d94aa9ac9 --- /dev/null +++ b/docs/licenses/bootstrap.txt @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2011-2014 Twitter, Inc + +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. diff --git a/docs/licenses/codemirror.txt b/docs/licenses/codemirror.txt new file mode 100644 index 0000000000..442d11cdce --- /dev/null +++ b/docs/licenses/codemirror.txt @@ -0,0 +1,19 @@ +Copyright (C) 2013 by Marijn Haverbeke and others + +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. diff --git a/docs/licenses/components-font-awesome.txt b/docs/licenses/components-font-awesome.txt new file mode 100644 index 0000000000..832e5382a7 --- /dev/null +++ b/docs/licenses/components-font-awesome.txt @@ -0,0 +1,4 @@ +- The Font Awesome font is licensed under the SIL Open Font License - http://scripts.sil.org/OFL +- Font Awesome CSS, LESS, and SASS files are licensed under the MIT License - http://opensource.org/licenses/mit-license.html +- The Font Awesome pictograms are licensed under the CC BY 3.0 License - http://creativecommons.org/licenses/by/3.0/ +- Attribution is no longer required in Font Awesome 3.0, but much appreciated: "Font Awesome by Dave Gandy - http://fortawesome.github.com/Font-Awesome" diff --git a/docs/licenses/d3.txt b/docs/licenses/d3.txt new file mode 100644 index 0000000000..0bc47f33ef --- /dev/null +++ b/docs/licenses/d3.txt @@ -0,0 +1,26 @@ +Copyright (c) 2013, Michael Bostock +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. + +* The name Michael Bostock may not 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 MICHAEL BOSTOCK 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. diff --git a/docs/licenses/ember-cli-test-loader.txt b/docs/licenses/ember-cli-test-loader.txt new file mode 100644 index 0000000000..342a8769dd --- /dev/null +++ b/docs/licenses/ember-cli-test-loader.txt @@ -0,0 +1,19 @@ +MIT (as indicated in bower file): + +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. diff --git a/docs/licenses/jQuery.dotdotdot.txt b/docs/licenses/jQuery.dotdotdot.txt new file mode 100644 index 0000000000..18f80b944d --- /dev/null +++ b/docs/licenses/jQuery.dotdotdot.txt @@ -0,0 +1,32 @@ +/* + * jQuery dotdotdot 1.6.14 + * + * Copyright (c) Fred Heusschen + * www.frebsite.nl + * + * Plugin website: + * dotdotdot.frebsite.nl + * + * Dual licensed under the MIT and GPL licenses. + * http://en.wikipedia.org/wiki/MIT_License + * http://en.wikipedia.org/wiki/GNU_General_Public_License + */ + +MIT License + 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. diff --git a/docs/licenses/javascript-detect-element-resize.txt b/docs/licenses/javascript-detect-element-resize.txt new file mode 100644 index 0000000000..89d3102837 --- /dev/null +++ b/docs/licenses/javascript-detect-element-resize.txt @@ -0,0 +1,20 @@ +The MIT License (MIT) + +Copyright (c) 2013 Sebastián Décima + +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. diff --git a/docs/licenses/jquery-ui.txt b/docs/licenses/jquery-ui.txt new file mode 100644 index 0000000000..96fb1f6359 --- /dev/null +++ b/docs/licenses/jquery-ui.txt @@ -0,0 +1,44 @@ +Copyright 2007, 2014 jQuery Foundation and other contributors, +https://jquery.org/ + +This software consists of voluntary contributions made by many +individuals. For exact contribution history, see the revision history +available at https://github.com/jquery/jquery-ui + +The following license applies to all parts of this software except as +documented below: + +==== + +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. + +==== + +Copyright and related rights for sample code are waived via CC0. Sample +code is defined as all source code contained within the demos directory. + +CC0: http://creativecommons.org/publicdomain/zero/1.0/ + +==== + +All files located in the node_modules and external directories are +externally maintained libraries used by this software which have their +own licenses; we recommend you read them, as their terms may differ from +the terms above.% diff --git a/docs/licenses/jquery.txt b/docs/licenses/jquery.txt new file mode 100644 index 0000000000..cdd31b5c71 --- /dev/null +++ b/docs/licenses/jquery.txt @@ -0,0 +1,21 @@ +Copyright 2014 jQuery Foundation and other contributors +http://jquery.com/ + +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. diff --git a/docs/licenses/jqueryui.txt b/docs/licenses/jqueryui.txt new file mode 100644 index 0000000000..1c693e3d44 --- /dev/null +++ b/docs/licenses/jqueryui.txt @@ -0,0 +1,26 @@ +Copyright 2013 jQuery Foundation and other contributors, +http://jqueryui.com/ + +This software consists of voluntary contributions made by many +individuals (AUTHORS.txt, http://jqueryui.com/about) For exact +contribution history, see the revision history and logs, available +at http://jquery-ui.googlecode.com/svn/ + +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. diff --git a/docs/licenses/js-yaml.txt b/docs/licenses/js-yaml.txt new file mode 100644 index 0000000000..0f16ee957d --- /dev/null +++ b/docs/licenses/js-yaml.txt @@ -0,0 +1,21 @@ +(The MIT License) + +Copyright (C) 2011, 2013 by Vitaly Puzrin + +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. diff --git a/docs/licenses/jsonlint.txt b/docs/licenses/jsonlint.txt new file mode 100644 index 0000000000..e341466372 --- /dev/null +++ b/docs/licenses/jsonlint.txt @@ -0,0 +1,7 @@ +Copyright (C) 2012 Zachary Carter + +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. diff --git a/docs/licenses/kapusta-jquery.sparkline.txt b/docs/licenses/kapusta-jquery.sparkline.txt new file mode 100644 index 0000000000..7588d5dfa9 --- /dev/null +++ b/docs/licenses/kapusta-jquery.sparkline.txt @@ -0,0 +1,10 @@ +Released under the New BSD License + +(c) Splunk, Inc 2012 + +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 Zend Technologies USA, Inc. 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. diff --git a/docs/licenses/loader.js.txt b/docs/licenses/loader.js.txt new file mode 100644 index 0000000000..342a8769dd --- /dev/null +++ b/docs/licenses/loader.js.txt @@ -0,0 +1,19 @@ +MIT (as indicated in bower file): + +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. diff --git a/docs/licenses/lodash.txt b/docs/licenses/lodash.txt new file mode 100644 index 0000000000..9cd87e5dce --- /dev/null +++ b/docs/licenses/lodash.txt @@ -0,0 +1,22 @@ +Copyright 2012-2015 The Dojo Foundation +Based on Underscore.js, copyright 2009-2015 Jeremy Ashkenas, +DocumentCloud and Investigative Reporters & Editors + +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. diff --git a/docs/licenses/lrInfiniteScroll.txt b/docs/licenses/lrInfiniteScroll.txt new file mode 100644 index 0000000000..342a8769dd --- /dev/null +++ b/docs/licenses/lrInfiniteScroll.txt @@ -0,0 +1,19 @@ +MIT (as indicated in bower file): + +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. diff --git a/docs/licenses/moment.txt b/docs/licenses/moment.txt new file mode 100644 index 0000000000..bd172467a6 --- /dev/null +++ b/docs/licenses/moment.txt @@ -0,0 +1,22 @@ +Copyright (c) 2011-2014 Tim Wood, Iskren Chernev, Moment.js contributors + +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. diff --git a/docs/licenses/nvd3.txt b/docs/licenses/nvd3.txt new file mode 100644 index 0000000000..8cf0a9c608 --- /dev/null +++ b/docs/licenses/nvd3.txt @@ -0,0 +1,67 @@ +Apache License, v2.0 + +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. + +--- + +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: + +You must give any other recipients of the Work or Derivative Works a copy of this License; and +You must cause any modified files to carry prominent notices stating that You changed the files; and +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 +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. diff --git a/docs/licenses/rrule.txt b/docs/licenses/rrule.txt new file mode 100644 index 0000000000..a68f31d00c --- /dev/null +++ b/docs/licenses/rrule.txt @@ -0,0 +1,65 @@ +rrule.js: Library for working with recurrence rules for calendar dates. +======================================================================= + +Copyright 2010, Jakub Roztocil and Lars Schöning + +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 above 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. + + 3. Neither the name of The author 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 AUTHOR 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 AUTHOR AND 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. + + + +./rrule.js and ./test/tests.js is based on python-dateutil. LICENCE: + +python-dateutil - Extensions to the standard Python datetime module. +==================================================================== + +Copyright (c) 2003-2011 - Gustavo Niemeyer +Copyright (c) 2012 - Tomi Pieviläinen + +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 copyright holder 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. diff --git a/docs/licenses/scrollto.txt b/docs/licenses/scrollto.txt new file mode 100644 index 0000000000..f34c71b096 --- /dev/null +++ b/docs/licenses/scrollto.txt @@ -0,0 +1,22 @@ +(The MIT License) + +Copyright (c) 2007-2015 Ariel Flesler + +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. diff --git a/docs/licenses/select2-bootstrap-theme.txt b/docs/licenses/select2-bootstrap-theme.txt new file mode 100644 index 0000000000..406d19a3c3 --- /dev/null +++ b/docs/licenses/select2-bootstrap-theme.txt @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2012-2015 Florian Kissling and contributors + +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. diff --git a/docs/licenses/select2.txt b/docs/licenses/select2.txt new file mode 100644 index 0000000000..86c7c291a9 --- /dev/null +++ b/docs/licenses/select2.txt @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2012-2015 Kevin Brown, Igor Vaynberg, and Select2 contributors + +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. diff --git a/docs/licenses/sizzle.txt b/docs/licenses/sizzle.txt new file mode 100644 index 0000000000..427923f4ed --- /dev/null +++ b/docs/licenses/sizzle.txt @@ -0,0 +1,32 @@ +/*! + * Sizzle CSS Selector Engine v1.10.16 + * http://sizzlejs.com/ + * + * Copyright 2013 jQuery Foundation, Inc. and other contributors + * Released under the MIT license + * http://jquery.org/license + * + * Date: 2014-01-13 + */ + + The MIT License (MIT) + + Copyright (c) 2013 jQuery Foundation, Inc. and other contributors + + 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. diff --git a/docs/licenses/socket.io-client.txt b/docs/licenses/socket.io-client.txt new file mode 100644 index 0000000000..dbf030074b --- /dev/null +++ b/docs/licenses/socket.io-client.txt @@ -0,0 +1,22 @@ +(The MIT License) + +Copyright (c) 2010 LearnBoost + +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. diff --git a/docs/licenses/timezone-js.txt b/docs/licenses/timezone-js.txt new file mode 100644 index 0000000000..b71d8696d1 --- /dev/null +++ b/docs/licenses/timezone-js.txt @@ -0,0 +1,5 @@ +Copyright 2010 Matthew Eernisse (mde@fleegix.org) and Open Source Applications Foundation. + +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. diff --git a/docs/licenses/twitter.txt b/docs/licenses/twitter.txt new file mode 100644 index 0000000000..8d94aa9ac9 --- /dev/null +++ b/docs/licenses/twitter.txt @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2011-2014 Twitter, Inc + +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. diff --git a/docs/licenses/underscore.txt b/docs/licenses/underscore.txt new file mode 100644 index 0000000000..ad0e71bc4b --- /dev/null +++ b/docs/licenses/underscore.txt @@ -0,0 +1,23 @@ +Copyright (c) 2009-2015 Jeremy Ashkenas, DocumentCloud and Investigative +Reporters & Editors + +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. From 07574c9b64370bb97abb3adc6d9b9e7b6b280a96 Mon Sep 17 00:00:00 2001 From: James Laska Date: Fri, 18 Sep 2015 10:04:49 -0400 Subject: [PATCH 04/17] Add bundled licenses documentation Also includes in the bundled tarball artifact. --- Makefile | 1 + docs/bundled_licenses/ansible-tower.txt | 5 + docs/bundled_licenses/ansible.txt | 675 ++++++++++++++++++ docs/bundled_licenses/jemalloc.txt | 27 + docs/bundled_licenses/mongodb-org-server.txt | 661 +++++++++++++++++ docs/bundled_licenses/munin.txt | 64 ++ docs/bundled_licenses/openpgm.copying | 504 +++++++++++++ docs/bundled_licenses/openpgm.txt | 17 + docs/bundled_licenses/perl-Cache-Cache.txt | 3 + .../perl-Email-Date-Format.txt | 378 ++++++++++ docs/bundled_licenses/perl-HTML-Template.txt | 379 ++++++++++ docs/bundled_licenses/perl-IO-Multiplex.txt | 3 + docs/bundled_licenses/perl-IPC-ShareLite.txt | 3 + .../perl-Log-Dispatch-FileRotate.txt | 3 + docs/bundled_licenses/perl-Log-Dispatch.txt | 207 ++++++ docs/bundled_licenses/perl-Log-Log4perl.txt | 14 + docs/bundled_licenses/perl-MIME-Lite.txt | 378 ++++++++++ docs/bundled_licenses/perl-MIME-Types.txt | 3 + docs/bundled_licenses/perl-Mail-Sender.txt | 3 + docs/bundled_licenses/perl-Net-CIDR.txt | 6 + docs/bundled_licenses/perl-Net-SNMP.txt | 3 + docs/bundled_licenses/perl-Net-Sendmail.txt | 1 + docs/bundled_licenses/perl-Net-Server.txt | 3 + docs/bundled_licenses/postgresql94.txt | 23 + docs/bundled_licenses/proot.txt | 339 +++++++++ docs/bundled_licenses/python-crypto.txt | 69 ++ docs/bundled_licenses/python-ecdsa.txt | 24 + docs/bundled_licenses/python-httplib2.txt | 21 + docs/bundled_licenses/python-keyczar.txt | 202 ++++++ docs/bundled_licenses/python-meld3.txt | 54 ++ docs/bundled_licenses/python-paramiko.txt | 504 +++++++++++++ docs/bundled_licenses/redis.txt | 10 + docs/bundled_licenses/sshpass.txt | 340 +++++++++ docs/bundled_licenses/supervisor.txt | 164 +++++ docs/bundled_licenses/zeromq3.txt | 674 +++++++++++++++++ 35 files changed, 5765 insertions(+) create mode 100644 docs/bundled_licenses/ansible-tower.txt create mode 100644 docs/bundled_licenses/ansible.txt create mode 100644 docs/bundled_licenses/jemalloc.txt create mode 100644 docs/bundled_licenses/mongodb-org-server.txt create mode 100644 docs/bundled_licenses/munin.txt create mode 100644 docs/bundled_licenses/openpgm.copying create mode 100644 docs/bundled_licenses/openpgm.txt create mode 100644 docs/bundled_licenses/perl-Cache-Cache.txt create mode 100644 docs/bundled_licenses/perl-Email-Date-Format.txt create mode 100644 docs/bundled_licenses/perl-HTML-Template.txt create mode 100644 docs/bundled_licenses/perl-IO-Multiplex.txt create mode 100644 docs/bundled_licenses/perl-IPC-ShareLite.txt create mode 100644 docs/bundled_licenses/perl-Log-Dispatch-FileRotate.txt create mode 100644 docs/bundled_licenses/perl-Log-Dispatch.txt create mode 100644 docs/bundled_licenses/perl-Log-Log4perl.txt create mode 100644 docs/bundled_licenses/perl-MIME-Lite.txt create mode 100644 docs/bundled_licenses/perl-MIME-Types.txt create mode 100644 docs/bundled_licenses/perl-Mail-Sender.txt create mode 100644 docs/bundled_licenses/perl-Net-CIDR.txt create mode 100644 docs/bundled_licenses/perl-Net-SNMP.txt create mode 100644 docs/bundled_licenses/perl-Net-Sendmail.txt create mode 100644 docs/bundled_licenses/perl-Net-Server.txt create mode 100644 docs/bundled_licenses/postgresql94.txt create mode 100644 docs/bundled_licenses/proot.txt create mode 100644 docs/bundled_licenses/python-crypto.txt create mode 100644 docs/bundled_licenses/python-ecdsa.txt create mode 100644 docs/bundled_licenses/python-httplib2.txt create mode 100644 docs/bundled_licenses/python-keyczar.txt create mode 100644 docs/bundled_licenses/python-meld3.txt create mode 100644 docs/bundled_licenses/python-paramiko.txt create mode 100644 docs/bundled_licenses/redis.txt create mode 100644 docs/bundled_licenses/sshpass.txt create mode 100644 docs/bundled_licenses/supervisor.txt create mode 100644 docs/bundled_licenses/zeromq3.txt diff --git a/Makefile b/Makefile index 2cd568e135..a32012d3a5 100644 --- a/Makefile +++ b/Makefile @@ -444,6 +444,7 @@ setup-bundle-build: # TODO - Somehow share implementation with setup_tarball setup-bundle-build/$(OFFLINE_TAR_FILE): cp -a setup setup-bundle-build/$(OFFLINE_TAR_NAME) + cp -a docs/bundled_licenses setup-bundle-build/$(OFFLINE_TAR_NAME)/licenses cd setup-bundle-build/$(OFFLINE_TAR_NAME) && sed -e 's#%NAME%#$(NAME)#;s#%VERSION%#$(VERSION)#;s#%RELEASE%#$(RELEASE)#;' group_vars/all.in > group_vars/all $(PYTHON) $(DEPS_SCRIPT) -d $(DIST) -r $(DIST_MAJOR) -u $(AW_REPO_URL) -s setup-bundle-build/$(OFFLINE_TAR_NAME) -v -v -v cd setup-bundle-build && tar -czf $(OFFLINE_TAR_FILE) --exclude "*/all.in" $(OFFLINE_TAR_NAME)/ diff --git a/docs/bundled_licenses/ansible-tower.txt b/docs/bundled_licenses/ansible-tower.txt new file mode 100644 index 0000000000..991895d074 --- /dev/null +++ b/docs/bundled_licenses/ansible-tower.txt @@ -0,0 +1,5 @@ +The Ansible Tower Software is a commercial software licensed to you pursuant to the Ansible Software Subscription and Services Agreement (“EULA”) located at www.ansible.com/subscription-agreement and an annual Order/Agreement with Ansible, Inc. + +The Ansible Tower Software is free for use up to ten (10) Nodes, any additional Nodes shall be purchased. + +Ansible and Ansible Tower are registered Trademarks of Ansible, Inc. diff --git a/docs/bundled_licenses/ansible.txt b/docs/bundled_licenses/ansible.txt new file mode 100644 index 0000000000..10926e87f1 --- /dev/null +++ b/docs/bundled_licenses/ansible.txt @@ -0,0 +1,675 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "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 THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. + diff --git a/docs/bundled_licenses/jemalloc.txt b/docs/bundled_licenses/jemalloc.txt new file mode 100644 index 0000000000..bdda0feb9e --- /dev/null +++ b/docs/bundled_licenses/jemalloc.txt @@ -0,0 +1,27 @@ +Unless otherwise specified, files in the jemalloc source distribution are +subject to the following license: +-------------------------------------------------------------------------------- +Copyright (C) 2002-2014 Jason Evans . +All rights reserved. +Copyright (C) 2007-2012 Mozilla Foundation. All rights reserved. +Copyright (C) 2009-2014 Facebook, 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: +1. Redistributions of source code must retain the above copyright notice(s), + this list of conditions and the following disclaimer. +2. Redistributions in binary form must reproduce the above copyright notice(s), + 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 COPYRIGHT HOLDER(S) ``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 HOLDER(S) 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. +-------------------------------------------------------------------------------- diff --git a/docs/bundled_licenses/mongodb-org-server.txt b/docs/bundled_licenses/mongodb-org-server.txt new file mode 100644 index 0000000000..dba13ed2dd --- /dev/null +++ b/docs/bundled_licenses/mongodb-org-server.txt @@ -0,0 +1,661 @@ + GNU AFFERO GENERAL PUBLIC LICENSE + Version 3, 19 November 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU Affero General Public License is a free, copyleft license for +software and other kinds of works, specifically designed to ensure +cooperation with the community in the case of network server software. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +our General Public Licenses are intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + Developers that use our General Public Licenses protect your rights +with two steps: (1) assert copyright on the software, and (2) offer +you this License which gives you legal permission to copy, distribute +and/or modify the software. + + A secondary benefit of defending all users' freedom is that +improvements made in alternate versions of the program, if they +receive widespread use, become available for other developers to +incorporate. Many developers of free software are heartened and +encouraged by the resulting cooperation. However, in the case of +software used on network servers, this result may fail to come about. +The GNU General Public License permits making a modified version and +letting the public access it on a server without ever releasing its +source code to the public. + + The GNU Affero General Public License is designed specifically to +ensure that, in such cases, the modified source code becomes available +to the community. It requires the operator of a network server to +provide the source code of the modified version running there to the +users of that server. Therefore, public use of a modified version, on +a publicly accessible server, gives the public access to the source +code of the modified version. + + An older license, called the Affero General Public License and +published by Affero, was designed to accomplish similar goals. This is +a different license, not a version of the Affero GPL, but Affero has +released a new version of the Affero GPL which permits relicensing under +this license. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU Affero General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Remote Network Interaction; Use with the GNU General Public License. + + Notwithstanding any other provision of this License, if you modify the +Program, your modified version must prominently offer all users +interacting with it remotely through a computer network (if your version +supports such interaction) an opportunity to receive the Corresponding +Source of your version by providing access to the Corresponding Source +from a network server at no charge, through some standard or customary +means of facilitating copying of software. This Corresponding Source +shall include the Corresponding Source for any work covered by version 3 +of the GNU General Public License that is incorporated pursuant to the +following paragraph. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the work with which it is combined will remain governed by version +3 of the GNU General Public License. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU Affero General Public License from time to time. Such new versions +will be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU Affero General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU Affero General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU Affero General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "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 THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If your software can interact with users remotely through a computer +network, you should also make sure that it provides a way for users to +get its source. For example, if your program is a web application, its +interface could display a "Source" link that leads users to an archive +of the code. There are many ways you could offer source, and different +solutions will be better for different programs; see section 13 for the +specific requirements. + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU AGPL, see +. diff --git a/docs/bundled_licenses/munin.txt b/docs/bundled_licenses/munin.txt new file mode 100644 index 0000000000..b0bb29e150 --- /dev/null +++ b/docs/bundled_licenses/munin.txt @@ -0,0 +1,64 @@ +Munin - a network-wide graphing framework + + Copyright (C) 2002-2009 Jimmy Olsen, et al. + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; version 2 dated June, 1991. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +Includes the font Bitstream Vera Mono, which is under the following license: + + Copyright (C) 2003 Bitstream, Inc. + All Rights Reserved. Bitstream Vera is a trademark of Bitstream, Inc. + + Permission is hereby granted, free of charge, to any person obtaining a + copy of the fonts accompanying this license ("Fonts") and associated + documentation files (the "Font Software"), to reproduce and distribute + the Font Software, including without limitation the rights to use, copy, + merge, publish, distribute, and/or sell copies of the Font Software, and + to permit persons to whom the Font Software is furnished to do so, + subject to the following conditions: + + The above copyright and trademark notices and this permission notice + shall be included in all copies of one or more of the Font Software + typefaces. + + The Font Software may be modified, altered, or added to, and in + particular the designs of glyphs or characters in the Fonts may be + modified and additional glyphs or characters may be added to the Fonts, + only if the fonts are renamed to names not containing either the words + "Bitstream" or the word "Vera". + + This License becomes null and void to the extent applicable to Fonts or + Font Software that has been modified and is distributed under the + "Bitstream Vera" names. + + The Font Software may be sold as part of a larger software package but + no copy of one or more of the Font Software typefaces may be sold by + itself. + + THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF + COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL + BITSTREAM OR THE GNOME FOUNDATION BE LIABLE FOR ANY CLAIM, DAMAGES OR + OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, + OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR + OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT + SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. + + Except as contained in this notice, the names of Gnome, the Gnome + Foundation, and Bitstream Inc., shall not be used in advertising or + otherwise to promote the sale, use or other dealings in this Font + Software without prior written authorization from the Gnome Foundation + or Bitstream Inc., respectively. For further information, contact: + . diff --git a/docs/bundled_licenses/openpgm.copying b/docs/bundled_licenses/openpgm.copying new file mode 100644 index 0000000000..5ab7695ab8 --- /dev/null +++ b/docs/bundled_licenses/openpgm.copying @@ -0,0 +1,504 @@ + GNU LESSER GENERAL PUBLIC LICENSE + Version 2.1, February 1999 + + Copyright (C) 1991, 1999 Free Software Foundation, Inc. + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + +[This is the first released version of the Lesser GPL. It also counts + as the successor of the GNU Library Public License, version 2, hence + the version number 2.1.] + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +Licenses are intended to guarantee your freedom to share and change +free software--to make sure the software is free for all its users. + + This license, the Lesser General Public License, applies to some +specially designated software packages--typically libraries--of the +Free Software Foundation and other authors who decide to use it. You +can use it too, but we suggest you first think carefully about whether +this license or the ordinary General Public License is the better +strategy to use in any particular case, based on the explanations below. + + When we speak of free software, we are referring to freedom of use, +not price. Our General Public Licenses are designed to make sure that +you have the freedom to distribute copies of free software (and charge +for this service if you wish); that you receive source code or can get +it if you want it; that you can change the software and use pieces of +it in new free programs; and that you are informed that you can do +these things. + + To protect your rights, we need to make restrictions that forbid +distributors to deny you these rights or to ask you to surrender these +rights. These restrictions translate to certain responsibilities for +you if you distribute copies of the library or if you modify it. + + For example, if you distribute copies of the library, whether gratis +or for a fee, you must give the recipients all the rights that we gave +you. You must make sure that they, too, receive or can get the source +code. If you link other code with the library, you must provide +complete object files to the recipients, so that they can relink them +with the library after making changes to the library and recompiling +it. And you must show them these terms so they know their rights. + + We protect your rights with a two-step method: (1) we copyright the +library, and (2) we offer you this license, which gives you legal +permission to copy, distribute and/or modify the library. + + To protect each distributor, we want to make it very clear that +there is no warranty for the free library. Also, if the library is +modified by someone else and passed on, the recipients should know +that what they have is not the original version, so that the original +author's reputation will not be affected by problems that might be +introduced by others. + + Finally, software patents pose a constant threat to the existence of +any free program. We wish to make sure that a company cannot +effectively restrict the users of a free program by obtaining a +restrictive license from a patent holder. Therefore, we insist that +any patent license obtained for a version of the library must be +consistent with the full freedom of use specified in this license. + + Most GNU software, including some libraries, is covered by the +ordinary GNU General Public License. This license, the GNU Lesser +General Public License, applies to certain designated libraries, and +is quite different from the ordinary General Public License. We use +this license for certain libraries in order to permit linking those +libraries into non-free programs. + + When a program is linked with a library, whether statically or using +a shared library, the combination of the two is legally speaking a +combined work, a derivative of the original library. The ordinary +General Public License therefore permits such linking only if the +entire combination fits its criteria of freedom. The Lesser General +Public License permits more lax criteria for linking other code with +the library. + + We call this license the "Lesser" General Public License because it +does Less to protect the user's freedom than the ordinary General +Public License. It also provides other free software developers Less +of an advantage over competing non-free programs. These disadvantages +are the reason we use the ordinary General Public License for many +libraries. However, the Lesser license provides advantages in certain +special circumstances. + + For example, on rare occasions, there may be a special need to +encourage the widest possible use of a certain library, so that it becomes +a de-facto standard. To achieve this, non-free programs must be +allowed to use the library. A more frequent case is that a free +library does the same job as widely used non-free libraries. In this +case, there is little to gain by limiting the free library to free +software only, so we use the Lesser General Public License. + + In other cases, permission to use a particular library in non-free +programs enables a greater number of people to use a large body of +free software. For example, permission to use the GNU C Library in +non-free programs enables many more people to use the whole GNU +operating system, as well as its variant, the GNU/Linux operating +system. + + Although the Lesser General Public License is Less protective of the +users' freedom, it does ensure that the user of a program that is +linked with the Library has the freedom and the wherewithal to run +that program using a modified version of the Library. + + The precise terms and conditions for copying, distribution and +modification follow. Pay close attention to the difference between a +"work based on the library" and a "work that uses the library". The +former contains code derived from the library, whereas the latter must +be combined with the library in order to run. + + GNU LESSER GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License Agreement applies to any software library or other +program which contains a notice placed by the copyright holder or +other authorized party saying it may be distributed under the terms of +this Lesser General Public License (also called "this License"). +Each licensee is addressed as "you". + + A "library" means a collection of software functions and/or data +prepared so as to be conveniently linked with application programs +(which use some of those functions and data) to form executables. + + The "Library", below, refers to any such software library or work +which has been distributed under these terms. A "work based on the +Library" means either the Library or any derivative work under +copyright law: that is to say, a work containing the Library or a +portion of it, either verbatim or with modifications and/or translated +straightforwardly into another language. (Hereinafter, translation is +included without limitation in the term "modification".) + + "Source code" for a work means the preferred form of the work for +making modifications to it. For a library, complete source code means +all the source code for all modules it contains, plus any associated +interface definition files, plus the scripts used to control compilation +and installation of the library. + + Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running a program using the Library is not restricted, and output from +such a program is covered only if its contents constitute a work based +on the Library (independent of the use of the Library in a tool for +writing it). Whether that is true depends on what the Library does +and what the program that uses the Library does. + + 1. You may copy and distribute verbatim copies of the Library's +complete source code as you receive it, in any medium, provided that +you conspicuously and appropriately publish on each copy an +appropriate copyright notice and disclaimer of warranty; keep intact +all the notices that refer to this License and to the absence of any +warranty; and distribute a copy of this License along with the +Library. + + You may charge a fee for the physical act of transferring a copy, +and you may at your option offer warranty protection in exchange for a +fee. + + 2. You may modify your copy or copies of the Library or any portion +of it, thus forming a work based on the Library, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) The modified work must itself be a software library. + + b) You must cause the files modified to carry prominent notices + stating that you changed the files and the date of any change. + + c) You must cause the whole of the work to be licensed at no + charge to all third parties under the terms of this License. + + d) If a facility in the modified Library refers to a function or a + table of data to be supplied by an application program that uses + the facility, other than as an argument passed when the facility + is invoked, then you must make a good faith effort to ensure that, + in the event an application does not supply such function or + table, the facility still operates, and performs whatever part of + its purpose remains meaningful. + + (For example, a function in a library to compute square roots has + a purpose that is entirely well-defined independent of the + application. Therefore, Subsection 2d requires that any + application-supplied function or table used by this function must + be optional: if the application does not supply it, the square + root function must still compute square roots.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Library, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Library, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote +it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Library. + +In addition, mere aggregation of another work not based on the Library +with the Library (or with a work based on the Library) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may opt to apply the terms of the ordinary GNU General Public +License instead of this License to a given copy of the Library. To do +this, you must alter all the notices that refer to this License, so +that they refer to the ordinary GNU General Public License, version 2, +instead of to this License. (If a newer version than version 2 of the +ordinary GNU General Public License has appeared, then you can specify +that version instead if you wish.) Do not make any other change in +these notices. + + Once this change is made in a given copy, it is irreversible for +that copy, so the ordinary GNU General Public License applies to all +subsequent copies and derivative works made from that copy. + + This option is useful when you wish to copy part of the code of +the Library into a program that is not a library. + + 4. You may copy and distribute the Library (or a portion or +derivative of it, under Section 2) in object code or executable form +under the terms of Sections 1 and 2 above provided that you accompany +it with the complete corresponding machine-readable source code, which +must be distributed under the terms of Sections 1 and 2 above on a +medium customarily used for software interchange. + + If distribution of object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the +source code from the same place satisfies the requirement to +distribute the source code, even though third parties are not +compelled to copy the source along with the object code. + + 5. A program that contains no derivative of any portion of the +Library, but is designed to work with the Library by being compiled or +linked with it, is called a "work that uses the Library". Such a +work, in isolation, is not a derivative work of the Library, and +therefore falls outside the scope of this License. + + However, linking a "work that uses the Library" with the Library +creates an executable that is a derivative of the Library (because it +contains portions of the Library), rather than a "work that uses the +library". The executable is therefore covered by this License. +Section 6 states terms for distribution of such executables. + + When a "work that uses the Library" uses material from a header file +that is part of the Library, the object code for the work may be a +derivative work of the Library even though the source code is not. +Whether this is true is especially significant if the work can be +linked without the Library, or if the work is itself a library. The +threshold for this to be true is not precisely defined by law. + + If such an object file uses only numerical parameters, data +structure layouts and accessors, and small macros and small inline +functions (ten lines or less in length), then the use of the object +file is unrestricted, regardless of whether it is legally a derivative +work. (Executables containing this object code plus portions of the +Library will still fall under Section 6.) + + Otherwise, if the work is a derivative of the Library, you may +distribute the object code for the work under the terms of Section 6. +Any executables containing that work also fall under Section 6, +whether or not they are linked directly with the Library itself. + + 6. As an exception to the Sections above, you may also combine or +link a "work that uses the Library" with the Library to produce a +work containing portions of the Library, and distribute that work +under terms of your choice, provided that the terms permit +modification of the work for the customer's own use and reverse +engineering for debugging such modifications. + + You must give prominent notice with each copy of the work that the +Library is used in it and that the Library and its use are covered by +this License. You must supply a copy of this License. If the work +during execution displays copyright notices, you must include the +copyright notice for the Library among them, as well as a reference +directing the user to the copy of this License. Also, you must do one +of these things: + + a) Accompany the work with the complete corresponding + machine-readable source code for the Library including whatever + changes were used in the work (which must be distributed under + Sections 1 and 2 above); and, if the work is an executable linked + with the Library, with the complete machine-readable "work that + uses the Library", as object code and/or source code, so that the + user can modify the Library and then relink to produce a modified + executable containing the modified Library. (It is understood + that the user who changes the contents of definitions files in the + Library will not necessarily be able to recompile the application + to use the modified definitions.) + + b) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (1) uses at run time a + copy of the library already present on the user's computer system, + rather than copying library functions into the executable, and (2) + will operate properly with a modified version of the library, if + the user installs one, as long as the modified version is + interface-compatible with the version that the work was made with. + + c) Accompany the work with a written offer, valid for at + least three years, to give the same user the materials + specified in Subsection 6a, above, for a charge no more + than the cost of performing this distribution. + + d) If distribution of the work is made by offering access to copy + from a designated place, offer equivalent access to copy the above + specified materials from the same place. + + e) Verify that the user has already received a copy of these + materials or that you have already sent this user a copy. + + For an executable, the required form of the "work that uses the +Library" must include any data and utility programs needed for +reproducing the executable from it. However, as a special exception, +the materials to be distributed need not include anything that is +normally distributed (in either source or binary form) with the major +components (compiler, kernel, and so on) of the operating system on +which the executable runs, unless that component itself accompanies +the executable. + + It may happen that this requirement contradicts the license +restrictions of other proprietary libraries that do not normally +accompany the operating system. Such a contradiction means you cannot +use both them and the Library together in an executable that you +distribute. + + 7. You may place library facilities that are a work based on the +Library side-by-side in a single library together with other library +facilities not covered by this License, and distribute such a combined +library, provided that the separate distribution of the work based on +the Library and of the other library facilities is otherwise +permitted, and provided that you do these two things: + + a) Accompany the combined library with a copy of the same work + based on the Library, uncombined with any other library + facilities. This must be distributed under the terms of the + Sections above. + + b) Give prominent notice with the combined library of the fact + that part of it is a work based on the Library, and explaining + where to find the accompanying uncombined form of the same work. + + 8. You may not copy, modify, sublicense, link with, or distribute +the Library except as expressly provided under this License. Any +attempt otherwise to copy, modify, sublicense, link with, or +distribute the Library is void, and will automatically terminate your +rights under this License. However, parties who have received copies, +or rights, from you under this License will not have their licenses +terminated so long as such parties remain in full compliance. + + 9. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Library or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Library (or any work based on the +Library), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Library or works based on it. + + 10. Each time you redistribute the Library (or any work based on the +Library), the recipient automatically receives a license from the +original licensor to copy, distribute, link with or modify the Library +subject to these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties with +this License. + + 11. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Library at all. For example, if a patent +license would not permit royalty-free redistribution of the Library by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Library. + +If any portion of this section is held invalid or unenforceable under any +particular circumstance, the balance of the section is intended to apply, +and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 12. If the distribution and/or use of the Library is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Library under this License may add +an explicit geographical distribution limitation excluding those countries, +so that distribution is permitted only in or among countries not thus +excluded. In such case, this License incorporates the limitation as if +written in the body of this License. + + 13. The Free Software Foundation may publish revised and/or new +versions of the Lesser General Public License from time to time. +Such new versions will be similar in spirit to the present version, +but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Library +specifies a version number of this License which applies to it and +"any later version", you have the option of following the terms and +conditions either of that version or of any later version published by +the Free Software Foundation. If the Library does not specify a +license version number, you may choose any version ever published by +the Free Software Foundation. + + 14. If you wish to incorporate parts of the Library into other free +programs whose distribution conditions are incompatible with these, +write to the author to ask for permission. For software which is +copyrighted by the Free Software Foundation, write to the Free +Software Foundation; we sometimes make exceptions for this. Our +decision 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 generally. + + NO WARRANTY + + 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO +WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. +EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR +OTHER PARTIES PROVIDE THE LIBRARY "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 THE +LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME +THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN +WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY +AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU +FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR +CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE +LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING +RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A +FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF +SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Libraries + + If you develop a new library, and you want it to be of the greatest +possible use to the public, we recommend making it free software that +everyone can redistribute and change. You can do so by permitting +redistribution under these terms (or, alternatively, under the terms of the +ordinary General Public License). + + To apply these terms, attach the following notices to the library. It is +safest to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least the +"copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + +Also add information on how to contact you by electronic and paper mail. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the library, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the + library `Frob' (a library for tweaking knobs) written by James Random Hacker. + + , 1 April 1990 + Ty Coon, President of Vice + +That's all there is to it! + + diff --git a/docs/bundled_licenses/openpgm.txt b/docs/bundled_licenses/openpgm.txt new file mode 100644 index 0000000000..a346087dba --- /dev/null +++ b/docs/bundled_licenses/openpgm.txt @@ -0,0 +1,17 @@ + OpenPGM, an implementation of the PGM protocol. + Copyright (C) 2006-2012 Miru Limited. + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + diff --git a/docs/bundled_licenses/perl-Cache-Cache.txt b/docs/bundled_licenses/perl-Cache-Cache.txt new file mode 100644 index 0000000000..694b03c306 --- /dev/null +++ b/docs/bundled_licenses/perl-Cache-Cache.txt @@ -0,0 +1,3 @@ + + You may distribute under the terms of either the GNU General Public + License or the Artistic License, as specified in the Perl README file. diff --git a/docs/bundled_licenses/perl-Email-Date-Format.txt b/docs/bundled_licenses/perl-Email-Date-Format.txt new file mode 100644 index 0000000000..05e86e0785 --- /dev/null +++ b/docs/bundled_licenses/perl-Email-Date-Format.txt @@ -0,0 +1,378 @@ + +Terms of Perl itself + +a) the GNU General Public License as published by the Free + Software Foundation; either version 1, or (at your option) any + later version, or +b) the "Artistic License" + +---------------------------------------------------------------------------- + +The General Public License (GPL) +Version 2, June 1991 + +Copyright (C) 1989, 1991 Free Software Foundation, Inc. 675 Mass Ave, +Cambridge, MA 02139, USA. Everyone is permitted to copy and distribute +verbatim copies of this license document, but changing it is not allowed. + +Preamble + +The licenses for most software are designed to take away your freedom to share +and change it. By contrast, the GNU General Public License is intended to +guarantee your freedom to share and change free software--to make sure the +software is free for all its users. This General Public License applies to most of +the Free Software Foundation's software and to any other program whose +authors commit to using it. (Some other Free Software Foundation software is +covered by the GNU Library General Public License instead.) You can apply it to +your programs, too. + +When we speak of free software, we are referring to freedom, not price. Our +General Public Licenses are designed to make sure that you have the freedom +to distribute copies of free software (and charge for this service if you wish), that +you receive source code or can get it if you want it, that you can change the +software or use pieces of it in new free programs; and that you know you can do +these things. + +To protect your rights, we need to make restrictions that forbid anyone to deny +you these rights or to ask you to surrender the rights. These restrictions +translate to certain responsibilities for you if you distribute copies of the +software, or if you modify it. + +For example, if you distribute copies of such a program, whether gratis or for a +fee, 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 show +them these terms so they know their rights. + +We protect your rights with two steps: (1) copyright the software, and (2) offer +you this license which gives you legal permission to copy, distribute and/or +modify the software. + +Also, for each author's protection and ours, we want to make certain that +everyone understands that there is no warranty for this free software. If the +software is modified by someone else and passed on, we want its recipients to +know that what they have is not the original, so that any problems introduced by +others will not reflect on the original authors' reputations. + +Finally, any free program is threatened constantly by software patents. We wish +to avoid the danger that redistributors of a free program will individually obtain +patent licenses, in effect making the program proprietary. To prevent this, we +have made it clear that any patent must be licensed for everyone's free use or +not licensed at all. + +The precise terms and conditions for copying, distribution and modification +follow. + +GNU GENERAL PUBLIC LICENSE +TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND +MODIFICATION + +0. This License applies to any program or other work which contains a notice +placed by the copyright holder saying it may be distributed under the terms of +this General Public License. The "Program", below, refers to any such program +or work, and a "work based on the Program" means either the Program or any +derivative work under copyright law: that is to say, a work containing the +Program or a portion of it, either verbatim or with modifications and/or translated +into another language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not covered by +this License; they are outside its scope. The act of running the Program is not +restricted, and the output from the Program is covered only if its contents +constitute a work based on the Program (independent of having been made by +running the Program). Whether that is true depends on what the Program does. + +1. You may copy and distribute verbatim copies of the Program's source code as +you receive it, in any medium, provided that you conspicuously and appropriately +publish on each copy an appropriate copyright notice and disclaimer of warranty; +keep intact all the notices that refer to this License and to the absence of any +warranty; and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and you may at +your option offer warranty protection in exchange for a fee. + +2. You may modify your copy or copies of the Program or any portion of it, thus +forming a work based on the Program, and copy and distribute such +modifications or work under the terms of Section 1 above, provided that you also +meet all of these conditions: + +a) You must cause the modified files to carry prominent notices stating that you +changed the files and the date of any change. + +b) You must cause any work that you distribute or publish, that in whole or in +part contains or is derived from the Program or any part thereof, to be licensed +as a whole at no charge to all third parties under the terms of this License. + +c) If the modified program normally reads commands interactively when run, you +must cause it, when started running for such interactive use in the most ordinary +way, to print or display an announcement including an appropriate copyright +notice and a notice that there is no warranty (or else, saying that you provide a +warranty) and that users may redistribute the program under these conditions, +and telling the user how to view a copy of this License. (Exception: if the +Program itself is interactive but does not normally print such an announcement, +your work based on the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If identifiable +sections of that work are not derived from the Program, and can be reasonably +considered independent and separate works in themselves, then this License, +and its terms, do not apply to those sections when you distribute them as +separate works. But when you distribute the same sections as part of a whole +which is a work based on the Program, the distribution of the whole must be on +the terms of this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest your rights to +work written entirely by you; rather, the intent is to exercise the right to control +the distribution of derivative or collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program with the +Program (or with a work based on the Program) on a volume of a storage or +distribution medium does not bring the other work under the scope of this +License. + +3. You may copy and distribute the Program (or a work based on it, under +Section 2) in object code or executable form under the terms of Sections 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 Sections 1 and 2 above on a +medium customarily used for software interchange; or, + +b) Accompany it with a written offer, valid for at least three years, to give any +third party, for a charge no more than your cost of physically performing source +distribution, a complete machine-readable copy of the corresponding source +code, to be distributed under the terms of Sections 1 and 2 above on a medium +customarily used for software interchange; or, + +c) Accompany it with the information you received as to the offer to distribute +corresponding source code. (This alternative is allowed only for noncommercial +distribution and only if you received the program in object code or executable +form with such an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for making +modifications to it. For an executable work, complete source code means all the +source code for all modules it contains, plus any associated interface definition +files, plus the scripts used to control compilation and installation of the +executable. However, as a special exception, the source code distributed need +not include anything that is normally distributed (in either source or binary form) +with the major components (compiler, kernel, and so on) of the operating system +on which the executable runs, unless that component itself accompanies the +executable. + +If distribution of executable or object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the source +code from the same place counts as distribution of the source code, even though +third parties are not compelled to copy the source along with the object code. + +4. You may not copy, modify, sublicense, or distribute the Program except as +expressly provided under this License. Any attempt otherwise to copy, modify, +sublicense or distribute the Program is void, and will automatically terminate +your rights under this License. However, parties who have received copies, or +rights, from you under this License will not have their licenses terminated so long +as such parties remain in full compliance. + +5. You are not required to accept this License, since you have not signed it. +However, nothing else grants you permission to modify or distribute the Program +or its derivative works. These actions are prohibited by law if you do not accept +this License. Therefore, by modifying or distributing the Program (or any work +based on the Program), you indicate your acceptance of this License to do so, +and all its terms and conditions for copying, distributing or modifying the +Program or works based on it. + +6. Each time you redistribute the Program (or any work based on the Program), +the recipient automatically receives a license from the original licensor to copy, +distribute or modify the Program subject to these terms and conditions. You +may not impose any further restrictions on the recipients' exercise of the rights +granted herein. You are not responsible for enforcing compliance by third parties +to this License. + +7. If, as a consequence of a court judgment or allegation of patent infringement +or for any other reason (not limited to patent issues), conditions are imposed on +you (whether by court order, agreement or otherwise) that contradict the +conditions of this License, they do not excuse you from the conditions of this +License. If you cannot distribute so as to satisfy simultaneously your obligations +under this License and any other pertinent obligations, then as a consequence +you may not distribute the Program at all. For example, if a patent license would +not permit royalty-free redistribution of the Program by all those who receive +copies directly or indirectly through you, then the only way you could satisfy +both it and this License would be to refrain entirely from distribution of the +Program. + +If any portion of this section is held invalid or unenforceable under any particular +circumstance, the balance of the section is intended to apply and the section as +a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any patents or other +property right claims or to contest validity of any such claims; this section has +the sole purpose of protecting the integrity of the free software distribution +system, which is implemented by public license practices. Many people have +made generous contributions to the wide range of software distributed through +that system in reliance on consistent application of that system; it is up to the +author/donor to decide if he or she is willing to distribute software through any +other system and a licensee cannot impose that choice. + +This section is intended to make thoroughly clear what is believed to be a +consequence of the rest of this License. + +8. If the distribution and/or use of the Program is restricted in certain countries +either by patents or by copyrighted interfaces, the original copyright holder who +places the Program under this License may add an explicit geographical +distribution limitation excluding those countries, so that distribution is permitted +only in or among countries not thus excluded. In such case, this License +incorporates the limitation as if written in the body of this License. + +9. The Free Software Foundation may publish revised and/or new versions of the +General Public License from time to time. Such new versions will be similar in +spirit to the present version, but may differ in detail to address new problems or +concerns. + +Each version is given a distinguishing version number. If the Program specifies a +version number of this License which applies to it and "any later version", you +have the option of following the terms and conditions either of that version or of +any later version published by the Free Software Foundation. If the Program does +not specify a version number of this License, you may choose any version ever +published by the Free Software Foundation. + +10. If you wish to incorporate parts of the Program into other free programs +whose distribution conditions are different, write to the author to ask for +permission. For software which is copyrighted by the Free Software Foundation, +write to the Free Software Foundation; we sometimes make exceptions for this. +Our decision 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 generally. + +NO WARRANTY + +11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS +NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE +COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM +"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 THE +PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, +YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR +CORRECTION. + +12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED +TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY +WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS +PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM +(INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING +RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY +OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS +BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +END OF TERMS AND CONDITIONS + + +---------------------------------------------------------------------------- + +The Artistic License + +Preamble + +The intent of this document is to state the conditions under which a Package +may be copied, such that the Copyright Holder maintains some semblance of +artistic control over the development of the package, while giving the users of the +package the right to use and distribute the Package in a more-or-less customary +fashion, plus the right to make reasonable modifications. + +Definitions: + +- "Package" refers to the collection of files distributed by the Copyright + Holder, and derivatives of that collection of files created through textual + modification. +- "Standard Version" refers to such a Package if it has not been modified, + or has been modified in accordance with the wishes of the Copyright + Holder. +- "Copyright Holder" is whoever is named in the copyright or copyrights for + the package. +- "You" is you, if you're thinking about copying or distributing this Package. +- "Reasonable copying fee" is whatever you can justify on the basis of + media cost, duplication charges, time of people involved, and so on. (You + will not be required to justify it to the Copyright Holder, but only to the + computing community at large as a market that must bear the fee.) +- "Freely Available" means that no fee is charged for the item itself, though + there may be fees involved in handling the item. It also means that + recipients of the item may redistribute it under the same conditions they + received it. + +1. You may make and give away verbatim copies of the source form of the +Standard Version of this Package without restriction, provided that you duplicate +all of the original copyright notices and associated disclaimers. + +2. You may apply bug fixes, portability fixes and other modifications derived from +the Public Domain or from the Copyright Holder. A Package modified in such a +way shall still be considered the Standard Version. + +3. You may otherwise modify your copy of this Package in any way, provided +that you insert a prominent notice in each changed file stating how and when +you changed that file, and provided that you do at least ONE of the following: + + a) place your modifications in the Public Domain or otherwise + make them Freely Available, such as by posting said modifications + to Usenet or an equivalent medium, or placing the modifications on + a major archive site such as ftp.uu.net, or by allowing the + Copyright Holder to include your modifications in the Standard + Version of the Package. + + b) use the modified Package only within your corporation or + organization. + + c) rename any non-standard executables so the names do not + conflict with standard executables, which must also be provided, + and provide a separate manual page for each non-standard + executable that clearly documents how it differs from the Standard + Version. + + d) make other distribution arrangements with the Copyright Holder. + +4. You may distribute the programs of this Package in object code or executable +form, provided that you do at least ONE of the following: + + a) distribute a Standard Version of the executables and library + files, together with instructions (in the manual page or equivalent) + on where to get the Standard Version. + + b) accompany the distribution with the machine-readable source of + the Package with your modifications. + + c) accompany any non-standard executables with their + corresponding Standard Version executables, giving the + non-standard executables non-standard names, and clearly + documenting the differences in manual pages (or equivalent), + together with instructions on where to get the Standard Version. + + d) make other distribution arrangements with the Copyright Holder. + +5. You may charge a reasonable copying fee for any distribution of this Package. +You may charge any fee you choose for support of this Package. You may not +charge a fee for this Package itself. However, you may distribute this Package in +aggregate with other (possibly commercial) programs as part of a larger +(possibly commercial) software distribution provided that you do not advertise +this Package as a product of your own. + +6. The scripts and library files supplied as input to or produced as output from +the programs of this Package do not automatically fall under the copyright of this +Package, but belong to whomever generated them, and may be sold +commercially, and may be aggregated with this Package. + +7. C or perl subroutines supplied by you and linked into this Package shall not +be considered part of this Package. + +8. The name of the Copyright Holder may not be used to endorse or promote +products derived from this software without specific prior written permission. + +9. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR +IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED +WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR +PURPOSE. + +The End + + diff --git a/docs/bundled_licenses/perl-HTML-Template.txt b/docs/bundled_licenses/perl-HTML-Template.txt new file mode 100644 index 0000000000..b8faeba09e --- /dev/null +++ b/docs/bundled_licenses/perl-HTML-Template.txt @@ -0,0 +1,379 @@ +This software is copyright (c) 2012 by Michael Peters. + +This is free software; you can redistribute it and/or modify it under +the same terms as the Perl 5 programming language system itself. + +Terms of the Perl programming language system itself + +a) the GNU General Public License as published by the Free + Software Foundation; either version 1, or (at your option) any + later version, or +b) the "Artistic License" + +--- The GNU General Public License, Version 1, February 1989 --- + +This software is Copyright (c) 2012 by Michael Peters. + +This is free software, licensed under: + + The GNU General Public License, Version 1, February 1989 + + GNU GENERAL PUBLIC LICENSE + Version 1, February 1989 + + Copyright (C) 1989 Free Software Foundation, Inc. + 51 Franklin St, Suite 500, Boston, MA 02110-1335 USA + + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The license agreements of most software companies try to keep users +at the mercy of those companies. By contrast, our General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. The +General Public License applies to the Free Software Foundation's +software and to any other program whose authors commit to using it. +You can use it for your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Specifically, the General Public License is designed to make +sure that you have the freedom to give away or sell copies of free +software, that you receive source code or can get it if you want it, +that you can change the software or use pieces of it in new free +programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of a such a program, whether +gratis or for a fee, 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. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License Agreement applies to any program or other work which +contains a notice placed by the copyright holder saying it may be +distributed under the terms of this General Public License. The +"Program", below, refers to any such program or work, and a "work based +on the Program" means either the Program or any work containing the +Program or a portion of it, either verbatim or with modifications. Each +licensee is addressed as "you". + + 1. You may copy and distribute verbatim copies of the Program's source +code as you receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice and +disclaimer of warranty; keep intact all the notices that refer to this +General Public License and to the absence of any warranty; and give any +other recipients of the Program a copy of this General Public License +along with the Program. You may charge a fee for the physical act of +transferring a copy. + + 2. You may modify your copy or copies of the Program 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 the Program or any part thereof, either + with or without modifications, to be licensed at no charge to all + third parties under the terms of this General Public License (except + that you may choose to grant warranty protection to some or all + third parties, at your option). + + c) If the modified program normally reads commands interactively when + run, you must cause it, when started running for such interactive use + in the simplest and most usual way, to print or display an + announcement including an appropriate copyright notice and a notice + that there is no warranty (or else, saying that you provide a + warranty) and that users may redistribute the program under these + conditions, and telling the user how to view a copy of this General + Public License. + + d) You may charge a 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 independent work with the Program (or its +derivative) on a volume of a storage or distribution medium does not bring +the other work under the scope of these terms. + + 3. You may copy and distribute the Program (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 charge + for the cost of distribution) 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 noncommercial distribution and only if you + received the program in object code or executable form alone.) + +Source code for a work means the preferred form of the work for making +modifications to it. 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, or for standard header files or definitions files that +accompany that operating system. + + 4. You may not copy, modify, sublicense, distribute or transfer the +Program except as expressly provided under this General Public License. +Any attempt otherwise to copy, modify, sublicense, distribute or transfer +the Program is void, and will automatically terminate your rights to use +the Program under this License. However, parties who have received +copies, or rights to use copies, from you under this General Public +License will not have their licenses terminated so long as such parties +remain in full compliance. + + 5. By copying, distributing or modifying the Program (or any work based +on the Program) you indicate your acceptance of this license to do so, +and all its terms and conditions. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the original +licensor to copy, distribute or modify the Program subject to these +terms and conditions. You may not impose any further restrictions on the +recipients' exercise of the rights granted herein. + + 7. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of the license which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +the license, you may choose any version ever published by the Free Software +Foundation. + + 8. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision 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 generally. + + NO WARRANTY + + 9. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "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 THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 10. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + + Appendix: How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to humanity, the best way to achieve this is to make it +free software which everyone can redistribute and change under these +terms. + + To do so, attach the following notices to the program. It is safest to +attach them to the start of each source file to most effectively convey +the exclusion of warranty; and each file should have at least the +"copyright" line and a pointer to where the full notice is found. + + + Copyright (C) 19yy + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 1, or (at your option) + any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301 USA + + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) 19xx name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the +appropriate parts of the General Public License. Of course, the +commands you use may be called something other than `show w' and `show +c'; they could even be mouse-clicks or menu items--whatever suits your +program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the + program `Gnomovision' (a program to direct compilers to make passes + at assemblers) written by James Hacker. + + , 1 April 1989 + Ty Coon, President of Vice + +That's all there is to it! + + +--- The Artistic License 1.0 --- + +This software is Copyright (c) 2012 by Michael Peters. + +This is free software, licensed under: + + The Artistic License 1.0 + +The Artistic License + +Preamble + +The intent of this document is to state the conditions under which a Package +may be copied, such that the Copyright Holder maintains some semblance of +artistic control over the development of the package, while giving the users of +the package the right to use and distribute the Package in a more-or-less +customary fashion, plus the right to make reasonable modifications. + +Definitions: + + - "Package" refers to the collection of files distributed by the Copyright + Holder, and derivatives of that collection of files created through + textual modification. + - "Standard Version" refers to such a Package if it has not been modified, + or has been modified in accordance with the wishes of the Copyright + Holder. + - "Copyright Holder" is whoever is named in the copyright or copyrights for + the package. + - "You" is you, if you're thinking about copying or distributing this Package. + - "Reasonable copying fee" is whatever you can justify on the basis of media + cost, duplication charges, time of people involved, and so on. (You will + not be required to justify it to the Copyright Holder, but only to the + computing community at large as a market that must bear the fee.) + - "Freely Available" means that no fee is charged for the item itself, though + there may be fees involved in handling the item. It also means that + recipients of the item may redistribute it under the same conditions they + received it. + +1. You may make and give away verbatim copies of the source form of the +Standard Version of this Package without restriction, provided that you +duplicate all of the original copyright notices and associated disclaimers. + +2. You may apply bug fixes, portability fixes and other modifications derived +from the Public Domain or from the Copyright Holder. A Package modified in such +a way shall still be considered the Standard Version. + +3. You may otherwise modify your copy of this Package in any way, provided that +you insert a prominent notice in each changed file stating how and when you +changed that file, and provided that you do at least ONE of the following: + + a) place your modifications in the Public Domain or otherwise make them + Freely Available, such as by posting said modifications to Usenet or an + equivalent medium, or placing the modifications on a major archive site + such as ftp.uu.net, or by allowing the Copyright Holder to include your + modifications in the Standard Version of the Package. + + b) use the modified Package only within your corporation or organization. + + c) rename any non-standard executables so the names do not conflict with + standard executables, which must also be provided, and provide a separate + manual page for each non-standard executable that clearly documents how it + differs from the Standard Version. + + d) make other distribution arrangements with the Copyright Holder. + +4. You may distribute the programs of this Package in object code or executable +form, provided that you do at least ONE of the following: + + a) distribute a Standard Version of the executables and library files, + together with instructions (in the manual page or equivalent) on where to + get the Standard Version. + + b) accompany the distribution with the machine-readable source of the Package + with your modifications. + + c) accompany any non-standard executables with their corresponding Standard + Version executables, giving the non-standard executables non-standard + names, and clearly documenting the differences in manual pages (or + equivalent), together with instructions on where to get the Standard + Version. + + d) make other distribution arrangements with the Copyright Holder. + +5. You may charge a reasonable copying fee for any distribution of this +Package. You may charge any fee you choose for support of this Package. You +may not charge a fee for this Package itself. However, you may distribute this +Package in aggregate with other (possibly commercial) programs as part of a +larger (possibly commercial) software distribution provided that you do not +advertise this Package as a product of your own. + +6. The scripts and library files supplied as input to or produced as output +from the programs of this Package do not automatically fall under the copyright +of this Package, but belong to whomever generated them, and may be sold +commercially, and may be aggregated with this Package. + +7. C or perl subroutines supplied by you and linked into this Package shall not +be considered part of this Package. + +8. The name of the Copyright Holder may not be used to endorse or promote +products derived from this software without specific prior written permission. + +9. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED +WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF +MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. + +The End + diff --git a/docs/bundled_licenses/perl-IO-Multiplex.txt b/docs/bundled_licenses/perl-IO-Multiplex.txt new file mode 100644 index 0000000000..694b03c306 --- /dev/null +++ b/docs/bundled_licenses/perl-IO-Multiplex.txt @@ -0,0 +1,3 @@ + + You may distribute under the terms of either the GNU General Public + License or the Artistic License, as specified in the Perl README file. diff --git a/docs/bundled_licenses/perl-IPC-ShareLite.txt b/docs/bundled_licenses/perl-IPC-ShareLite.txt new file mode 100644 index 0000000000..694b03c306 --- /dev/null +++ b/docs/bundled_licenses/perl-IPC-ShareLite.txt @@ -0,0 +1,3 @@ + + You may distribute under the terms of either the GNU General Public + License or the Artistic License, as specified in the Perl README file. diff --git a/docs/bundled_licenses/perl-Log-Dispatch-FileRotate.txt b/docs/bundled_licenses/perl-Log-Dispatch-FileRotate.txt new file mode 100644 index 0000000000..694b03c306 --- /dev/null +++ b/docs/bundled_licenses/perl-Log-Dispatch-FileRotate.txt @@ -0,0 +1,3 @@ + + You may distribute under the terms of either the GNU General Public + License or the Artistic License, as specified in the Perl README file. diff --git a/docs/bundled_licenses/perl-Log-Dispatch.txt b/docs/bundled_licenses/perl-Log-Dispatch.txt new file mode 100644 index 0000000000..6d717b00a0 --- /dev/null +++ b/docs/bundled_licenses/perl-Log-Dispatch.txt @@ -0,0 +1,207 @@ +This software is Copyright (c) 2013 by Dave Rolsky. + +This is free software, licensed under: + + The Artistic License 2.0 (GPL Compatible) + + The Artistic License 2.0 + + Copyright (c) 2000-2006, The Perl Foundation. + + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + +Preamble + +This license establishes the terms under which a given free software +Package may be copied, modified, distributed, and/or redistributed. +The intent is that the Copyright Holder maintains some artistic +control over the development of that Package while still keeping the +Package available as open source and free software. + +You are always permitted to make arrangements wholly outside of this +license directly with the Copyright Holder of a given Package. If the +terms of this license do not permit the full use that you propose to +make of the Package, you should contact the Copyright Holder and seek +a different licensing arrangement. + +Definitions + + "Copyright Holder" means the individual(s) or organization(s) + named in the copyright notice for the entire Package. + + "Contributor" means any party that has contributed code or other + material to the Package, in accordance with the Copyright Holder's + procedures. + + "You" and "your" means any person who would like to copy, + distribute, or modify the Package. + + "Package" means the collection of files distributed by the + Copyright Holder, and derivatives of that collection and/or of + those files. A given Package may consist of either the Standard + Version, or a Modified Version. + + "Distribute" means providing a copy of the Package or making it + accessible to anyone else, or in the case of a company or + organization, to others outside of your company or organization. + + "Distributor Fee" means any fee that you charge for Distributing + this Package or providing support for this Package to another + party. It does not mean licensing fees. + + "Standard Version" refers to the Package if it has not been + modified, or has been modified only in ways explicitly requested + by the Copyright Holder. + + "Modified Version" means the Package, if it has been changed, and + such changes were not explicitly requested by the Copyright + Holder. + + "Original License" means this Artistic License as Distributed with + the Standard Version of the Package, in its current version or as + it may be modified by The Perl Foundation in the future. + + "Source" form means the source code, documentation source, and + configuration files for the Package. + + "Compiled" form means the compiled bytecode, object code, binary, + or any other form resulting from mechanical transformation or + translation of the Source form. + + +Permission for Use and Modification Without Distribution + +(1) You are permitted to use the Standard Version and create and use +Modified Versions for any purpose without restriction, provided that +you do not Distribute the Modified Version. + + +Permissions for Redistribution of the Standard Version + +(2) You may Distribute verbatim copies of the Source form of the +Standard Version of this Package in any medium without restriction, +either gratis or for a Distributor Fee, provided that you duplicate +all of the original copyright notices and associated disclaimers. At +your discretion, such verbatim copies may or may not include a +Compiled form of the Package. + +(3) You may apply any bug fixes, portability changes, and other +modifications made available from the Copyright Holder. The resulting +Package will still be considered the Standard Version, and as such +will be subject to the Original License. + + +Distribution of Modified Versions of the Package as Source + +(4) You may Distribute your Modified Version as Source (either gratis +or for a Distributor Fee, and with or without a Compiled form of the +Modified Version) provided that you clearly document how it differs +from the Standard Version, including, but not limited to, documenting +any non-standard features, executables, or modules, and provided that +you do at least ONE of the following: + + (a) make the Modified Version available to the Copyright Holder + of the Standard Version, under the Original License, so that the + Copyright Holder may include your modifications in the Standard + Version. + + (b) ensure that installation of your Modified Version does not + prevent the user installing or running the Standard Version. In + addition, the Modified Version must bear a name that is different + from the name of the Standard Version. + + (c) allow anyone who receives a copy of the Modified Version to + make the Source form of the Modified Version available to others + under + + (i) the Original License or + + (ii) a license that permits the licensee to freely copy, + modify and redistribute the Modified Version using the same + licensing terms that apply to the copy that the licensee + received, and requires that the Source form of the Modified + Version, and of any works derived from it, be made freely + available in that license fees are prohibited but Distributor + Fees are allowed. + + +Distribution of Compiled Forms of the Standard Version +or Modified Versions without the Source + +(5) You may Distribute Compiled forms of the Standard Version without +the Source, provided that you include complete instructions on how to +get the Source of the Standard Version. Such instructions must be +valid at the time of your distribution. If these instructions, at any +time while you are carrying out such distribution, become invalid, you +must provide new instructions on demand or cease further distribution. +If you provide valid instructions or cease distribution within thirty +days after you become aware that the instructions are invalid, then +you do not forfeit any of your rights under this license. + +(6) You may Distribute a Modified Version in Compiled form without +the Source, provided that you comply with Section 4 with respect to +the Source of the Modified Version. + + +Aggregating or Linking the Package + +(7) You may aggregate the Package (either the Standard Version or +Modified Version) with other packages and Distribute the resulting +aggregation provided that you do not charge a licensing fee for the +Package. Distributor Fees are permitted, and licensing fees for other +components in the aggregation are permitted. The terms of this license +apply to the use and Distribution of the Standard or Modified Versions +as included in the aggregation. + +(8) You are permitted to link Modified and Standard Versions with +other works, to embed the Package in a larger work of your own, or to +build stand-alone binary or bytecode versions of applications that +include the Package, and Distribute the result without restriction, +provided the result does not expose a direct interface to the Package. + + +Items That are Not Considered Part of a Modified Version + +(9) Works (including, but not limited to, modules and scripts) that +merely extend or make use of the Package, do not, by themselves, cause +the Package to be a Modified Version. In addition, such works are not +considered parts of the Package itself, and are not subject to the +terms of this license. + + +General Provisions + +(10) Any use, modification, and distribution of the Standard or +Modified Versions is governed by this Artistic License. By using, +modifying or distributing the Package, you accept this license. Do not +use, modify, or distribute the Package, if you do not accept this +license. + +(11) If your Modified Version has been derived from a Modified +Version made by someone other than you, you are nevertheless required +to ensure that your Modified Version complies with the requirements of +this license. + +(12) This license does not grant you the right to use any trademark, +service mark, tradename, or logo of the Copyright Holder. + +(13) This license includes the non-exclusive, worldwide, +free-of-charge patent license to make, have made, use, offer to sell, +sell, import and otherwise transfer the Package with respect to any +patent claims licensable by the Copyright Holder that are necessarily +infringed by the Package. If you institute patent litigation +(including a cross-claim or counterclaim) against any party alleging +that the Package constitutes direct or contributory patent +infringement, then this Artistic License to you shall terminate on the +date that such litigation is filed. + +(14) Disclaimer of Warranty: +THE PACKAGE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS "AS +IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES. THE IMPLIED +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR +NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT PERMITTED BY YOUR LOCAL +LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT HOLDER OR CONTRIBUTOR WILL +BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES ARISING IN ANY WAY OUT OF THE USE OF THE PACKAGE, EVEN IF +ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/docs/bundled_licenses/perl-Log-Log4perl.txt b/docs/bundled_licenses/perl-Log-Log4perl.txt new file mode 100644 index 0000000000..b36289db7e --- /dev/null +++ b/docs/bundled_licenses/perl-Log-Log4perl.txt @@ -0,0 +1,14 @@ +=head1 COPYRIGHT AND LICENSE + +Copyright 2002-2012 by +Mike Schilli and Kevin Goess . + +This library is free software; you can redistribute it and/or modify +it under the same terms as Perl itself. + +=cut + +THE SOFTWARE IS PROVIDED "AS IS" AND WITHOUT WARRANTIES OF ANY KIND, +INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OF ACCURACY OR +COMPLETENESS OF ANY INFORMATION CONTAINED IN THE SOFTWARE OR IMPLIED +WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. diff --git a/docs/bundled_licenses/perl-MIME-Lite.txt b/docs/bundled_licenses/perl-MIME-Lite.txt new file mode 100644 index 0000000000..05e86e0785 --- /dev/null +++ b/docs/bundled_licenses/perl-MIME-Lite.txt @@ -0,0 +1,378 @@ + +Terms of Perl itself + +a) the GNU General Public License as published by the Free + Software Foundation; either version 1, or (at your option) any + later version, or +b) the "Artistic License" + +---------------------------------------------------------------------------- + +The General Public License (GPL) +Version 2, June 1991 + +Copyright (C) 1989, 1991 Free Software Foundation, Inc. 675 Mass Ave, +Cambridge, MA 02139, USA. Everyone is permitted to copy and distribute +verbatim copies of this license document, but changing it is not allowed. + +Preamble + +The licenses for most software are designed to take away your freedom to share +and change it. By contrast, the GNU General Public License is intended to +guarantee your freedom to share and change free software--to make sure the +software is free for all its users. This General Public License applies to most of +the Free Software Foundation's software and to any other program whose +authors commit to using it. (Some other Free Software Foundation software is +covered by the GNU Library General Public License instead.) You can apply it to +your programs, too. + +When we speak of free software, we are referring to freedom, not price. Our +General Public Licenses are designed to make sure that you have the freedom +to distribute copies of free software (and charge for this service if you wish), that +you receive source code or can get it if you want it, that you can change the +software or use pieces of it in new free programs; and that you know you can do +these things. + +To protect your rights, we need to make restrictions that forbid anyone to deny +you these rights or to ask you to surrender the rights. These restrictions +translate to certain responsibilities for you if you distribute copies of the +software, or if you modify it. + +For example, if you distribute copies of such a program, whether gratis or for a +fee, 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 show +them these terms so they know their rights. + +We protect your rights with two steps: (1) copyright the software, and (2) offer +you this license which gives you legal permission to copy, distribute and/or +modify the software. + +Also, for each author's protection and ours, we want to make certain that +everyone understands that there is no warranty for this free software. If the +software is modified by someone else and passed on, we want its recipients to +know that what they have is not the original, so that any problems introduced by +others will not reflect on the original authors' reputations. + +Finally, any free program is threatened constantly by software patents. We wish +to avoid the danger that redistributors of a free program will individually obtain +patent licenses, in effect making the program proprietary. To prevent this, we +have made it clear that any patent must be licensed for everyone's free use or +not licensed at all. + +The precise terms and conditions for copying, distribution and modification +follow. + +GNU GENERAL PUBLIC LICENSE +TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND +MODIFICATION + +0. This License applies to any program or other work which contains a notice +placed by the copyright holder saying it may be distributed under the terms of +this General Public License. The "Program", below, refers to any such program +or work, and a "work based on the Program" means either the Program or any +derivative work under copyright law: that is to say, a work containing the +Program or a portion of it, either verbatim or with modifications and/or translated +into another language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not covered by +this License; they are outside its scope. The act of running the Program is not +restricted, and the output from the Program is covered only if its contents +constitute a work based on the Program (independent of having been made by +running the Program). Whether that is true depends on what the Program does. + +1. You may copy and distribute verbatim copies of the Program's source code as +you receive it, in any medium, provided that you conspicuously and appropriately +publish on each copy an appropriate copyright notice and disclaimer of warranty; +keep intact all the notices that refer to this License and to the absence of any +warranty; and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and you may at +your option offer warranty protection in exchange for a fee. + +2. You may modify your copy or copies of the Program or any portion of it, thus +forming a work based on the Program, and copy and distribute such +modifications or work under the terms of Section 1 above, provided that you also +meet all of these conditions: + +a) You must cause the modified files to carry prominent notices stating that you +changed the files and the date of any change. + +b) You must cause any work that you distribute or publish, that in whole or in +part contains or is derived from the Program or any part thereof, to be licensed +as a whole at no charge to all third parties under the terms of this License. + +c) If the modified program normally reads commands interactively when run, you +must cause it, when started running for such interactive use in the most ordinary +way, to print or display an announcement including an appropriate copyright +notice and a notice that there is no warranty (or else, saying that you provide a +warranty) and that users may redistribute the program under these conditions, +and telling the user how to view a copy of this License. (Exception: if the +Program itself is interactive but does not normally print such an announcement, +your work based on the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If identifiable +sections of that work are not derived from the Program, and can be reasonably +considered independent and separate works in themselves, then this License, +and its terms, do not apply to those sections when you distribute them as +separate works. But when you distribute the same sections as part of a whole +which is a work based on the Program, the distribution of the whole must be on +the terms of this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest your rights to +work written entirely by you; rather, the intent is to exercise the right to control +the distribution of derivative or collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program with the +Program (or with a work based on the Program) on a volume of a storage or +distribution medium does not bring the other work under the scope of this +License. + +3. You may copy and distribute the Program (or a work based on it, under +Section 2) in object code or executable form under the terms of Sections 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 Sections 1 and 2 above on a +medium customarily used for software interchange; or, + +b) Accompany it with a written offer, valid for at least three years, to give any +third party, for a charge no more than your cost of physically performing source +distribution, a complete machine-readable copy of the corresponding source +code, to be distributed under the terms of Sections 1 and 2 above on a medium +customarily used for software interchange; or, + +c) Accompany it with the information you received as to the offer to distribute +corresponding source code. (This alternative is allowed only for noncommercial +distribution and only if you received the program in object code or executable +form with such an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for making +modifications to it. For an executable work, complete source code means all the +source code for all modules it contains, plus any associated interface definition +files, plus the scripts used to control compilation and installation of the +executable. However, as a special exception, the source code distributed need +not include anything that is normally distributed (in either source or binary form) +with the major components (compiler, kernel, and so on) of the operating system +on which the executable runs, unless that component itself accompanies the +executable. + +If distribution of executable or object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the source +code from the same place counts as distribution of the source code, even though +third parties are not compelled to copy the source along with the object code. + +4. You may not copy, modify, sublicense, or distribute the Program except as +expressly provided under this License. Any attempt otherwise to copy, modify, +sublicense or distribute the Program is void, and will automatically terminate +your rights under this License. However, parties who have received copies, or +rights, from you under this License will not have their licenses terminated so long +as such parties remain in full compliance. + +5. You are not required to accept this License, since you have not signed it. +However, nothing else grants you permission to modify or distribute the Program +or its derivative works. These actions are prohibited by law if you do not accept +this License. Therefore, by modifying or distributing the Program (or any work +based on the Program), you indicate your acceptance of this License to do so, +and all its terms and conditions for copying, distributing or modifying the +Program or works based on it. + +6. Each time you redistribute the Program (or any work based on the Program), +the recipient automatically receives a license from the original licensor to copy, +distribute or modify the Program subject to these terms and conditions. You +may not impose any further restrictions on the recipients' exercise of the rights +granted herein. You are not responsible for enforcing compliance by third parties +to this License. + +7. If, as a consequence of a court judgment or allegation of patent infringement +or for any other reason (not limited to patent issues), conditions are imposed on +you (whether by court order, agreement or otherwise) that contradict the +conditions of this License, they do not excuse you from the conditions of this +License. If you cannot distribute so as to satisfy simultaneously your obligations +under this License and any other pertinent obligations, then as a consequence +you may not distribute the Program at all. For example, if a patent license would +not permit royalty-free redistribution of the Program by all those who receive +copies directly or indirectly through you, then the only way you could satisfy +both it and this License would be to refrain entirely from distribution of the +Program. + +If any portion of this section is held invalid or unenforceable under any particular +circumstance, the balance of the section is intended to apply and the section as +a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any patents or other +property right claims or to contest validity of any such claims; this section has +the sole purpose of protecting the integrity of the free software distribution +system, which is implemented by public license practices. Many people have +made generous contributions to the wide range of software distributed through +that system in reliance on consistent application of that system; it is up to the +author/donor to decide if he or she is willing to distribute software through any +other system and a licensee cannot impose that choice. + +This section is intended to make thoroughly clear what is believed to be a +consequence of the rest of this License. + +8. If the distribution and/or use of the Program is restricted in certain countries +either by patents or by copyrighted interfaces, the original copyright holder who +places the Program under this License may add an explicit geographical +distribution limitation excluding those countries, so that distribution is permitted +only in or among countries not thus excluded. In such case, this License +incorporates the limitation as if written in the body of this License. + +9. The Free Software Foundation may publish revised and/or new versions of the +General Public License from time to time. Such new versions will be similar in +spirit to the present version, but may differ in detail to address new problems or +concerns. + +Each version is given a distinguishing version number. If the Program specifies a +version number of this License which applies to it and "any later version", you +have the option of following the terms and conditions either of that version or of +any later version published by the Free Software Foundation. If the Program does +not specify a version number of this License, you may choose any version ever +published by the Free Software Foundation. + +10. If you wish to incorporate parts of the Program into other free programs +whose distribution conditions are different, write to the author to ask for +permission. For software which is copyrighted by the Free Software Foundation, +write to the Free Software Foundation; we sometimes make exceptions for this. +Our decision 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 generally. + +NO WARRANTY + +11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS +NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE +COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM +"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 THE +PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, +YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR +CORRECTION. + +12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED +TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY +WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS +PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM +(INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING +RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY +OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS +BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + +END OF TERMS AND CONDITIONS + + +---------------------------------------------------------------------------- + +The Artistic License + +Preamble + +The intent of this document is to state the conditions under which a Package +may be copied, such that the Copyright Holder maintains some semblance of +artistic control over the development of the package, while giving the users of the +package the right to use and distribute the Package in a more-or-less customary +fashion, plus the right to make reasonable modifications. + +Definitions: + +- "Package" refers to the collection of files distributed by the Copyright + Holder, and derivatives of that collection of files created through textual + modification. +- "Standard Version" refers to such a Package if it has not been modified, + or has been modified in accordance with the wishes of the Copyright + Holder. +- "Copyright Holder" is whoever is named in the copyright or copyrights for + the package. +- "You" is you, if you're thinking about copying or distributing this Package. +- "Reasonable copying fee" is whatever you can justify on the basis of + media cost, duplication charges, time of people involved, and so on. (You + will not be required to justify it to the Copyright Holder, but only to the + computing community at large as a market that must bear the fee.) +- "Freely Available" means that no fee is charged for the item itself, though + there may be fees involved in handling the item. It also means that + recipients of the item may redistribute it under the same conditions they + received it. + +1. You may make and give away verbatim copies of the source form of the +Standard Version of this Package without restriction, provided that you duplicate +all of the original copyright notices and associated disclaimers. + +2. You may apply bug fixes, portability fixes and other modifications derived from +the Public Domain or from the Copyright Holder. A Package modified in such a +way shall still be considered the Standard Version. + +3. You may otherwise modify your copy of this Package in any way, provided +that you insert a prominent notice in each changed file stating how and when +you changed that file, and provided that you do at least ONE of the following: + + a) place your modifications in the Public Domain or otherwise + make them Freely Available, such as by posting said modifications + to Usenet or an equivalent medium, or placing the modifications on + a major archive site such as ftp.uu.net, or by allowing the + Copyright Holder to include your modifications in the Standard + Version of the Package. + + b) use the modified Package only within your corporation or + organization. + + c) rename any non-standard executables so the names do not + conflict with standard executables, which must also be provided, + and provide a separate manual page for each non-standard + executable that clearly documents how it differs from the Standard + Version. + + d) make other distribution arrangements with the Copyright Holder. + +4. You may distribute the programs of this Package in object code or executable +form, provided that you do at least ONE of the following: + + a) distribute a Standard Version of the executables and library + files, together with instructions (in the manual page or equivalent) + on where to get the Standard Version. + + b) accompany the distribution with the machine-readable source of + the Package with your modifications. + + c) accompany any non-standard executables with their + corresponding Standard Version executables, giving the + non-standard executables non-standard names, and clearly + documenting the differences in manual pages (or equivalent), + together with instructions on where to get the Standard Version. + + d) make other distribution arrangements with the Copyright Holder. + +5. You may charge a reasonable copying fee for any distribution of this Package. +You may charge any fee you choose for support of this Package. You may not +charge a fee for this Package itself. However, you may distribute this Package in +aggregate with other (possibly commercial) programs as part of a larger +(possibly commercial) software distribution provided that you do not advertise +this Package as a product of your own. + +6. The scripts and library files supplied as input to or produced as output from +the programs of this Package do not automatically fall under the copyright of this +Package, but belong to whomever generated them, and may be sold +commercially, and may be aggregated with this Package. + +7. C or perl subroutines supplied by you and linked into this Package shall not +be considered part of this Package. + +8. The name of the Copyright Holder may not be used to endorse or promote +products derived from this software without specific prior written permission. + +9. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR +IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED +WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR +PURPOSE. + +The End + + diff --git a/docs/bundled_licenses/perl-MIME-Types.txt b/docs/bundled_licenses/perl-MIME-Types.txt new file mode 100644 index 0000000000..694b03c306 --- /dev/null +++ b/docs/bundled_licenses/perl-MIME-Types.txt @@ -0,0 +1,3 @@ + + You may distribute under the terms of either the GNU General Public + License or the Artistic License, as specified in the Perl README file. diff --git a/docs/bundled_licenses/perl-Mail-Sender.txt b/docs/bundled_licenses/perl-Mail-Sender.txt new file mode 100644 index 0000000000..694b03c306 --- /dev/null +++ b/docs/bundled_licenses/perl-Mail-Sender.txt @@ -0,0 +1,3 @@ + + You may distribute under the terms of either the GNU General Public + License or the Artistic License, as specified in the Perl README file. diff --git a/docs/bundled_licenses/perl-Net-CIDR.txt b/docs/bundled_licenses/perl-Net-CIDR.txt new file mode 100644 index 0000000000..c3f7283189 --- /dev/null +++ b/docs/bundled_licenses/perl-Net-CIDR.txt @@ -0,0 +1,6 @@ +Net::CIDR + +Copyright 2001 Sam Varshavchik. + +This program is free software; you can redistribute it +and/or modify it under the same terms as Perl itself. diff --git a/docs/bundled_licenses/perl-Net-SNMP.txt b/docs/bundled_licenses/perl-Net-SNMP.txt new file mode 100644 index 0000000000..694b03c306 --- /dev/null +++ b/docs/bundled_licenses/perl-Net-SNMP.txt @@ -0,0 +1,3 @@ + + You may distribute under the terms of either the GNU General Public + License or the Artistic License, as specified in the Perl README file. diff --git a/docs/bundled_licenses/perl-Net-Sendmail.txt b/docs/bundled_licenses/perl-Net-Sendmail.txt new file mode 100644 index 0000000000..9ee5528836 --- /dev/null +++ b/docs/bundled_licenses/perl-Net-Sendmail.txt @@ -0,0 +1 @@ +You can use this module freely. diff --git a/docs/bundled_licenses/perl-Net-Server.txt b/docs/bundled_licenses/perl-Net-Server.txt new file mode 100644 index 0000000000..694b03c306 --- /dev/null +++ b/docs/bundled_licenses/perl-Net-Server.txt @@ -0,0 +1,3 @@ + + You may distribute under the terms of either the GNU General Public + License or the Artistic License, as specified in the Perl README file. diff --git a/docs/bundled_licenses/postgresql94.txt b/docs/bundled_licenses/postgresql94.txt new file mode 100644 index 0000000000..6fba6e7e13 --- /dev/null +++ b/docs/bundled_licenses/postgresql94.txt @@ -0,0 +1,23 @@ +PostgreSQL Database Management System +(formerly known as Postgres, then as Postgres95) + +Portions Copyright (c) 1996-2015, PostgreSQL Global Development Group + +Portions Copyright (c) 1994, The Regents of the University of California + +Permission to use, copy, modify, and distribute this software and its +documentation for any purpose, without fee, and without a written agreement +is hereby granted, provided that the above copyright notice and this +paragraph and the following two paragraphs appear in all copies. + +IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING +LOST PROFITS, ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS +DOCUMENTATION, EVEN IF THE UNIVERSITY OF CALIFORNIA HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. + +THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES, +INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY +AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATIONS TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. diff --git a/docs/bundled_licenses/proot.txt b/docs/bundled_licenses/proot.txt new file mode 100644 index 0000000000..d159169d10 --- /dev/null +++ b/docs/bundled_licenses/proot.txt @@ -0,0 +1,339 @@ + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Lesser General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, 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 show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 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 Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision 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 generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "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 THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + , 1 April 1989 + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. diff --git a/docs/bundled_licenses/python-crypto.txt b/docs/bundled_licenses/python-crypto.txt new file mode 100644 index 0000000000..5ea30bec0c --- /dev/null +++ b/docs/bundled_licenses/python-crypto.txt @@ -0,0 +1,69 @@ +Copyright and licensing of the Python Cryptography Toolkit ("PyCrypto"): +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Previously, the copyright and/or licensing status of the Python +Cryptography Toolkit ("PyCrypto") had been somewhat ambiguous. The +original intention of Andrew M. Kuchling and other contributors has +been to dedicate PyCrypto to the public domain, but that intention was +not necessarily made clear in the original disclaimer (see +LEGAL/copy/LICENSE.orig). + +Additionally, some files within PyCrypto had specified their own +licenses that differed from the PyCrypto license itself. For example, +the original RIPEMD.c module simply had a copyright statement and +warranty disclaimer, without clearly specifying any license terms. +(An updated version on the author's website came with a license that +contained a GPL-incompatible advertising clause.) + +To rectify this situation for PyCrypto 2.1, the following steps have +been taken: + + 1. Obtaining explicit permission from the original contributors to + dedicate their contributions to the public domain if they have not + already done so. (See the "LEGAL/copy/stmts" directory for + contributors' statements.) + + 2. Replacing some modules with clearly-licensed code from other + sources (e.g. the DES and DES3 modules were replaced with new ones + based on Tom St. Denis's public-domain LibTomCrypt library.) + + 3. Replacing some modules with code written from scratch (e.g. the + RIPEMD and Blowfish modules were re-implemented from their + respective algorithm specifications without reference to the old + implementations). + + 4. Removing some modules altogether without replacing them. + +To the best of our knowledge, with the exceptions noted below or +within the files themselves, the files that constitute PyCrypto are in +the public domain. Most are distributed with the following notice: + + The contents of this file are dedicated to the public domain. To + the extent that dedication to the public domain is not available, + everyone is granted a worldwide, perpetual, royalty-free, + non-exclusive license to exercise all rights associated with the + contents of this file for any purpose whatsoever. + No rights are reserved. + + 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. + +Exception: + + - Portions of HMAC.py and setup.py are derived from Python 2.2, and + are therefore Copyright (c) 2001, 2002, 2003 Python Software + Foundation (All Rights Reserved). They are licensed by the PSF + under the terms of the Python 2.2 license. (See the file + LEGAL/copy/LICENSE.python-2.2 for details.) + +EXPORT RESTRICTIONS: + +Note that the export or re-export of cryptographic software and/or +source code may be subject to regulation in your jurisdiction. + diff --git a/docs/bundled_licenses/python-ecdsa.txt b/docs/bundled_licenses/python-ecdsa.txt new file mode 100644 index 0000000000..474479a2ce --- /dev/null +++ b/docs/bundled_licenses/python-ecdsa.txt @@ -0,0 +1,24 @@ +"python-ecdsa" Copyright (c) 2010 Brian Warner + +Portions written in 2005 by Peter Pearson and placed in the public domain. + +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. diff --git a/docs/bundled_licenses/python-httplib2.txt b/docs/bundled_licenses/python-httplib2.txt new file mode 100644 index 0000000000..e9a1ada181 --- /dev/null +++ b/docs/bundled_licenses/python-httplib2.txt @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) + +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. diff --git a/docs/bundled_licenses/python-keyczar.txt b/docs/bundled_licenses/python-keyczar.txt new file mode 100644 index 0000000000..d645695673 --- /dev/null +++ b/docs/bundled_licenses/python-keyczar.txt @@ -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. diff --git a/docs/bundled_licenses/python-meld3.txt b/docs/bundled_licenses/python-meld3.txt new file mode 100644 index 0000000000..0f06d960d8 --- /dev/null +++ b/docs/bundled_licenses/python-meld3.txt @@ -0,0 +1,54 @@ +Zope Public License (ZPL) Version 2.1 +------------------------------------- + +A copyright notice accompanies this license document that +identifies the copyright holders. + +This license has been certified as open source. It has also +been designated as GPL compatible by the Free Software +Foundation (FSF). + +Redistribution and use in source and binary forms, with or +without modification, are permitted provided that the +following conditions are met: + +1. Redistributions in source code must retain the + accompanying copyright notice, this list of conditions, + and the following disclaimer. + +2. Redistributions in binary form must reproduce the accompanying + copyright notice, this list of conditions, and the + following disclaimer in the documentation and/or other + materials provided with the distribution. + +3. Names of the copyright holders must not be used to + endorse or promote products derived from this software + without prior written permission from the copyright + holders. + +4. The right to distribute this software or to use it for + any purpose does not give you the right to use + Servicemarks (sm) or Trademarks (tm) of the copyright + holders. Use of them is covered by separate agreement + with the copyright holders. + +5. If any files are modified, you must cause the modified + files to carry prominent notices stating that you changed + the files and the date of any change. + +Disclaimer + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' + AND ANY EXPRESSED 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 HOLDERS 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. diff --git a/docs/bundled_licenses/python-paramiko.txt b/docs/bundled_licenses/python-paramiko.txt new file mode 100644 index 0000000000..d12bef0c5a --- /dev/null +++ b/docs/bundled_licenses/python-paramiko.txt @@ -0,0 +1,504 @@ + GNU LESSER GENERAL PUBLIC LICENSE + Version 2.1, February 1999 + + Copyright (C) 1991, 1999 Free Software Foundation, Inc. + 51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + +[This is the first released version of the Lesser GPL. It also counts + as the successor of the GNU Library Public License, version 2, hence + the version number 2.1.] + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +Licenses are intended to guarantee your freedom to share and change +free software--to make sure the software is free for all its users. + + This license, the Lesser General Public License, applies to some +specially designated software packages--typically libraries--of the +Free Software Foundation and other authors who decide to use it. You +can use it too, but we suggest you first think carefully about whether +this license or the ordinary General Public License is the better +strategy to use in any particular case, based on the explanations below. + + When we speak of free software, we are referring to freedom of use, +not price. Our General Public Licenses are designed to make sure that +you have the freedom to distribute copies of free software (and charge +for this service if you wish); that you receive source code or can get +it if you want it; that you can change the software and use pieces of +it in new free programs; and that you are informed that you can do +these things. + + To protect your rights, we need to make restrictions that forbid +distributors to deny you these rights or to ask you to surrender these +rights. These restrictions translate to certain responsibilities for +you if you distribute copies of the library or if you modify it. + + For example, if you distribute copies of the library, whether gratis +or for a fee, you must give the recipients all the rights that we gave +you. You must make sure that they, too, receive or can get the source +code. If you link other code with the library, you must provide +complete object files to the recipients, so that they can relink them +with the library after making changes to the library and recompiling +it. And you must show them these terms so they know their rights. + + We protect your rights with a two-step method: (1) we copyright the +library, and (2) we offer you this license, which gives you legal +permission to copy, distribute and/or modify the library. + + To protect each distributor, we want to make it very clear that +there is no warranty for the free library. Also, if the library is +modified by someone else and passed on, the recipients should know +that what they have is not the original version, so that the original +author's reputation will not be affected by problems that might be +introduced by others. + + Finally, software patents pose a constant threat to the existence of +any free program. We wish to make sure that a company cannot +effectively restrict the users of a free program by obtaining a +restrictive license from a patent holder. Therefore, we insist that +any patent license obtained for a version of the library must be +consistent with the full freedom of use specified in this license. + + Most GNU software, including some libraries, is covered by the +ordinary GNU General Public License. This license, the GNU Lesser +General Public License, applies to certain designated libraries, and +is quite different from the ordinary General Public License. We use +this license for certain libraries in order to permit linking those +libraries into non-free programs. + + When a program is linked with a library, whether statically or using +a shared library, the combination of the two is legally speaking a +combined work, a derivative of the original library. The ordinary +General Public License therefore permits such linking only if the +entire combination fits its criteria of freedom. The Lesser General +Public License permits more lax criteria for linking other code with +the library. + + We call this license the "Lesser" General Public License because it +does Less to protect the user's freedom than the ordinary General +Public License. It also provides other free software developers Less +of an advantage over competing non-free programs. These disadvantages +are the reason we use the ordinary General Public License for many +libraries. However, the Lesser license provides advantages in certain +special circumstances. + + For example, on rare occasions, there may be a special need to +encourage the widest possible use of a certain library, so that it becomes +a de-facto standard. To achieve this, non-free programs must be +allowed to use the library. A more frequent case is that a free +library does the same job as widely used non-free libraries. In this +case, there is little to gain by limiting the free library to free +software only, so we use the Lesser General Public License. + + In other cases, permission to use a particular library in non-free +programs enables a greater number of people to use a large body of +free software. For example, permission to use the GNU C Library in +non-free programs enables many more people to use the whole GNU +operating system, as well as its variant, the GNU/Linux operating +system. + + Although the Lesser General Public License is Less protective of the +users' freedom, it does ensure that the user of a program that is +linked with the Library has the freedom and the wherewithal to run +that program using a modified version of the Library. + + The precise terms and conditions for copying, distribution and +modification follow. Pay close attention to the difference between a +"work based on the library" and a "work that uses the library". The +former contains code derived from the library, whereas the latter must +be combined with the library in order to run. + + GNU LESSER GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License Agreement applies to any software library or other +program which contains a notice placed by the copyright holder or +other authorized party saying it may be distributed under the terms of +this Lesser General Public License (also called "this License"). +Each licensee is addressed as "you". + + A "library" means a collection of software functions and/or data +prepared so as to be conveniently linked with application programs +(which use some of those functions and data) to form executables. + + The "Library", below, refers to any such software library or work +which has been distributed under these terms. A "work based on the +Library" means either the Library or any derivative work under +copyright law: that is to say, a work containing the Library or a +portion of it, either verbatim or with modifications and/or translated +straightforwardly into another language. (Hereinafter, translation is +included without limitation in the term "modification".) + + "Source code" for a work means the preferred form of the work for +making modifications to it. For a library, complete source code means +all the source code for all modules it contains, plus any associated +interface definition files, plus the scripts used to control compilation +and installation of the library. + + Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running a program using the Library is not restricted, and output from +such a program is covered only if its contents constitute a work based +on the Library (independent of the use of the Library in a tool for +writing it). Whether that is true depends on what the Library does +and what the program that uses the Library does. + + 1. You may copy and distribute verbatim copies of the Library's +complete source code as you receive it, in any medium, provided that +you conspicuously and appropriately publish on each copy an +appropriate copyright notice and disclaimer of warranty; keep intact +all the notices that refer to this License and to the absence of any +warranty; and distribute a copy of this License along with the +Library. + + You may charge a fee for the physical act of transferring a copy, +and you may at your option offer warranty protection in exchange for a +fee. + + 2. You may modify your copy or copies of the Library or any portion +of it, thus forming a work based on the Library, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) The modified work must itself be a software library. + + b) You must cause the files modified to carry prominent notices + stating that you changed the files and the date of any change. + + c) You must cause the whole of the work to be licensed at no + charge to all third parties under the terms of this License. + + d) If a facility in the modified Library refers to a function or a + table of data to be supplied by an application program that uses + the facility, other than as an argument passed when the facility + is invoked, then you must make a good faith effort to ensure that, + in the event an application does not supply such function or + table, the facility still operates, and performs whatever part of + its purpose remains meaningful. + + (For example, a function in a library to compute square roots has + a purpose that is entirely well-defined independent of the + application. Therefore, Subsection 2d requires that any + application-supplied function or table used by this function must + be optional: if the application does not supply it, the square + root function must still compute square roots.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Library, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Library, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote +it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Library. + +In addition, mere aggregation of another work not based on the Library +with the Library (or with a work based on the Library) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may opt to apply the terms of the ordinary GNU General Public +License instead of this License to a given copy of the Library. To do +this, you must alter all the notices that refer to this License, so +that they refer to the ordinary GNU General Public License, version 2, +instead of to this License. (If a newer version than version 2 of the +ordinary GNU General Public License has appeared, then you can specify +that version instead if you wish.) Do not make any other change in +these notices. + + Once this change is made in a given copy, it is irreversible for +that copy, so the ordinary GNU General Public License applies to all +subsequent copies and derivative works made from that copy. + + This option is useful when you wish to copy part of the code of +the Library into a program that is not a library. + + 4. You may copy and distribute the Library (or a portion or +derivative of it, under Section 2) in object code or executable form +under the terms of Sections 1 and 2 above provided that you accompany +it with the complete corresponding machine-readable source code, which +must be distributed under the terms of Sections 1 and 2 above on a +medium customarily used for software interchange. + + If distribution of object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the +source code from the same place satisfies the requirement to +distribute the source code, even though third parties are not +compelled to copy the source along with the object code. + + 5. A program that contains no derivative of any portion of the +Library, but is designed to work with the Library by being compiled or +linked with it, is called a "work that uses the Library". Such a +work, in isolation, is not a derivative work of the Library, and +therefore falls outside the scope of this License. + + However, linking a "work that uses the Library" with the Library +creates an executable that is a derivative of the Library (because it +contains portions of the Library), rather than a "work that uses the +library". The executable is therefore covered by this License. +Section 6 states terms for distribution of such executables. + + When a "work that uses the Library" uses material from a header file +that is part of the Library, the object code for the work may be a +derivative work of the Library even though the source code is not. +Whether this is true is especially significant if the work can be +linked without the Library, or if the work is itself a library. The +threshold for this to be true is not precisely defined by law. + + If such an object file uses only numerical parameters, data +structure layouts and accessors, and small macros and small inline +functions (ten lines or less in length), then the use of the object +file is unrestricted, regardless of whether it is legally a derivative +work. (Executables containing this object code plus portions of the +Library will still fall under Section 6.) + + Otherwise, if the work is a derivative of the Library, you may +distribute the object code for the work under the terms of Section 6. +Any executables containing that work also fall under Section 6, +whether or not they are linked directly with the Library itself. + + 6. As an exception to the Sections above, you may also combine or +link a "work that uses the Library" with the Library to produce a +work containing portions of the Library, and distribute that work +under terms of your choice, provided that the terms permit +modification of the work for the customer's own use and reverse +engineering for debugging such modifications. + + You must give prominent notice with each copy of the work that the +Library is used in it and that the Library and its use are covered by +this License. You must supply a copy of this License. If the work +during execution displays copyright notices, you must include the +copyright notice for the Library among them, as well as a reference +directing the user to the copy of this License. Also, you must do one +of these things: + + a) Accompany the work with the complete corresponding + machine-readable source code for the Library including whatever + changes were used in the work (which must be distributed under + Sections 1 and 2 above); and, if the work is an executable linked + with the Library, with the complete machine-readable "work that + uses the Library", as object code and/or source code, so that the + user can modify the Library and then relink to produce a modified + executable containing the modified Library. (It is understood + that the user who changes the contents of definitions files in the + Library will not necessarily be able to recompile the application + to use the modified definitions.) + + b) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (1) uses at run time a + copy of the library already present on the user's computer system, + rather than copying library functions into the executable, and (2) + will operate properly with a modified version of the library, if + the user installs one, as long as the modified version is + interface-compatible with the version that the work was made with. + + c) Accompany the work with a written offer, valid for at + least three years, to give the same user the materials + specified in Subsection 6a, above, for a charge no more + than the cost of performing this distribution. + + d) If distribution of the work is made by offering access to copy + from a designated place, offer equivalent access to copy the above + specified materials from the same place. + + e) Verify that the user has already received a copy of these + materials or that you have already sent this user a copy. + + For an executable, the required form of the "work that uses the +Library" must include any data and utility programs needed for +reproducing the executable from it. However, as a special exception, +the materials to be distributed need not include anything that is +normally distributed (in either source or binary form) with the major +components (compiler, kernel, and so on) of the operating system on +which the executable runs, unless that component itself accompanies +the executable. + + It may happen that this requirement contradicts the license +restrictions of other proprietary libraries that do not normally +accompany the operating system. Such a contradiction means you cannot +use both them and the Library together in an executable that you +distribute. + + 7. You may place library facilities that are a work based on the +Library side-by-side in a single library together with other library +facilities not covered by this License, and distribute such a combined +library, provided that the separate distribution of the work based on +the Library and of the other library facilities is otherwise +permitted, and provided that you do these two things: + + a) Accompany the combined library with a copy of the same work + based on the Library, uncombined with any other library + facilities. This must be distributed under the terms of the + Sections above. + + b) Give prominent notice with the combined library of the fact + that part of it is a work based on the Library, and explaining + where to find the accompanying uncombined form of the same work. + + 8. You may not copy, modify, sublicense, link with, or distribute +the Library except as expressly provided under this License. Any +attempt otherwise to copy, modify, sublicense, link with, or +distribute the Library is void, and will automatically terminate your +rights under this License. However, parties who have received copies, +or rights, from you under this License will not have their licenses +terminated so long as such parties remain in full compliance. + + 9. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Library or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Library (or any work based on the +Library), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Library or works based on it. + + 10. Each time you redistribute the Library (or any work based on the +Library), the recipient automatically receives a license from the +original licensor to copy, distribute, link with or modify the Library +subject to these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties with +this License. + + 11. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Library at all. For example, if a patent +license would not permit royalty-free redistribution of the Library by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Library. + +If any portion of this section is held invalid or unenforceable under any +particular circumstance, the balance of the section is intended to apply, +and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 12. If the distribution and/or use of the Library is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Library under this License may add +an explicit geographical distribution limitation excluding those countries, +so that distribution is permitted only in or among countries not thus +excluded. In such case, this License incorporates the limitation as if +written in the body of this License. + + 13. The Free Software Foundation may publish revised and/or new +versions of the Lesser General Public License from time to time. +Such new versions will be similar in spirit to the present version, +but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Library +specifies a version number of this License which applies to it and +"any later version", you have the option of following the terms and +conditions either of that version or of any later version published by +the Free Software Foundation. If the Library does not specify a +license version number, you may choose any version ever published by +the Free Software Foundation. + + 14. If you wish to incorporate parts of the Library into other free +programs whose distribution conditions are incompatible with these, +write to the author to ask for permission. For software which is +copyrighted by the Free Software Foundation, write to the Free +Software Foundation; we sometimes make exceptions for this. Our +decision 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 generally. + + NO WARRANTY + + 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO +WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. +EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR +OTHER PARTIES PROVIDE THE LIBRARY "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 THE +LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME +THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN +WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY +AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU +FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR +CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE +LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING +RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A +FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF +SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Libraries + + If you develop a new library, and you want it to be of the greatest +possible use to the public, we recommend making it free software that +everyone can redistribute and change. You can do so by permitting +redistribution under these terms (or, alternatively, under the terms of the +ordinary General Public License). + + To apply these terms, attach the following notices to the library. It is +safest to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least the +"copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA + +Also add information on how to contact you by electronic and paper mail. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the library, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the + library `Frob' (a library for tweaking knobs) written by James Random Hacker. + + , 1 April 1990 + Ty Coon, President of Vice + +That's all there is to it! + + diff --git a/docs/bundled_licenses/redis.txt b/docs/bundled_licenses/redis.txt new file mode 100644 index 0000000000..a58de44ddd --- /dev/null +++ b/docs/bundled_licenses/redis.txt @@ -0,0 +1,10 @@ +Copyright (c) 2006-2014, Salvatore Sanfilippo +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 Redis 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. diff --git a/docs/bundled_licenses/sshpass.txt b/docs/bundled_licenses/sshpass.txt new file mode 100644 index 0000000000..d60c31a97a --- /dev/null +++ b/docs/bundled_licenses/sshpass.txt @@ -0,0 +1,340 @@ + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc. + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Library General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, 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 show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 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 Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision 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 generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "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 THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + , 1 April 1989 + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Library General +Public License instead of this License. diff --git a/docs/bundled_licenses/supervisor.txt b/docs/bundled_licenses/supervisor.txt new file mode 100644 index 0000000000..3c8cd732ed --- /dev/null +++ b/docs/bundled_licenses/supervisor.txt @@ -0,0 +1,164 @@ +Supervisor is licensed under the following license: + + A copyright notice accompanies this license document that identifies + the copyright holders. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + + 1. Redistributions in source code must retain the accompanying + copyright notice, this list of conditions, and the following + disclaimer. + + 2. Redistributions in binary form must reproduce the accompanying + copyright notice, this list of conditions, and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + + 3. Names of the copyright holders must not be used to endorse or + promote products derived from this software without prior + written permission from the copyright holders. + + 4. If any files are modified, you must cause the modified files to + carry prominent notices stating that you changed the files and + the date of any change. + + Disclaimer + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND + ANY EXPRESSED 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 + HOLDERS 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. + +http_client.py code is based on code by Daniel Krech, which was +released under this license: + + LICENSE AGREEMENT FOR RDFLIB 0.9.0 THROUGH 2.3.1 + ------------------------------------------------ + Copyright (c) 2002-2005, Daniel Krech, http://eikeon.com/ + 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 Daniel Krech 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. + +Medusa, the asynchronous communications framework upon which +supervisor's server and client code is based, was created by Sam +Rushing: + + Medusa was once distributed under a 'free for non-commercial use' + license, but in May of 2000 Sam Rushing changed the license to be + identical to the standard Python license at the time. The standard + Python license has always applied to the core components of Medusa, + this change just frees up the rest of the system, including the http + server, ftp server, utilities, etc. Medusa is therefore under the + following license: + + ============================== + Permission to use, copy, modify, and distribute this software and + its documentation for any purpose and without fee is hereby granted, + provided that the above copyright notice appear in all copies and + that both that copyright notice and this permission notice appear in + supporting documentation, and that the name of Sam Rushing not be + used in advertising or publicity pertaining to distribution of the + software without specific, written prior permission. + + SAM RUSHING DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, + INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN + NO EVENT SHALL SAM RUSHING BE LIABLE FOR ANY SPECIAL, INDIRECT OR + CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS + OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, + NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION + WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + ============================== + +Some software in this distribution is released under the Zope Public +License (as marked in its file header): + + Zope Public License (ZPL) Version 2.1 + ------------------------------------- + + A copyright notice accompanies this license document that + identifies the copyright holders. + + This license has been certified as open source. It has also + been designated as GPL compatible by the Free Software + Foundation (FSF). + + Redistribution and use in source and binary forms, with or + without modification, are permitted provided that the + following conditions are met: + + 1. Redistributions in source code must retain the + accompanying copyright notice, this list of conditions, + and the following disclaimer. + + 2. Redistributions in binary form must reproduce the accompanying + copyright notice, this list of conditions, and the + following disclaimer in the documentation and/or other + materials provided with the distribution. + + 3. Names of the copyright holders must not be used to + endorse or promote products derived from this software + without prior written permission from the copyright + holders. + + 4. The right to distribute this software or to use it for + any purpose does not give you the right to use + Servicemarks (sm) or Trademarks (tm) of the copyright + holders. Use of them is covered by separate agreement + with the copyright holders. + + 5. If any files are modified, you must cause the modified + files to carry prominent notices stating that you changed + the files and the date of any change. + + Disclaimer + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' + AND ANY EXPRESSED 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 HOLDERS 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. diff --git a/docs/bundled_licenses/zeromq3.txt b/docs/bundled_licenses/zeromq3.txt new file mode 100644 index 0000000000..b6f3fd5d30 --- /dev/null +++ b/docs/bundled_licenses/zeromq3.txt @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "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 THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. From 8d3c7353fb266f1e4f64062fbc9ed9a2a799102e Mon Sep 17 00:00:00 2001 From: Chris Meyers Date: Fri, 18 Sep 2015 13:04:42 -0400 Subject: [PATCH 05/17] vendored python licenses --- docs/licenses/Babel.txt | 29 ++ docs/licenses/IP.txt | 26 + docs/licenses/Markdown.txt | 30 ++ docs/licenses/PyYAML.txt | 19 + docs/licenses/South.txt | 73 +++ docs/licenses/amqp.tx.txt | 458 ++++++++++++++++++ docs/licenses/ansicon.tx.txt | 20 + docs/licenses/anyjson.tx.txt | 29 ++ docs/licenses/apache-libcloud.txt | 202 ++++++++ docs/licenses/argparse.txt | 20 + docs/licenses/azure.txt | 73 +++ docs/licenses/billiard.txt | 29 ++ docs/licenses/boto.txt | 9 + docs/licenses/celery.txt | 53 ++ docs/licenses/cffi.txt | 26 + docs/licenses/cliff.txt | 202 ++++++++ docs/licenses/cmd2.txt | 9 + docs/licenses/cryptography.txt | 3 + docs/licenses/d2to1.txt | 29 ++ docs/licenses/django-auth-ldap.txt | 23 + docs/licenses/django-celery.txt | 29 ++ docs/licenses/django-crum.txt | 27 ++ docs/licenses/django-extensions.txt | 19 + docs/licenses/django-qsstats.txt | 24 + docs/licenses/django-rest-framework.txt | 21 + docs/licenses/django-split-settings.txt | 27 ++ docs/licenses/django-taggit.txt | 28 ++ docs/licenses/django.txt | 23 + docs/licenses/django_polymorphic.txt | 32 ++ docs/licenses/djangorestframework.txt | 9 + docs/licenses/dogpile.cache.txt | 27 ++ docs/licenses/dogpile.core.txt | 27 ++ docs/licenses/enum34.txt | 32 ++ docs/licenses/functools32-3.2.3.txt | 289 +++++++++++ docs/licenses/gevent-websocket.txt | 13 + docs/licenses/gevent.txt | 24 + docs/licenses/greenlet.txt | 30 ++ docs/licenses/httplib2.txt | 9 + docs/licenses/idna.txt | 80 +++ docs/licenses/importlib.txt | 72 +++ docs/licenses/ipaddress.txt | 72 +++ docs/licenses/iso8601.txt | 20 + docs/licenses/isodate.txt | 21 + docs/licenses/jsonpatch.txt | 26 + docs/licenses/jsonpointer.txt | 26 + docs/licenses/jsonschema.txt | 19 + docs/licenses/keyring.txt | 82 ++++ docs/licenses/kombu.txt | 26 + docs/licenses/lxml.txt | 32 ++ docs/licenses/mock.txt | 26 + docs/licenses/mongoengine.txt | 22 + docs/licenses/msgpack-python.txt | 14 + docs/licenses/netaddr.txt | 36 ++ docs/licenses/netifaces.txt | 9 + docs/licenses/ordereddict.txt | 21 + docs/licenses/os-client-config.txt | 175 +++++++ .../os_diskconfig_python_novaclient_ext.txt | 73 +++ .../os_networksv2_python_novaclient_ext.txt | 73 +++ ...ual_interfacesv2_python_novaclient_ext.txt | 73 +++ docs/licenses/oslo.config.txt | 204 ++++++++ docs/licenses/oslo.i18n.txt | 175 +++++++ docs/licenses/oslo.serialization.txt | 175 +++++++ docs/licenses/oslo.utils.txt | 175 +++++++ docs/licenses/pbr.txt | 176 +++++++ docs/licenses/pexpect.txt | 17 + docs/licenses/pip.txt | 20 + docs/licenses/prettytable.txt | 30 ++ docs/licenses/psphere.txt | 201 ++++++++ docs/licenses/psutil.txt | 27 ++ docs/licenses/psycopg2.txt | 54 +++ docs/licenses/pyOpenSSL.txt | 202 ++++++++ docs/licenses/pyasn1.txt | 24 + docs/licenses/pycparser.txt | 25 + docs/licenses/pycrypto.txt | 69 +++ docs/licenses/pymongo.txt | 202 ++++++++ docs/licenses/pyparsing.txt | 18 + docs/licenses/pyrax.txt | 202 ++++++++ docs/licenses/python-cinderclient.txt | 208 ++++++++ docs/licenses/python-dateutil.txt | 31 ++ docs/licenses/python-glanceclient.txt | 175 +++++++ docs/licenses/python-ironicclient.txt | 176 +++++++ docs/licenses/python-ldap.txt | 19 + docs/licenses/python-neutronclient.txt | 176 +++++++ docs/licenses/python-novaclient.txt | 208 ++++++++ docs/licenses/python-swiftclient.txt | 175 +++++++ docs/licenses/python-troveclient.txt | 176 +++++++ docs/licenses/python.txt | 209 ++++++++ docs/licenses/pytz.txt | 19 + docs/licenses/pywinrm.txt | 9 + docs/licenses/pyzmq.txt | 32 ++ docs/licenses/rackspace-auth-openstack.txt | 208 ++++++++ docs/licenses/rackspace-novaclient.txt | 73 +++ ...lt_network_flags_python_novaclient_ext.txt | 73 +++ ...scheduled_images_python_novaclient_ext.txt | 73 +++ docs/licenses/redis.txt | 22 + docs/licenses/requests.txt | 13 + docs/licenses/setuptools.txt | 96 ++++ docs/licenses/shad.txt | 175 +++++++ docs/licenses/simplejson.txt | 79 +++ docs/licenses/sitecustomiz.txt | 72 +++ docs/licenses/six.txt | 18 + docs/licenses/stevedore.txt | 202 ++++++++ docs/licenses/suds.txt | 165 +++++++ docs/licenses/warlock.txt | 202 ++++++++ docs/licenses/wheel.txt | 22 + docs/licenses/wsgiref.txt | 96 ++++ docs/licenses/xmltodict.txt | 7 + 107 files changed, 8255 insertions(+) create mode 100644 docs/licenses/Babel.txt create mode 100644 docs/licenses/IP.txt create mode 100644 docs/licenses/Markdown.txt create mode 100644 docs/licenses/PyYAML.txt create mode 100644 docs/licenses/South.txt create mode 100644 docs/licenses/amqp.tx.txt create mode 100644 docs/licenses/ansicon.tx.txt create mode 100644 docs/licenses/anyjson.tx.txt create mode 100644 docs/licenses/apache-libcloud.txt create mode 100644 docs/licenses/argparse.txt create mode 100644 docs/licenses/azure.txt create mode 100644 docs/licenses/billiard.txt create mode 100644 docs/licenses/boto.txt create mode 100644 docs/licenses/celery.txt create mode 100644 docs/licenses/cffi.txt create mode 100644 docs/licenses/cliff.txt create mode 100644 docs/licenses/cmd2.txt create mode 100644 docs/licenses/cryptography.txt create mode 100644 docs/licenses/d2to1.txt create mode 100644 docs/licenses/django-auth-ldap.txt create mode 100644 docs/licenses/django-celery.txt create mode 100644 docs/licenses/django-crum.txt create mode 100644 docs/licenses/django-extensions.txt create mode 100644 docs/licenses/django-qsstats.txt create mode 100644 docs/licenses/django-rest-framework.txt create mode 100644 docs/licenses/django-split-settings.txt create mode 100644 docs/licenses/django-taggit.txt create mode 100644 docs/licenses/django.txt create mode 100644 docs/licenses/django_polymorphic.txt create mode 100644 docs/licenses/djangorestframework.txt create mode 100644 docs/licenses/dogpile.cache.txt create mode 100644 docs/licenses/dogpile.core.txt create mode 100644 docs/licenses/enum34.txt create mode 100644 docs/licenses/functools32-3.2.3.txt create mode 100644 docs/licenses/gevent-websocket.txt create mode 100644 docs/licenses/gevent.txt create mode 100644 docs/licenses/greenlet.txt create mode 100644 docs/licenses/httplib2.txt create mode 100644 docs/licenses/idna.txt create mode 100644 docs/licenses/importlib.txt create mode 100644 docs/licenses/ipaddress.txt create mode 100644 docs/licenses/iso8601.txt create mode 100644 docs/licenses/isodate.txt create mode 100644 docs/licenses/jsonpatch.txt create mode 100644 docs/licenses/jsonpointer.txt create mode 100644 docs/licenses/jsonschema.txt create mode 100644 docs/licenses/keyring.txt create mode 100644 docs/licenses/kombu.txt create mode 100644 docs/licenses/lxml.txt create mode 100644 docs/licenses/mock.txt create mode 100644 docs/licenses/mongoengine.txt create mode 100644 docs/licenses/msgpack-python.txt create mode 100644 docs/licenses/netaddr.txt create mode 100644 docs/licenses/netifaces.txt create mode 100644 docs/licenses/ordereddict.txt create mode 100644 docs/licenses/os-client-config.txt create mode 100644 docs/licenses/os_diskconfig_python_novaclient_ext.txt create mode 100644 docs/licenses/os_networksv2_python_novaclient_ext.txt create mode 100644 docs/licenses/os_virtual_interfacesv2_python_novaclient_ext.txt create mode 100644 docs/licenses/oslo.config.txt create mode 100644 docs/licenses/oslo.i18n.txt create mode 100644 docs/licenses/oslo.serialization.txt create mode 100644 docs/licenses/oslo.utils.txt create mode 100644 docs/licenses/pbr.txt create mode 100644 docs/licenses/pexpect.txt create mode 100644 docs/licenses/pip.txt create mode 100644 docs/licenses/prettytable.txt create mode 100644 docs/licenses/psphere.txt create mode 100644 docs/licenses/psutil.txt create mode 100644 docs/licenses/psycopg2.txt create mode 100644 docs/licenses/pyOpenSSL.txt create mode 100644 docs/licenses/pyasn1.txt create mode 100644 docs/licenses/pycparser.txt create mode 100644 docs/licenses/pycrypto.txt create mode 100644 docs/licenses/pymongo.txt create mode 100644 docs/licenses/pyparsing.txt create mode 100644 docs/licenses/pyrax.txt create mode 100644 docs/licenses/python-cinderclient.txt create mode 100644 docs/licenses/python-dateutil.txt create mode 100644 docs/licenses/python-glanceclient.txt create mode 100644 docs/licenses/python-ironicclient.txt create mode 100644 docs/licenses/python-ldap.txt create mode 100644 docs/licenses/python-neutronclient.txt create mode 100644 docs/licenses/python-novaclient.txt create mode 100644 docs/licenses/python-swiftclient.txt create mode 100644 docs/licenses/python-troveclient.txt create mode 100644 docs/licenses/python.txt create mode 100644 docs/licenses/pytz.txt create mode 100644 docs/licenses/pywinrm.txt create mode 100644 docs/licenses/pyzmq.txt create mode 100644 docs/licenses/rackspace-auth-openstack.txt create mode 100644 docs/licenses/rackspace-novaclient.txt create mode 100644 docs/licenses/rax_default_network_flags_python_novaclient_ext.txt create mode 100644 docs/licenses/rax_scheduled_images_python_novaclient_ext.txt create mode 100644 docs/licenses/redis.txt create mode 100644 docs/licenses/requests.txt create mode 100644 docs/licenses/setuptools.txt create mode 100644 docs/licenses/shad.txt create mode 100644 docs/licenses/simplejson.txt create mode 100644 docs/licenses/sitecustomiz.txt create mode 100644 docs/licenses/six.txt create mode 100644 docs/licenses/stevedore.txt create mode 100644 docs/licenses/suds.txt create mode 100644 docs/licenses/warlock.txt create mode 100644 docs/licenses/wheel.txt create mode 100644 docs/licenses/wsgiref.txt create mode 100644 docs/licenses/xmltodict.txt diff --git a/docs/licenses/Babel.txt b/docs/licenses/Babel.txt new file mode 100644 index 0000000000..1f1f55b609 --- /dev/null +++ b/docs/licenses/Babel.txt @@ -0,0 +1,29 @@ +Copyright (C) 2013 by the Babel Team, see AUTHORS for more information. + +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 above 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. + 3. The name of the author may not be used to endorse or promote + products derived from this software without specific prior + written permission. + +THIS SOFTWARE IS PROVIDED BY THE AUTHOR "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 AUTHOR 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. diff --git a/docs/licenses/IP.txt b/docs/licenses/IP.txt new file mode 100644 index 0000000000..49c6266800 --- /dev/null +++ b/docs/licenses/IP.txt @@ -0,0 +1,26 @@ +Copyright (c) 2006, INL +Copyright (c) 2001-2005, Maximillian Dornseif +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 IPy 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 REGENTS 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 REGENTS AND 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. + diff --git a/docs/licenses/Markdown.txt b/docs/licenses/Markdown.txt new file mode 100644 index 0000000000..4cd8b1455d --- /dev/null +++ b/docs/licenses/Markdown.txt @@ -0,0 +1,30 @@ +Copyright 2007, 2008 The Python Markdown Project (v. 1.7 and later) +Copyright 2004, 2005, 2006 Yuri Takhteyev (v. 0.2-1.6b) +Copyright 2004 Manfred Stienstra (the original version) + +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 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 PYTHON MARKDOWN PROJECT ''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 ANY CONTRIBUTORS TO THE PYTHON MARKDOWN PROJECT +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. + diff --git a/docs/licenses/PyYAML.txt b/docs/licenses/PyYAML.txt new file mode 100644 index 0000000000..050ced23f6 --- /dev/null +++ b/docs/licenses/PyYAML.txt @@ -0,0 +1,19 @@ +Copyright (c) 2006 Kirill Simonov + +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. diff --git a/docs/licenses/South.txt b/docs/licenses/South.txt new file mode 100644 index 0000000000..33666dddf7 --- /dev/null +++ b/docs/licenses/South.txt @@ -0,0 +1,73 @@ +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. \ No newline at end of file diff --git a/docs/licenses/amqp.tx.txt b/docs/licenses/amqp.tx.txt new file mode 100644 index 0000000000..3b473dbfc0 --- /dev/null +++ b/docs/licenses/amqp.tx.txt @@ -0,0 +1,458 @@ + GNU LESSER GENERAL PUBLIC LICENSE + Version 2.1, February 1999 + + Copyright (C) 1991, 1999 Free Software Foundation, Inc. + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + +[This is the first released version of the Lesser GPL. It also counts + as the successor of the GNU Library Public License, version 2, hence + the version number 2.1.] + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +Licenses are intended to guarantee your freedom to share and change +free software--to make sure the software is free for all its users. + + This license, the Lesser General Public License, applies to some +specially designated software packages--typically libraries--of the +Free Software Foundation and other authors who decide to use it. You +can use it too, but we suggest you first think carefully about whether +this license or the ordinary General Public License is the better +strategy to use in any particular case, based on the explanations below. + + When we speak of free software, we are referring to freedom of use, +not price. Our General Public Licenses are designed to make sure that +you have the freedom to distribute copies of free software (and charge +for this service if you wish); that you receive source code or can get +it if you want it; that you can change the software and use pieces of +it in new free programs; and that you are informed that you can do +these things. + + To protect your rights, we need to make restrictions that forbid +distributors to deny you these rights or to ask you to surrender these +rights. These restrictions translate to certain responsibilities for +you if you distribute copies of the library or if you modify it. + + For example, if you distribute copies of the library, whether gratis +or for a fee, you must give the recipients all the rights that we gave +you. You must make sure that they, too, receive or can get the source +code. If you link other code with the library, you must provide +complete object files to the recipients, so that they can relink them +with the library after making changes to the library and recompiling +it. And you must show them these terms so they know their rights. + + We protect your rights with a two-step method: (1) we copyright the +library, and (2) we offer you this license, which gives you legal +permission to copy, distribute and/or modify the library. + + To protect each distributor, we want to make it very clear that +there is no warranty for the free library. Also, if the library is +modified by someone else and passed on, the recipients should know +that what they have is not the original version, so that the original +author's reputation will not be affected by problems that might be +introduced by others. + + Finally, software patents pose a constant threat to the existence of +any free program. We wish to make sure that a company cannot +effectively restrict the users of a free program by obtaining a +restrictive license from a patent holder. Therefore, we insist that +any patent license obtained for a version of the library must be +consistent with the full freedom of use specified in this license. + + Most GNU software, including some libraries, is covered by the +ordinary GNU General Public License. This license, the GNU Lesser +General Public License, applies to certain designated libraries, and +is quite different from the ordinary General Public License. We use +this license for certain libraries in order to permit linking those +libraries into non-free programs. + + When a program is linked with a library, whether statically or using +a shared library, the combination of the two is legally speaking a +combined work, a derivative of the original library. The ordinary +General Public License therefore permits such linking only if the +entire combination fits its criteria of freedom. The Lesser General +Public License permits more lax criteria for linking other code with +the library. + + We call this license the "Lesser" General Public License because it +does Less to protect the user's freedom than the ordinary General +Public License. It also provides other free software developers Less +of an advantage over competing non-free programs. These disadvantages +are the reason we use the ordinary General Public License for many +libraries. However, the Lesser license provides advantages in certain +special circumstances. + + For example, on rare occasions, there may be a special need to +encourage the widest possible use of a certain library, so that it becomes +a de-facto standard. To achieve this, non-free programs must be +allowed to use the library. A more frequent case is that a free +library does the same job as widely used non-free libraries. In this +case, there is little to gain by limiting the free library to free +software only, so we use the Lesser General Public License. + + In other cases, permission to use a particular library in non-free +programs enables a greater number of people to use a large body of +free software. For example, permission to use the GNU C Library in +non-free programs enables many more people to use the whole GNU +operating system, as well as its variant, the GNU/Linux operating +system. + + Although the Lesser General Public License is Less protective of the +users' freedom, it does ensure that the user of a program that is +linked with the Library has the freedom and the wherewithal to run +that program using a modified version of the Library. + + The precise terms and conditions for copying, distribution and +modification follow. Pay close attention to the difference between a +"work based on the library" and a "work that uses the library". The +former contains code derived from the library, whereas the latter must +be combined with the library in order to run. + + GNU LESSER GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License Agreement applies to any software library or other +program which contains a notice placed by the copyright holder or +other authorized party saying it may be distributed under the terms of +this Lesser General Public License (also called "this License"). +Each licensee is addressed as "you". + + A "library" means a collection of software functions and/or data +prepared so as to be conveniently linked with application programs +(which use some of those functions and data) to form executables. + + The "Library", below, refers to any such software library or work +which has been distributed under these terms. A "work based on the +Library" means either the Library or any derivative work under +copyright law: that is to say, a work containing the Library or a +portion of it, either verbatim or with modifications and/or translated +straightforwardly into another language. (Hereinafter, translation is +included without limitation in the term "modification".) + + "Source code" for a work means the preferred form of the work for +making modifications to it. For a library, complete source code means +all the source code for all modules it contains, plus any associated +interface definition files, plus the scripts used to control compilation +and installation of the library. + + Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running a program using the Library is not restricted, and output from +such a program is covered only if its contents constitute a work based +on the Library (independent of the use of the Library in a tool for +writing it). Whether that is true depends on what the Library does +and what the program that uses the Library does. + + 1. You may copy and distribute verbatim copies of the Library's +complete source code as you receive it, in any medium, provided that +you conspicuously and appropriately publish on each copy an +appropriate copyright notice and disclaimer of warranty; keep intact +all the notices that refer to this License and to the absence of any +warranty; and distribute a copy of this License along with the +Library. + + You may charge a fee for the physical act of transferring a copy, +and you may at your option offer warranty protection in exchange for a +fee. + + 2. You may modify your copy or copies of the Library or any portion +of it, thus forming a work based on the Library, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) The modified work must itself be a software library. + + b) You must cause the files modified to carry prominent notices + stating that you changed the files and the date of any change. + + c) You must cause the whole of the work to be licensed at no + charge to all third parties under the terms of this License. + + d) If a facility in the modified Library refers to a function or a + table of data to be supplied by an application program that uses + the facility, other than as an argument passed when the facility + is invoked, then you must make a good faith effort to ensure that, + in the event an application does not supply such function or + table, the facility still operates, and performs whatever part of + its purpose remains meaningful. + + (For example, a function in a library to compute square roots has + a purpose that is entirely well-defined independent of the + application. Therefore, Subsection 2d requires that any + application-supplied function or table used by this function must + be optional: if the application does not supply it, the square + root function must still compute square roots.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Library, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Library, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote +it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Library. + +In addition, mere aggregation of another work not based on the Library +with the Library (or with a work based on the Library) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may opt to apply the terms of the ordinary GNU General Public +License instead of this License to a given copy of the Library. To do +this, you must alter all the notices that refer to this License, so +that they refer to the ordinary GNU General Public License, version 2, +instead of to this License. (If a newer version than version 2 of the +ordinary GNU General Public License has appeared, then you can specify +that version instead if you wish.) Do not make any other change in +these notices. + + Once this change is made in a given copy, it is irreversible for +that copy, so the ordinary GNU General Public License applies to all +subsequent copies and derivative works made from that copy. + + This option is useful when you wish to copy part of the code of +the Library into a program that is not a library. + + 4. You may copy and distribute the Library (or a portion or +derivative of it, under Section 2) in object code or executable form +under the terms of Sections 1 and 2 above provided that you accompany +it with the complete corresponding machine-readable source code, which +must be distributed under the terms of Sections 1 and 2 above on a +medium customarily used for software interchange. + + If distribution of object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the +source code from the same place satisfies the requirement to +distribute the source code, even though third parties are not +compelled to copy the source along with the object code. + + 5. A program that contains no derivative of any portion of the +Library, but is designed to work with the Library by being compiled or +linked with it, is called a "work that uses the Library". Such a +work, in isolation, is not a derivative work of the Library, and +therefore falls outside the scope of this License. + + However, linking a "work that uses the Library" with the Library +creates an executable that is a derivative of the Library (because it +contains portions of the Library), rather than a "work that uses the +library". The executable is therefore covered by this License. +Section 6 states terms for distribution of such executables. + + When a "work that uses the Library" uses material from a header file +that is part of the Library, the object code for the work may be a +derivative work of the Library even though the source code is not. +Whether this is true is especially significant if the work can be +linked without the Library, or if the work is itself a library. The +threshold for this to be true is not precisely defined by law. + + If such an object file uses only numerical parameters, data +structure layouts and accessors, and small macros and small inline +functions (ten lines or less in length), then the use of the object +file is unrestricted, regardless of whether it is legally a derivative +work. (Executables containing this object code plus portions of the +Library will still fall under Section 6.) + + Otherwise, if the work is a derivative of the Library, you may +distribute the object code for the work under the terms of Section 6. +Any executables containing that work also fall under Section 6, +whether or not they are linked directly with the Library itself. + + 6. As an exception to the Sections above, you may also combine or +link a "work that uses the Library" with the Library to produce a +work containing portions of the Library, and distribute that work +under terms of your choice, provided that the terms permit +modification of the work for the customer's own use and reverse +engineering for debugging such modifications. + + You must give prominent notice with each copy of the work that the +Library is used in it and that the Library and its use are covered by +this License. You must supply a copy of this License. If the work +during execution displays copyright notices, you must include the +copyright notice for the Library among them, as well as a reference +directing the user to the copy of this License. Also, you must do one +of these things: + + a) Accompany the work with the complete corresponding + machine-readable source code for the Library including whatever + changes were used in the work (which must be distributed under + Sections 1 and 2 above); and, if the work is an executable linked + with the Library, with the complete machine-readable "work that + uses the Library", as object code and/or source code, so that the + user can modify the Library and then relink to produce a modified + executable containing the modified Library. (It is understood + that the user who changes the contents of definitions files in the + Library will not necessarily be able to recompile the application + to use the modified definitions.) + + b) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (1) uses at run time a + copy of the library already present on the user's computer system, + rather than copying library functions into the executable, and (2) + will operate properly with a modified version of the library, if + the user installs one, as long as the modified version is + interface-compatible with the version that the work was made with. + + c) Accompany the work with a written offer, valid for at + least three years, to give the same user the materials + specified in Subsection 6a, above, for a charge no more + than the cost of performing this distribution. + + d) If distribution of the work is made by offering access to copy + from a designated place, offer equivalent access to copy the above + specified materials from the same place. + + e) Verify that the user has already received a copy of these + materials or that you have already sent this user a copy. + + For an executable, the required form of the "work that uses the +Library" must include any data and utility programs needed for +reproducing the executable from it. However, as a special exception, +the materials to be distributed need not include anything that is +normally distributed (in either source or binary form) with the major +components (compiler, kernel, and so on) of the operating system on +which the executable runs, unless that component itself accompanies +the executable. + + It may happen that this requirement contradicts the license +restrictions of other proprietary libraries that do not normally +accompany the operating system. Such a contradiction means you cannot +use both them and the Library together in an executable that you +distribute. + + 7. You may place library facilities that are a work based on the +Library side-by-side in a single library together with other library +facilities not covered by this License, and distribute such a combined +library, provided that the separate distribution of the work based on +the Library and of the other library facilities is otherwise +permitted, and provided that you do these two things: + + a) Accompany the combined library with a copy of the same work + based on the Library, uncombined with any other library + facilities. This must be distributed under the terms of the + Sections above. + + b) Give prominent notice with the combined library of the fact + that part of it is a work based on the Library, and explaining + where to find the accompanying uncombined form of the same work. + + 8. You may not copy, modify, sublicense, link with, or distribute +the Library except as expressly provided under this License. Any +attempt otherwise to copy, modify, sublicense, link with, or +distribute the Library is void, and will automatically terminate your +rights under this License. However, parties who have received copies, +or rights, from you under this License will not have their licenses +terminated so long as such parties remain in full compliance. + + 9. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Library or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Library (or any work based on the +Library), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Library or works based on it. + + 10. Each time you redistribute the Library (or any work based on the +Library), the recipient automatically receives a license from the +original licensor to copy, distribute, link with or modify the Library +subject to these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties with +this License. + + 11. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Library at all. For example, if a patent +license would not permit royalty-free redistribution of the Library by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Library. + +If any portion of this section is held invalid or unenforceable under any +particular circumstance, the balance of the section is intended to apply, +and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 12. If the distribution and/or use of the Library is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Library under this License may add +an explicit geographical distribution limitation excluding those countries, +so that distribution is permitted only in or among countries not thus +excluded. In such case, this License incorporates the limitation as if +written in the body of this License. + + 13. The Free Software Foundation may publish revised and/or new +versions of the Lesser General Public License from time to time. +Such new versions will be similar in spirit to the present version, +but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Library +specifies a version number of this License which applies to it and +"any later version", you have the option of following the terms and +conditions either of that version or of any later version published by +the Free Software Foundation. If the Library does not specify a +license version number, you may choose any version ever published by +the Free Software Foundation. + + 14. If you wish to incorporate parts of the Library into other free +programs whose distribution conditions are incompatible with these, +write to the author to ask for permission. For software which is +copyrighted by the Free Software Foundation, write to the Free +Software Foundation; we sometimes make exceptions for this. Our +decision 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 generally. + + NO WARRANTY + + 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO +WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. +EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR +OTHER PARTIES PROVIDE THE LIBRARY "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 THE +LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME +THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN +WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY +AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU +FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR +CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE +LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING +RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A +FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF +SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGES. + + END OF TERMS AND CONDITIONS diff --git a/docs/licenses/ansicon.tx.txt b/docs/licenses/ansicon.tx.txt new file mode 100644 index 0000000000..11c3089c9d --- /dev/null +++ b/docs/licenses/ansicon.tx.txt @@ -0,0 +1,20 @@ +The MIT License (MIT) + +Copyright (c) 2013 Dan Horrigan + +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. \ No newline at end of file diff --git a/docs/licenses/anyjson.tx.txt b/docs/licenses/anyjson.tx.txt new file mode 100644 index 0000000000..33c5627c47 --- /dev/null +++ b/docs/licenses/anyjson.tx.txt @@ -0,0 +1,29 @@ +This software is licensed under the ``New BSD License``: + +Copyright (c) 2009, by the authors +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 authors 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. diff --git a/docs/licenses/apache-libcloud.txt b/docs/licenses/apache-libcloud.txt new file mode 100644 index 0000000000..d645695673 --- /dev/null +++ b/docs/licenses/apache-libcloud.txt @@ -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. diff --git a/docs/licenses/argparse.txt b/docs/licenses/argparse.txt new file mode 100644 index 0000000000..640bc78095 --- /dev/null +++ b/docs/licenses/argparse.txt @@ -0,0 +1,20 @@ +argparse is (c) 2006-2009 Steven J. Bethard . + +The argparse module was contributed to Python as of Python 2.7 and thus +was licensed under the Python license. Same license applies to all files in +the argparse package project. + +For details about the Python License, please see doc/Python-License.txt. + +History +------- + +Before (and including) argparse 1.1, the argparse package was licensed under +Apache License v2.0. + +After argparse 1.1, all project files from the argparse project were deleted +due to license compatibility issues between Apache License 2.0 and GNU GPL v2. + +The project repository then had a clean start with some files taken from +Python 2.7.1, so definitely all files are under Python License now. + diff --git a/docs/licenses/azure.txt b/docs/licenses/azure.txt new file mode 100644 index 0000000000..33666dddf7 --- /dev/null +++ b/docs/licenses/azure.txt @@ -0,0 +1,73 @@ +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. \ No newline at end of file diff --git a/docs/licenses/billiard.txt b/docs/licenses/billiard.txt new file mode 100644 index 0000000000..b9920edbfe --- /dev/null +++ b/docs/licenses/billiard.txt @@ -0,0 +1,29 @@ +Copyright (c) 2006-2008, R Oudkerk and Contributors + +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 above 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. +3. Neither the name of author nor the names of any contributors may be + used to endorse or promote products derived from this software + without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE AUTHOR 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 AUTHOR 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. + diff --git a/docs/licenses/boto.txt b/docs/licenses/boto.txt new file mode 100644 index 0000000000..3f28a5f534 --- /dev/null +++ b/docs/licenses/boto.txt @@ -0,0 +1,9 @@ +MIT License + +Copyright (c) + +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. \ No newline at end of file diff --git a/docs/licenses/celery.txt b/docs/licenses/celery.txt new file mode 100644 index 0000000000..fc17931976 --- /dev/null +++ b/docs/licenses/celery.txt @@ -0,0 +1,53 @@ +Copyright (c) 2009, 2010, 2011, 2012 Ask Solem, and individual contributors. All Rights Reserved. +Copyright (c) 2012-2013 GoPivotal, Inc. All rights reserved. + +Celery is licensed under The BSD License (3 Clause, also known as +the new BSD license). The license is an OSI approved Open Source +license and is GPL-compatible(1). + +The license text can also be found here: +http://www.opensource.org/licenses/BSD-3-Clause + +License +======= + +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 Ask Solem, 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 Ask Solem 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. + +Documentation License +===================== + +The documentation portion of Celery (the rendered contents of the +"docs" directory of a software distribution or checkout) is supplied +under the Creative Commons Attribution-Noncommercial-Share Alike 3.0 +United States License as described by +http://creativecommons.org/licenses/by-nc-sa/3.0/us/ + +Footnotes +========= +(1) A GPL-compatible license makes it possible to + combine Celery with other software that is released + under the GPL, it does not mean that we're distributing + Celery under the GPL license. The BSD license, unlike the GPL, + let you distribute a modified version without making your + changes open source. diff --git a/docs/licenses/cffi.txt b/docs/licenses/cffi.txt new file mode 100644 index 0000000000..29225eee9e --- /dev/null +++ b/docs/licenses/cffi.txt @@ -0,0 +1,26 @@ + +Except when otherwise stated (look for LICENSE files in directories or +information at the beginning of each file) all software and +documentation is licensed as follows: + + The MIT License + + 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. + diff --git a/docs/licenses/cliff.txt b/docs/licenses/cliff.txt new file mode 100644 index 0000000000..d645695673 --- /dev/null +++ b/docs/licenses/cliff.txt @@ -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. diff --git a/docs/licenses/cmd2.txt b/docs/licenses/cmd2.txt new file mode 100644 index 0000000000..3f28a5f534 --- /dev/null +++ b/docs/licenses/cmd2.txt @@ -0,0 +1,9 @@ +MIT License + +Copyright (c) + +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. \ No newline at end of file diff --git a/docs/licenses/cryptography.txt b/docs/licenses/cryptography.txt new file mode 100644 index 0000000000..b11f379efe --- /dev/null +++ b/docs/licenses/cryptography.txt @@ -0,0 +1,3 @@ +This software is made available under the terms of *either* of the licenses +found in LICENSE.APACHE or LICENSE.BSD. Contributions to cryptography are made +under the terms of *both* these licenses. diff --git a/docs/licenses/d2to1.txt b/docs/licenses/d2to1.txt new file mode 100644 index 0000000000..16abf40294 --- /dev/null +++ b/docs/licenses/d2to1.txt @@ -0,0 +1,29 @@ +Copyright (C) 2013 Association of Universities for Research in Astronomy (AURA) + +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 above 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. + + 3. The name of AURA and its representatives may not be used to + endorse or promote products derived from this software without + specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY AURA ``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 AURA 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. + diff --git a/docs/licenses/django-auth-ldap.txt b/docs/licenses/django-auth-ldap.txt new file mode 100644 index 0000000000..b16b2c01ff --- /dev/null +++ b/docs/licenses/django-auth-ldap.txt @@ -0,0 +1,23 @@ +Copyright (c) 2009, Peter Sagerson +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. + +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 HOLDER 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. diff --git a/docs/licenses/django-celery.txt b/docs/licenses/django-celery.txt new file mode 100644 index 0000000000..80813f2e28 --- /dev/null +++ b/docs/licenses/django-celery.txt @@ -0,0 +1,29 @@ +Copyright (c) 2012-2013 GoPivotal, Inc. All Rights Reserved. +Copyright (c) 2009-2012 Ask Solem. All Rights Reserved. +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 Ask Solem 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. + diff --git a/docs/licenses/django-crum.txt b/docs/licenses/django-crum.txt new file mode 100644 index 0000000000..c279ede304 --- /dev/null +++ b/docs/licenses/django-crum.txt @@ -0,0 +1,27 @@ +Copyright (c) 2014 Nine More Minutes, 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: + + 1. Redistributions of source code must retain the above 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. + + 3. Neither the name of Nine More Minutes, Inc. 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 "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 HOLDERS 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. diff --git a/docs/licenses/django-extensions.txt b/docs/licenses/django-extensions.txt new file mode 100644 index 0000000000..e2e53d56bd --- /dev/null +++ b/docs/licenses/django-extensions.txt @@ -0,0 +1,19 @@ +Copyright (c) 2007 Michael Trier + +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. \ No newline at end of file diff --git a/docs/licenses/django-qsstats.txt b/docs/licenses/django-qsstats.txt new file mode 100644 index 0000000000..adef47b952 --- /dev/null +++ b/docs/licenses/django-qsstats.txt @@ -0,0 +1,24 @@ +Copyright (c) 2010, Matt Croydon, Mikhail Korobov +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 tastypie 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 MATT CROYDON 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. diff --git a/docs/licenses/django-rest-framework.txt b/docs/licenses/django-rest-framework.txt new file mode 100644 index 0000000000..d7a92e58f1 --- /dev/null +++ b/docs/licenses/django-rest-framework.txt @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2014 Umut Bozkurt + +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. \ No newline at end of file diff --git a/docs/licenses/django-split-settings.txt b/docs/licenses/django-split-settings.txt new file mode 100644 index 0000000000..f50b9c141b --- /dev/null +++ b/docs/licenses/django-split-settings.txt @@ -0,0 +1,27 @@ +Copyright (c) 2013, 2General Oy +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 above 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. + + 3. Neither the name of django-split-settings 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. diff --git a/docs/licenses/django-taggit.txt b/docs/licenses/django-taggit.txt new file mode 100644 index 0000000000..1231bbea4b --- /dev/null +++ b/docs/licenses/django-taggit.txt @@ -0,0 +1,28 @@ +Copyright (c) Alex Gaynor and individual contributors. +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 above 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. + + 3. Neither the name of django-taggit 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. + diff --git a/docs/licenses/django.txt b/docs/licenses/django.txt new file mode 100644 index 0000000000..69b109bc51 --- /dev/null +++ b/docs/licenses/django.txt @@ -0,0 +1,23 @@ +Copyright (c) 2012, Matthew Schinckel. +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. + * 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 MATTHEW SCHINCKEL 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. diff --git a/docs/licenses/django_polymorphic.txt b/docs/licenses/django_polymorphic.txt new file mode 100644 index 0000000000..1cb7761ba1 --- /dev/null +++ b/docs/licenses/django_polymorphic.txt @@ -0,0 +1,32 @@ +Copyright (c) 2009 or later by the individual contributors. +Please see the AUTHORS file. + +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. + + * The names of the contributors may not 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. diff --git a/docs/licenses/djangorestframework.txt b/docs/licenses/djangorestframework.txt new file mode 100644 index 0000000000..e9ab04d1d6 --- /dev/null +++ b/docs/licenses/djangorestframework.txt @@ -0,0 +1,9 @@ +Copyright (c) < ;match=.+>> 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 above 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 <> "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 <> 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. \ No newline at end of file diff --git a/docs/licenses/dogpile.cache.txt b/docs/licenses/dogpile.cache.txt new file mode 100644 index 0000000000..802dc9b66b --- /dev/null +++ b/docs/licenses/dogpile.cache.txt @@ -0,0 +1,27 @@ +Copyright (c) 2011-2015 Mike Bayer + +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 above 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. +3. The name of the author or contributors may not be used to endorse or + promote products derived from this software without specific prior + written permission. + +THIS SOFTWARE IS PROVIDED BY THE AUTHOR 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 AUTHOR 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. diff --git a/docs/licenses/dogpile.core.txt b/docs/licenses/dogpile.core.txt new file mode 100644 index 0000000000..8653411810 --- /dev/null +++ b/docs/licenses/dogpile.core.txt @@ -0,0 +1,27 @@ +Copyright (c) 2011-2013 Mike Bayer + +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 above 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. +3. The name of the author or contributors may not be used to endorse or + promote products derived from this software without specific prior + written permission. + +THIS SOFTWARE IS PROVIDED BY THE AUTHOR 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 AUTHOR 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. diff --git a/docs/licenses/enum34.txt b/docs/licenses/enum34.txt new file mode 100644 index 0000000000..9003b8850e --- /dev/null +++ b/docs/licenses/enum34.txt @@ -0,0 +1,32 @@ +Copyright (c) 2013, Ethan Furman. +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 Ethan Furman nor the names of any + 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 HOLDER 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. diff --git a/docs/licenses/functools32-3.2.3.txt b/docs/licenses/functools32-3.2.3.txt new file mode 100644 index 0000000000..43388e7e13 --- /dev/null +++ b/docs/licenses/functools32-3.2.3.txt @@ -0,0 +1,289 @@ +A. HISTORY OF THE SOFTWARE +========================== + +Python was created in the early 1990s by Guido van Rossum at Stichting +Mathematisch Centrum (CWI, see http://www.cwi.nl) in the Netherlands +as a successor of a language called ABC. Guido remains Python's +principal author, although it includes many contributions from others. + +In 1995, Guido continued his work on Python at the Corporation for +National Research Initiatives (CNRI, see http://www.cnri.reston.va.us) +in Reston, Virginia where he released several versions of the +software. + +In May 2000, Guido and the Python core development team moved to +BeOpen.com to form the BeOpen PythonLabs team. In October of the same +year, the PythonLabs team moved to Digital Creations (now Zope +Corporation, see http://www.zope.com). In 2001, the Python Software +Foundation (PSF, see http://www.python.org/psf/) was formed, a +non-profit organization created specifically to own Python-related +Intellectual Property. Zope Corporation is a sponsoring member of +the PSF. + +All Python releases are Open Source (see http://www.opensource.org for +the Open Source Definition). Historically, most, but not all, Python +releases have also been GPL-compatible; the table below summarizes +the various releases. + + Release Derived Year Owner GPL- + from compatible? (1) + + 0.9.0 thru 1.2 1991-1995 CWI yes + 1.3 thru 1.5.2 1.2 1995-1999 CNRI yes + 1.6 1.5.2 2000 CNRI no + 2.0 1.6 2000 BeOpen.com no + 1.6.1 1.6 2001 CNRI yes (2) + 2.1 2.0+1.6.1 2001 PSF no + 2.0.1 2.0+1.6.1 2001 PSF yes + 2.1.1 2.1+2.0.1 2001 PSF yes + 2.2 2.1.1 2001 PSF yes + 2.1.2 2.1.1 2002 PSF yes + 2.1.3 2.1.2 2002 PSF yes + 2.2.1 2.2 2002 PSF yes + 2.2.2 2.2.1 2002 PSF yes + 2.2.3 2.2.2 2003 PSF yes + 2.3 2.2.2 2002-2003 PSF yes + 2.3.1 2.3 2002-2003 PSF yes + 2.3.2 2.3.1 2002-2003 PSF yes + 2.3.3 2.3.2 2002-2003 PSF yes + 2.3.4 2.3.3 2004 PSF yes + 2.3.5 2.3.4 2005 PSF yes + 2.4 2.3 2004 PSF yes + 2.4.1 2.4 2005 PSF yes + 2.4.2 2.4.1 2005 PSF yes + 2.4.3 2.4.2 2006 PSF yes + 2.4.4 2.4.3 2006 PSF yes + 2.5 2.4 2006 PSF yes + 2.5.1 2.5 2007 PSF yes + 2.5.2 2.5.1 2008 PSF yes + 2.5.3 2.5.2 2008 PSF yes + 2.6 2.5 2008 PSF yes + 2.6.1 2.6 2008 PSF yes + 2.6.2 2.6.1 2009 PSF yes + 2.6.3 2.6.2 2009 PSF yes + 2.6.4 2.6.3 2009 PSF yes + 2.6.5 2.6.4 2010 PSF yes + 3.0 2.6 2008 PSF yes + 3.0.1 3.0 2009 PSF yes + 3.1 3.0.1 2009 PSF yes + 3.1.1 3.1 2009 PSF yes + 3.1.2 3.1.1 2010 PSF yes + 3.1.3 3.1.2 2010 PSF yes + 3.1.4 3.1.3 2011 PSF yes + 3.2 3.1 2011 PSF yes + 3.2.1 3.2 2011 PSF yes + 3.2.2 3.2.1 2011 PSF yes + 3.2.3 3.2.2 2012 PSF yes + +Footnotes: + +(1) GPL-compatible doesn't mean that we're distributing Python under + the GPL. All Python licenses, unlike the GPL, let you distribute + a modified version without making your changes open source. The + GPL-compatible licenses make it possible to combine Python with + other software that is released under the GPL; the others don't. + +(2) According to Richard Stallman, 1.6.1 is not GPL-compatible, + because its license has a choice of law clause. According to + CNRI, however, Stallman's lawyer has told CNRI's lawyer that 1.6.1 + is "not incompatible" with the GPL. + +Thanks to the many outside volunteers who have worked under Guido's +direction to make these releases possible. + + +B. TERMS AND CONDITIONS FOR ACCESSING OR OTHERWISE USING PYTHON +=============================================================== + +PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2 +-------------------------------------------- + +1. This LICENSE AGREEMENT is between the Python Software Foundation +("PSF"), and the Individual or Organization ("Licensee") accessing and +otherwise using this software ("Python") in source or binary form and +its associated documentation. + +2. Subject to the terms and conditions of this License Agreement, PSF hereby +grants Licensee a nonexclusive, royalty-free, world-wide license to reproduce, +analyze, test, perform and/or display publicly, prepare derivative works, +distribute, and otherwise use Python alone or in any derivative version, +provided, however, that PSF's License Agreement and PSF's notice of copyright, +i.e., "Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, +2011, 2012 Python Software Foundation; All Rights Reserved" are retained in Python +alone or in any derivative version prepared by Licensee. + +3. In the event Licensee prepares a derivative work that is based on +or incorporates Python or any part thereof, and wants to make +the derivative work available to others as provided herein, then +Licensee hereby agrees to include in any such work a brief summary of +the changes made to Python. + +4. PSF is making Python available to Licensee on an "AS IS" +basis. PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR +IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND +DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS +FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON WILL NOT +INFRINGE ANY THIRD PARTY RIGHTS. + +5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON +FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS +A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON, +OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. + +6. This License Agreement will automatically terminate upon a material +breach of its terms and conditions. + +7. Nothing in this License Agreement shall be deemed to create any +relationship of agency, partnership, or joint venture between PSF and +Licensee. This License Agreement does not grant permission to use PSF +trademarks or trade name in a trademark sense to endorse or promote +products or services of Licensee, or any third party. + +8. By copying, installing or otherwise using Python, Licensee +agrees to be bound by the terms and conditions of this License +Agreement. + + +BEOPEN.COM LICENSE AGREEMENT FOR PYTHON 2.0 +------------------------------------------- + +BEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1 + +1. This LICENSE AGREEMENT is between BeOpen.com ("BeOpen"), having an +office at 160 Saratoga Avenue, Santa Clara, CA 95051, and the +Individual or Organization ("Licensee") accessing and otherwise using +this software in source or binary form and its associated +documentation ("the Software"). + +2. Subject to the terms and conditions of this BeOpen Python License +Agreement, BeOpen hereby grants Licensee a non-exclusive, +royalty-free, world-wide license to reproduce, analyze, test, perform +and/or display publicly, prepare derivative works, distribute, and +otherwise use the Software alone or in any derivative version, +provided, however, that the BeOpen Python License is retained in the +Software, alone or in any derivative version prepared by Licensee. + +3. BeOpen is making the Software available to Licensee on an "AS IS" +basis. BEOPEN MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR +IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, BEOPEN MAKES NO AND +DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS +FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE WILL NOT +INFRINGE ANY THIRD PARTY RIGHTS. + +4. BEOPEN SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE +SOFTWARE FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS +AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THE SOFTWARE, OR ANY +DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. + +5. This License Agreement will automatically terminate upon a material +breach of its terms and conditions. + +6. This License Agreement shall be governed by and interpreted in all +respects by the law of the State of California, excluding conflict of +law provisions. Nothing in this License Agreement shall be deemed to +create any relationship of agency, partnership, or joint venture +between BeOpen and Licensee. This License Agreement does not grant +permission to use BeOpen trademarks or trade names in a trademark +sense to endorse or promote products or services of Licensee, or any +third party. As an exception, the "BeOpen Python" logos available at +http://www.pythonlabs.com/logos.html may be used according to the +permissions granted on that web page. + +7. By copying, installing or otherwise using the software, Licensee +agrees to be bound by the terms and conditions of this License +Agreement. + + +CNRI LICENSE AGREEMENT FOR PYTHON 1.6.1 +--------------------------------------- + +1. This LICENSE AGREEMENT is between the Corporation for National +Research Initiatives, having an office at 1895 Preston White Drive, +Reston, VA 20191 ("CNRI"), and the Individual or Organization +("Licensee") accessing and otherwise using Python 1.6.1 software in +source or binary form and its associated documentation. + +2. Subject to the terms and conditions of this License Agreement, CNRI +hereby grants Licensee a nonexclusive, royalty-free, world-wide +license to reproduce, analyze, test, perform and/or display publicly, +prepare derivative works, distribute, and otherwise use Python 1.6.1 +alone or in any derivative version, provided, however, that CNRI's +License Agreement and CNRI's notice of copyright, i.e., "Copyright (c) +1995-2001 Corporation for National Research Initiatives; All Rights +Reserved" are retained in Python 1.6.1 alone or in any derivative +version prepared by Licensee. Alternately, in lieu of CNRI's License +Agreement, Licensee may substitute the following text (omitting the +quotes): "Python 1.6.1 is made available subject to the terms and +conditions in CNRI's License Agreement. This Agreement together with +Python 1.6.1 may be located on the Internet using the following +unique, persistent identifier (known as a handle): 1895.22/1013. This +Agreement may also be obtained from a proxy server on the Internet +using the following URL: http://hdl.handle.net/1895.22/1013". + +3. In the event Licensee prepares a derivative work that is based on +or incorporates Python 1.6.1 or any part thereof, and wants to make +the derivative work available to others as provided herein, then +Licensee hereby agrees to include in any such work a brief summary of +the changes made to Python 1.6.1. + +4. CNRI is making Python 1.6.1 available to Licensee on an "AS IS" +basis. CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR +IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND +DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS +FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON 1.6.1 WILL NOT +INFRINGE ANY THIRD PARTY RIGHTS. + +5. CNRI SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON +1.6.1 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS +A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 1.6.1, +OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. + +6. This License Agreement will automatically terminate upon a material +breach of its terms and conditions. + +7. This License Agreement shall be governed by the federal +intellectual property law of the United States, including without +limitation the federal copyright law, and, to the extent such +U.S. federal law does not apply, by the law of the Commonwealth of +Virginia, excluding Virginia's conflict of law provisions. +Notwithstanding the foregoing, with regard to derivative works based +on Python 1.6.1 that incorporate non-separable material that was +previously distributed under the GNU General Public License (GPL), the +law of the Commonwealth of Virginia shall govern this License +Agreement only as to issues arising under or with respect to +Paragraphs 4, 5, and 7 of this License Agreement. Nothing in this +License Agreement shall be deemed to create any relationship of +agency, partnership, or joint venture between CNRI and Licensee. This +License Agreement does not grant permission to use CNRI trademarks or +trade name in a trademark sense to endorse or promote products or +services of Licensee, or any third party. + +8. By clicking on the "ACCEPT" button where indicated, or by copying, +installing or otherwise using Python 1.6.1, Licensee agrees to be +bound by the terms and conditions of this License Agreement. + + ACCEPT + + +CWI LICENSE AGREEMENT FOR PYTHON 0.9.0 THROUGH 1.2 +-------------------------------------------------- + +Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, +The Netherlands. All rights reserved. + +Permission to use, copy, modify, and distribute this software and its +documentation for any purpose and without fee is hereby granted, +provided that the above copyright notice appear in all copies and that +both that copyright notice and this permission notice appear in +supporting documentation, and that the name of Stichting Mathematisch +Centrum or CWI not be used in advertising or publicity pertaining to +distribution of the software without specific, written prior +permission. + +STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO +THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE +FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. diff --git a/docs/licenses/gevent-websocket.txt b/docs/licenses/gevent-websocket.txt new file mode 100644 index 0000000000..3101606960 --- /dev/null +++ b/docs/licenses/gevent-websocket.txt @@ -0,0 +1,13 @@ + Copyright 2011-2013 Jeffrey Gelens + + 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. diff --git a/docs/licenses/gevent.txt b/docs/licenses/gevent.txt new file mode 100644 index 0000000000..754d5adf42 --- /dev/null +++ b/docs/licenses/gevent.txt @@ -0,0 +1,24 @@ +Copyright (c) 2010, Noppo (Jeffrey Gelens) +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 Noppo 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 HOLDER 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. diff --git a/docs/licenses/greenlet.txt b/docs/licenses/greenlet.txt new file mode 100644 index 0000000000..5e009e3c68 --- /dev/null +++ b/docs/licenses/greenlet.txt @@ -0,0 +1,30 @@ +The following files are derived from Stackless Python and are subject to the +same license as Stackless Python: + + slp_platformselect.h + files in platform/ directory + +See LICENSE.PSF and http://www.stackless.com/ for details. + +Unless otherwise noted, the files in greenlet have been released under the +following MIT license: + +Copyright (c) Armin Rigo, Christian Tismer and contributors + +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. diff --git a/docs/licenses/httplib2.txt b/docs/licenses/httplib2.txt new file mode 100644 index 0000000000..3f28a5f534 --- /dev/null +++ b/docs/licenses/httplib2.txt @@ -0,0 +1,9 @@ +MIT License + +Copyright (c) + +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. \ No newline at end of file diff --git a/docs/licenses/idna.txt b/docs/licenses/idna.txt new file mode 100644 index 0000000000..738d92bbb0 --- /dev/null +++ b/docs/licenses/idna.txt @@ -0,0 +1,80 @@ +License +------- + +Copyright (c) 2013-2015, Kim Davies. 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 copyright holder nor the names of the + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +#. THIS SOFTWARE IS PROVIDED BY THE 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 HOLDERS 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. + +Portions of the codec implementation and unit tests are derived from the +Python standard library, which carries the `Python Software Foundation +License `_: + + Copyright (c) 2001-2014 Python Software Foundation; All Rights Reserved + +Portions of the unit tests are derived from the Unicode standard, which +is subject to the Unicode, Inc. License Agreement: + + Copyright (c) 1991-2014 Unicode, Inc. All rights reserved. + Distributed under the Terms of Use in + . + + Permission is hereby granted, free of charge, to any person obtaining + a copy of the Unicode data files and any associated documentation + (the "Data Files") or Unicode software and any associated documentation + (the "Software") to deal in the Data Files or Software + without restriction, including without limitation the rights to use, + copy, modify, merge, publish, distribute, and/or sell copies of + the Data Files or Software, and to permit persons to whom the Data Files + or Software are furnished to do so, provided that + + (a) this copyright and permission notice appear with all copies + of the Data Files or Software, + + (b) this copyright and permission notice appear in associated + documentation, and + + (c) there is clear notice in each modified Data File or in the Software + as well as in the documentation associated with the Data File(s) or + Software that the data or software has been modified. + + THE DATA FILES AND SOFTWARE ARE 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 OF THIRD PARTY RIGHTS. + IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS + NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL + DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, + DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER + TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + PERFORMANCE OF THE DATA FILES OR SOFTWARE. + + Except as contained in this notice, the name of a copyright holder + shall not be used in advertising or otherwise to promote the sale, + use or other dealings in these Data Files or Software without prior + written authorization of the copyright holder. diff --git a/docs/licenses/importlib.txt b/docs/licenses/importlib.txt new file mode 100644 index 0000000000..cc821dc00c --- /dev/null +++ b/docs/licenses/importlib.txt @@ -0,0 +1,72 @@ +PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2 + + 1. This LICENSE AGREEMENT is between the Python Software Foundation ("PSF"), and the Individual or Organization ("Licensee") accessing and otherwise using this software ("Python") in source or binary form and its associated documentation. + + 2. Subject to the terms and conditions of this License Agreement, PSF hereby grants Licensee a nonexclusive, royalty-free, world-wide license to reproduce, analyze, test, perform and/or display publicly, prepare derivative works, distribute, and otherwise use Python alone or in any derivative version, provided, however, that PSF's License Agreement and PSF's notice of copyright, i.e., "Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006 Python Software Foundation; All Rights Reserved" are retained in Python alone or in any derivative version prepared by Licensee. + + 3. In the event Licensee prepares a derivative work that is based on or incorporates Python or any part thereof, and wants to make the derivative work available to others as provided herein, then Licensee hereby agrees to include in any such work a brief summary of the changes made to Python. + + 4. PSF is making Python available to Licensee on an "AS IS" basis. PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON WILL NOT INFRINGE ANY THIRD PARTY RIGHTS. + + 5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON, OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. + + 6. This License Agreement will automatically terminate upon a material breach of its terms and conditions. + + 7. Nothing in this License Agreement shall be deemed to create any relationship of agency, partnership, or joint venture between PSF and Licensee. This License Agreement does not grant permission to use PSF trademarks or trade name in a trademark sense to endorse or promote products or services of Licensee, or any third party. + + 8. By copying, installing or otherwise using Python, Licensee agrees to be bound by the terms and conditions of this License Agreement. + + +BEOPEN.COM LICENSE AGREEMENT FOR PYTHON 2.0 + +BEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1 + + 1. This LICENSE AGREEMENT is between BeOpen.com ("BeOpen"), having an office at 160 Saratoga Avenue, Santa Clara, CA 95051, and the Individual or Organization ("Licensee") accessing and otherwise using this software in source or binary form and its associated documentation ("the Software"). + + 2. Subject to the terms and conditions of this BeOpen Python License Agreement, BeOpen hereby grants Licensee a non-exclusive, royalty-free, world-wide license to reproduce, analyze, test, perform and/or display publicly, prepare derivative works, distribute, and otherwise use the Software alone or in any derivative version, provided, however, that the BeOpen Python License is retained in the Software, alone or in any derivative version prepared by Licensee. + + 3. BeOpen is making the Software available to Licensee on an "AS IS" basis. BEOPEN MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, BEOPEN MAKES NO AND DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE WILL NOT INFRINGE ANY THIRD PARTY RIGHTS. + + 4. BEOPEN SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE SOFTWARE FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THE SOFTWARE, OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. + + 5. This License Agreement will automatically terminate upon a material breach of its terms and conditions. + + 6. This License Agreement shall be governed by and interpreted in all respects by the law of the State of California, excluding conflict of law provisions. Nothing in this License Agreement shall be deemed to create any relationship of agency, partnership, or joint venture between BeOpen and Licensee. This License Agreement does not grant permission to use BeOpen trademarks or trade names in a trademark sense to endorse or promote products or services of Licensee, or any third party. As an exception, the "BeOpen Python" logos available at http://www.pythonlabs.com/logos.html may be used according to the permissions granted on that web page. + + 7. By copying, installing or otherwise using the software, Licensee agrees to be bound by the terms and conditions of this License Agreement. + + +CNRI OPEN SOURCE LICENSE AGREEMENT (for Python 1.6b1) + +IMPORTANT: PLEASE READ THE FOLLOWING AGREEMENT CAREFULLY. + +BY CLICKING ON "ACCEPT" WHERE INDICATED BELOW, OR BY COPYING, INSTALLING OR OTHERWISE USING PYTHON 1.6, beta 1 SOFTWARE, YOU ARE DEEMED TO HAVE AGREED TO THE TERMS AND CONDITIONS OF THIS LICENSE AGREEMENT. + + 1. This LICENSE AGREEMENT is between the Corporation for National Research Initiatives, having an office at 1895 Preston White Drive, Reston, VA 20191 ("CNRI"), and the Individual or Organization ("Licensee") accessing and otherwise using Python 1.6, beta 1 software in source or binary form and its associated documentation, as released at the www.python.org Internet site on August 4, 2000 ("Python 1.6b1"). + + 2. Subject to the terms and conditions of this License Agreement, CNRI hereby grants Licensee a non-exclusive, royalty-free, world-wide license to reproduce, analyze, test, perform and/or display publicly, prepare derivative works, distribute, and otherwise use Python 1.6b1 alone or in any derivative version, provided, however, that CNRIs License Agreement is retained in Python 1.6b1, alone or in any derivative version prepared by Licensee. + + Alternately, in lieu of CNRIs License Agreement, Licensee may substitute the following text (omitting the quotes): "Python 1.6, beta 1, is made available subject to the terms and conditions in CNRIs License Agreement. This Agreement may be located on the Internet using the following unique, persistent identifier (known as a handle): 1895.22/1011. This Agreement may also be obtained from a proxy server on the Internet using the URL:http://hdl.handle.net/1895.22/1011". + + 3. In the event Licensee prepares a derivative work that is based on or incorporates Python 1.6b1 or any part thereof, and wants to make the derivative work available to the public as provided herein, then Licensee hereby agrees to indicate in any such work the nature of the modifications made to Python 1.6b1. + + 4. CNRI is making Python 1.6b1 available to Licensee on an "AS IS" basis. CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON 1.6b1 WILL NOT INFRINGE ANY THIRD PARTY RIGHTS. + + 5. CNRI SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE SOFTWARE FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS A RESULT OF USING, MODIFYING OR DISTRIBUTING PYTHON 1.6b1, OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. + + 6. This License Agreement will automatically terminate upon a material breach of its terms and conditions. + + 7. This License Agreement shall be governed by and interpreted in all respects by the law of the State of Virginia, excluding conflict of law provisions. Nothing in this License Agreement shall be deemed to create any relationship of agency, partnership, or joint venture between CNRI and Licensee. This License Agreement does not grant permission to use CNRI trademarks or trade name in a trademark sense to endorse or promote products or services of Licensee, or any third party. + + 8. By clicking on the "ACCEPT" button where indicated, or by copying, installing or otherwise using Python 1.6b1, Licensee agrees to be bound by the terms and conditions of this License Agreement. + +ACCEPT + + +CWI LICENSE AGREEMENT FOR PYTHON 0.9.0 THROUGH 1.2 + +Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, The Netherlands. All rights reserved. + + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation, and that the name of Stichting Mathematisch Centrum or CWI not be used in advertising or publicity pertaining to distribution of the software without specific, written prior permission. + + STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. \ No newline at end of file diff --git a/docs/licenses/ipaddress.txt b/docs/licenses/ipaddress.txt new file mode 100644 index 0000000000..cc821dc00c --- /dev/null +++ b/docs/licenses/ipaddress.txt @@ -0,0 +1,72 @@ +PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2 + + 1. This LICENSE AGREEMENT is between the Python Software Foundation ("PSF"), and the Individual or Organization ("Licensee") accessing and otherwise using this software ("Python") in source or binary form and its associated documentation. + + 2. Subject to the terms and conditions of this License Agreement, PSF hereby grants Licensee a nonexclusive, royalty-free, world-wide license to reproduce, analyze, test, perform and/or display publicly, prepare derivative works, distribute, and otherwise use Python alone or in any derivative version, provided, however, that PSF's License Agreement and PSF's notice of copyright, i.e., "Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006 Python Software Foundation; All Rights Reserved" are retained in Python alone or in any derivative version prepared by Licensee. + + 3. In the event Licensee prepares a derivative work that is based on or incorporates Python or any part thereof, and wants to make the derivative work available to others as provided herein, then Licensee hereby agrees to include in any such work a brief summary of the changes made to Python. + + 4. PSF is making Python available to Licensee on an "AS IS" basis. PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON WILL NOT INFRINGE ANY THIRD PARTY RIGHTS. + + 5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON, OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. + + 6. This License Agreement will automatically terminate upon a material breach of its terms and conditions. + + 7. Nothing in this License Agreement shall be deemed to create any relationship of agency, partnership, or joint venture between PSF and Licensee. This License Agreement does not grant permission to use PSF trademarks or trade name in a trademark sense to endorse or promote products or services of Licensee, or any third party. + + 8. By copying, installing or otherwise using Python, Licensee agrees to be bound by the terms and conditions of this License Agreement. + + +BEOPEN.COM LICENSE AGREEMENT FOR PYTHON 2.0 + +BEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1 + + 1. This LICENSE AGREEMENT is between BeOpen.com ("BeOpen"), having an office at 160 Saratoga Avenue, Santa Clara, CA 95051, and the Individual or Organization ("Licensee") accessing and otherwise using this software in source or binary form and its associated documentation ("the Software"). + + 2. Subject to the terms and conditions of this BeOpen Python License Agreement, BeOpen hereby grants Licensee a non-exclusive, royalty-free, world-wide license to reproduce, analyze, test, perform and/or display publicly, prepare derivative works, distribute, and otherwise use the Software alone or in any derivative version, provided, however, that the BeOpen Python License is retained in the Software, alone or in any derivative version prepared by Licensee. + + 3. BeOpen is making the Software available to Licensee on an "AS IS" basis. BEOPEN MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, BEOPEN MAKES NO AND DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE WILL NOT INFRINGE ANY THIRD PARTY RIGHTS. + + 4. BEOPEN SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE SOFTWARE FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THE SOFTWARE, OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. + + 5. This License Agreement will automatically terminate upon a material breach of its terms and conditions. + + 6. This License Agreement shall be governed by and interpreted in all respects by the law of the State of California, excluding conflict of law provisions. Nothing in this License Agreement shall be deemed to create any relationship of agency, partnership, or joint venture between BeOpen and Licensee. This License Agreement does not grant permission to use BeOpen trademarks or trade names in a trademark sense to endorse or promote products or services of Licensee, or any third party. As an exception, the "BeOpen Python" logos available at http://www.pythonlabs.com/logos.html may be used according to the permissions granted on that web page. + + 7. By copying, installing or otherwise using the software, Licensee agrees to be bound by the terms and conditions of this License Agreement. + + +CNRI OPEN SOURCE LICENSE AGREEMENT (for Python 1.6b1) + +IMPORTANT: PLEASE READ THE FOLLOWING AGREEMENT CAREFULLY. + +BY CLICKING ON "ACCEPT" WHERE INDICATED BELOW, OR BY COPYING, INSTALLING OR OTHERWISE USING PYTHON 1.6, beta 1 SOFTWARE, YOU ARE DEEMED TO HAVE AGREED TO THE TERMS AND CONDITIONS OF THIS LICENSE AGREEMENT. + + 1. This LICENSE AGREEMENT is between the Corporation for National Research Initiatives, having an office at 1895 Preston White Drive, Reston, VA 20191 ("CNRI"), and the Individual or Organization ("Licensee") accessing and otherwise using Python 1.6, beta 1 software in source or binary form and its associated documentation, as released at the www.python.org Internet site on August 4, 2000 ("Python 1.6b1"). + + 2. Subject to the terms and conditions of this License Agreement, CNRI hereby grants Licensee a non-exclusive, royalty-free, world-wide license to reproduce, analyze, test, perform and/or display publicly, prepare derivative works, distribute, and otherwise use Python 1.6b1 alone or in any derivative version, provided, however, that CNRIs License Agreement is retained in Python 1.6b1, alone or in any derivative version prepared by Licensee. + + Alternately, in lieu of CNRIs License Agreement, Licensee may substitute the following text (omitting the quotes): "Python 1.6, beta 1, is made available subject to the terms and conditions in CNRIs License Agreement. This Agreement may be located on the Internet using the following unique, persistent identifier (known as a handle): 1895.22/1011. This Agreement may also be obtained from a proxy server on the Internet using the URL:http://hdl.handle.net/1895.22/1011". + + 3. In the event Licensee prepares a derivative work that is based on or incorporates Python 1.6b1 or any part thereof, and wants to make the derivative work available to the public as provided herein, then Licensee hereby agrees to indicate in any such work the nature of the modifications made to Python 1.6b1. + + 4. CNRI is making Python 1.6b1 available to Licensee on an "AS IS" basis. CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON 1.6b1 WILL NOT INFRINGE ANY THIRD PARTY RIGHTS. + + 5. CNRI SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE SOFTWARE FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS A RESULT OF USING, MODIFYING OR DISTRIBUTING PYTHON 1.6b1, OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. + + 6. This License Agreement will automatically terminate upon a material breach of its terms and conditions. + + 7. This License Agreement shall be governed by and interpreted in all respects by the law of the State of Virginia, excluding conflict of law provisions. Nothing in this License Agreement shall be deemed to create any relationship of agency, partnership, or joint venture between CNRI and Licensee. This License Agreement does not grant permission to use CNRI trademarks or trade name in a trademark sense to endorse or promote products or services of Licensee, or any third party. + + 8. By clicking on the "ACCEPT" button where indicated, or by copying, installing or otherwise using Python 1.6b1, Licensee agrees to be bound by the terms and conditions of this License Agreement. + +ACCEPT + + +CWI LICENSE AGREEMENT FOR PYTHON 0.9.0 THROUGH 1.2 + +Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, The Netherlands. All rights reserved. + + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation, and that the name of Stichting Mathematisch Centrum or CWI not be used in advertising or publicity pertaining to distribution of the software without specific, written prior permission. + + STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. \ No newline at end of file diff --git a/docs/licenses/iso8601.txt b/docs/licenses/iso8601.txt new file mode 100644 index 0000000000..471acb7b5a --- /dev/null +++ b/docs/licenses/iso8601.txt @@ -0,0 +1,20 @@ +Copyright (c) 2007 - 2013 Michael Twomey + +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. diff --git a/docs/licenses/isodate.txt b/docs/licenses/isodate.txt new file mode 100644 index 0000000000..42fccfa529 --- /dev/null +++ b/docs/licenses/isodate.txt @@ -0,0 +1,21 @@ +Zope Public License (ZPL) Version 2.1 + +A copyright notice accompanies this license document that identifies the copyright holders. + +This license has been certified as open source. It has also been designated as GPL compatible by the Free Software Foundation (FSF). + +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + +1. Redistributions in source code must retain the accompanying copyright notice, this list of conditions, and the following disclaimer. + +2. Redistributions in binary form must reproduce the accompanying copyright notice, this list of conditions, and the following disclaimer in the documentation and/or other materials provided with the distribution. + +3. Names of the copyright holders must not be used to endorse or promote products derived from this software without prior written permission from the copyright holders. + +4. The right to distribute this software or to use it for any purpose does not give you the right to use Servicemarks (sm) or Trademarks (tm) of the copyright holders. Use of them is covered by separate agreement with the copyright holders. + +5. If any files are modified, you must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. + +Disclaimer + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND ANY EXPRESSED 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 HOLDERS 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. \ No newline at end of file diff --git a/docs/licenses/jsonpatch.txt b/docs/licenses/jsonpatch.txt new file mode 100644 index 0000000000..491196d773 --- /dev/null +++ b/docs/licenses/jsonpatch.txt @@ -0,0 +1,26 @@ +Copyright (c) 2011 Stefan Kögl +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 above 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. +3. The name of the author may not be used to endorse or promote products + derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + diff --git a/docs/licenses/jsonpointer.txt b/docs/licenses/jsonpointer.txt new file mode 100644 index 0000000000..491196d773 --- /dev/null +++ b/docs/licenses/jsonpointer.txt @@ -0,0 +1,26 @@ +Copyright (c) 2011 Stefan Kögl +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 above 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. +3. The name of the author may not be used to endorse or promote products + derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + diff --git a/docs/licenses/jsonschema.txt b/docs/licenses/jsonschema.txt new file mode 100644 index 0000000000..af9cfbdb13 --- /dev/null +++ b/docs/licenses/jsonschema.txt @@ -0,0 +1,19 @@ +Copyright (c) 2013 Julian Berman + +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. diff --git a/docs/licenses/keyring.txt b/docs/licenses/keyring.txt new file mode 100644 index 0000000000..d5fa14a505 --- /dev/null +++ b/docs/licenses/keyring.txt @@ -0,0 +1,82 @@ +PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2 + + 1. This LICENSE AGREEMENT is between the Python Software Foundation ("PSF"), and the Individual or Organization ("Licensee") accessing and otherwise using this software ("Python") in source or binary form and its associated documentation. + + 2. Subject to the terms and conditions of this License Agreement, PSF hereby grants Licensee a nonexclusive, royalty-free, world-wide license to reproduce, analyze, test, perform and/or display publicly, prepare derivative works, distribute, and otherwise use Python alone or in any derivative version, provided, however, that PSF's License Agreement and PSF's notice of copyright, i.e., "Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006 Python Software Foundation; All Rights Reserved" are retained in Python alone or in any derivative version prepared by Licensee. + + 3. In the event Licensee prepares a derivative work that is based on or incorporates Python or any part thereof, and wants to make the derivative work available to others as provided herein, then Licensee hereby agrees to include in any such work a brief summary of the changes made to Python. + + 4. PSF is making Python available to Licensee on an "AS IS" basis. PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON WILL NOT INFRINGE ANY THIRD PARTY RIGHTS. + + 5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON, OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. + + 6. This License Agreement will automatically terminate upon a material breach of its terms and conditions. + + 7. Nothing in this License Agreement shall be deemed to create any relationship of agency, partnership, or joint venture between PSF and Licensee. This License Agreement does not grant permission to use PSF trademarks or trade name in a trademark sense to endorse or promote products or services of Licensee, or any third party. + + 8. By copying, installing or otherwise using Python, Licensee agrees to be bound by the terms and conditions of this License Agreement. + + +BEOPEN.COM LICENSE AGREEMENT FOR PYTHON 2.0 + +BEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1 + + 1. This LICENSE AGREEMENT is between BeOpen.com ("BeOpen"), having an office at 160 Saratoga Avenue, Santa Clara, CA 95051, and the Individual or Organization ("Licensee") accessing and otherwise using this software in source or binary form and its associated documentation ("the Software"). + + 2. Subject to the terms and conditions of this BeOpen Python License Agreement, BeOpen hereby grants Licensee a non-exclusive, royalty-free, world-wide license to reproduce, analyze, test, perform and/or display publicly, prepare derivative works, distribute, and otherwise use the Software alone or in any derivative version, provided, however, that the BeOpen Python License is retained in the Software, alone or in any derivative version prepared by Licensee. + + 3. BeOpen is making the Software available to Licensee on an "AS IS" basis. BEOPEN MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, BEOPEN MAKES NO AND DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE WILL NOT INFRINGE ANY THIRD PARTY RIGHTS. + + 4. BEOPEN SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE SOFTWARE FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THE SOFTWARE, OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. + + 5. This License Agreement will automatically terminate upon a material breach of its terms and conditions. + + 6. This License Agreement shall be governed by and interpreted in all respects by the law of the State of California, excluding conflict of law provisions. Nothing in this License Agreement shall be deemed to create any relationship of agency, partnership, or joint venture between BeOpen and Licensee. This License Agreement does not grant permission to use BeOpen trademarks or trade names in a trademark sense to endorse or promote products or services of Licensee, or any third party. As an exception, the "BeOpen Python" logos available at http://www.pythonlabs.com/logos.html may be used according to the permissions granted on that web page. + + 7. By copying, installing or otherwise using the software, Licensee agrees to be bound by the terms and conditions of this License Agreement. + + +CNRI OPEN SOURCE LICENSE AGREEMENT (for Python 1.6b1) + +IMPORTANT: PLEASE READ THE FOLLOWING AGREEMENT CAREFULLY. + +BY CLICKING ON "ACCEPT" WHERE INDICATED BELOW, OR BY COPYING, INSTALLING OR OTHERWISE USING PYTHON 1.6, beta 1 SOFTWARE, YOU ARE DEEMED TO HAVE AGREED TO THE TERMS AND CONDITIONS OF THIS LICENSE AGREEMENT. + + 1. This LICENSE AGREEMENT is between the Corporation for National Research Initiatives, having an office at 1895 Preston White Drive, Reston, VA 20191 ("CNRI"), and the Individual or Organization ("Licensee") accessing and otherwise using Python 1.6, beta 1 software in source or binary form and its associated documentation, as released at the www.python.org Internet site on August 4, 2000 ("Python 1.6b1"). + + 2. Subject to the terms and conditions of this License Agreement, CNRI hereby grants Licensee a non-exclusive, royalty-free, world-wide license to reproduce, analyze, test, perform and/or display publicly, prepare derivative works, distribute, and otherwise use Python 1.6b1 alone or in any derivative version, provided, however, that CNRIs License Agreement is retained in Python 1.6b1, alone or in any derivative version prepared by Licensee. + + Alternately, in lieu of CNRIs License Agreement, Licensee may substitute the following text (omitting the quotes): "Python 1.6, beta 1, is made available subject to the terms and conditions in CNRIs License Agreement. This Agreement may be located on the Internet using the following unique, persistent identifier (known as a handle): 1895.22/1011. This Agreement may also be obtained from a proxy server on the Internet using the URL:http://hdl.handle.net/1895.22/1011". + + 3. In the event Licensee prepares a derivative work that is based on or incorporates Python 1.6b1 or any part thereof, and wants to make the derivative work available to the public as provided herein, then Licensee hereby agrees to indicate in any such work the nature of the modifications made to Python 1.6b1. + + 4. CNRI is making Python 1.6b1 available to Licensee on an "AS IS" basis. CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON 1.6b1 WILL NOT INFRINGE ANY THIRD PARTY RIGHTS. + + 5. CNRI SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE SOFTWARE FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS A RESULT OF USING, MODIFYING OR DISTRIBUTING PYTHON 1.6b1, OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. + + 6. This License Agreement will automatically terminate upon a material breach of its terms and conditions. + + 7. This License Agreement shall be governed by and interpreted in all respects by the law of the State of Virginia, excluding conflict of law provisions. Nothing in this License Agreement shall be deemed to create any relationship of agency, partnership, or joint venture between CNRI and Licensee. This License Agreement does not grant permission to use CNRI trademarks or trade name in a trademark sense to endorse or promote products or services of Licensee, or any third party. + + 8. By clicking on the "ACCEPT" button where indicated, or by copying, installing or otherwise using Python 1.6b1, Licensee agrees to be bound by the terms and conditions of this License Agreement. + +ACCEPT + + +CWI LICENSE AGREEMENT FOR PYTHON 0.9.0 THROUGH 1.2 + +Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, The Netherlands. All rights reserved. + + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation, and that the name of Stichting Mathematisch Centrum or CWI not be used in advertising or publicity pertaining to distribution of the software without specific, written prior permission. + + STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + and +MIT License + +Copyright (c) + +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. \ No newline at end of file diff --git a/docs/licenses/kombu.txt b/docs/licenses/kombu.txt new file mode 100644 index 0000000000..2268b3b2f1 --- /dev/null +++ b/docs/licenses/kombu.txt @@ -0,0 +1,26 @@ +Copyright (c) 2012-2014 GoPivotal, Inc. All rights reserved. +Copyright (c) 2009-2012, Ask Solem & contributors. +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 Ask Solem 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 Ask Solem 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. diff --git a/docs/licenses/lxml.txt b/docs/licenses/lxml.txt new file mode 100644 index 0000000000..80e7ed8d09 --- /dev/null +++ b/docs/licenses/lxml.txt @@ -0,0 +1,32 @@ +lxml is copyright Infrae and distributed under the BSD license (see +doc/licenses/BSD.txt), with the following exceptions: + +Some code, such a selftest.py, selftest2.py and +src/lxml/_elementpath.py are derived from ElementTree and +cElementTree. See doc/licenses/elementtree.txt for the license text. + +lxml.cssselect and lxml.html are copyright Ian Bicking and distributed +under the BSD license (see doc/licenses/BSD.txt). + +test.py, the test-runner script, is GPL and copyright Shuttleworth +Foundation. See doc/licenses/GPL.txt. It is believed the unchanged +inclusion of test.py to run the unit test suite falls under the +"aggregation" clause of the GPL and thus does not affect the license +of the rest of the package. + +The doctest.py module is taken from the Python library and falls under +the PSF Python License. + +The isoschematron implementation uses several XSL and RelaxNG resources: + * The (XML syntax) RelaxNG schema for schematron, copyright International + Organization for Standardization (see + src/lxml/isoschematron/resources/rng/iso-schematron.rng for the license + text) + * The skeleton iso-schematron-xlt1 pure-xslt schematron implementation + xsl stylesheets, copyright Rick Jelliffe and Academia Sinica Computing + Center, Taiwan (see the xsl files here for the license text: + src/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/) + * The xsd/rng schema schematron extraction xsl transformations are unlicensed + and copyright the respective authors as noted (see + src/lxml/isoschematron/resources/xsl/RNG2Schtrn.xsl and + src/lxml/isoschematron/resources/xsl/XSD2Schtrn.xsl) diff --git a/docs/licenses/mock.txt b/docs/licenses/mock.txt new file mode 100644 index 0000000000..7891703b13 --- /dev/null +++ b/docs/licenses/mock.txt @@ -0,0 +1,26 @@ +Copyright (c) 2003-2012, Michael Foord +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. + +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. diff --git a/docs/licenses/mongoengine.txt b/docs/licenses/mongoengine.txt new file mode 100644 index 0000000000..45f233c30e --- /dev/null +++ b/docs/licenses/mongoengine.txt @@ -0,0 +1,22 @@ +Copyright (c) 2009 See AUTHORS + +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. diff --git a/docs/licenses/msgpack-python.txt b/docs/licenses/msgpack-python.txt new file mode 100644 index 0000000000..f067af3aae --- /dev/null +++ b/docs/licenses/msgpack-python.txt @@ -0,0 +1,14 @@ +Copyright (C) 2008-2011 INADA Naoki + + 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. + diff --git a/docs/licenses/netaddr.txt b/docs/licenses/netaddr.txt new file mode 100644 index 0000000000..8522e99e25 --- /dev/null +++ b/docs/licenses/netaddr.txt @@ -0,0 +1,36 @@ +Here are the licenses applicable to the use of the netaddr library. + +------- +netaddr +------- + +COPYRIGHT AND LICENSE + +Copyright (c) 2008-2015, David P. D. Moss. 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 David P. D. Moss nor the names of 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. diff --git a/docs/licenses/netifaces.txt b/docs/licenses/netifaces.txt new file mode 100644 index 0000000000..3f28a5f534 --- /dev/null +++ b/docs/licenses/netifaces.txt @@ -0,0 +1,9 @@ +MIT License + +Copyright (c) + +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. \ No newline at end of file diff --git a/docs/licenses/ordereddict.txt b/docs/licenses/ordereddict.txt new file mode 100644 index 0000000000..73abaf7b9c --- /dev/null +++ b/docs/licenses/ordereddict.txt @@ -0,0 +1,21 @@ +Copyright (c) 2009 Raymond Hettinger + +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. diff --git a/docs/licenses/os-client-config.txt b/docs/licenses/os-client-config.txt new file mode 100644 index 0000000000..67db858821 --- /dev/null +++ b/docs/licenses/os-client-config.txt @@ -0,0 +1,175 @@ + + 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. diff --git a/docs/licenses/os_diskconfig_python_novaclient_ext.txt b/docs/licenses/os_diskconfig_python_novaclient_ext.txt new file mode 100644 index 0000000000..33666dddf7 --- /dev/null +++ b/docs/licenses/os_diskconfig_python_novaclient_ext.txt @@ -0,0 +1,73 @@ +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. \ No newline at end of file diff --git a/docs/licenses/os_networksv2_python_novaclient_ext.txt b/docs/licenses/os_networksv2_python_novaclient_ext.txt new file mode 100644 index 0000000000..33666dddf7 --- /dev/null +++ b/docs/licenses/os_networksv2_python_novaclient_ext.txt @@ -0,0 +1,73 @@ +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. \ No newline at end of file diff --git a/docs/licenses/os_virtual_interfacesv2_python_novaclient_ext.txt b/docs/licenses/os_virtual_interfacesv2_python_novaclient_ext.txt new file mode 100644 index 0000000000..33666dddf7 --- /dev/null +++ b/docs/licenses/os_virtual_interfacesv2_python_novaclient_ext.txt @@ -0,0 +1,73 @@ +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. \ No newline at end of file diff --git a/docs/licenses/oslo.config.txt b/docs/licenses/oslo.config.txt new file mode 100644 index 0000000000..4143aac26d --- /dev/null +++ b/docs/licenses/oslo.config.txt @@ -0,0 +1,204 @@ + + 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. + +--- License for python-keystoneclient versions prior to 2.1 --- + +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 above 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. + + 3. Neither the name of this project 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. diff --git a/docs/licenses/oslo.i18n.txt b/docs/licenses/oslo.i18n.txt new file mode 100644 index 0000000000..67db858821 --- /dev/null +++ b/docs/licenses/oslo.i18n.txt @@ -0,0 +1,175 @@ + + 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. diff --git a/docs/licenses/oslo.serialization.txt b/docs/licenses/oslo.serialization.txt new file mode 100644 index 0000000000..67db858821 --- /dev/null +++ b/docs/licenses/oslo.serialization.txt @@ -0,0 +1,175 @@ + + 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. diff --git a/docs/licenses/oslo.utils.txt b/docs/licenses/oslo.utils.txt new file mode 100644 index 0000000000..67db858821 --- /dev/null +++ b/docs/licenses/oslo.utils.txt @@ -0,0 +1,175 @@ + + 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. diff --git a/docs/licenses/pbr.txt b/docs/licenses/pbr.txt new file mode 100644 index 0000000000..68c771a099 --- /dev/null +++ b/docs/licenses/pbr.txt @@ -0,0 +1,176 @@ + + 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. + diff --git a/docs/licenses/pexpect.txt b/docs/licenses/pexpect.txt new file mode 100644 index 0000000000..18ff9dbc64 --- /dev/null +++ b/docs/licenses/pexpect.txt @@ -0,0 +1,17 @@ +PEXPECT LICENSE + + This license is approved by the OSI and FSF as GPL-compatible. + http://opensource.org/licenses/isc-license.txt + + Copyright (c) 2012, Noah Spurrier + PERMISSION TO USE, COPY, MODIFY, AND/OR DISTRIBUTE THIS SOFTWARE FOR ANY + PURPOSE WITH OR WITHOUT FEE IS HEREBY GRANTED, PROVIDED THAT THE ABOVE + COPYRIGHT NOTICE AND THIS PERMISSION NOTICE APPEAR IN ALL COPIES. + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + diff --git a/docs/licenses/pip.txt b/docs/licenses/pip.txt new file mode 100644 index 0000000000..40d8cdaa30 --- /dev/null +++ b/docs/licenses/pip.txt @@ -0,0 +1,20 @@ +Copyright (c) 2008-2014 The pip developers (see AUTHORS.txt file) + +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. diff --git a/docs/licenses/prettytable.txt b/docs/licenses/prettytable.txt new file mode 100644 index 0000000000..7de41fb3cb --- /dev/null +++ b/docs/licenses/prettytable.txt @@ -0,0 +1,30 @@ +# Copyright (c) 2009-2013 Luke Maurits +# All rights reserved. +# With contributions from: +# * Chris Clark +# * Christoph Robbert +# * Klein Stephane +# * "maartendb" +# +# 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. +# * The name of the author may not 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. diff --git a/docs/licenses/psphere.txt b/docs/licenses/psphere.txt new file mode 100644 index 0000000000..f49a4e16e6 --- /dev/null +++ b/docs/licenses/psphere.txt @@ -0,0 +1,201 @@ + 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. \ No newline at end of file diff --git a/docs/licenses/psutil.txt b/docs/licenses/psutil.txt new file mode 100644 index 0000000000..e91b1359a2 --- /dev/null +++ b/docs/licenses/psutil.txt @@ -0,0 +1,27 @@ +psutil is distributed under BSD license reproduced below. + +Copyright (c) 2009, Jay Loden, Dave Daeschler, Giampaolo Rodola' +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 psutil authors 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. diff --git a/docs/licenses/psycopg2.txt b/docs/licenses/psycopg2.txt new file mode 100644 index 0000000000..dd7c124d8c --- /dev/null +++ b/docs/licenses/psycopg2.txt @@ -0,0 +1,54 @@ +psycopg2 and the LGPL +===================== + +psycopg2 is free software: you can redistribute it and/or modify it +under the terms of the GNU Lesser General Public License as published +by the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +psycopg2 is distributed in the hope that it will be useful, but WITHOUT +ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or +FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public +License for more details. + +In addition, as a special exception, the copyright holders give +permission to link this program with the OpenSSL library (or with +modified versions of OpenSSL that use the same license as OpenSSL), +and distribute linked combinations including the two. + +You must obey the GNU Lesser General Public License in all respects for +all of the code used other than OpenSSL. If you modify file(s) with this +exception, you may extend this exception to your version of the file(s), +but you are not obligated to do so. If you do not wish to do so, delete +this exception statement from your version. If you delete this exception +statement from all source files in the program, then also delete it here. + +You should have received a copy of the GNU Lesser General Public License +along with psycopg2 (see the doc/ directory.) +If not, see . + + +Alternative licenses +==================== + +If you prefer you can use the Zope Database Adapter ZPsycopgDA (i.e., +every file inside the ZPsycopgDA directory) user the ZPL license as +published on the Zope web site, http://www.zope.org/Resources/ZPL. + +Also, the following BSD-like license applies (at your option) to the +files following the pattern psycopg/adapter*.{h,c} and +psycopg/microprotocol*.{h,c}: + + Permission is granted to anyone to use this software for any purpose, + including commercial applications, and to alter it and redistribute it + freely, subject to the following restrictions: + + 1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this + software in a product, an acknowledgment in the product documentation + would be appreciated but is not required. + + 2. Altered source versions must be plainly marked as such, and must not + be misrepresented as being the original software. + + 3. This notice may not be removed or altered from any source distribution. diff --git a/docs/licenses/pyOpenSSL.txt b/docs/licenses/pyOpenSSL.txt new file mode 100644 index 0000000000..d645695673 --- /dev/null +++ b/docs/licenses/pyOpenSSL.txt @@ -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. diff --git a/docs/licenses/pyasn1.txt b/docs/licenses/pyasn1.txt new file mode 100644 index 0000000000..53158c7f28 --- /dev/null +++ b/docs/licenses/pyasn1.txt @@ -0,0 +1,24 @@ +Copyright (c) 2005-2015, Ilya Etingof +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. + +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 HOLDER 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. diff --git a/docs/licenses/pycparser.txt b/docs/licenses/pycparser.txt new file mode 100644 index 0000000000..7c30c3235a --- /dev/null +++ b/docs/licenses/pycparser.txt @@ -0,0 +1,25 @@ +Copyright (c) 2008-2015, Eli Bendersky +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 Eli Bendersky 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 HOLDER 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. diff --git a/docs/licenses/pycrypto.txt b/docs/licenses/pycrypto.txt new file mode 100644 index 0000000000..5ea30bec0c --- /dev/null +++ b/docs/licenses/pycrypto.txt @@ -0,0 +1,69 @@ +Copyright and licensing of the Python Cryptography Toolkit ("PyCrypto"): +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Previously, the copyright and/or licensing status of the Python +Cryptography Toolkit ("PyCrypto") had been somewhat ambiguous. The +original intention of Andrew M. Kuchling and other contributors has +been to dedicate PyCrypto to the public domain, but that intention was +not necessarily made clear in the original disclaimer (see +LEGAL/copy/LICENSE.orig). + +Additionally, some files within PyCrypto had specified their own +licenses that differed from the PyCrypto license itself. For example, +the original RIPEMD.c module simply had a copyright statement and +warranty disclaimer, without clearly specifying any license terms. +(An updated version on the author's website came with a license that +contained a GPL-incompatible advertising clause.) + +To rectify this situation for PyCrypto 2.1, the following steps have +been taken: + + 1. Obtaining explicit permission from the original contributors to + dedicate their contributions to the public domain if they have not + already done so. (See the "LEGAL/copy/stmts" directory for + contributors' statements.) + + 2. Replacing some modules with clearly-licensed code from other + sources (e.g. the DES and DES3 modules were replaced with new ones + based on Tom St. Denis's public-domain LibTomCrypt library.) + + 3. Replacing some modules with code written from scratch (e.g. the + RIPEMD and Blowfish modules were re-implemented from their + respective algorithm specifications without reference to the old + implementations). + + 4. Removing some modules altogether without replacing them. + +To the best of our knowledge, with the exceptions noted below or +within the files themselves, the files that constitute PyCrypto are in +the public domain. Most are distributed with the following notice: + + The contents of this file are dedicated to the public domain. To + the extent that dedication to the public domain is not available, + everyone is granted a worldwide, perpetual, royalty-free, + non-exclusive license to exercise all rights associated with the + contents of this file for any purpose whatsoever. + No rights are reserved. + + 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. + +Exception: + + - Portions of HMAC.py and setup.py are derived from Python 2.2, and + are therefore Copyright (c) 2001, 2002, 2003 Python Software + Foundation (All Rights Reserved). They are licensed by the PSF + under the terms of the Python 2.2 license. (See the file + LEGAL/copy/LICENSE.python-2.2 for details.) + +EXPORT RESTRICTIONS: + +Note that the export or re-export of cryptographic software and/or +source code may be subject to regulation in your jurisdiction. + diff --git a/docs/licenses/pymongo.txt b/docs/licenses/pymongo.txt new file mode 100644 index 0000000000..57bc88a15a --- /dev/null +++ b/docs/licenses/pymongo.txt @@ -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. + diff --git a/docs/licenses/pyparsing.txt b/docs/licenses/pyparsing.txt new file mode 100644 index 0000000000..bbc959e0d6 --- /dev/null +++ b/docs/licenses/pyparsing.txt @@ -0,0 +1,18 @@ +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. diff --git a/docs/licenses/pyrax.txt b/docs/licenses/pyrax.txt new file mode 100644 index 0000000000..d645695673 --- /dev/null +++ b/docs/licenses/pyrax.txt @@ -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. diff --git a/docs/licenses/python-cinderclient.txt b/docs/licenses/python-cinderclient.txt new file mode 100644 index 0000000000..3ecd073618 --- /dev/null +++ b/docs/licenses/python-cinderclient.txt @@ -0,0 +1,208 @@ +Copyright (c) 2009 Jacob Kaplan-Moss - initial codebase (< v2.1) +Copyright (c) 2011 Rackspace - OpenStack extensions (>= v2.1) +All rights reserved. + + + 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. + +--- License for python-cinderclient versions prior to 2.1 --- + +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 above 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. + + 3. Neither the name of this project 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. diff --git a/docs/licenses/python-dateutil.txt b/docs/licenses/python-dateutil.txt new file mode 100644 index 0000000000..2fc67ab9e8 --- /dev/null +++ b/docs/licenses/python-dateutil.txt @@ -0,0 +1,31 @@ +dateutil - Extensions to the standard Python datetime module. + +Copyright (c) 2003-2011 - Gustavo Niemeyer +Copyright (c) 2012-2014 - Tomi Pieviläinen +Copyright (c) 2014 - Yaron de Leeuw + +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 copyright holder 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. diff --git a/docs/licenses/python-glanceclient.txt b/docs/licenses/python-glanceclient.txt new file mode 100644 index 0000000000..67db858821 --- /dev/null +++ b/docs/licenses/python-glanceclient.txt @@ -0,0 +1,175 @@ + + 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. diff --git a/docs/licenses/python-ironicclient.txt b/docs/licenses/python-ironicclient.txt new file mode 100644 index 0000000000..68c771a099 --- /dev/null +++ b/docs/licenses/python-ironicclient.txt @@ -0,0 +1,176 @@ + + 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. + diff --git a/docs/licenses/python-ldap.txt b/docs/licenses/python-ldap.txt new file mode 100644 index 0000000000..54202bc170 --- /dev/null +++ b/docs/licenses/python-ldap.txt @@ -0,0 +1,19 @@ + +Mentioning a Python style license was my fault for two reasons: + +1. It is an obstacle to incorporate python-ldap into Python's standard lib. + +2. It's not precise enough as you already said. + +Mainly the term "Python style" was used to express that you should be able to +do whatever you're allowed to do with Python. + +The two authors (David and me) writing most of the code could agree on a quite +liberal open source license. But since we did not insist on written statements +to agree upon a license for the few contributions made by others we would have +to ask all contributors. Most of them are not subscribed to the list anymore I +guess. + +Frankly I'm not sure what to do to clarify this unfortunate situation. + +Ciao, Michael. diff --git a/docs/licenses/python-neutronclient.txt b/docs/licenses/python-neutronclient.txt new file mode 100644 index 0000000000..68c771a099 --- /dev/null +++ b/docs/licenses/python-neutronclient.txt @@ -0,0 +1,176 @@ + + 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. + diff --git a/docs/licenses/python-novaclient.txt b/docs/licenses/python-novaclient.txt new file mode 100644 index 0000000000..1d8bc82cc8 --- /dev/null +++ b/docs/licenses/python-novaclient.txt @@ -0,0 +1,208 @@ +Copyright (c) 2009 Jacob Kaplan-Moss - initial codebase (< v2.1) +Copyright (c) 2011 Rackspace - OpenStack extensions (>= v2.1) +All rights reserved. + + + 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. + +--- License for python-novaclient versions prior to 2.1 --- + +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 above 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. + + 3. Neither the name of this project 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. diff --git a/docs/licenses/python-swiftclient.txt b/docs/licenses/python-swiftclient.txt new file mode 100644 index 0000000000..67db858821 --- /dev/null +++ b/docs/licenses/python-swiftclient.txt @@ -0,0 +1,175 @@ + + 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. diff --git a/docs/licenses/python-troveclient.txt b/docs/licenses/python-troveclient.txt new file mode 100644 index 0000000000..68c771a099 --- /dev/null +++ b/docs/licenses/python-troveclient.txt @@ -0,0 +1,176 @@ + + 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. + diff --git a/docs/licenses/python.txt b/docs/licenses/python.txt new file mode 100644 index 0000000000..32b66114fb --- /dev/null +++ b/docs/licenses/python.txt @@ -0,0 +1,209 @@ +Copyright (c) 2009 Jacob Kaplan-Moss - initial codebase (< v2.1) +Copyright (c) 2011 Rackspace - OpenStack extensions (>= v2.1) +Copyright (c) 2011 Nebula, Inc - Keystone refactor (>= v2.7) +All rights reserved. + + + 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. + +--- License for python-keystoneclient versions prior to 2.1 --- + +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 above 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. + + 3. Neither the name of this project 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. diff --git a/docs/licenses/pytz.txt b/docs/licenses/pytz.txt new file mode 100644 index 0000000000..5e12fcca67 --- /dev/null +++ b/docs/licenses/pytz.txt @@ -0,0 +1,19 @@ +Copyright (c) 2003-2009 Stuart Bishop + +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. diff --git a/docs/licenses/pywinrm.txt b/docs/licenses/pywinrm.txt new file mode 100644 index 0000000000..3f28a5f534 --- /dev/null +++ b/docs/licenses/pywinrm.txt @@ -0,0 +1,9 @@ +MIT License + +Copyright (c) + +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. \ No newline at end of file diff --git a/docs/licenses/pyzmq.txt b/docs/licenses/pyzmq.txt new file mode 100644 index 0000000000..a0a3790ba8 --- /dev/null +++ b/docs/licenses/pyzmq.txt @@ -0,0 +1,32 @@ +PyZMQ is licensed under the terms of the Modified BSD License (also known as +New or Revised BSD), as follows: + +Copyright (c) 2009-2012, Brian Granger, Min Ragan-Kelley + +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 PyZMQ 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. diff --git a/docs/licenses/rackspace-auth-openstack.txt b/docs/licenses/rackspace-auth-openstack.txt new file mode 100644 index 0000000000..035e44e951 --- /dev/null +++ b/docs/licenses/rackspace-auth-openstack.txt @@ -0,0 +1,208 @@ +Copyright (c) 2012 Hewlett-Packard Development Company, L.P. +Copyright (c) 2012 Rackspace +All rights reserved. + + + 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. + +--- License for python-novaclient versions prior to 2.1 --- + +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 above 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. + + 3. Neither the name of this project 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. diff --git a/docs/licenses/rackspace-novaclient.txt b/docs/licenses/rackspace-novaclient.txt new file mode 100644 index 0000000000..33666dddf7 --- /dev/null +++ b/docs/licenses/rackspace-novaclient.txt @@ -0,0 +1,73 @@ +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. \ No newline at end of file diff --git a/docs/licenses/rax_default_network_flags_python_novaclient_ext.txt b/docs/licenses/rax_default_network_flags_python_novaclient_ext.txt new file mode 100644 index 0000000000..33666dddf7 --- /dev/null +++ b/docs/licenses/rax_default_network_flags_python_novaclient_ext.txt @@ -0,0 +1,73 @@ +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. \ No newline at end of file diff --git a/docs/licenses/rax_scheduled_images_python_novaclient_ext.txt b/docs/licenses/rax_scheduled_images_python_novaclient_ext.txt new file mode 100644 index 0000000000..33666dddf7 --- /dev/null +++ b/docs/licenses/rax_scheduled_images_python_novaclient_ext.txt @@ -0,0 +1,73 @@ +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. \ No newline at end of file diff --git a/docs/licenses/redis.txt b/docs/licenses/redis.txt new file mode 100644 index 0000000000..29a3fe3845 --- /dev/null +++ b/docs/licenses/redis.txt @@ -0,0 +1,22 @@ +Copyright (c) 2012 Andy McCurdy + + 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. diff --git a/docs/licenses/requests.txt b/docs/licenses/requests.txt new file mode 100644 index 0000000000..8c5e758401 --- /dev/null +++ b/docs/licenses/requests.txt @@ -0,0 +1,13 @@ +Copyright 2014 Kenneth Reitz + + 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. diff --git a/docs/licenses/setuptools.txt b/docs/licenses/setuptools.txt new file mode 100644 index 0000000000..f73bd13921 --- /dev/null +++ b/docs/licenses/setuptools.txt @@ -0,0 +1,96 @@ +PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2 + + 1. This LICENSE AGREEMENT is between the Python Software Foundation ("PSF"), and the Individual or Organization ("Licensee") accessing and otherwise using this software ("Python") in source or binary form and its associated documentation. + + 2. Subject to the terms and conditions of this License Agreement, PSF hereby grants Licensee a nonexclusive, royalty-free, world-wide license to reproduce, analyze, test, perform and/or display publicly, prepare derivative works, distribute, and otherwise use Python alone or in any derivative version, provided, however, that PSF's License Agreement and PSF's notice of copyright, i.e., "Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006 Python Software Foundation; All Rights Reserved" are retained in Python alone or in any derivative version prepared by Licensee. + + 3. In the event Licensee prepares a derivative work that is based on or incorporates Python or any part thereof, and wants to make the derivative work available to others as provided herein, then Licensee hereby agrees to include in any such work a brief summary of the changes made to Python. + + 4. PSF is making Python available to Licensee on an "AS IS" basis. PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON WILL NOT INFRINGE ANY THIRD PARTY RIGHTS. + + 5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON, OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. + + 6. This License Agreement will automatically terminate upon a material breach of its terms and conditions. + + 7. Nothing in this License Agreement shall be deemed to create any relationship of agency, partnership, or joint venture between PSF and Licensee. This License Agreement does not grant permission to use PSF trademarks or trade name in a trademark sense to endorse or promote products or services of Licensee, or any third party. + + 8. By copying, installing or otherwise using Python, Licensee agrees to be bound by the terms and conditions of this License Agreement. + + +BEOPEN.COM LICENSE AGREEMENT FOR PYTHON 2.0 + +BEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1 + + 1. This LICENSE AGREEMENT is between BeOpen.com ("BeOpen"), having an office at 160 Saratoga Avenue, Santa Clara, CA 95051, and the Individual or Organization ("Licensee") accessing and otherwise using this software in source or binary form and its associated documentation ("the Software"). + + 2. Subject to the terms and conditions of this BeOpen Python License Agreement, BeOpen hereby grants Licensee a non-exclusive, royalty-free, world-wide license to reproduce, analyze, test, perform and/or display publicly, prepare derivative works, distribute, and otherwise use the Software alone or in any derivative version, provided, however, that the BeOpen Python License is retained in the Software, alone or in any derivative version prepared by Licensee. + + 3. BeOpen is making the Software available to Licensee on an "AS IS" basis. BEOPEN MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, BEOPEN MAKES NO AND DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE WILL NOT INFRINGE ANY THIRD PARTY RIGHTS. + + 4. BEOPEN SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE SOFTWARE FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THE SOFTWARE, OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. + + 5. This License Agreement will automatically terminate upon a material breach of its terms and conditions. + + 6. This License Agreement shall be governed by and interpreted in all respects by the law of the State of California, excluding conflict of law provisions. Nothing in this License Agreement shall be deemed to create any relationship of agency, partnership, or joint venture between BeOpen and Licensee. This License Agreement does not grant permission to use BeOpen trademarks or trade names in a trademark sense to endorse or promote products or services of Licensee, or any third party. As an exception, the "BeOpen Python" logos available at http://www.pythonlabs.com/logos.html may be used according to the permissions granted on that web page. + + 7. By copying, installing or otherwise using the software, Licensee agrees to be bound by the terms and conditions of this License Agreement. + + +CNRI OPEN SOURCE LICENSE AGREEMENT (for Python 1.6b1) + +IMPORTANT: PLEASE READ THE FOLLOWING AGREEMENT CAREFULLY. + +BY CLICKING ON "ACCEPT" WHERE INDICATED BELOW, OR BY COPYING, INSTALLING OR OTHERWISE USING PYTHON 1.6, beta 1 SOFTWARE, YOU ARE DEEMED TO HAVE AGREED TO THE TERMS AND CONDITIONS OF THIS LICENSE AGREEMENT. + + 1. This LICENSE AGREEMENT is between the Corporation for National Research Initiatives, having an office at 1895 Preston White Drive, Reston, VA 20191 ("CNRI"), and the Individual or Organization ("Licensee") accessing and otherwise using Python 1.6, beta 1 software in source or binary form and its associated documentation, as released at the www.python.org Internet site on August 4, 2000 ("Python 1.6b1"). + + 2. Subject to the terms and conditions of this License Agreement, CNRI hereby grants Licensee a non-exclusive, royalty-free, world-wide license to reproduce, analyze, test, perform and/or display publicly, prepare derivative works, distribute, and otherwise use Python 1.6b1 alone or in any derivative version, provided, however, that CNRIs License Agreement is retained in Python 1.6b1, alone or in any derivative version prepared by Licensee. + + Alternately, in lieu of CNRIs License Agreement, Licensee may substitute the following text (omitting the quotes): "Python 1.6, beta 1, is made available subject to the terms and conditions in CNRIs License Agreement. This Agreement may be located on the Internet using the following unique, persistent identifier (known as a handle): 1895.22/1011. This Agreement may also be obtained from a proxy server on the Internet using the URL:http://hdl.handle.net/1895.22/1011". + + 3. In the event Licensee prepares a derivative work that is based on or incorporates Python 1.6b1 or any part thereof, and wants to make the derivative work available to the public as provided herein, then Licensee hereby agrees to indicate in any such work the nature of the modifications made to Python 1.6b1. + + 4. CNRI is making Python 1.6b1 available to Licensee on an "AS IS" basis. CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON 1.6b1 WILL NOT INFRINGE ANY THIRD PARTY RIGHTS. + + 5. CNRI SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE SOFTWARE FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS A RESULT OF USING, MODIFYING OR DISTRIBUTING PYTHON 1.6b1, OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. + + 6. This License Agreement will automatically terminate upon a material breach of its terms and conditions. + + 7. This License Agreement shall be governed by and interpreted in all respects by the law of the State of Virginia, excluding conflict of law provisions. Nothing in this License Agreement shall be deemed to create any relationship of agency, partnership, or joint venture between CNRI and Licensee. This License Agreement does not grant permission to use CNRI trademarks or trade name in a trademark sense to endorse or promote products or services of Licensee, or any third party. + + 8. By clicking on the "ACCEPT" button where indicated, or by copying, installing or otherwise using Python 1.6b1, Licensee agrees to be bound by the terms and conditions of this License Agreement. + +ACCEPT + + +CWI LICENSE AGREEMENT FOR PYTHON 0.9.0 THROUGH 1.2 + +Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, The Netherlands. All rights reserved. + + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation, and that the name of Stichting Mathematisch Centrum or CWI not be used in advertising or publicity pertaining to distribution of the software without specific, written prior permission. + + STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + or +Zope Public License (ZPL) Version 2.0 + +This software is Copyright (c) Zope Corporation (tm) and Contributors. All rights reserved. + +This license has been certified as open source. It has also been designated as GPL compatible by the Free Software Foundation (FSF). + +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + + 1. Redistributions in source code must retain the above 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. + + 3. The name Zope Corporation (tm) must not be used to endorse or promote products derived from this software without prior written permission from Zope Corporation. + + 4. The right to distribute this software or to use it for any purpose does not give you the right to use Servicemarks (sm) or Trademarks (tm) of Zope Corporation. Use of them is covered in a separate agreement (see http://www.zope.com/Marks). + + 5. If any files are modified, you must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. + +Disclaimer + +THIS SOFTWARE IS PROVIDED BY ZOPE CORPORATION ``AS IS'' AND ANY EXPRESSED 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 ZOPE CORPORATION OR ITS 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. + +This software consists of contributions made by Zope Corporation and many individuals on behalf of Zope Corporation. Specific attributions are listed in the accompanying credits file. \ No newline at end of file diff --git a/docs/licenses/shad.txt b/docs/licenses/shad.txt new file mode 100644 index 0000000000..67db858821 --- /dev/null +++ b/docs/licenses/shad.txt @@ -0,0 +1,175 @@ + + 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. diff --git a/docs/licenses/simplejson.txt b/docs/licenses/simplejson.txt new file mode 100644 index 0000000000..e05f49c3fd --- /dev/null +++ b/docs/licenses/simplejson.txt @@ -0,0 +1,79 @@ +simplejson is dual-licensed software. It is available under the terms +of the MIT license, or the Academic Free License version 2.1. The full +text of each license agreement is included below. This code is also +licensed to the Python Software Foundation (PSF) under a Contributor +Agreement. + +MIT License +=========== + +Copyright (c) 2006 Bob Ippolito + +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. + +Academic Free License v. 2.1 +============================ + +Copyright (c) 2006 Bob Ippolito. All rights reserved. + +This Academic Free License (the "License") applies to any original work of authorship (the "Original Work") whose owner (the "Licensor") has placed the following notice immediately following the copyright notice for the Original Work: + +Licensed under the Academic Free License version 2.1 + +1) Grant of Copyright License. Licensor hereby grants You a world-wide, royalty-free, non-exclusive, perpetual, sublicenseable license to do the following: + +a) to reproduce the Original Work in copies; + +b) to prepare derivative works ("Derivative Works") based upon the Original Work; + +c) to distribute copies of the Original Work and Derivative Works to the public; + +d) to perform the Original Work publicly; and + +e) to display the Original Work publicly. + +2) Grant of Patent License. Licensor hereby grants You a world-wide, royalty-free, non-exclusive, perpetual, sublicenseable license, under patent claims owned or controlled by the Licensor that are embodied in the Original Work as furnished by the Licensor, to make, use, sell and offer for sale the Original Work and Derivative Works. + +3) Grant of Source Code License. The term "Source Code" means the preferred form of the Original Work for making modifications to it and all available documentation describing how to modify the Original Work. Licensor hereby agrees to provide a machine-readable copy of the Source Code of the Original Work along with each copy of the Original Work that Licensor distributes. Licensor reserves the right to satisfy this obligation by placing a machine-readable copy of the Source Code in an information repository reasonably calculated to permit inexpensive and convenient access by You for as long as Licensor continues to distribute the Original Work, and by publishing the address of that information repository in a notice immediately following the copyright notice that applies to the Original Work. + +4) Exclusions From License Grant. Neither the names of Licensor, nor the names of any contributors to the Original Work, nor any of their trademarks or service marks, may be used to endorse or promote products derived from this Original Work without express prior written permission of the Licensor. Nothing in this License shall be deemed to grant any rights to trademarks, copyrights, patents, trade secrets or any other intellectual property of Licensor except as expressly stated herein. No patent license is granted to make, use, sell or offer to sell embodiments of any patent claims other than the licensed claims defined in Section 2. No right is granted to the trademarks of Licensor even if such marks are included in the Original Work. Nothing in this License shall be interpreted to prohibit Licensor from licensing under different terms from this License any Original Work that Licensor otherwise would have a right to license. + +5) This section intentionally omitted. + +6) Attribution Rights. You must retain, in the Source Code of any Derivative Works that You create, all copyright, patent or trademark notices from the Source Code of the Original Work, as well as any notices of licensing and any descriptive text identified therein as an "Attribution Notice." You must cause the Source Code for any Derivative Works that You create to carry a prominent Attribution Notice reasonably calculated to inform recipients that You have modified the Original Work. + +7) Warranty of Provenance and Disclaimer of Warranty. Licensor warrants that the copyright in and to the Original Work and the patent rights granted herein by Licensor are owned by the Licensor or are sublicensed to You under the terms of this License with the permission of the contributor(s) of those copyrights and patent rights. Except as expressly stated in the immediately proceeding sentence, the Original Work is provided under this License on an "AS IS" BASIS and WITHOUT WARRANTY, either express or implied, including, without limitation, the warranties of NON-INFRINGEMENT, MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY OF THE ORIGINAL WORK IS WITH YOU. This DISCLAIMER OF WARRANTY constitutes an essential part of this License. No license to Original Work is granted hereunder except under this disclaimer. + +8) Limitation of Liability. Under no circumstances and under no legal theory, whether in tort (including negligence), contract, or otherwise, shall the Licensor be liable to any person for any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or the use of the Original Work including, without limitation, damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses. This limitation of liability shall not apply to liability for death or personal injury resulting from Licensor'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. + +9) Acceptance and Termination. If You distribute copies of the Original Work or a Derivative Work, You must make a reasonable effort under the circumstances to obtain the express assent of recipients to the terms of this License. Nothing else but this License (or another written agreement between Licensor and You) grants You permission to create Derivative Works based upon the Original Work or to exercise any of the rights granted in Section 1 herein, and any attempt to do so except under the terms of this License (or another written agreement between Licensor and You) is expressly prohibited by U.S. copyright law, the equivalent laws of other countries, and by international treaty. Therefore, by exercising any of the rights granted to You in Section 1 herein, You indicate Your acceptance of this License and all of its terms and conditions. + +10) Termination for Patent Action. This License shall terminate automatically and You may no longer exercise any of the rights granted to You by this License as of the date You commence an action, including a cross-claim or counterclaim, against Licensor or any licensee alleging that the Original Work infringes a patent. This termination provision shall not apply for an action alleging patent infringement by combinations of the Original Work with other software or hardware. + +11) Jurisdiction, Venue and Governing Law. Any action or suit relating to this License may be brought only in the courts of a jurisdiction wherein the Licensor resides or in which Licensor conducts its primary business, and under the laws of that jurisdiction excluding its conflict-of-law provisions. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any use of the Original Work outside the scope of this License or after its termination shall be subject to the requirements and penalties of the U.S. Copyright Act, 17 U.S.C. § 101 et seq., the equivalent laws of other countries, and international treaty. This section shall survive the termination of this License. + +12) Attorneys Fees. In any action to enforce the terms of this License or seeking damages relating thereto, the prevailing party shall be entitled to recover its costs and expenses, including, without limitation, reasonable attorneys' fees and costs incurred in connection with such action, including any appeal of such action. This section shall survive the termination of this License. + +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. + +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. 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) Right to Use. You may use the Original Work in all ways not otherwise restricted or conditioned by this License or by law, and Licensor promises not to interfere with or be responsible for such uses by You. + +This license is Copyright (C) 2003-2004 Lawrence E. Rosen. All rights reserved. Permission is hereby granted to copy and distribute this license without modification. This license may not be modified without the express written permission of its copyright owner. diff --git a/docs/licenses/sitecustomiz.txt b/docs/licenses/sitecustomiz.txt new file mode 100644 index 0000000000..cc821dc00c --- /dev/null +++ b/docs/licenses/sitecustomiz.txt @@ -0,0 +1,72 @@ +PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2 + + 1. This LICENSE AGREEMENT is between the Python Software Foundation ("PSF"), and the Individual or Organization ("Licensee") accessing and otherwise using this software ("Python") in source or binary form and its associated documentation. + + 2. Subject to the terms and conditions of this License Agreement, PSF hereby grants Licensee a nonexclusive, royalty-free, world-wide license to reproduce, analyze, test, perform and/or display publicly, prepare derivative works, distribute, and otherwise use Python alone or in any derivative version, provided, however, that PSF's License Agreement and PSF's notice of copyright, i.e., "Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006 Python Software Foundation; All Rights Reserved" are retained in Python alone or in any derivative version prepared by Licensee. + + 3. In the event Licensee prepares a derivative work that is based on or incorporates Python or any part thereof, and wants to make the derivative work available to others as provided herein, then Licensee hereby agrees to include in any such work a brief summary of the changes made to Python. + + 4. PSF is making Python available to Licensee on an "AS IS" basis. PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON WILL NOT INFRINGE ANY THIRD PARTY RIGHTS. + + 5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON, OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. + + 6. This License Agreement will automatically terminate upon a material breach of its terms and conditions. + + 7. Nothing in this License Agreement shall be deemed to create any relationship of agency, partnership, or joint venture between PSF and Licensee. This License Agreement does not grant permission to use PSF trademarks or trade name in a trademark sense to endorse or promote products or services of Licensee, or any third party. + + 8. By copying, installing or otherwise using Python, Licensee agrees to be bound by the terms and conditions of this License Agreement. + + +BEOPEN.COM LICENSE AGREEMENT FOR PYTHON 2.0 + +BEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1 + + 1. This LICENSE AGREEMENT is between BeOpen.com ("BeOpen"), having an office at 160 Saratoga Avenue, Santa Clara, CA 95051, and the Individual or Organization ("Licensee") accessing and otherwise using this software in source or binary form and its associated documentation ("the Software"). + + 2. Subject to the terms and conditions of this BeOpen Python License Agreement, BeOpen hereby grants Licensee a non-exclusive, royalty-free, world-wide license to reproduce, analyze, test, perform and/or display publicly, prepare derivative works, distribute, and otherwise use the Software alone or in any derivative version, provided, however, that the BeOpen Python License is retained in the Software, alone or in any derivative version prepared by Licensee. + + 3. BeOpen is making the Software available to Licensee on an "AS IS" basis. BEOPEN MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, BEOPEN MAKES NO AND DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE WILL NOT INFRINGE ANY THIRD PARTY RIGHTS. + + 4. BEOPEN SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE SOFTWARE FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THE SOFTWARE, OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. + + 5. This License Agreement will automatically terminate upon a material breach of its terms and conditions. + + 6. This License Agreement shall be governed by and interpreted in all respects by the law of the State of California, excluding conflict of law provisions. Nothing in this License Agreement shall be deemed to create any relationship of agency, partnership, or joint venture between BeOpen and Licensee. This License Agreement does not grant permission to use BeOpen trademarks or trade names in a trademark sense to endorse or promote products or services of Licensee, or any third party. As an exception, the "BeOpen Python" logos available at http://www.pythonlabs.com/logos.html may be used according to the permissions granted on that web page. + + 7. By copying, installing or otherwise using the software, Licensee agrees to be bound by the terms and conditions of this License Agreement. + + +CNRI OPEN SOURCE LICENSE AGREEMENT (for Python 1.6b1) + +IMPORTANT: PLEASE READ THE FOLLOWING AGREEMENT CAREFULLY. + +BY CLICKING ON "ACCEPT" WHERE INDICATED BELOW, OR BY COPYING, INSTALLING OR OTHERWISE USING PYTHON 1.6, beta 1 SOFTWARE, YOU ARE DEEMED TO HAVE AGREED TO THE TERMS AND CONDITIONS OF THIS LICENSE AGREEMENT. + + 1. This LICENSE AGREEMENT is between the Corporation for National Research Initiatives, having an office at 1895 Preston White Drive, Reston, VA 20191 ("CNRI"), and the Individual or Organization ("Licensee") accessing and otherwise using Python 1.6, beta 1 software in source or binary form and its associated documentation, as released at the www.python.org Internet site on August 4, 2000 ("Python 1.6b1"). + + 2. Subject to the terms and conditions of this License Agreement, CNRI hereby grants Licensee a non-exclusive, royalty-free, world-wide license to reproduce, analyze, test, perform and/or display publicly, prepare derivative works, distribute, and otherwise use Python 1.6b1 alone or in any derivative version, provided, however, that CNRIs License Agreement is retained in Python 1.6b1, alone or in any derivative version prepared by Licensee. + + Alternately, in lieu of CNRIs License Agreement, Licensee may substitute the following text (omitting the quotes): "Python 1.6, beta 1, is made available subject to the terms and conditions in CNRIs License Agreement. This Agreement may be located on the Internet using the following unique, persistent identifier (known as a handle): 1895.22/1011. This Agreement may also be obtained from a proxy server on the Internet using the URL:http://hdl.handle.net/1895.22/1011". + + 3. In the event Licensee prepares a derivative work that is based on or incorporates Python 1.6b1 or any part thereof, and wants to make the derivative work available to the public as provided herein, then Licensee hereby agrees to indicate in any such work the nature of the modifications made to Python 1.6b1. + + 4. CNRI is making Python 1.6b1 available to Licensee on an "AS IS" basis. CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON 1.6b1 WILL NOT INFRINGE ANY THIRD PARTY RIGHTS. + + 5. CNRI SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE SOFTWARE FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS A RESULT OF USING, MODIFYING OR DISTRIBUTING PYTHON 1.6b1, OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. + + 6. This License Agreement will automatically terminate upon a material breach of its terms and conditions. + + 7. This License Agreement shall be governed by and interpreted in all respects by the law of the State of Virginia, excluding conflict of law provisions. Nothing in this License Agreement shall be deemed to create any relationship of agency, partnership, or joint venture between CNRI and Licensee. This License Agreement does not grant permission to use CNRI trademarks or trade name in a trademark sense to endorse or promote products or services of Licensee, or any third party. + + 8. By clicking on the "ACCEPT" button where indicated, or by copying, installing or otherwise using Python 1.6b1, Licensee agrees to be bound by the terms and conditions of this License Agreement. + +ACCEPT + + +CWI LICENSE AGREEMENT FOR PYTHON 0.9.0 THROUGH 1.2 + +Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, The Netherlands. All rights reserved. + + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation, and that the name of Stichting Mathematisch Centrum or CWI not be used in advertising or publicity pertaining to distribution of the software without specific, written prior permission. + + STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. \ No newline at end of file diff --git a/docs/licenses/six.txt b/docs/licenses/six.txt new file mode 100644 index 0000000000..e558f9d494 --- /dev/null +++ b/docs/licenses/six.txt @@ -0,0 +1,18 @@ +Copyright (c) 2010-2015 Benjamin Peterson + +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. diff --git a/docs/licenses/stevedore.txt b/docs/licenses/stevedore.txt new file mode 100644 index 0000000000..d645695673 --- /dev/null +++ b/docs/licenses/stevedore.txt @@ -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. diff --git a/docs/licenses/suds.txt b/docs/licenses/suds.txt new file mode 100644 index 0000000000..32fa870edc --- /dev/null +++ b/docs/licenses/suds.txt @@ -0,0 +1,165 @@ + GNU LESSER GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + + This version of the GNU Lesser General Public License incorporates +the terms and conditions of version 3 of the GNU General Public +License, supplemented by the additional permissions listed below. + + 0. Additional Definitions. + + As used herein, "this License" refers to version 3 of the GNU Lesser +General Public License, and the "GNU GPL" refers to version 3 of the GNU +General Public License. + + "The Library" refers to a covered work governed by this License, +other than an Application or a Combined Work as defined below. + + An "Application" is any work that makes use of an interface provided +by the Library, but which is not otherwise based on the Library. +Defining a subclass of a class defined by the Library is deemed a mode +of using an interface provided by the Library. + + A "Combined Work" is a work produced by combining or linking an +Application with the Library. The particular version of the Library +with which the Combined Work was made is also called the "Linked +Version". + + The "Minimal Corresponding Source" for a Combined Work means the +Corresponding Source for the Combined Work, excluding any source code +for portions of the Combined Work that, considered in isolation, are +based on the Application, and not on the Linked Version. + + The "Corresponding Application Code" for a Combined Work means the +object code and/or source code for the Application, including any data +and utility programs needed for reproducing the Combined Work from the +Application, but excluding the System Libraries of the Combined Work. + + 1. Exception to Section 3 of the GNU GPL. + + You may convey a covered work under sections 3 and 4 of this License +without being bound by section 3 of the GNU GPL. + + 2. Conveying Modified Versions. + + If you modify a copy of the Library, and, in your modifications, a +facility refers to a function or data to be supplied by an Application +that uses the facility (other than as an argument passed when the +facility is invoked), then you may convey a copy of the modified +version: + + a) under this License, provided that you make a good faith effort to + ensure that, in the event an Application does not supply the + function or data, the facility still operates, and performs + whatever part of its purpose remains meaningful, or + + b) under the GNU GPL, with none of the additional permissions of + this License applicable to that copy. + + 3. Object Code Incorporating Material from Library Header Files. + + The object code form of an Application may incorporate material from +a header file that is part of the Library. You may convey such object +code under terms of your choice, provided that, if the incorporated +material is not limited to numerical parameters, data structure +layouts and accessors, or small macros, inline functions and templates +(ten or fewer lines in length), you do both of the following: + + a) Give prominent notice with each copy of the object code that the + Library is used in it and that the Library and its use are + covered by this License. + + b) Accompany the object code with a copy of the GNU GPL and this license + document. + + 4. Combined Works. + + You may convey a Combined Work under terms of your choice that, +taken together, effectively do not restrict modification of the +portions of the Library contained in the Combined Work and reverse +engineering for debugging such modifications, if you also do each of +the following: + + a) Give prominent notice with each copy of the Combined Work that + the Library is used in it and that the Library and its use are + covered by this License. + + b) Accompany the Combined Work with a copy of the GNU GPL and this license + document. + + c) For a Combined Work that displays copyright notices during + execution, include the copyright notice for the Library among + these notices, as well as a reference directing the user to the + copies of the GNU GPL and this license document. + + d) Do one of the following: + + 0) Convey the Minimal Corresponding Source under the terms of this + License, and the Corresponding Application Code in a form + suitable for, and under terms that permit, the user to + recombine or relink the Application with a modified version of + the Linked Version to produce a modified Combined Work, in the + manner specified by section 6 of the GNU GPL for conveying + Corresponding Source. + + 1) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (a) uses at run time + a copy of the Library already present on the user's computer + system, and (b) will operate properly with a modified version + of the Library that is interface-compatible with the Linked + Version. + + e) Provide Installation Information, but only if you would otherwise + be required to provide such information under section 6 of the + GNU GPL, and only to the extent that such information is + necessary to install and execute a modified version of the + Combined Work produced by recombining or relinking the + Application with a modified version of the Linked Version. (If + you use option 4d0, the Installation Information must accompany + the Minimal Corresponding Source and Corresponding Application + Code. If you use option 4d1, you must provide the Installation + Information in the manner specified by section 6 of the GNU GPL + for conveying Corresponding Source.) + + 5. Combined Libraries. + + You may place library facilities that are a work based on the +Library side by side in a single library together with other library +facilities that are not Applications and are not covered by this +License, and convey such a combined library under terms of your +choice, if you do both of the following: + + a) Accompany the combined library with a copy of the same work based + on the Library, uncombined with any other library facilities, + conveyed under the terms of this License. + + b) Give prominent notice with the combined library that part of it + is a work based on the Library, and explaining where to find the + accompanying uncombined form of the same work. + + 6. Revised Versions of the GNU Lesser General Public License. + + The Free Software Foundation may publish revised and/or new versions +of the GNU Lesser General Public License from time to time. Such new +versions will be similar in spirit to the present version, but may +differ in detail to address new problems or concerns. + + Each version is given a distinguishing version number. If the +Library as you received it specifies that a certain numbered version +of the GNU Lesser General Public License "or any later version" +applies to it, you have the option of following the terms and +conditions either of that published version or of any later version +published by the Free Software Foundation. If the Library as you +received it does not specify a version number of the GNU Lesser +General Public License, you may choose any version of the GNU Lesser +General Public License ever published by the Free Software Foundation. + + If the Library as you received it specifies that a proxy can decide +whether future versions of the GNU Lesser General Public License shall +apply, that proxy's public statement of acceptance of any version is +permanent authorization for you to choose that version for the +Library. diff --git a/docs/licenses/warlock.txt b/docs/licenses/warlock.txt new file mode 100644 index 0000000000..d645695673 --- /dev/null +++ b/docs/licenses/warlock.txt @@ -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. diff --git a/docs/licenses/wheel.txt b/docs/licenses/wheel.txt new file mode 100644 index 0000000000..c3441e6cc8 --- /dev/null +++ b/docs/licenses/wheel.txt @@ -0,0 +1,22 @@ +"wheel" copyright (c) 2012-2014 Daniel Holth and +contributors. + +The MIT License + +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. diff --git a/docs/licenses/wsgiref.txt b/docs/licenses/wsgiref.txt new file mode 100644 index 0000000000..f73bd13921 --- /dev/null +++ b/docs/licenses/wsgiref.txt @@ -0,0 +1,96 @@ +PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2 + + 1. This LICENSE AGREEMENT is between the Python Software Foundation ("PSF"), and the Individual or Organization ("Licensee") accessing and otherwise using this software ("Python") in source or binary form and its associated documentation. + + 2. Subject to the terms and conditions of this License Agreement, PSF hereby grants Licensee a nonexclusive, royalty-free, world-wide license to reproduce, analyze, test, perform and/or display publicly, prepare derivative works, distribute, and otherwise use Python alone or in any derivative version, provided, however, that PSF's License Agreement and PSF's notice of copyright, i.e., "Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006 Python Software Foundation; All Rights Reserved" are retained in Python alone or in any derivative version prepared by Licensee. + + 3. In the event Licensee prepares a derivative work that is based on or incorporates Python or any part thereof, and wants to make the derivative work available to others as provided herein, then Licensee hereby agrees to include in any such work a brief summary of the changes made to Python. + + 4. PSF is making Python available to Licensee on an "AS IS" basis. PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON WILL NOT INFRINGE ANY THIRD PARTY RIGHTS. + + 5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON, OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. + + 6. This License Agreement will automatically terminate upon a material breach of its terms and conditions. + + 7. Nothing in this License Agreement shall be deemed to create any relationship of agency, partnership, or joint venture between PSF and Licensee. This License Agreement does not grant permission to use PSF trademarks or trade name in a trademark sense to endorse or promote products or services of Licensee, or any third party. + + 8. By copying, installing or otherwise using Python, Licensee agrees to be bound by the terms and conditions of this License Agreement. + + +BEOPEN.COM LICENSE AGREEMENT FOR PYTHON 2.0 + +BEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1 + + 1. This LICENSE AGREEMENT is between BeOpen.com ("BeOpen"), having an office at 160 Saratoga Avenue, Santa Clara, CA 95051, and the Individual or Organization ("Licensee") accessing and otherwise using this software in source or binary form and its associated documentation ("the Software"). + + 2. Subject to the terms and conditions of this BeOpen Python License Agreement, BeOpen hereby grants Licensee a non-exclusive, royalty-free, world-wide license to reproduce, analyze, test, perform and/or display publicly, prepare derivative works, distribute, and otherwise use the Software alone or in any derivative version, provided, however, that the BeOpen Python License is retained in the Software, alone or in any derivative version prepared by Licensee. + + 3. BeOpen is making the Software available to Licensee on an "AS IS" basis. BEOPEN MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, BEOPEN MAKES NO AND DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE WILL NOT INFRINGE ANY THIRD PARTY RIGHTS. + + 4. BEOPEN SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE SOFTWARE FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THE SOFTWARE, OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. + + 5. This License Agreement will automatically terminate upon a material breach of its terms and conditions. + + 6. This License Agreement shall be governed by and interpreted in all respects by the law of the State of California, excluding conflict of law provisions. Nothing in this License Agreement shall be deemed to create any relationship of agency, partnership, or joint venture between BeOpen and Licensee. This License Agreement does not grant permission to use BeOpen trademarks or trade names in a trademark sense to endorse or promote products or services of Licensee, or any third party. As an exception, the "BeOpen Python" logos available at http://www.pythonlabs.com/logos.html may be used according to the permissions granted on that web page. + + 7. By copying, installing or otherwise using the software, Licensee agrees to be bound by the terms and conditions of this License Agreement. + + +CNRI OPEN SOURCE LICENSE AGREEMENT (for Python 1.6b1) + +IMPORTANT: PLEASE READ THE FOLLOWING AGREEMENT CAREFULLY. + +BY CLICKING ON "ACCEPT" WHERE INDICATED BELOW, OR BY COPYING, INSTALLING OR OTHERWISE USING PYTHON 1.6, beta 1 SOFTWARE, YOU ARE DEEMED TO HAVE AGREED TO THE TERMS AND CONDITIONS OF THIS LICENSE AGREEMENT. + + 1. This LICENSE AGREEMENT is between the Corporation for National Research Initiatives, having an office at 1895 Preston White Drive, Reston, VA 20191 ("CNRI"), and the Individual or Organization ("Licensee") accessing and otherwise using Python 1.6, beta 1 software in source or binary form and its associated documentation, as released at the www.python.org Internet site on August 4, 2000 ("Python 1.6b1"). + + 2. Subject to the terms and conditions of this License Agreement, CNRI hereby grants Licensee a non-exclusive, royalty-free, world-wide license to reproduce, analyze, test, perform and/or display publicly, prepare derivative works, distribute, and otherwise use Python 1.6b1 alone or in any derivative version, provided, however, that CNRIs License Agreement is retained in Python 1.6b1, alone or in any derivative version prepared by Licensee. + + Alternately, in lieu of CNRIs License Agreement, Licensee may substitute the following text (omitting the quotes): "Python 1.6, beta 1, is made available subject to the terms and conditions in CNRIs License Agreement. This Agreement may be located on the Internet using the following unique, persistent identifier (known as a handle): 1895.22/1011. This Agreement may also be obtained from a proxy server on the Internet using the URL:http://hdl.handle.net/1895.22/1011". + + 3. In the event Licensee prepares a derivative work that is based on or incorporates Python 1.6b1 or any part thereof, and wants to make the derivative work available to the public as provided herein, then Licensee hereby agrees to indicate in any such work the nature of the modifications made to Python 1.6b1. + + 4. CNRI is making Python 1.6b1 available to Licensee on an "AS IS" basis. CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON 1.6b1 WILL NOT INFRINGE ANY THIRD PARTY RIGHTS. + + 5. CNRI SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE SOFTWARE FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS A RESULT OF USING, MODIFYING OR DISTRIBUTING PYTHON 1.6b1, OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. + + 6. This License Agreement will automatically terminate upon a material breach of its terms and conditions. + + 7. This License Agreement shall be governed by and interpreted in all respects by the law of the State of Virginia, excluding conflict of law provisions. Nothing in this License Agreement shall be deemed to create any relationship of agency, partnership, or joint venture between CNRI and Licensee. This License Agreement does not grant permission to use CNRI trademarks or trade name in a trademark sense to endorse or promote products or services of Licensee, or any third party. + + 8. By clicking on the "ACCEPT" button where indicated, or by copying, installing or otherwise using Python 1.6b1, Licensee agrees to be bound by the terms and conditions of this License Agreement. + +ACCEPT + + +CWI LICENSE AGREEMENT FOR PYTHON 0.9.0 THROUGH 1.2 + +Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, The Netherlands. All rights reserved. + + Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation, and that the name of Stichting Mathematisch Centrum or CWI not be used in advertising or publicity pertaining to distribution of the software without specific, written prior permission. + + STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + or +Zope Public License (ZPL) Version 2.0 + +This software is Copyright (c) Zope Corporation (tm) and Contributors. All rights reserved. + +This license has been certified as open source. It has also been designated as GPL compatible by the Free Software Foundation (FSF). + +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + + 1. Redistributions in source code must retain the above 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. + + 3. The name Zope Corporation (tm) must not be used to endorse or promote products derived from this software without prior written permission from Zope Corporation. + + 4. The right to distribute this software or to use it for any purpose does not give you the right to use Servicemarks (sm) or Trademarks (tm) of Zope Corporation. Use of them is covered in a separate agreement (see http://www.zope.com/Marks). + + 5. If any files are modified, you must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. + +Disclaimer + +THIS SOFTWARE IS PROVIDED BY ZOPE CORPORATION ``AS IS'' AND ANY EXPRESSED 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 ZOPE CORPORATION OR ITS 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. + +This software consists of contributions made by Zope Corporation and many individuals on behalf of Zope Corporation. Specific attributions are listed in the accompanying credits file. \ No newline at end of file diff --git a/docs/licenses/xmltodict.txt b/docs/licenses/xmltodict.txt new file mode 100644 index 0000000000..a462778cff --- /dev/null +++ b/docs/licenses/xmltodict.txt @@ -0,0 +1,7 @@ +Copyright (C) 2012 Martin Blech and individual contributors. + +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. From 766b275d269e943c58d2fafe15b8c702ee32e11d Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Fri, 18 Sep 2015 16:00:12 -0400 Subject: [PATCH 06/17] Add READMEs for the license directories. --- docs/bundled_licenses/README | 9 +++++++++ docs/licenses/README | 9 +++++++++ 2 files changed, 18 insertions(+) create mode 100644 docs/bundled_licenses/README create mode 100644 docs/licenses/README diff --git a/docs/bundled_licenses/README b/docs/bundled_licenses/README new file mode 100644 index 0000000000..aaa423648a --- /dev/null +++ b/docs/bundled_licenses/README @@ -0,0 +1,9 @@ +The components listed herein are distributed for your convenience to be used +with Ansible, Inc.’s distribution of Ansible Tower. Ansible, Inc. supports +Tower’s use of and interactions with these components for both development +and production purposes, subject to applicable terms and conditions. Unless +otherwise agreed to in writing, the use of Ansible Tower is subject to the +Ansible Software Subscription and Services Agreement located at +http://www.ansible.com/subscription-agreement. Ansible Tower is a +proprietary product offered by Ansible, Inc. and its use is not intended to +prohibit the rights under any open source license. diff --git a/docs/licenses/README b/docs/licenses/README new file mode 100644 index 0000000000..0209a5d6bf --- /dev/null +++ b/docs/licenses/README @@ -0,0 +1,9 @@ +The components listed herein have been integrated into Ansible, Inc.’s +distribution of Ansible Tower. Ansible, Inc. supports Tower’s use of and +interactions with these components for both development and production +purposes, subject to applicable terms and conditions. Unless otherwise +agreed to in writing, the use of Ansible Tower is subject to the Ansible +Software Subscription and Services Agreement located at +http://www.ansible.com/subscription-agreement. Ansible Tower is a +proprietary product offered by Ansible, Inc. and its use is not intended to +prohibit the rights under any open source license. From e1b658860223f3acd9376a31714e14756fbe4f15 Mon Sep 17 00:00:00 2001 From: James Laska Date: Fri, 18 Sep 2015 15:38:49 -0400 Subject: [PATCH 07/17] Include license information in packaging --- MANIFEST.in | 1 + Makefile | 4 +++- setup.py | 2 ++ 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/MANIFEST.in b/MANIFEST.in index 1825574341..cb40bf39d5 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -8,6 +8,7 @@ recursive-include awx/playbooks *.yml recursive-include awx/lib/site-packages * recursive-include requirements *.txt recursive-include config * +recursive-include docs/licenses * recursive-exclude awx devonly.py* recursive-exclude awx/api/tests * recursive-exclude awx/main/tests * diff --git a/Makefile b/Makefile index a32012d3a5..c89f506797 100644 --- a/Makefile +++ b/Makefile @@ -405,6 +405,7 @@ release_build: tar-build/$(SETUP_TAR_FILE): @mkdir -p tar-build @cp -a setup tar-build/$(SETUP_TAR_NAME) + @rsync -az docs/licenses tar-build/$(SETUP_TAR_NAME)/ @cd tar-build/$(SETUP_TAR_NAME) && sed -e 's#%NAME%#$(NAME)#;s#%VERSION%#$(VERSION)#;s#%RELEASE%#$(RELEASE)#;' group_vars/all.in > group_vars/all @cd tar-build && tar -czf $(SETUP_TAR_FILE) --exclude "*/all.in" $(SETUP_TAR_NAME)/ @ln -sf $(SETUP_TAR_FILE) tar-build/$(SETUP_TAR_LINK) @@ -444,7 +445,8 @@ setup-bundle-build: # TODO - Somehow share implementation with setup_tarball setup-bundle-build/$(OFFLINE_TAR_FILE): cp -a setup setup-bundle-build/$(OFFLINE_TAR_NAME) - cp -a docs/bundled_licenses setup-bundle-build/$(OFFLINE_TAR_NAME)/licenses + rsync -az docs/licenses setup-bundle-build/$(OFFLINE_TAR_NAME)/ + rsync -az docs/bundled_licenses setup-bundle-build/$(OFFLINE_TAR_NAME)/ cd setup-bundle-build/$(OFFLINE_TAR_NAME) && sed -e 's#%NAME%#$(NAME)#;s#%VERSION%#$(VERSION)#;s#%RELEASE%#$(RELEASE)#;' group_vars/all.in > group_vars/all $(PYTHON) $(DEPS_SCRIPT) -d $(DIST) -r $(DIST_MAJOR) -u $(AW_REPO_URL) -s setup-bundle-build/$(OFFLINE_TAR_NAME) -v -v -v cd setup-bundle-build && tar -czf $(OFFLINE_TAR_FILE) --exclude "*/all.in" $(OFFLINE_TAR_NAME)/ diff --git a/setup.py b/setup.py index ff572e5879..1478d5132c 100755 --- a/setup.py +++ b/setup.py @@ -22,6 +22,7 @@ etcpath = "/etc/tower" homedir = "/var/lib/awx" sharedir = "/usr/share/awx" bindir = "/usr/bin" +docdir = "/usr/share/doc/ansible-tower" munin_plugin_path = "/etc/munin/plugins/" munin_plugin_conf_path = "/etc/munin/plugin-conf.d" @@ -122,6 +123,7 @@ setup( "config/awx-httpd-443.conf", "config/awx-munin.conf"]), ("%s" % sharedir, ["tools/scripts/request_tower_configuration.sh",]), + ("%s" % docdir, ["docs/licenses/*",]), ("%s" % munin_plugin_path, ["tools/munin_monitors/tower_jobs", "tools/munin_monitors/callbackr_alive", "tools/munin_monitors/celery_alive", From 3275ff3a189bcc4b8b0eea0d1711d07e7d916571 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Mon, 21 Sep 2015 10:35:48 -0400 Subject: [PATCH 08/17] Fix some typos in file names, and add licenses for some things we have modified in our own repos. --- docs/licenses/{amqp.tx.txt => amqp.txt} | 0 docs/licenses/{ansicon.tx.txt => ansicon.txt} | 0 docs/licenses/{anyjson.tx.txt => anyjson.txt} | 0 docs/licenses/django-jsonfield.txt | 23 ++ docs/licenses/gevent-socketio.txt | 24 ++ docs/licenses/{IP.txt => python-ipy.txt} | 0 docs/licenses/python-keystoneclient.txt | 209 ++++++++++++++++++ docs/licenses/{shad.txt => shade.txt} | 0 8 files changed, 256 insertions(+) rename docs/licenses/{amqp.tx.txt => amqp.txt} (100%) rename docs/licenses/{ansicon.tx.txt => ansicon.txt} (100%) rename docs/licenses/{anyjson.tx.txt => anyjson.txt} (100%) create mode 100644 docs/licenses/django-jsonfield.txt create mode 100644 docs/licenses/gevent-socketio.txt rename docs/licenses/{IP.txt => python-ipy.txt} (100%) create mode 100644 docs/licenses/python-keystoneclient.txt rename docs/licenses/{shad.txt => shade.txt} (100%) diff --git a/docs/licenses/amqp.tx.txt b/docs/licenses/amqp.txt similarity index 100% rename from docs/licenses/amqp.tx.txt rename to docs/licenses/amqp.txt diff --git a/docs/licenses/ansicon.tx.txt b/docs/licenses/ansicon.txt similarity index 100% rename from docs/licenses/ansicon.tx.txt rename to docs/licenses/ansicon.txt diff --git a/docs/licenses/anyjson.tx.txt b/docs/licenses/anyjson.txt similarity index 100% rename from docs/licenses/anyjson.tx.txt rename to docs/licenses/anyjson.txt diff --git a/docs/licenses/django-jsonfield.txt b/docs/licenses/django-jsonfield.txt new file mode 100644 index 0000000000..69b109bc51 --- /dev/null +++ b/docs/licenses/django-jsonfield.txt @@ -0,0 +1,23 @@ +Copyright (c) 2012, Matthew Schinckel. +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. + * 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 MATTHEW SCHINCKEL 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. diff --git a/docs/licenses/gevent-socketio.txt b/docs/licenses/gevent-socketio.txt new file mode 100644 index 0000000000..754d5adf42 --- /dev/null +++ b/docs/licenses/gevent-socketio.txt @@ -0,0 +1,24 @@ +Copyright (c) 2010, Noppo (Jeffrey Gelens) +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 Noppo 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 HOLDER 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. diff --git a/docs/licenses/IP.txt b/docs/licenses/python-ipy.txt similarity index 100% rename from docs/licenses/IP.txt rename to docs/licenses/python-ipy.txt diff --git a/docs/licenses/python-keystoneclient.txt b/docs/licenses/python-keystoneclient.txt new file mode 100644 index 0000000000..32b66114fb --- /dev/null +++ b/docs/licenses/python-keystoneclient.txt @@ -0,0 +1,209 @@ +Copyright (c) 2009 Jacob Kaplan-Moss - initial codebase (< v2.1) +Copyright (c) 2011 Rackspace - OpenStack extensions (>= v2.1) +Copyright (c) 2011 Nebula, Inc - Keystone refactor (>= v2.7) +All rights reserved. + + + 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. + +--- License for python-keystoneclient versions prior to 2.1 --- + +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 above 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. + + 3. Neither the name of this project 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. diff --git a/docs/licenses/shad.txt b/docs/licenses/shade.txt similarity index 100% rename from docs/licenses/shad.txt rename to docs/licenses/shade.txt From a470d9d6e881c81f2e4f0661779065f6bd5d2be5 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Mon, 21 Sep 2015 10:42:40 -0400 Subject: [PATCH 09/17] Correct DJRF/DJRF-mongoengine licenses, rename qsstats license to match pkg name. --- ...o-qsstats.txt => django-qsstats-magic.txt} | 0 .../django-rest-framework-mongoengine.txt | 21 +++++++++++ docs/licenses/django-rest-framework.txt | 37 ++++++++++--------- 3 files changed, 41 insertions(+), 17 deletions(-) rename docs/licenses/{django-qsstats.txt => django-qsstats-magic.txt} (100%) create mode 100644 docs/licenses/django-rest-framework-mongoengine.txt diff --git a/docs/licenses/django-qsstats.txt b/docs/licenses/django-qsstats-magic.txt similarity index 100% rename from docs/licenses/django-qsstats.txt rename to docs/licenses/django-qsstats-magic.txt diff --git a/docs/licenses/django-rest-framework-mongoengine.txt b/docs/licenses/django-rest-framework-mongoengine.txt new file mode 100644 index 0000000000..d7a92e58f1 --- /dev/null +++ b/docs/licenses/django-rest-framework-mongoengine.txt @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2014 Umut Bozkurt + +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. \ No newline at end of file diff --git a/docs/licenses/django-rest-framework.txt b/docs/licenses/django-rest-framework.txt index d7a92e58f1..a1537be1b9 100644 --- a/docs/licenses/django-rest-framework.txt +++ b/docs/licenses/django-rest-framework.txt @@ -1,21 +1,24 @@ -The MIT License (MIT) +License -Copyright (c) 2014 Umut Bozkurt +Copyright (c) 2011-2015, Tom Christie All rights reserved. -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: +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. +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. -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. \ No newline at end of file +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 HOLDER 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. From a0b3647c840d9801fec388e1cd84cbf83357d029 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Mon, 21 Sep 2015 13:35:24 -0400 Subject: [PATCH 10/17] Add full Apache licenses to files, per Pam. --- docs/licenses/gevent-websocket.txt | 203 +++++++++++++++++++++++++++++ docs/licenses/msgpack-python.txt | 202 ++++++++++++++++++++++++++++ docs/licenses/requests.txt | 203 +++++++++++++++++++++++++++++ docs/licenses/timezone-js.txt | 203 +++++++++++++++++++++++++++++ 4 files changed, 811 insertions(+) diff --git a/docs/licenses/gevent-websocket.txt b/docs/licenses/gevent-websocket.txt index 3101606960..083e71cc4d 100644 --- a/docs/licenses/gevent-websocket.txt +++ b/docs/licenses/gevent-websocket.txt @@ -6,6 +6,209 @@ 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. + + + 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. diff --git a/docs/licenses/msgpack-python.txt b/docs/licenses/msgpack-python.txt index f067af3aae..e6c0884502 100644 --- a/docs/licenses/msgpack-python.txt +++ b/docs/licenses/msgpack-python.txt @@ -12,3 +12,205 @@ Copyright (C) 2008-2011 INADA Naoki See the License for the specific language governing permissions and limitations under the License. + + 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. diff --git a/docs/licenses/requests.txt b/docs/licenses/requests.txt index 8c5e758401..ddb6c2df66 100644 --- a/docs/licenses/requests.txt +++ b/docs/licenses/requests.txt @@ -1,5 +1,208 @@ Copyright 2014 Kenneth Reitz + 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. + + + 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 diff --git a/docs/licenses/timezone-js.txt b/docs/licenses/timezone-js.txt index b71d8696d1..b9d2908d3b 100644 --- a/docs/licenses/timezone-js.txt +++ b/docs/licenses/timezone-js.txt @@ -3,3 +3,206 @@ Copyright 2010 Matthew Eernisse (mde@fleegix.org) and Open Source Applications F 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. + + + 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. From 17f9fc626742f1958722baa90c658a92eb9dbaf2 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Mon, 21 Sep 2015 13:45:45 -0400 Subject: [PATCH 11/17] Add more license texts. --- docs/licenses/cryptography.txt | 233 +++++++++++++++++++++++++++++++++ docs/licenses/lxml.txt | 31 +++++ docs/licenses/psycopg2.txt | 167 +++++++++++++++++++++++ 3 files changed, 431 insertions(+) diff --git a/docs/licenses/cryptography.txt b/docs/licenses/cryptography.txt index b11f379efe..0382ecb6cd 100644 --- a/docs/licenses/cryptography.txt +++ b/docs/licenses/cryptography.txt @@ -1,3 +1,236 @@ This software is made available under the terms of *either* of the licenses found in LICENSE.APACHE or LICENSE.BSD. Contributions to cryptography are made under the terms of *both* these licenses. + +LICENSE.BSD: +Copyright (c) Individual contributors. +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 above 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. + + 3. Neither the name of PyCA Cryptography 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. + +LICENSE.APACHE: + + 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. diff --git a/docs/licenses/lxml.txt b/docs/licenses/lxml.txt index 80e7ed8d09..76c02ef807 100644 --- a/docs/licenses/lxml.txt +++ b/docs/licenses/lxml.txt @@ -30,3 +30,34 @@ The isoschematron implementation uses several XSL and RelaxNG resources: and copyright the respective authors as noted (see src/lxml/isoschematron/resources/xsl/RNG2Schtrn.xsl and src/lxml/isoschematron/resources/xsl/XSD2Schtrn.xsl) + +doc/licenses/BSD.txt: +Copyright (c) 2004 Infrae. 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 above 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. + + 3. Neither the name of Infrae 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 INFRAE 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. diff --git a/docs/licenses/psycopg2.txt b/docs/licenses/psycopg2.txt index dd7c124d8c..219c4f2fc9 100644 --- a/docs/licenses/psycopg2.txt +++ b/docs/licenses/psycopg2.txt @@ -52,3 +52,170 @@ psycopg/microprotocol*.{h,c}: be misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. + +... + GNU LESSER GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + + This version of the GNU Lesser General Public License incorporates +the terms and conditions of version 3 of the GNU General Public +License, supplemented by the additional permissions listed below. + + 0. Additional Definitions. + + As used herein, "this License" refers to version 3 of the GNU Lesser +General Public License, and the "GNU GPL" refers to version 3 of the GNU +General Public License. + + "The Library" refers to a covered work governed by this License, +other than an Application or a Combined Work as defined below. + + An "Application" is any work that makes use of an interface provided +by the Library, but which is not otherwise based on the Library. +Defining a subclass of a class defined by the Library is deemed a mode +of using an interface provided by the Library. + + A "Combined Work" is a work produced by combining or linking an +Application with the Library. The particular version of the Library +with which the Combined Work was made is also called the "Linked +Version". + + The "Minimal Corresponding Source" for a Combined Work means the +Corresponding Source for the Combined Work, excluding any source code +for portions of the Combined Work that, considered in isolation, are +based on the Application, and not on the Linked Version. + + The "Corresponding Application Code" for a Combined Work means the +object code and/or source code for the Application, including any data +and utility programs needed for reproducing the Combined Work from the +Application, but excluding the System Libraries of the Combined Work. + + 1. Exception to Section 3 of the GNU GPL. + + You may convey a covered work under sections 3 and 4 of this License +without being bound by section 3 of the GNU GPL. + + 2. Conveying Modified Versions. + + If you modify a copy of the Library, and, in your modifications, a +facility refers to a function or data to be supplied by an Application +that uses the facility (other than as an argument passed when the +facility is invoked), then you may convey a copy of the modified +version: + + a) under this License, provided that you make a good faith effort to + ensure that, in the event an Application does not supply the + function or data, the facility still operates, and performs + whatever part of its purpose remains meaningful, or + + b) under the GNU GPL, with none of the additional permissions of + this License applicable to that copy. + + 3. Object Code Incorporating Material from Library Header Files. + + The object code form of an Application may incorporate material from +a header file that is part of the Library. You may convey such object +code under terms of your choice, provided that, if the incorporated +material is not limited to numerical parameters, data structure +layouts and accessors, or small macros, inline functions and templates +(ten or fewer lines in length), you do both of the following: + + a) Give prominent notice with each copy of the object code that the + Library is used in it and that the Library and its use are + covered by this License. + + b) Accompany the object code with a copy of the GNU GPL and this license + document. + + 4. Combined Works. + + You may convey a Combined Work under terms of your choice that, +taken together, effectively do not restrict modification of the +portions of the Library contained in the Combined Work and reverse +engineering for debugging such modifications, if you also do each of +the following: + + a) Give prominent notice with each copy of the Combined Work that + the Library is used in it and that the Library and its use are + covered by this License. + + b) Accompany the Combined Work with a copy of the GNU GPL and this license + document. + + c) For a Combined Work that displays copyright notices during + execution, include the copyright notice for the Library among + these notices, as well as a reference directing the user to the + copies of the GNU GPL and this license document. + + d) Do one of the following: + + 0) Convey the Minimal Corresponding Source under the terms of this + License, and the Corresponding Application Code in a form + suitable for, and under terms that permit, the user to + recombine or relink the Application with a modified version of + the Linked Version to produce a modified Combined Work, in the + manner specified by section 6 of the GNU GPL for conveying + Corresponding Source. + + 1) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (a) uses at run time + a copy of the Library already present on the user's computer + system, and (b) will operate properly with a modified version + of the Library that is interface-compatible with the Linked + Version. + + e) Provide Installation Information, but only if you would otherwise + be required to provide such information under section 6 of the + GNU GPL, and only to the extent that such information is + necessary to install and execute a modified version of the + Combined Work produced by recombining or relinking the + Application with a modified version of the Linked Version. (If + you use option 4d0, the Installation Information must accompany + the Minimal Corresponding Source and Corresponding Application + Code. If you use option 4d1, you must provide the Installation + Information in the manner specified by section 6 of the GNU GPL + for conveying Corresponding Source.) + + 5. Combined Libraries. + + You may place library facilities that are a work based on the +Library side by side in a single library together with other library +facilities that are not Applications and are not covered by this +License, and convey such a combined library under terms of your +choice, if you do both of the following: + + a) Accompany the combined library with a copy of the same work based + on the Library, uncombined with any other library facilities, + conveyed under the terms of this License. + + b) Give prominent notice with the combined library that part of it + is a work based on the Library, and explaining where to find the + accompanying uncombined form of the same work. + + 6. Revised Versions of the GNU Lesser General Public License. + + The Free Software Foundation may publish revised and/or new versions +of the GNU Lesser General Public License from time to time. Such new +versions will be similar in spirit to the present version, but may +differ in detail to address new problems or concerns. + + Each version is given a distinguishing version number. If the +Library as you received it specifies that a certain numbered version +of the GNU Lesser General Public License "or any later version" +applies to it, you have the option of following the terms and +conditions either of that published version or of any later version +published by the Free Software Foundation. If the Library as you +received it does not specify a version number of the GNU Lesser +General Public License, you may choose any version of the GNU Lesser +General Public License ever published by the Free Software Foundation. + + If the Library as you received it specifies that a proxy can decide +whether future versions of the GNU Lesser General Public License shall +apply, that proxy's public statement of acceptance of any version is +permanent authorization for you to choose that version for the +Library. From e4795111eff79403a780b06ea086d5688958bac4 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Mon, 21 Sep 2015 13:53:49 -0400 Subject: [PATCH 12/17] Remove bundled_licenses - we are shipping the source for bundled items, and therefore do not need to provide this separately. --- Makefile | 1 - docs/bundled_licenses/README | 9 - docs/bundled_licenses/ansible-tower.txt | 5 - docs/bundled_licenses/ansible.txt | 675 ------------------ docs/bundled_licenses/jemalloc.txt | 27 - docs/bundled_licenses/mongodb-org-server.txt | 661 ----------------- docs/bundled_licenses/munin.txt | 64 -- docs/bundled_licenses/openpgm.copying | 504 ------------- docs/bundled_licenses/openpgm.txt | 17 - docs/bundled_licenses/perl-Cache-Cache.txt | 3 - .../perl-Email-Date-Format.txt | 378 ---------- docs/bundled_licenses/perl-HTML-Template.txt | 379 ---------- docs/bundled_licenses/perl-IO-Multiplex.txt | 3 - docs/bundled_licenses/perl-IPC-ShareLite.txt | 3 - .../perl-Log-Dispatch-FileRotate.txt | 3 - docs/bundled_licenses/perl-Log-Dispatch.txt | 207 ------ docs/bundled_licenses/perl-Log-Log4perl.txt | 14 - docs/bundled_licenses/perl-MIME-Lite.txt | 378 ---------- docs/bundled_licenses/perl-MIME-Types.txt | 3 - docs/bundled_licenses/perl-Mail-Sender.txt | 3 - docs/bundled_licenses/perl-Net-CIDR.txt | 6 - docs/bundled_licenses/perl-Net-SNMP.txt | 3 - docs/bundled_licenses/perl-Net-Sendmail.txt | 1 - docs/bundled_licenses/perl-Net-Server.txt | 3 - docs/bundled_licenses/postgresql94.txt | 23 - docs/bundled_licenses/proot.txt | 339 --------- docs/bundled_licenses/python-crypto.txt | 69 -- docs/bundled_licenses/python-ecdsa.txt | 24 - docs/bundled_licenses/python-httplib2.txt | 21 - docs/bundled_licenses/python-keyczar.txt | 202 ------ docs/bundled_licenses/python-meld3.txt | 54 -- docs/bundled_licenses/python-paramiko.txt | 504 ------------- docs/bundled_licenses/redis.txt | 10 - docs/bundled_licenses/sshpass.txt | 340 --------- docs/bundled_licenses/supervisor.txt | 164 ----- docs/bundled_licenses/zeromq3.txt | 674 ----------------- 36 files changed, 5774 deletions(-) delete mode 100644 docs/bundled_licenses/README delete mode 100644 docs/bundled_licenses/ansible-tower.txt delete mode 100644 docs/bundled_licenses/ansible.txt delete mode 100644 docs/bundled_licenses/jemalloc.txt delete mode 100644 docs/bundled_licenses/mongodb-org-server.txt delete mode 100644 docs/bundled_licenses/munin.txt delete mode 100644 docs/bundled_licenses/openpgm.copying delete mode 100644 docs/bundled_licenses/openpgm.txt delete mode 100644 docs/bundled_licenses/perl-Cache-Cache.txt delete mode 100644 docs/bundled_licenses/perl-Email-Date-Format.txt delete mode 100644 docs/bundled_licenses/perl-HTML-Template.txt delete mode 100644 docs/bundled_licenses/perl-IO-Multiplex.txt delete mode 100644 docs/bundled_licenses/perl-IPC-ShareLite.txt delete mode 100644 docs/bundled_licenses/perl-Log-Dispatch-FileRotate.txt delete mode 100644 docs/bundled_licenses/perl-Log-Dispatch.txt delete mode 100644 docs/bundled_licenses/perl-Log-Log4perl.txt delete mode 100644 docs/bundled_licenses/perl-MIME-Lite.txt delete mode 100644 docs/bundled_licenses/perl-MIME-Types.txt delete mode 100644 docs/bundled_licenses/perl-Mail-Sender.txt delete mode 100644 docs/bundled_licenses/perl-Net-CIDR.txt delete mode 100644 docs/bundled_licenses/perl-Net-SNMP.txt delete mode 100644 docs/bundled_licenses/perl-Net-Sendmail.txt delete mode 100644 docs/bundled_licenses/perl-Net-Server.txt delete mode 100644 docs/bundled_licenses/postgresql94.txt delete mode 100644 docs/bundled_licenses/proot.txt delete mode 100644 docs/bundled_licenses/python-crypto.txt delete mode 100644 docs/bundled_licenses/python-ecdsa.txt delete mode 100644 docs/bundled_licenses/python-httplib2.txt delete mode 100644 docs/bundled_licenses/python-keyczar.txt delete mode 100644 docs/bundled_licenses/python-meld3.txt delete mode 100644 docs/bundled_licenses/python-paramiko.txt delete mode 100644 docs/bundled_licenses/redis.txt delete mode 100644 docs/bundled_licenses/sshpass.txt delete mode 100644 docs/bundled_licenses/supervisor.txt delete mode 100644 docs/bundled_licenses/zeromq3.txt diff --git a/Makefile b/Makefile index c89f506797..e0c5e4380f 100644 --- a/Makefile +++ b/Makefile @@ -446,7 +446,6 @@ setup-bundle-build: setup-bundle-build/$(OFFLINE_TAR_FILE): cp -a setup setup-bundle-build/$(OFFLINE_TAR_NAME) rsync -az docs/licenses setup-bundle-build/$(OFFLINE_TAR_NAME)/ - rsync -az docs/bundled_licenses setup-bundle-build/$(OFFLINE_TAR_NAME)/ cd setup-bundle-build/$(OFFLINE_TAR_NAME) && sed -e 's#%NAME%#$(NAME)#;s#%VERSION%#$(VERSION)#;s#%RELEASE%#$(RELEASE)#;' group_vars/all.in > group_vars/all $(PYTHON) $(DEPS_SCRIPT) -d $(DIST) -r $(DIST_MAJOR) -u $(AW_REPO_URL) -s setup-bundle-build/$(OFFLINE_TAR_NAME) -v -v -v cd setup-bundle-build && tar -czf $(OFFLINE_TAR_FILE) --exclude "*/all.in" $(OFFLINE_TAR_NAME)/ diff --git a/docs/bundled_licenses/README b/docs/bundled_licenses/README deleted file mode 100644 index aaa423648a..0000000000 --- a/docs/bundled_licenses/README +++ /dev/null @@ -1,9 +0,0 @@ -The components listed herein are distributed for your convenience to be used -with Ansible, Inc.’s distribution of Ansible Tower. Ansible, Inc. supports -Tower’s use of and interactions with these components for both development -and production purposes, subject to applicable terms and conditions. Unless -otherwise agreed to in writing, the use of Ansible Tower is subject to the -Ansible Software Subscription and Services Agreement located at -http://www.ansible.com/subscription-agreement. Ansible Tower is a -proprietary product offered by Ansible, Inc. and its use is not intended to -prohibit the rights under any open source license. diff --git a/docs/bundled_licenses/ansible-tower.txt b/docs/bundled_licenses/ansible-tower.txt deleted file mode 100644 index 991895d074..0000000000 --- a/docs/bundled_licenses/ansible-tower.txt +++ /dev/null @@ -1,5 +0,0 @@ -The Ansible Tower Software is a commercial software licensed to you pursuant to the Ansible Software Subscription and Services Agreement (“EULA”) located at www.ansible.com/subscription-agreement and an annual Order/Agreement with Ansible, Inc. - -The Ansible Tower Software is free for use up to ten (10) Nodes, any additional Nodes shall be purchased. - -Ansible and Ansible Tower are registered Trademarks of Ansible, Inc. diff --git a/docs/bundled_licenses/ansible.txt b/docs/bundled_licenses/ansible.txt deleted file mode 100644 index 10926e87f1..0000000000 --- a/docs/bundled_licenses/ansible.txt +++ /dev/null @@ -1,675 +0,0 @@ - GNU GENERAL PUBLIC LICENSE - Version 3, 29 June 2007 - - Copyright (C) 2007 Free Software Foundation, Inc. - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - Preamble - - The GNU General Public License is a free, copyleft license for -software and other kinds of works. - - The licenses for most software and other practical works are designed -to take away your freedom to share and change the works. By contrast, -the GNU General Public License is intended to guarantee your freedom to -share and change all versions of a program--to make sure it remains free -software for all its users. We, the Free Software Foundation, use the -GNU General Public License for most of our software; it applies also to -any other work released this way by its authors. You can apply it to -your programs, too. - - When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -them if you wish), that you receive source code or can get it if you -want it, that you can change the software or use pieces of it in new -free programs, and that you know you can do these things. - - To protect your rights, we need to prevent others from denying you -these rights or asking you to surrender the rights. Therefore, you have -certain responsibilities if you distribute copies of the software, or if -you modify it: responsibilities to respect the freedom of others. - - For example, if you distribute copies of such a program, whether -gratis or for a fee, you must pass on to the recipients the same -freedoms that you received. You must make sure that they, too, receive -or can get the source code. And you must show them these terms so they -know their rights. - - Developers that use the GNU GPL protect your rights with two steps: -(1) assert copyright on the software, and (2) offer you this License -giving you legal permission to copy, distribute and/or modify it. - - For the developers' and authors' protection, the GPL clearly explains -that there is no warranty for this free software. For both users' and -authors' sake, the GPL requires that modified versions be marked as -changed, so that their problems will not be attributed erroneously to -authors of previous versions. - - Some devices are designed to deny users access to install or run -modified versions of the software inside them, although the manufacturer -can do so. This is fundamentally incompatible with the aim of -protecting users' freedom to change the software. The systematic -pattern of such abuse occurs in the area of products for individuals to -use, which is precisely where it is most unacceptable. Therefore, we -have designed this version of the GPL to prohibit the practice for those -products. If such problems arise substantially in other domains, we -stand ready to extend this provision to those domains in future versions -of the GPL, as needed to protect the freedom of users. - - Finally, every program is threatened constantly by software patents. -States should not allow patents to restrict development and use of -software on general-purpose computers, but in those that do, we wish to -avoid the special danger that patents applied to a free program could -make it effectively proprietary. To prevent this, the GPL assures that -patents cannot be used to render the program non-free. - - The precise terms and conditions for copying, distribution and -modification follow. - - TERMS AND CONDITIONS - - 0. Definitions. - - "This License" refers to version 3 of the GNU General Public License. - - "Copyright" also means copyright-like laws that apply to other kinds of -works, such as semiconductor masks. - - "The Program" refers to any copyrightable work licensed under this -License. Each licensee is addressed as "you". "Licensees" and -"recipients" may be individuals or organizations. - - To "modify" a work means to copy from or adapt all or part of the work -in a fashion requiring copyright permission, other than the making of an -exact copy. The resulting work is called a "modified version" of the -earlier work or a work "based on" the earlier work. - - A "covered work" means either the unmodified Program or a work based -on the Program. - - To "propagate" a work means to do anything with it that, without -permission, would make you directly or secondarily liable for -infringement under applicable copyright law, except executing it on a -computer or modifying a private copy. Propagation includes copying, -distribution (with or without modification), making available to the -public, and in some countries other activities as well. - - To "convey" a work means any kind of propagation that enables other -parties to make or receive copies. Mere interaction with a user through -a computer network, with no transfer of a copy, is not conveying. - - An interactive user interface displays "Appropriate Legal Notices" -to the extent that it includes a convenient and prominently visible -feature that (1) displays an appropriate copyright notice, and (2) -tells the user that there is no warranty for the work (except to the -extent that warranties are provided), that licensees may convey the -work under this License, and how to view a copy of this License. If -the interface presents a list of user commands or options, such as a -menu, a prominent item in the list meets this criterion. - - 1. Source Code. - - The "source code" for a work means the preferred form of the work -for making modifications to it. "Object code" means any non-source -form of a work. - - A "Standard Interface" means an interface that either is an official -standard defined by a recognized standards body, or, in the case of -interfaces specified for a particular programming language, one that -is widely used among developers working in that language. - - The "System Libraries" of an executable work include anything, other -than the work as a whole, that (a) is included in the normal form of -packaging a Major Component, but which is not part of that Major -Component, and (b) serves only to enable use of the work with that -Major Component, or to implement a Standard Interface for which an -implementation is available to the public in source code form. A -"Major Component", in this context, means a major essential component -(kernel, window system, and so on) of the specific operating system -(if any) on which the executable work runs, or a compiler used to -produce the work, or an object code interpreter used to run it. - - The "Corresponding Source" for a work in object code form means all -the source code needed to generate, install, and (for an executable -work) run the object code and to modify the work, including scripts to -control those activities. However, it does not include the work's -System Libraries, or general-purpose tools or generally available free -programs which are used unmodified in performing those activities but -which are not part of the work. For example, Corresponding Source -includes interface definition files associated with source files for -the work, and the source code for shared libraries and dynamically -linked subprograms that the work is specifically designed to require, -such as by intimate data communication or control flow between those -subprograms and other parts of the work. - - The Corresponding Source need not include anything that users -can regenerate automatically from other parts of the Corresponding -Source. - - The Corresponding Source for a work in source code form is that -same work. - - 2. Basic Permissions. - - All rights granted under this License are granted for the term of -copyright on the Program, and are irrevocable provided the stated -conditions are met. This License explicitly affirms your unlimited -permission to run the unmodified Program. The output from running a -covered work is covered by this License only if the output, given its -content, constitutes a covered work. This License acknowledges your -rights of fair use or other equivalent, as provided by copyright law. - - You may make, run and propagate covered works that you do not -convey, without conditions so long as your license otherwise remains -in force. You may convey covered works to others for the sole purpose -of having them make modifications exclusively for you, or provide you -with facilities for running those works, provided that you comply with -the terms of this License in conveying all material for which you do -not control copyright. Those thus making or running the covered works -for you must do so exclusively on your behalf, under your direction -and control, on terms that prohibit them from making any copies of -your copyrighted material outside their relationship with you. - - Conveying under any other circumstances is permitted solely under -the conditions stated below. Sublicensing is not allowed; section 10 -makes it unnecessary. - - 3. Protecting Users' Legal Rights From Anti-Circumvention Law. - - No covered work shall be deemed part of an effective technological -measure under any applicable law fulfilling obligations under article -11 of the WIPO copyright treaty adopted on 20 December 1996, or -similar laws prohibiting or restricting circumvention of such -measures. - - When you convey a covered work, you waive any legal power to forbid -circumvention of technological measures to the extent such circumvention -is effected by exercising rights under this License with respect to -the covered work, and you disclaim any intention to limit operation or -modification of the work as a means of enforcing, against the work's -users, your or third parties' legal rights to forbid circumvention of -technological measures. - - 4. Conveying Verbatim Copies. - - You may convey verbatim copies of the Program's source code as you -receive it, in any medium, provided that you conspicuously and -appropriately publish on each copy an appropriate copyright notice; -keep intact all notices stating that this License and any -non-permissive terms added in accord with section 7 apply to the code; -keep intact all notices of the absence of any warranty; and give all -recipients a copy of this License along with the Program. - - You may charge any price or no price for each copy that you convey, -and you may offer support or warranty protection for a fee. - - 5. Conveying Modified Source Versions. - - You may convey a work based on the Program, or the modifications to -produce it from the Program, in the form of source code under the -terms of section 4, provided that you also meet all of these conditions: - - a) The work must carry prominent notices stating that you modified - it, and giving a relevant date. - - b) The work must carry prominent notices stating that it is - released under this License and any conditions added under section - 7. This requirement modifies the requirement in section 4 to - "keep intact all notices". - - c) You must license the entire work, as a whole, under this - License to anyone who comes into possession of a copy. This - License will therefore apply, along with any applicable section 7 - additional terms, to the whole of the work, and all its parts, - regardless of how they are packaged. This License gives no - permission to license the work in any other way, but it does not - invalidate such permission if you have separately received it. - - d) If the work has interactive user interfaces, each must display - Appropriate Legal Notices; however, if the Program has interactive - interfaces that do not display Appropriate Legal Notices, your - work need not make them do so. - - A compilation of a covered work with other separate and independent -works, which are not by their nature extensions of the covered work, -and which are not combined with it such as to form a larger program, -in or on a volume of a storage or distribution medium, is called an -"aggregate" if the compilation and its resulting copyright are not -used to limit the access or legal rights of the compilation's users -beyond what the individual works permit. Inclusion of a covered work -in an aggregate does not cause this License to apply to the other -parts of the aggregate. - - 6. Conveying Non-Source Forms. - - You may convey a covered work in object code form under the terms -of sections 4 and 5, provided that you also convey the -machine-readable Corresponding Source under the terms of this License, -in one of these ways: - - a) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by the - Corresponding Source fixed on a durable physical medium - customarily used for software interchange. - - b) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by a - written offer, valid for at least three years and valid for as - long as you offer spare parts or customer support for that product - model, to give anyone who possesses the object code either (1) a - copy of the Corresponding Source for all the software in the - product that is covered by this License, on a durable physical - medium customarily used for software interchange, for a price no - more than your reasonable cost of physically performing this - conveying of source, or (2) access to copy the - Corresponding Source from a network server at no charge. - - c) Convey individual copies of the object code with a copy of the - written offer to provide the Corresponding Source. This - alternative is allowed only occasionally and noncommercially, and - only if you received the object code with such an offer, in accord - with subsection 6b. - - d) Convey the object code by offering access from a designated - place (gratis or for a charge), and offer equivalent access to the - Corresponding Source in the same way through the same place at no - further charge. You need not require recipients to copy the - Corresponding Source along with the object code. If the place to - copy the object code is a network server, the Corresponding Source - may be on a different server (operated by you or a third party) - that supports equivalent copying facilities, provided you maintain - clear directions next to the object code saying where to find the - Corresponding Source. Regardless of what server hosts the - Corresponding Source, you remain obligated to ensure that it is - available for as long as needed to satisfy these requirements. - - e) Convey the object code using peer-to-peer transmission, provided - you inform other peers where the object code and Corresponding - Source of the work are being offered to the general public at no - charge under subsection 6d. - - A separable portion of the object code, whose source code is excluded -from the Corresponding Source as a System Library, need not be -included in conveying the object code work. - - A "User Product" is either (1) a "consumer product", which means any -tangible personal property which is normally used for personal, family, -or household purposes, or (2) anything designed or sold for incorporation -into a dwelling. In determining whether a product is a consumer product, -doubtful cases shall be resolved in favor of coverage. For a particular -product received by a particular user, "normally used" refers to a -typical or common use of that class of product, regardless of the status -of the particular user or of the way in which the particular user -actually uses, or expects or is expected to use, the product. A product -is a consumer product regardless of whether the product has substantial -commercial, industrial or non-consumer uses, unless such uses represent -the only significant mode of use of the product. - - "Installation Information" for a User Product means any methods, -procedures, authorization keys, or other information required to install -and execute modified versions of a covered work in that User Product from -a modified version of its Corresponding Source. The information must -suffice to ensure that the continued functioning of the modified object -code is in no case prevented or interfered with solely because -modification has been made. - - If you convey an object code work under this section in, or with, or -specifically for use in, a User Product, and the conveying occurs as -part of a transaction in which the right of possession and use of the -User Product is transferred to the recipient in perpetuity or for a -fixed term (regardless of how the transaction is characterized), the -Corresponding Source conveyed under this section must be accompanied -by the Installation Information. But this requirement does not apply -if neither you nor any third party retains the ability to install -modified object code on the User Product (for example, the work has -been installed in ROM). - - The requirement to provide Installation Information does not include a -requirement to continue to provide support service, warranty, or updates -for a work that has been modified or installed by the recipient, or for -the User Product in which it has been modified or installed. Access to a -network may be denied when the modification itself materially and -adversely affects the operation of the network or violates the rules and -protocols for communication across the network. - - Corresponding Source conveyed, and Installation Information provided, -in accord with this section must be in a format that is publicly -documented (and with an implementation available to the public in -source code form), and must require no special password or key for -unpacking, reading or copying. - - 7. Additional Terms. - - "Additional permissions" are terms that supplement the terms of this -License by making exceptions from one or more of its conditions. -Additional permissions that are applicable to the entire Program shall -be treated as though they were included in this License, to the extent -that they are valid under applicable law. If additional permissions -apply only to part of the Program, that part may be used separately -under those permissions, but the entire Program remains governed by -this License without regard to the additional permissions. - - When you convey a copy of a covered work, you may at your option -remove any additional permissions from that copy, or from any part of -it. (Additional permissions may be written to require their own -removal in certain cases when you modify the work.) You may place -additional permissions on material, added by you to a covered work, -for which you have or can give appropriate copyright permission. - - Notwithstanding any other provision of this License, for material you -add to a covered work, you may (if authorized by the copyright holders of -that material) supplement the terms of this License with terms: - - a) Disclaiming warranty or limiting liability differently from the - terms of sections 15 and 16 of this License; or - - b) Requiring preservation of specified reasonable legal notices or - author attributions in that material or in the Appropriate Legal - Notices displayed by works containing it; or - - c) Prohibiting misrepresentation of the origin of that material, or - requiring that modified versions of such material be marked in - reasonable ways as different from the original version; or - - d) Limiting the use for publicity purposes of names of licensors or - authors of the material; or - - e) Declining to grant rights under trademark law for use of some - trade names, trademarks, or service marks; or - - f) Requiring indemnification of licensors and authors of that - material by anyone who conveys the material (or modified versions of - it) with contractual assumptions of liability to the recipient, for - any liability that these contractual assumptions directly impose on - those licensors and authors. - - All other non-permissive additional terms are considered "further -restrictions" within the meaning of section 10. If the Program as you -received it, or any part of it, contains a notice stating that it is -governed by this License along with a term that is a further -restriction, you may remove that term. If a license document contains -a further restriction but permits relicensing or conveying under this -License, you may add to a covered work material governed by the terms -of that license document, provided that the further restriction does -not survive such relicensing or conveying. - - If you add terms to a covered work in accord with this section, you -must place, in the relevant source files, a statement of the -additional terms that apply to those files, or a notice indicating -where to find the applicable terms. - - Additional terms, permissive or non-permissive, may be stated in the -form of a separately written license, or stated as exceptions; -the above requirements apply either way. - - 8. Termination. - - You may not propagate or modify a covered work except as expressly -provided under this License. Any attempt otherwise to propagate or -modify it is void, and will automatically terminate your rights under -this License (including any patent licenses granted under the third -paragraph of section 11). - - However, if you cease all violation of this License, then your -license from a particular copyright holder is reinstated (a) -provisionally, unless and until the copyright holder explicitly and -finally terminates your license, and (b) permanently, if the copyright -holder fails to notify you of the violation by some reasonable means -prior to 60 days after the cessation. - - Moreover, your license from a particular copyright holder is -reinstated permanently if the copyright holder notifies you of the -violation by some reasonable means, this is the first time you have -received notice of violation of this License (for any work) from that -copyright holder, and you cure the violation prior to 30 days after -your receipt of the notice. - - Termination of your rights under this section does not terminate the -licenses of parties who have received copies or rights from you under -this License. If your rights have been terminated and not permanently -reinstated, you do not qualify to receive new licenses for the same -material under section 10. - - 9. Acceptance Not Required for Having Copies. - - You are not required to accept this License in order to receive or -run a copy of the Program. Ancillary propagation of a covered work -occurring solely as a consequence of using peer-to-peer transmission -to receive a copy likewise does not require acceptance. However, -nothing other than this License grants you permission to propagate or -modify any covered work. These actions infringe copyright if you do -not accept this License. Therefore, by modifying or propagating a -covered work, you indicate your acceptance of this License to do so. - - 10. Automatic Licensing of Downstream Recipients. - - Each time you convey a covered work, the recipient automatically -receives a license from the original licensors, to run, modify and -propagate that work, subject to this License. You are not responsible -for enforcing compliance by third parties with this License. - - An "entity transaction" is a transaction transferring control of an -organization, or substantially all assets of one, or subdividing an -organization, or merging organizations. If propagation of a covered -work results from an entity transaction, each party to that -transaction who receives a copy of the work also receives whatever -licenses to the work the party's predecessor in interest had or could -give under the previous paragraph, plus a right to possession of the -Corresponding Source of the work from the predecessor in interest, if -the predecessor has it or can get it with reasonable efforts. - - You may not impose any further restrictions on the exercise of the -rights granted or affirmed under this License. For example, you may -not impose a license fee, royalty, or other charge for exercise of -rights granted under this License, and you may not initiate litigation -(including a cross-claim or counterclaim in a lawsuit) alleging that -any patent claim is infringed by making, using, selling, offering for -sale, or importing the Program or any portion of it. - - 11. Patents. - - A "contributor" is a copyright holder who authorizes use under this -License of the Program or a work on which the Program is based. The -work thus licensed is called the contributor's "contributor version". - - A contributor's "essential patent claims" are all patent claims -owned or controlled by the contributor, whether already acquired or -hereafter acquired, that would be infringed by some manner, permitted -by this License, of making, using, or selling its contributor version, -but do not include claims that would be infringed only as a -consequence of further modification of the contributor version. For -purposes of this definition, "control" includes the right to grant -patent sublicenses in a manner consistent with the requirements of -this License. - - Each contributor grants you a non-exclusive, worldwide, royalty-free -patent license under the contributor's essential patent claims, to -make, use, sell, offer for sale, import and otherwise run, modify and -propagate the contents of its contributor version. - - In the following three paragraphs, a "patent license" is any express -agreement or commitment, however denominated, not to enforce a patent -(such as an express permission to practice a patent or covenant not to -sue for patent infringement). To "grant" such a patent license to a -party means to make such an agreement or commitment not to enforce a -patent against the party. - - If you convey a covered work, knowingly relying on a patent license, -and the Corresponding Source of the work is not available for anyone -to copy, free of charge and under the terms of this License, through a -publicly available network server or other readily accessible means, -then you must either (1) cause the Corresponding Source to be so -available, or (2) arrange to deprive yourself of the benefit of the -patent license for this particular work, or (3) arrange, in a manner -consistent with the requirements of this License, to extend the patent -license to downstream recipients. "Knowingly relying" means you have -actual knowledge that, but for the patent license, your conveying the -covered work in a country, or your recipient's use of the covered work -in a country, would infringe one or more identifiable patents in that -country that you have reason to believe are valid. - - If, pursuant to or in connection with a single transaction or -arrangement, you convey, or propagate by procuring conveyance of, a -covered work, and grant a patent license to some of the parties -receiving the covered work authorizing them to use, propagate, modify -or convey a specific copy of the covered work, then the patent license -you grant is automatically extended to all recipients of the covered -work and works based on it. - - A patent license is "discriminatory" if it does not include within -the scope of its coverage, prohibits the exercise of, or is -conditioned on the non-exercise of one or more of the rights that are -specifically granted under this License. You may not convey a covered -work if you are a party to an arrangement with a third party that is -in the business of distributing software, under which you make payment -to the third party based on the extent of your activity of conveying -the work, and under which the third party grants, to any of the -parties who would receive the covered work from you, a discriminatory -patent license (a) in connection with copies of the covered work -conveyed by you (or copies made from those copies), or (b) primarily -for and in connection with specific products or compilations that -contain the covered work, unless you entered into that arrangement, -or that patent license was granted, prior to 28 March 2007. - - Nothing in this License shall be construed as excluding or limiting -any implied license or other defenses to infringement that may -otherwise be available to you under applicable patent law. - - 12. No Surrender of Others' Freedom. - - If conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot convey a -covered work so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you may -not convey it at all. For example, if you agree to terms that obligate you -to collect a royalty for further conveying from those to whom you convey -the Program, the only way you could satisfy both those terms and this -License would be to refrain entirely from conveying the Program. - - 13. Use with the GNU Affero General Public License. - - Notwithstanding any other provision of this License, you have -permission to link or combine any covered work with a work licensed -under version 3 of the GNU Affero General Public License into a single -combined work, and to convey the resulting work. The terms of this -License will continue to apply to the part which is the covered work, -but the special requirements of the GNU Affero General Public License, -section 13, concerning interaction through a network will apply to the -combination as such. - - 14. Revised Versions of this License. - - The Free Software Foundation may publish revised and/or new versions of -the GNU General Public License from time to time. Such new versions will -be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - - Each version is given a distinguishing version number. If the -Program specifies that a certain numbered version of the GNU General -Public License "or any later version" applies to it, you have the -option of following the terms and conditions either of that numbered -version or of any later version published by the Free Software -Foundation. If the Program does not specify a version number of the -GNU General Public License, you may choose any version ever published -by the Free Software Foundation. - - If the Program specifies that a proxy can decide which future -versions of the GNU General Public License can be used, that proxy's -public statement of acceptance of a version permanently authorizes you -to choose that version for the Program. - - Later license versions may give you additional or different -permissions. However, no additional obligations are imposed on any -author or copyright holder as a result of your choosing to follow a -later version. - - 15. Disclaimer of Warranty. - - THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY -APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT -HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "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 THE PROGRAM -IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF -ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - - 16. Limitation of Liability. - - IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS -THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY -GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE -USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF -DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD -PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), -EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF -SUCH DAMAGES. - - 17. Interpretation of Sections 15 and 16. - - If the disclaimer of warranty and limitation of liability provided -above cannot be given local legal effect according to their terms, -reviewing courts shall apply local law that most closely approximates -an absolute waiver of all civil liability in connection with the -Program, unless a warranty or assumption of liability accompanies a -copy of the Program in return for a fee. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Programs - - If you develop a new program, and you want it to be of the greatest -possible use to the public, the best way to achieve this is to make it -free software which everyone can redistribute and change under these terms. - - To do so, attach the following notices to the program. It is safest -to attach them to the start of each source file to most effectively -state the exclusion of warranty; and each file should have at least -the "copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . - -Also add information on how to contact you by electronic and paper mail. - - If the program does terminal interaction, make it output a short -notice like this when it starts in an interactive mode: - - Copyright (C) - This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. - This is free software, and you are welcome to redistribute it - under certain conditions; type `show c' for details. - -The hypothetical commands `show w' and `show c' should show the appropriate -parts of the General Public License. Of course, your program's commands -might be different; for a GUI interface, you would use an "about box". - - You should also get your employer (if you work as a programmer) or school, -if any, to sign a "copyright disclaimer" for the program, if necessary. -For more information on this, and how to apply and follow the GNU GPL, see -. - - The GNU General Public License does not permit incorporating your program -into proprietary programs. If your program is a subroutine library, you -may consider it more useful to permit linking proprietary applications with -the library. If this is what you want to do, use the GNU Lesser General -Public License instead of this License. But first, please read -. - diff --git a/docs/bundled_licenses/jemalloc.txt b/docs/bundled_licenses/jemalloc.txt deleted file mode 100644 index bdda0feb9e..0000000000 --- a/docs/bundled_licenses/jemalloc.txt +++ /dev/null @@ -1,27 +0,0 @@ -Unless otherwise specified, files in the jemalloc source distribution are -subject to the following license: --------------------------------------------------------------------------------- -Copyright (C) 2002-2014 Jason Evans . -All rights reserved. -Copyright (C) 2007-2012 Mozilla Foundation. All rights reserved. -Copyright (C) 2009-2014 Facebook, 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: -1. Redistributions of source code must retain the above copyright notice(s), - this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright notice(s), - 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 COPYRIGHT HOLDER(S) ``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 HOLDER(S) 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. --------------------------------------------------------------------------------- diff --git a/docs/bundled_licenses/mongodb-org-server.txt b/docs/bundled_licenses/mongodb-org-server.txt deleted file mode 100644 index dba13ed2dd..0000000000 --- a/docs/bundled_licenses/mongodb-org-server.txt +++ /dev/null @@ -1,661 +0,0 @@ - GNU AFFERO GENERAL PUBLIC LICENSE - Version 3, 19 November 2007 - - Copyright (C) 2007 Free Software Foundation, Inc. - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - Preamble - - The GNU Affero General Public License is a free, copyleft license for -software and other kinds of works, specifically designed to ensure -cooperation with the community in the case of network server software. - - The licenses for most software and other practical works are designed -to take away your freedom to share and change the works. By contrast, -our General Public Licenses are intended to guarantee your freedom to -share and change all versions of a program--to make sure it remains free -software for all its users. - - When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -them if you wish), that you receive source code or can get it if you -want it, that you can change the software or use pieces of it in new -free programs, and that you know you can do these things. - - Developers that use our General Public Licenses protect your rights -with two steps: (1) assert copyright on the software, and (2) offer -you this License which gives you legal permission to copy, distribute -and/or modify the software. - - A secondary benefit of defending all users' freedom is that -improvements made in alternate versions of the program, if they -receive widespread use, become available for other developers to -incorporate. Many developers of free software are heartened and -encouraged by the resulting cooperation. However, in the case of -software used on network servers, this result may fail to come about. -The GNU General Public License permits making a modified version and -letting the public access it on a server without ever releasing its -source code to the public. - - The GNU Affero General Public License is designed specifically to -ensure that, in such cases, the modified source code becomes available -to the community. It requires the operator of a network server to -provide the source code of the modified version running there to the -users of that server. Therefore, public use of a modified version, on -a publicly accessible server, gives the public access to the source -code of the modified version. - - An older license, called the Affero General Public License and -published by Affero, was designed to accomplish similar goals. This is -a different license, not a version of the Affero GPL, but Affero has -released a new version of the Affero GPL which permits relicensing under -this license. - - The precise terms and conditions for copying, distribution and -modification follow. - - TERMS AND CONDITIONS - - 0. Definitions. - - "This License" refers to version 3 of the GNU Affero General Public License. - - "Copyright" also means copyright-like laws that apply to other kinds of -works, such as semiconductor masks. - - "The Program" refers to any copyrightable work licensed under this -License. Each licensee is addressed as "you". "Licensees" and -"recipients" may be individuals or organizations. - - To "modify" a work means to copy from or adapt all or part of the work -in a fashion requiring copyright permission, other than the making of an -exact copy. The resulting work is called a "modified version" of the -earlier work or a work "based on" the earlier work. - - A "covered work" means either the unmodified Program or a work based -on the Program. - - To "propagate" a work means to do anything with it that, without -permission, would make you directly or secondarily liable for -infringement under applicable copyright law, except executing it on a -computer or modifying a private copy. Propagation includes copying, -distribution (with or without modification), making available to the -public, and in some countries other activities as well. - - To "convey" a work means any kind of propagation that enables other -parties to make or receive copies. Mere interaction with a user through -a computer network, with no transfer of a copy, is not conveying. - - An interactive user interface displays "Appropriate Legal Notices" -to the extent that it includes a convenient and prominently visible -feature that (1) displays an appropriate copyright notice, and (2) -tells the user that there is no warranty for the work (except to the -extent that warranties are provided), that licensees may convey the -work under this License, and how to view a copy of this License. If -the interface presents a list of user commands or options, such as a -menu, a prominent item in the list meets this criterion. - - 1. Source Code. - - The "source code" for a work means the preferred form of the work -for making modifications to it. "Object code" means any non-source -form of a work. - - A "Standard Interface" means an interface that either is an official -standard defined by a recognized standards body, or, in the case of -interfaces specified for a particular programming language, one that -is widely used among developers working in that language. - - The "System Libraries" of an executable work include anything, other -than the work as a whole, that (a) is included in the normal form of -packaging a Major Component, but which is not part of that Major -Component, and (b) serves only to enable use of the work with that -Major Component, or to implement a Standard Interface for which an -implementation is available to the public in source code form. A -"Major Component", in this context, means a major essential component -(kernel, window system, and so on) of the specific operating system -(if any) on which the executable work runs, or a compiler used to -produce the work, or an object code interpreter used to run it. - - The "Corresponding Source" for a work in object code form means all -the source code needed to generate, install, and (for an executable -work) run the object code and to modify the work, including scripts to -control those activities. However, it does not include the work's -System Libraries, or general-purpose tools or generally available free -programs which are used unmodified in performing those activities but -which are not part of the work. For example, Corresponding Source -includes interface definition files associated with source files for -the work, and the source code for shared libraries and dynamically -linked subprograms that the work is specifically designed to require, -such as by intimate data communication or control flow between those -subprograms and other parts of the work. - - The Corresponding Source need not include anything that users -can regenerate automatically from other parts of the Corresponding -Source. - - The Corresponding Source for a work in source code form is that -same work. - - 2. Basic Permissions. - - All rights granted under this License are granted for the term of -copyright on the Program, and are irrevocable provided the stated -conditions are met. This License explicitly affirms your unlimited -permission to run the unmodified Program. The output from running a -covered work is covered by this License only if the output, given its -content, constitutes a covered work. This License acknowledges your -rights of fair use or other equivalent, as provided by copyright law. - - You may make, run and propagate covered works that you do not -convey, without conditions so long as your license otherwise remains -in force. You may convey covered works to others for the sole purpose -of having them make modifications exclusively for you, or provide you -with facilities for running those works, provided that you comply with -the terms of this License in conveying all material for which you do -not control copyright. Those thus making or running the covered works -for you must do so exclusively on your behalf, under your direction -and control, on terms that prohibit them from making any copies of -your copyrighted material outside their relationship with you. - - Conveying under any other circumstances is permitted solely under -the conditions stated below. Sublicensing is not allowed; section 10 -makes it unnecessary. - - 3. Protecting Users' Legal Rights From Anti-Circumvention Law. - - No covered work shall be deemed part of an effective technological -measure under any applicable law fulfilling obligations under article -11 of the WIPO copyright treaty adopted on 20 December 1996, or -similar laws prohibiting or restricting circumvention of such -measures. - - When you convey a covered work, you waive any legal power to forbid -circumvention of technological measures to the extent such circumvention -is effected by exercising rights under this License with respect to -the covered work, and you disclaim any intention to limit operation or -modification of the work as a means of enforcing, against the work's -users, your or third parties' legal rights to forbid circumvention of -technological measures. - - 4. Conveying Verbatim Copies. - - You may convey verbatim copies of the Program's source code as you -receive it, in any medium, provided that you conspicuously and -appropriately publish on each copy an appropriate copyright notice; -keep intact all notices stating that this License and any -non-permissive terms added in accord with section 7 apply to the code; -keep intact all notices of the absence of any warranty; and give all -recipients a copy of this License along with the Program. - - You may charge any price or no price for each copy that you convey, -and you may offer support or warranty protection for a fee. - - 5. Conveying Modified Source Versions. - - You may convey a work based on the Program, or the modifications to -produce it from the Program, in the form of source code under the -terms of section 4, provided that you also meet all of these conditions: - - a) The work must carry prominent notices stating that you modified - it, and giving a relevant date. - - b) The work must carry prominent notices stating that it is - released under this License and any conditions added under section - 7. This requirement modifies the requirement in section 4 to - "keep intact all notices". - - c) You must license the entire work, as a whole, under this - License to anyone who comes into possession of a copy. This - License will therefore apply, along with any applicable section 7 - additional terms, to the whole of the work, and all its parts, - regardless of how they are packaged. This License gives no - permission to license the work in any other way, but it does not - invalidate such permission if you have separately received it. - - d) If the work has interactive user interfaces, each must display - Appropriate Legal Notices; however, if the Program has interactive - interfaces that do not display Appropriate Legal Notices, your - work need not make them do so. - - A compilation of a covered work with other separate and independent -works, which are not by their nature extensions of the covered work, -and which are not combined with it such as to form a larger program, -in or on a volume of a storage or distribution medium, is called an -"aggregate" if the compilation and its resulting copyright are not -used to limit the access or legal rights of the compilation's users -beyond what the individual works permit. Inclusion of a covered work -in an aggregate does not cause this License to apply to the other -parts of the aggregate. - - 6. Conveying Non-Source Forms. - - You may convey a covered work in object code form under the terms -of sections 4 and 5, provided that you also convey the -machine-readable Corresponding Source under the terms of this License, -in one of these ways: - - a) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by the - Corresponding Source fixed on a durable physical medium - customarily used for software interchange. - - b) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by a - written offer, valid for at least three years and valid for as - long as you offer spare parts or customer support for that product - model, to give anyone who possesses the object code either (1) a - copy of the Corresponding Source for all the software in the - product that is covered by this License, on a durable physical - medium customarily used for software interchange, for a price no - more than your reasonable cost of physically performing this - conveying of source, or (2) access to copy the - Corresponding Source from a network server at no charge. - - c) Convey individual copies of the object code with a copy of the - written offer to provide the Corresponding Source. This - alternative is allowed only occasionally and noncommercially, and - only if you received the object code with such an offer, in accord - with subsection 6b. - - d) Convey the object code by offering access from a designated - place (gratis or for a charge), and offer equivalent access to the - Corresponding Source in the same way through the same place at no - further charge. You need not require recipients to copy the - Corresponding Source along with the object code. If the place to - copy the object code is a network server, the Corresponding Source - may be on a different server (operated by you or a third party) - that supports equivalent copying facilities, provided you maintain - clear directions next to the object code saying where to find the - Corresponding Source. Regardless of what server hosts the - Corresponding Source, you remain obligated to ensure that it is - available for as long as needed to satisfy these requirements. - - e) Convey the object code using peer-to-peer transmission, provided - you inform other peers where the object code and Corresponding - Source of the work are being offered to the general public at no - charge under subsection 6d. - - A separable portion of the object code, whose source code is excluded -from the Corresponding Source as a System Library, need not be -included in conveying the object code work. - - A "User Product" is either (1) a "consumer product", which means any -tangible personal property which is normally used for personal, family, -or household purposes, or (2) anything designed or sold for incorporation -into a dwelling. In determining whether a product is a consumer product, -doubtful cases shall be resolved in favor of coverage. For a particular -product received by a particular user, "normally used" refers to a -typical or common use of that class of product, regardless of the status -of the particular user or of the way in which the particular user -actually uses, or expects or is expected to use, the product. A product -is a consumer product regardless of whether the product has substantial -commercial, industrial or non-consumer uses, unless such uses represent -the only significant mode of use of the product. - - "Installation Information" for a User Product means any methods, -procedures, authorization keys, or other information required to install -and execute modified versions of a covered work in that User Product from -a modified version of its Corresponding Source. The information must -suffice to ensure that the continued functioning of the modified object -code is in no case prevented or interfered with solely because -modification has been made. - - If you convey an object code work under this section in, or with, or -specifically for use in, a User Product, and the conveying occurs as -part of a transaction in which the right of possession and use of the -User Product is transferred to the recipient in perpetuity or for a -fixed term (regardless of how the transaction is characterized), the -Corresponding Source conveyed under this section must be accompanied -by the Installation Information. But this requirement does not apply -if neither you nor any third party retains the ability to install -modified object code on the User Product (for example, the work has -been installed in ROM). - - The requirement to provide Installation Information does not include a -requirement to continue to provide support service, warranty, or updates -for a work that has been modified or installed by the recipient, or for -the User Product in which it has been modified or installed. Access to a -network may be denied when the modification itself materially and -adversely affects the operation of the network or violates the rules and -protocols for communication across the network. - - Corresponding Source conveyed, and Installation Information provided, -in accord with this section must be in a format that is publicly -documented (and with an implementation available to the public in -source code form), and must require no special password or key for -unpacking, reading or copying. - - 7. Additional Terms. - - "Additional permissions" are terms that supplement the terms of this -License by making exceptions from one or more of its conditions. -Additional permissions that are applicable to the entire Program shall -be treated as though they were included in this License, to the extent -that they are valid under applicable law. If additional permissions -apply only to part of the Program, that part may be used separately -under those permissions, but the entire Program remains governed by -this License without regard to the additional permissions. - - When you convey a copy of a covered work, you may at your option -remove any additional permissions from that copy, or from any part of -it. (Additional permissions may be written to require their own -removal in certain cases when you modify the work.) You may place -additional permissions on material, added by you to a covered work, -for which you have or can give appropriate copyright permission. - - Notwithstanding any other provision of this License, for material you -add to a covered work, you may (if authorized by the copyright holders of -that material) supplement the terms of this License with terms: - - a) Disclaiming warranty or limiting liability differently from the - terms of sections 15 and 16 of this License; or - - b) Requiring preservation of specified reasonable legal notices or - author attributions in that material or in the Appropriate Legal - Notices displayed by works containing it; or - - c) Prohibiting misrepresentation of the origin of that material, or - requiring that modified versions of such material be marked in - reasonable ways as different from the original version; or - - d) Limiting the use for publicity purposes of names of licensors or - authors of the material; or - - e) Declining to grant rights under trademark law for use of some - trade names, trademarks, or service marks; or - - f) Requiring indemnification of licensors and authors of that - material by anyone who conveys the material (or modified versions of - it) with contractual assumptions of liability to the recipient, for - any liability that these contractual assumptions directly impose on - those licensors and authors. - - All other non-permissive additional terms are considered "further -restrictions" within the meaning of section 10. If the Program as you -received it, or any part of it, contains a notice stating that it is -governed by this License along with a term that is a further -restriction, you may remove that term. If a license document contains -a further restriction but permits relicensing or conveying under this -License, you may add to a covered work material governed by the terms -of that license document, provided that the further restriction does -not survive such relicensing or conveying. - - If you add terms to a covered work in accord with this section, you -must place, in the relevant source files, a statement of the -additional terms that apply to those files, or a notice indicating -where to find the applicable terms. - - Additional terms, permissive or non-permissive, may be stated in the -form of a separately written license, or stated as exceptions; -the above requirements apply either way. - - 8. Termination. - - You may not propagate or modify a covered work except as expressly -provided under this License. Any attempt otherwise to propagate or -modify it is void, and will automatically terminate your rights under -this License (including any patent licenses granted under the third -paragraph of section 11). - - However, if you cease all violation of this License, then your -license from a particular copyright holder is reinstated (a) -provisionally, unless and until the copyright holder explicitly and -finally terminates your license, and (b) permanently, if the copyright -holder fails to notify you of the violation by some reasonable means -prior to 60 days after the cessation. - - Moreover, your license from a particular copyright holder is -reinstated permanently if the copyright holder notifies you of the -violation by some reasonable means, this is the first time you have -received notice of violation of this License (for any work) from that -copyright holder, and you cure the violation prior to 30 days after -your receipt of the notice. - - Termination of your rights under this section does not terminate the -licenses of parties who have received copies or rights from you under -this License. If your rights have been terminated and not permanently -reinstated, you do not qualify to receive new licenses for the same -material under section 10. - - 9. Acceptance Not Required for Having Copies. - - You are not required to accept this License in order to receive or -run a copy of the Program. Ancillary propagation of a covered work -occurring solely as a consequence of using peer-to-peer transmission -to receive a copy likewise does not require acceptance. However, -nothing other than this License grants you permission to propagate or -modify any covered work. These actions infringe copyright if you do -not accept this License. Therefore, by modifying or propagating a -covered work, you indicate your acceptance of this License to do so. - - 10. Automatic Licensing of Downstream Recipients. - - Each time you convey a covered work, the recipient automatically -receives a license from the original licensors, to run, modify and -propagate that work, subject to this License. You are not responsible -for enforcing compliance by third parties with this License. - - An "entity transaction" is a transaction transferring control of an -organization, or substantially all assets of one, or subdividing an -organization, or merging organizations. If propagation of a covered -work results from an entity transaction, each party to that -transaction who receives a copy of the work also receives whatever -licenses to the work the party's predecessor in interest had or could -give under the previous paragraph, plus a right to possession of the -Corresponding Source of the work from the predecessor in interest, if -the predecessor has it or can get it with reasonable efforts. - - You may not impose any further restrictions on the exercise of the -rights granted or affirmed under this License. For example, you may -not impose a license fee, royalty, or other charge for exercise of -rights granted under this License, and you may not initiate litigation -(including a cross-claim or counterclaim in a lawsuit) alleging that -any patent claim is infringed by making, using, selling, offering for -sale, or importing the Program or any portion of it. - - 11. Patents. - - A "contributor" is a copyright holder who authorizes use under this -License of the Program or a work on which the Program is based. The -work thus licensed is called the contributor's "contributor version". - - A contributor's "essential patent claims" are all patent claims -owned or controlled by the contributor, whether already acquired or -hereafter acquired, that would be infringed by some manner, permitted -by this License, of making, using, or selling its contributor version, -but do not include claims that would be infringed only as a -consequence of further modification of the contributor version. For -purposes of this definition, "control" includes the right to grant -patent sublicenses in a manner consistent with the requirements of -this License. - - Each contributor grants you a non-exclusive, worldwide, royalty-free -patent license under the contributor's essential patent claims, to -make, use, sell, offer for sale, import and otherwise run, modify and -propagate the contents of its contributor version. - - In the following three paragraphs, a "patent license" is any express -agreement or commitment, however denominated, not to enforce a patent -(such as an express permission to practice a patent or covenant not to -sue for patent infringement). To "grant" such a patent license to a -party means to make such an agreement or commitment not to enforce a -patent against the party. - - If you convey a covered work, knowingly relying on a patent license, -and the Corresponding Source of the work is not available for anyone -to copy, free of charge and under the terms of this License, through a -publicly available network server or other readily accessible means, -then you must either (1) cause the Corresponding Source to be so -available, or (2) arrange to deprive yourself of the benefit of the -patent license for this particular work, or (3) arrange, in a manner -consistent with the requirements of this License, to extend the patent -license to downstream recipients. "Knowingly relying" means you have -actual knowledge that, but for the patent license, your conveying the -covered work in a country, or your recipient's use of the covered work -in a country, would infringe one or more identifiable patents in that -country that you have reason to believe are valid. - - If, pursuant to or in connection with a single transaction or -arrangement, you convey, or propagate by procuring conveyance of, a -covered work, and grant a patent license to some of the parties -receiving the covered work authorizing them to use, propagate, modify -or convey a specific copy of the covered work, then the patent license -you grant is automatically extended to all recipients of the covered -work and works based on it. - - A patent license is "discriminatory" if it does not include within -the scope of its coverage, prohibits the exercise of, or is -conditioned on the non-exercise of one or more of the rights that are -specifically granted under this License. You may not convey a covered -work if you are a party to an arrangement with a third party that is -in the business of distributing software, under which you make payment -to the third party based on the extent of your activity of conveying -the work, and under which the third party grants, to any of the -parties who would receive the covered work from you, a discriminatory -patent license (a) in connection with copies of the covered work -conveyed by you (or copies made from those copies), or (b) primarily -for and in connection with specific products or compilations that -contain the covered work, unless you entered into that arrangement, -or that patent license was granted, prior to 28 March 2007. - - Nothing in this License shall be construed as excluding or limiting -any implied license or other defenses to infringement that may -otherwise be available to you under applicable patent law. - - 12. No Surrender of Others' Freedom. - - If conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot convey a -covered work so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you may -not convey it at all. For example, if you agree to terms that obligate you -to collect a royalty for further conveying from those to whom you convey -the Program, the only way you could satisfy both those terms and this -License would be to refrain entirely from conveying the Program. - - 13. Remote Network Interaction; Use with the GNU General Public License. - - Notwithstanding any other provision of this License, if you modify the -Program, your modified version must prominently offer all users -interacting with it remotely through a computer network (if your version -supports such interaction) an opportunity to receive the Corresponding -Source of your version by providing access to the Corresponding Source -from a network server at no charge, through some standard or customary -means of facilitating copying of software. This Corresponding Source -shall include the Corresponding Source for any work covered by version 3 -of the GNU General Public License that is incorporated pursuant to the -following paragraph. - - Notwithstanding any other provision of this License, you have -permission to link or combine any covered work with a work licensed -under version 3 of the GNU General Public License into a single -combined work, and to convey the resulting work. The terms of this -License will continue to apply to the part which is the covered work, -but the work with which it is combined will remain governed by version -3 of the GNU General Public License. - - 14. Revised Versions of this License. - - The Free Software Foundation may publish revised and/or new versions of -the GNU Affero General Public License from time to time. Such new versions -will be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - - Each version is given a distinguishing version number. If the -Program specifies that a certain numbered version of the GNU Affero General -Public License "or any later version" applies to it, you have the -option of following the terms and conditions either of that numbered -version or of any later version published by the Free Software -Foundation. If the Program does not specify a version number of the -GNU Affero General Public License, you may choose any version ever published -by the Free Software Foundation. - - If the Program specifies that a proxy can decide which future -versions of the GNU Affero General Public License can be used, that proxy's -public statement of acceptance of a version permanently authorizes you -to choose that version for the Program. - - Later license versions may give you additional or different -permissions. However, no additional obligations are imposed on any -author or copyright holder as a result of your choosing to follow a -later version. - - 15. Disclaimer of Warranty. - - THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY -APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT -HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "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 THE PROGRAM -IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF -ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - - 16. Limitation of Liability. - - IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS -THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY -GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE -USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF -DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD -PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), -EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF -SUCH DAMAGES. - - 17. Interpretation of Sections 15 and 16. - - If the disclaimer of warranty and limitation of liability provided -above cannot be given local legal effect according to their terms, -reviewing courts shall apply local law that most closely approximates -an absolute waiver of all civil liability in connection with the -Program, unless a warranty or assumption of liability accompanies a -copy of the Program in return for a fee. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Programs - - If you develop a new program, and you want it to be of the greatest -possible use to the public, the best way to achieve this is to make it -free software which everyone can redistribute and change under these terms. - - To do so, attach the following notices to the program. It is safest -to attach them to the start of each source file to most effectively -state the exclusion of warranty; and each file should have at least -the "copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU Affero General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU Affero General Public License for more details. - - You should have received a copy of the GNU Affero General Public License - along with this program. If not, see . - -Also add information on how to contact you by electronic and paper mail. - - If your software can interact with users remotely through a computer -network, you should also make sure that it provides a way for users to -get its source. For example, if your program is a web application, its -interface could display a "Source" link that leads users to an archive -of the code. There are many ways you could offer source, and different -solutions will be better for different programs; see section 13 for the -specific requirements. - - You should also get your employer (if you work as a programmer) or school, -if any, to sign a "copyright disclaimer" for the program, if necessary. -For more information on this, and how to apply and follow the GNU AGPL, see -. diff --git a/docs/bundled_licenses/munin.txt b/docs/bundled_licenses/munin.txt deleted file mode 100644 index b0bb29e150..0000000000 --- a/docs/bundled_licenses/munin.txt +++ /dev/null @@ -1,64 +0,0 @@ -Munin - a network-wide graphing framework - - Copyright (C) 2002-2009 Jimmy Olsen, et al. - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; version 2 dated June, 1991. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License along - with this program; if not, write to the Free Software Foundation, Inc., - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. - -Includes the font Bitstream Vera Mono, which is under the following license: - - Copyright (C) 2003 Bitstream, Inc. - All Rights Reserved. Bitstream Vera is a trademark of Bitstream, Inc. - - Permission is hereby granted, free of charge, to any person obtaining a - copy of the fonts accompanying this license ("Fonts") and associated - documentation files (the "Font Software"), to reproduce and distribute - the Font Software, including without limitation the rights to use, copy, - merge, publish, distribute, and/or sell copies of the Font Software, and - to permit persons to whom the Font Software is furnished to do so, - subject to the following conditions: - - The above copyright and trademark notices and this permission notice - shall be included in all copies of one or more of the Font Software - typefaces. - - The Font Software may be modified, altered, or added to, and in - particular the designs of glyphs or characters in the Fonts may be - modified and additional glyphs or characters may be added to the Fonts, - only if the fonts are renamed to names not containing either the words - "Bitstream" or the word "Vera". - - This License becomes null and void to the extent applicable to Fonts or - Font Software that has been modified and is distributed under the - "Bitstream Vera" names. - - The Font Software may be sold as part of a larger software package but - no copy of one or more of the Font Software typefaces may be sold by - itself. - - THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF - COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL - BITSTREAM OR THE GNOME FOUNDATION BE LIABLE FOR ANY CLAIM, DAMAGES OR - OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, - OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR - OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT - SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. - - Except as contained in this notice, the names of Gnome, the Gnome - Foundation, and Bitstream Inc., shall not be used in advertising or - otherwise to promote the sale, use or other dealings in this Font - Software without prior written authorization from the Gnome Foundation - or Bitstream Inc., respectively. For further information, contact: - . diff --git a/docs/bundled_licenses/openpgm.copying b/docs/bundled_licenses/openpgm.copying deleted file mode 100644 index 5ab7695ab8..0000000000 --- a/docs/bundled_licenses/openpgm.copying +++ /dev/null @@ -1,504 +0,0 @@ - GNU LESSER GENERAL PUBLIC LICENSE - Version 2.1, February 1999 - - Copyright (C) 1991, 1999 Free Software Foundation, Inc. - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - -[This is the first released version of the Lesser GPL. It also counts - as the successor of the GNU Library Public License, version 2, hence - the version number 2.1.] - - Preamble - - The licenses for most software are designed to take away your -freedom to share and change it. By contrast, the GNU General Public -Licenses are intended to guarantee your freedom to share and change -free software--to make sure the software is free for all its users. - - This license, the Lesser General Public License, applies to some -specially designated software packages--typically libraries--of the -Free Software Foundation and other authors who decide to use it. You -can use it too, but we suggest you first think carefully about whether -this license or the ordinary General Public License is the better -strategy to use in any particular case, based on the explanations below. - - When we speak of free software, we are referring to freedom of use, -not price. Our General Public Licenses are designed to make sure that -you have the freedom to distribute copies of free software (and charge -for this service if you wish); that you receive source code or can get -it if you want it; that you can change the software and use pieces of -it in new free programs; and that you are informed that you can do -these things. - - To protect your rights, we need to make restrictions that forbid -distributors to deny you these rights or to ask you to surrender these -rights. These restrictions translate to certain responsibilities for -you if you distribute copies of the library or if you modify it. - - For example, if you distribute copies of the library, whether gratis -or for a fee, you must give the recipients all the rights that we gave -you. You must make sure that they, too, receive or can get the source -code. If you link other code with the library, you must provide -complete object files to the recipients, so that they can relink them -with the library after making changes to the library and recompiling -it. And you must show them these terms so they know their rights. - - We protect your rights with a two-step method: (1) we copyright the -library, and (2) we offer you this license, which gives you legal -permission to copy, distribute and/or modify the library. - - To protect each distributor, we want to make it very clear that -there is no warranty for the free library. Also, if the library is -modified by someone else and passed on, the recipients should know -that what they have is not the original version, so that the original -author's reputation will not be affected by problems that might be -introduced by others. - - Finally, software patents pose a constant threat to the existence of -any free program. We wish to make sure that a company cannot -effectively restrict the users of a free program by obtaining a -restrictive license from a patent holder. Therefore, we insist that -any patent license obtained for a version of the library must be -consistent with the full freedom of use specified in this license. - - Most GNU software, including some libraries, is covered by the -ordinary GNU General Public License. This license, the GNU Lesser -General Public License, applies to certain designated libraries, and -is quite different from the ordinary General Public License. We use -this license for certain libraries in order to permit linking those -libraries into non-free programs. - - When a program is linked with a library, whether statically or using -a shared library, the combination of the two is legally speaking a -combined work, a derivative of the original library. The ordinary -General Public License therefore permits such linking only if the -entire combination fits its criteria of freedom. The Lesser General -Public License permits more lax criteria for linking other code with -the library. - - We call this license the "Lesser" General Public License because it -does Less to protect the user's freedom than the ordinary General -Public License. It also provides other free software developers Less -of an advantage over competing non-free programs. These disadvantages -are the reason we use the ordinary General Public License for many -libraries. However, the Lesser license provides advantages in certain -special circumstances. - - For example, on rare occasions, there may be a special need to -encourage the widest possible use of a certain library, so that it becomes -a de-facto standard. To achieve this, non-free programs must be -allowed to use the library. A more frequent case is that a free -library does the same job as widely used non-free libraries. In this -case, there is little to gain by limiting the free library to free -software only, so we use the Lesser General Public License. - - In other cases, permission to use a particular library in non-free -programs enables a greater number of people to use a large body of -free software. For example, permission to use the GNU C Library in -non-free programs enables many more people to use the whole GNU -operating system, as well as its variant, the GNU/Linux operating -system. - - Although the Lesser General Public License is Less protective of the -users' freedom, it does ensure that the user of a program that is -linked with the Library has the freedom and the wherewithal to run -that program using a modified version of the Library. - - The precise terms and conditions for copying, distribution and -modification follow. Pay close attention to the difference between a -"work based on the library" and a "work that uses the library". The -former contains code derived from the library, whereas the latter must -be combined with the library in order to run. - - GNU LESSER GENERAL PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - 0. This License Agreement applies to any software library or other -program which contains a notice placed by the copyright holder or -other authorized party saying it may be distributed under the terms of -this Lesser General Public License (also called "this License"). -Each licensee is addressed as "you". - - A "library" means a collection of software functions and/or data -prepared so as to be conveniently linked with application programs -(which use some of those functions and data) to form executables. - - The "Library", below, refers to any such software library or work -which has been distributed under these terms. A "work based on the -Library" means either the Library or any derivative work under -copyright law: that is to say, a work containing the Library or a -portion of it, either verbatim or with modifications and/or translated -straightforwardly into another language. (Hereinafter, translation is -included without limitation in the term "modification".) - - "Source code" for a work means the preferred form of the work for -making modifications to it. For a library, complete source code means -all the source code for all modules it contains, plus any associated -interface definition files, plus the scripts used to control compilation -and installation of the library. - - Activities other than copying, distribution and modification are not -covered by this License; they are outside its scope. The act of -running a program using the Library is not restricted, and output from -such a program is covered only if its contents constitute a work based -on the Library (independent of the use of the Library in a tool for -writing it). Whether that is true depends on what the Library does -and what the program that uses the Library does. - - 1. You may copy and distribute verbatim copies of the Library's -complete source code as you receive it, in any medium, provided that -you conspicuously and appropriately publish on each copy an -appropriate copyright notice and disclaimer of warranty; keep intact -all the notices that refer to this License and to the absence of any -warranty; and distribute a copy of this License along with the -Library. - - You may charge a fee for the physical act of transferring a copy, -and you may at your option offer warranty protection in exchange for a -fee. - - 2. You may modify your copy or copies of the Library or any portion -of it, thus forming a work based on the Library, and copy and -distribute such modifications or work under the terms of Section 1 -above, provided that you also meet all of these conditions: - - a) The modified work must itself be a software library. - - b) You must cause the files modified to carry prominent notices - stating that you changed the files and the date of any change. - - c) You must cause the whole of the work to be licensed at no - charge to all third parties under the terms of this License. - - d) If a facility in the modified Library refers to a function or a - table of data to be supplied by an application program that uses - the facility, other than as an argument passed when the facility - is invoked, then you must make a good faith effort to ensure that, - in the event an application does not supply such function or - table, the facility still operates, and performs whatever part of - its purpose remains meaningful. - - (For example, a function in a library to compute square roots has - a purpose that is entirely well-defined independent of the - application. Therefore, Subsection 2d requires that any - application-supplied function or table used by this function must - be optional: if the application does not supply it, the square - root function must still compute square roots.) - -These requirements apply to the modified work as a whole. If -identifiable sections of that work are not derived from the Library, -and can be reasonably considered independent and separate works in -themselves, then this License, and its terms, do not apply to those -sections when you distribute them as separate works. But when you -distribute the same sections as part of a whole which is a work based -on the Library, the distribution of the whole must be on the terms of -this License, whose permissions for other licensees extend to the -entire whole, and thus to each and every part regardless of who wrote -it. - -Thus, it is not the intent of this section to claim rights or contest -your rights to work written entirely by you; rather, the intent is to -exercise the right to control the distribution of derivative or -collective works based on the Library. - -In addition, mere aggregation of another work not based on the Library -with the Library (or with a work based on the Library) on a volume of -a storage or distribution medium does not bring the other work under -the scope of this License. - - 3. You may opt to apply the terms of the ordinary GNU General Public -License instead of this License to a given copy of the Library. To do -this, you must alter all the notices that refer to this License, so -that they refer to the ordinary GNU General Public License, version 2, -instead of to this License. (If a newer version than version 2 of the -ordinary GNU General Public License has appeared, then you can specify -that version instead if you wish.) Do not make any other change in -these notices. - - Once this change is made in a given copy, it is irreversible for -that copy, so the ordinary GNU General Public License applies to all -subsequent copies and derivative works made from that copy. - - This option is useful when you wish to copy part of the code of -the Library into a program that is not a library. - - 4. You may copy and distribute the Library (or a portion or -derivative of it, under Section 2) in object code or executable form -under the terms of Sections 1 and 2 above provided that you accompany -it with the complete corresponding machine-readable source code, which -must be distributed under the terms of Sections 1 and 2 above on a -medium customarily used for software interchange. - - If distribution of object code is made by offering access to copy -from a designated place, then offering equivalent access to copy the -source code from the same place satisfies the requirement to -distribute the source code, even though third parties are not -compelled to copy the source along with the object code. - - 5. A program that contains no derivative of any portion of the -Library, but is designed to work with the Library by being compiled or -linked with it, is called a "work that uses the Library". Such a -work, in isolation, is not a derivative work of the Library, and -therefore falls outside the scope of this License. - - However, linking a "work that uses the Library" with the Library -creates an executable that is a derivative of the Library (because it -contains portions of the Library), rather than a "work that uses the -library". The executable is therefore covered by this License. -Section 6 states terms for distribution of such executables. - - When a "work that uses the Library" uses material from a header file -that is part of the Library, the object code for the work may be a -derivative work of the Library even though the source code is not. -Whether this is true is especially significant if the work can be -linked without the Library, or if the work is itself a library. The -threshold for this to be true is not precisely defined by law. - - If such an object file uses only numerical parameters, data -structure layouts and accessors, and small macros and small inline -functions (ten lines or less in length), then the use of the object -file is unrestricted, regardless of whether it is legally a derivative -work. (Executables containing this object code plus portions of the -Library will still fall under Section 6.) - - Otherwise, if the work is a derivative of the Library, you may -distribute the object code for the work under the terms of Section 6. -Any executables containing that work also fall under Section 6, -whether or not they are linked directly with the Library itself. - - 6. As an exception to the Sections above, you may also combine or -link a "work that uses the Library" with the Library to produce a -work containing portions of the Library, and distribute that work -under terms of your choice, provided that the terms permit -modification of the work for the customer's own use and reverse -engineering for debugging such modifications. - - You must give prominent notice with each copy of the work that the -Library is used in it and that the Library and its use are covered by -this License. You must supply a copy of this License. If the work -during execution displays copyright notices, you must include the -copyright notice for the Library among them, as well as a reference -directing the user to the copy of this License. Also, you must do one -of these things: - - a) Accompany the work with the complete corresponding - machine-readable source code for the Library including whatever - changes were used in the work (which must be distributed under - Sections 1 and 2 above); and, if the work is an executable linked - with the Library, with the complete machine-readable "work that - uses the Library", as object code and/or source code, so that the - user can modify the Library and then relink to produce a modified - executable containing the modified Library. (It is understood - that the user who changes the contents of definitions files in the - Library will not necessarily be able to recompile the application - to use the modified definitions.) - - b) Use a suitable shared library mechanism for linking with the - Library. A suitable mechanism is one that (1) uses at run time a - copy of the library already present on the user's computer system, - rather than copying library functions into the executable, and (2) - will operate properly with a modified version of the library, if - the user installs one, as long as the modified version is - interface-compatible with the version that the work was made with. - - c) Accompany the work with a written offer, valid for at - least three years, to give the same user the materials - specified in Subsection 6a, above, for a charge no more - than the cost of performing this distribution. - - d) If distribution of the work is made by offering access to copy - from a designated place, offer equivalent access to copy the above - specified materials from the same place. - - e) Verify that the user has already received a copy of these - materials or that you have already sent this user a copy. - - For an executable, the required form of the "work that uses the -Library" must include any data and utility programs needed for -reproducing the executable from it. However, as a special exception, -the materials to be distributed need not include anything that is -normally distributed (in either source or binary form) with the major -components (compiler, kernel, and so on) of the operating system on -which the executable runs, unless that component itself accompanies -the executable. - - It may happen that this requirement contradicts the license -restrictions of other proprietary libraries that do not normally -accompany the operating system. Such a contradiction means you cannot -use both them and the Library together in an executable that you -distribute. - - 7. You may place library facilities that are a work based on the -Library side-by-side in a single library together with other library -facilities not covered by this License, and distribute such a combined -library, provided that the separate distribution of the work based on -the Library and of the other library facilities is otherwise -permitted, and provided that you do these two things: - - a) Accompany the combined library with a copy of the same work - based on the Library, uncombined with any other library - facilities. This must be distributed under the terms of the - Sections above. - - b) Give prominent notice with the combined library of the fact - that part of it is a work based on the Library, and explaining - where to find the accompanying uncombined form of the same work. - - 8. You may not copy, modify, sublicense, link with, or distribute -the Library except as expressly provided under this License. Any -attempt otherwise to copy, modify, sublicense, link with, or -distribute the Library is void, and will automatically terminate your -rights under this License. However, parties who have received copies, -or rights, from you under this License will not have their licenses -terminated so long as such parties remain in full compliance. - - 9. You are not required to accept this License, since you have not -signed it. However, nothing else grants you permission to modify or -distribute the Library or its derivative works. These actions are -prohibited by law if you do not accept this License. Therefore, by -modifying or distributing the Library (or any work based on the -Library), you indicate your acceptance of this License to do so, and -all its terms and conditions for copying, distributing or modifying -the Library or works based on it. - - 10. Each time you redistribute the Library (or any work based on the -Library), the recipient automatically receives a license from the -original licensor to copy, distribute, link with or modify the Library -subject to these terms and conditions. You may not impose any further -restrictions on the recipients' exercise of the rights granted herein. -You are not responsible for enforcing compliance by third parties with -this License. - - 11. If, as a consequence of a court judgment or allegation of patent -infringement or for any other reason (not limited to patent issues), -conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot -distribute so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you -may not distribute the Library at all. For example, if a patent -license would not permit royalty-free redistribution of the Library by -all those who receive copies directly or indirectly through you, then -the only way you could satisfy both it and this License would be to -refrain entirely from distribution of the Library. - -If any portion of this section is held invalid or unenforceable under any -particular circumstance, the balance of the section is intended to apply, -and the section as a whole is intended to apply in other circumstances. - -It is not the purpose of this section to induce you to infringe any -patents or other property right claims or to contest validity of any -such claims; this section has the sole purpose of protecting the -integrity of the free software distribution system which is -implemented by public license practices. Many people have made -generous contributions to the wide range of software distributed -through that system in reliance on consistent application of that -system; it is up to the author/donor to decide if he or she is willing -to distribute software through any other system and a licensee cannot -impose that choice. - -This section is intended to make thoroughly clear what is believed to -be a consequence of the rest of this License. - - 12. If the distribution and/or use of the Library is restricted in -certain countries either by patents or by copyrighted interfaces, the -original copyright holder who places the Library under this License may add -an explicit geographical distribution limitation excluding those countries, -so that distribution is permitted only in or among countries not thus -excluded. In such case, this License incorporates the limitation as if -written in the body of this License. - - 13. The Free Software Foundation may publish revised and/or new -versions of the Lesser General Public License from time to time. -Such new versions will be similar in spirit to the present version, -but may differ in detail to address new problems or concerns. - -Each version is given a distinguishing version number. If the Library -specifies a version number of this License which applies to it and -"any later version", you have the option of following the terms and -conditions either of that version or of any later version published by -the Free Software Foundation. If the Library does not specify a -license version number, you may choose any version ever published by -the Free Software Foundation. - - 14. If you wish to incorporate parts of the Library into other free -programs whose distribution conditions are incompatible with these, -write to the author to ask for permission. For software which is -copyrighted by the Free Software Foundation, write to the Free -Software Foundation; we sometimes make exceptions for this. Our -decision 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 generally. - - NO WARRANTY - - 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO -WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. -EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR -OTHER PARTIES PROVIDE THE LIBRARY "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 THE -LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME -THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - - 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN -WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY -AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU -FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR -CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE -LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING -RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A -FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF -SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGES. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Libraries - - If you develop a new library, and you want it to be of the greatest -possible use to the public, we recommend making it free software that -everyone can redistribute and change. You can do so by permitting -redistribution under these terms (or, alternatively, under the terms of the -ordinary General Public License). - - To apply these terms, attach the following notices to the library. It is -safest to attach them to the start of each source file to most effectively -convey the exclusion of warranty; and each file should have at least the -"copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - -Also add information on how to contact you by electronic and paper mail. - -You should also get your employer (if you work as a programmer) or your -school, if any, to sign a "copyright disclaimer" for the library, if -necessary. Here is a sample; alter the names: - - Yoyodyne, Inc., hereby disclaims all copyright interest in the - library `Frob' (a library for tweaking knobs) written by James Random Hacker. - - , 1 April 1990 - Ty Coon, President of Vice - -That's all there is to it! - - diff --git a/docs/bundled_licenses/openpgm.txt b/docs/bundled_licenses/openpgm.txt deleted file mode 100644 index a346087dba..0000000000 --- a/docs/bundled_licenses/openpgm.txt +++ /dev/null @@ -1,17 +0,0 @@ - OpenPGM, an implementation of the PGM protocol. - Copyright (C) 2006-2012 Miru Limited. - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - diff --git a/docs/bundled_licenses/perl-Cache-Cache.txt b/docs/bundled_licenses/perl-Cache-Cache.txt deleted file mode 100644 index 694b03c306..0000000000 --- a/docs/bundled_licenses/perl-Cache-Cache.txt +++ /dev/null @@ -1,3 +0,0 @@ - - You may distribute under the terms of either the GNU General Public - License or the Artistic License, as specified in the Perl README file. diff --git a/docs/bundled_licenses/perl-Email-Date-Format.txt b/docs/bundled_licenses/perl-Email-Date-Format.txt deleted file mode 100644 index 05e86e0785..0000000000 --- a/docs/bundled_licenses/perl-Email-Date-Format.txt +++ /dev/null @@ -1,378 +0,0 @@ - -Terms of Perl itself - -a) the GNU General Public License as published by the Free - Software Foundation; either version 1, or (at your option) any - later version, or -b) the "Artistic License" - ----------------------------------------------------------------------------- - -The General Public License (GPL) -Version 2, June 1991 - -Copyright (C) 1989, 1991 Free Software Foundation, Inc. 675 Mass Ave, -Cambridge, MA 02139, USA. Everyone is permitted to copy and distribute -verbatim copies of this license document, but changing it is not allowed. - -Preamble - -The licenses for most software are designed to take away your freedom to share -and change it. By contrast, the GNU General Public License is intended to -guarantee your freedom to share and change free software--to make sure the -software is free for all its users. This General Public License applies to most of -the Free Software Foundation's software and to any other program whose -authors commit to using it. (Some other Free Software Foundation software is -covered by the GNU Library General Public License instead.) You can apply it to -your programs, too. - -When we speak of free software, we are referring to freedom, not price. Our -General Public Licenses are designed to make sure that you have the freedom -to distribute copies of free software (and charge for this service if you wish), that -you receive source code or can get it if you want it, that you can change the -software or use pieces of it in new free programs; and that you know you can do -these things. - -To protect your rights, we need to make restrictions that forbid anyone to deny -you these rights or to ask you to surrender the rights. These restrictions -translate to certain responsibilities for you if you distribute copies of the -software, or if you modify it. - -For example, if you distribute copies of such a program, whether gratis or for a -fee, 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 show -them these terms so they know their rights. - -We protect your rights with two steps: (1) copyright the software, and (2) offer -you this license which gives you legal permission to copy, distribute and/or -modify the software. - -Also, for each author's protection and ours, we want to make certain that -everyone understands that there is no warranty for this free software. If the -software is modified by someone else and passed on, we want its recipients to -know that what they have is not the original, so that any problems introduced by -others will not reflect on the original authors' reputations. - -Finally, any free program is threatened constantly by software patents. We wish -to avoid the danger that redistributors of a free program will individually obtain -patent licenses, in effect making the program proprietary. To prevent this, we -have made it clear that any patent must be licensed for everyone's free use or -not licensed at all. - -The precise terms and conditions for copying, distribution and modification -follow. - -GNU GENERAL PUBLIC LICENSE -TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND -MODIFICATION - -0. This License applies to any program or other work which contains a notice -placed by the copyright holder saying it may be distributed under the terms of -this General Public License. The "Program", below, refers to any such program -or work, and a "work based on the Program" means either the Program or any -derivative work under copyright law: that is to say, a work containing the -Program or a portion of it, either verbatim or with modifications and/or translated -into another language. (Hereinafter, translation is included without limitation in -the term "modification".) Each licensee is addressed as "you". - -Activities other than copying, distribution and modification are not covered by -this License; they are outside its scope. The act of running the Program is not -restricted, and the output from the Program is covered only if its contents -constitute a work based on the Program (independent of having been made by -running the Program). Whether that is true depends on what the Program does. - -1. You may copy and distribute verbatim copies of the Program's source code as -you receive it, in any medium, provided that you conspicuously and appropriately -publish on each copy an appropriate copyright notice and disclaimer of warranty; -keep intact all the notices that refer to this License and to the absence of any -warranty; and give any other recipients of the Program a copy of this License -along with the Program. - -You may charge a fee for the physical act of transferring a copy, and you may at -your option offer warranty protection in exchange for a fee. - -2. You may modify your copy or copies of the Program or any portion of it, thus -forming a work based on the Program, and copy and distribute such -modifications or work under the terms of Section 1 above, provided that you also -meet all of these conditions: - -a) You must cause the modified files to carry prominent notices stating that you -changed the files and the date of any change. - -b) You must cause any work that you distribute or publish, that in whole or in -part contains or is derived from the Program or any part thereof, to be licensed -as a whole at no charge to all third parties under the terms of this License. - -c) If the modified program normally reads commands interactively when run, you -must cause it, when started running for such interactive use in the most ordinary -way, to print or display an announcement including an appropriate copyright -notice and a notice that there is no warranty (or else, saying that you provide a -warranty) and that users may redistribute the program under these conditions, -and telling the user how to view a copy of this License. (Exception: if the -Program itself is interactive but does not normally print such an announcement, -your work based on the Program is not required to print an announcement.) - -These requirements apply to the modified work as a whole. If identifiable -sections of that work are not derived from the Program, and can be reasonably -considered independent and separate works in themselves, then this License, -and its terms, do not apply to those sections when you distribute them as -separate works. But when you distribute the same sections as part of a whole -which is a work based on the Program, the distribution of the whole must be on -the terms of this License, whose permissions for other licensees extend to the -entire whole, and thus to each and every part regardless of who wrote it. - -Thus, it is not the intent of this section to claim rights or contest your rights to -work written entirely by you; rather, the intent is to exercise the right to control -the distribution of derivative or collective works based on the Program. - -In addition, mere aggregation of another work not based on the Program with the -Program (or with a work based on the Program) on a volume of a storage or -distribution medium does not bring the other work under the scope of this -License. - -3. You may copy and distribute the Program (or a work based on it, under -Section 2) in object code or executable form under the terms of Sections 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 Sections 1 and 2 above on a -medium customarily used for software interchange; or, - -b) Accompany it with a written offer, valid for at least three years, to give any -third party, for a charge no more than your cost of physically performing source -distribution, a complete machine-readable copy of the corresponding source -code, to be distributed under the terms of Sections 1 and 2 above on a medium -customarily used for software interchange; or, - -c) Accompany it with the information you received as to the offer to distribute -corresponding source code. (This alternative is allowed only for noncommercial -distribution and only if you received the program in object code or executable -form with such an offer, in accord with Subsection b above.) - -The source code for a work means the preferred form of the work for making -modifications to it. For an executable work, complete source code means all the -source code for all modules it contains, plus any associated interface definition -files, plus the scripts used to control compilation and installation of the -executable. However, as a special exception, the source code distributed need -not include anything that is normally distributed (in either source or binary form) -with the major components (compiler, kernel, and so on) of the operating system -on which the executable runs, unless that component itself accompanies the -executable. - -If distribution of executable or object code is made by offering access to copy -from a designated place, then offering equivalent access to copy the source -code from the same place counts as distribution of the source code, even though -third parties are not compelled to copy the source along with the object code. - -4. You may not copy, modify, sublicense, or distribute the Program except as -expressly provided under this License. Any attempt otherwise to copy, modify, -sublicense or distribute the Program is void, and will automatically terminate -your rights under this License. However, parties who have received copies, or -rights, from you under this License will not have their licenses terminated so long -as such parties remain in full compliance. - -5. You are not required to accept this License, since you have not signed it. -However, nothing else grants you permission to modify or distribute the Program -or its derivative works. These actions are prohibited by law if you do not accept -this License. Therefore, by modifying or distributing the Program (or any work -based on the Program), you indicate your acceptance of this License to do so, -and all its terms and conditions for copying, distributing or modifying the -Program or works based on it. - -6. Each time you redistribute the Program (or any work based on the Program), -the recipient automatically receives a license from the original licensor to copy, -distribute or modify the Program subject to these terms and conditions. You -may not impose any further restrictions on the recipients' exercise of the rights -granted herein. You are not responsible for enforcing compliance by third parties -to this License. - -7. If, as a consequence of a court judgment or allegation of patent infringement -or for any other reason (not limited to patent issues), conditions are imposed on -you (whether by court order, agreement or otherwise) that contradict the -conditions of this License, they do not excuse you from the conditions of this -License. If you cannot distribute so as to satisfy simultaneously your obligations -under this License and any other pertinent obligations, then as a consequence -you may not distribute the Program at all. For example, if a patent license would -not permit royalty-free redistribution of the Program by all those who receive -copies directly or indirectly through you, then the only way you could satisfy -both it and this License would be to refrain entirely from distribution of the -Program. - -If any portion of this section is held invalid or unenforceable under any particular -circumstance, the balance of the section is intended to apply and the section as -a whole is intended to apply in other circumstances. - -It is not the purpose of this section to induce you to infringe any patents or other -property right claims or to contest validity of any such claims; this section has -the sole purpose of protecting the integrity of the free software distribution -system, which is implemented by public license practices. Many people have -made generous contributions to the wide range of software distributed through -that system in reliance on consistent application of that system; it is up to the -author/donor to decide if he or she is willing to distribute software through any -other system and a licensee cannot impose that choice. - -This section is intended to make thoroughly clear what is believed to be a -consequence of the rest of this License. - -8. If the distribution and/or use of the Program is restricted in certain countries -either by patents or by copyrighted interfaces, the original copyright holder who -places the Program under this License may add an explicit geographical -distribution limitation excluding those countries, so that distribution is permitted -only in or among countries not thus excluded. In such case, this License -incorporates the limitation as if written in the body of this License. - -9. The Free Software Foundation may publish revised and/or new versions of the -General Public License from time to time. Such new versions will be similar in -spirit to the present version, but may differ in detail to address new problems or -concerns. - -Each version is given a distinguishing version number. If the Program specifies a -version number of this License which applies to it and "any later version", you -have the option of following the terms and conditions either of that version or of -any later version published by the Free Software Foundation. If the Program does -not specify a version number of this License, you may choose any version ever -published by the Free Software Foundation. - -10. If you wish to incorporate parts of the Program into other free programs -whose distribution conditions are different, write to the author to ask for -permission. For software which is copyrighted by the Free Software Foundation, -write to the Free Software Foundation; we sometimes make exceptions for this. -Our decision 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 generally. - -NO WARRANTY - -11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS -NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY -APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE -COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM -"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 THE -PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, -YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR -CORRECTION. - -12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED -TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY -WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS -PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY -GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM -(INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING -RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD -PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY -OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS -BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - -END OF TERMS AND CONDITIONS - - ----------------------------------------------------------------------------- - -The Artistic License - -Preamble - -The intent of this document is to state the conditions under which a Package -may be copied, such that the Copyright Holder maintains some semblance of -artistic control over the development of the package, while giving the users of the -package the right to use and distribute the Package in a more-or-less customary -fashion, plus the right to make reasonable modifications. - -Definitions: - -- "Package" refers to the collection of files distributed by the Copyright - Holder, and derivatives of that collection of files created through textual - modification. -- "Standard Version" refers to such a Package if it has not been modified, - or has been modified in accordance with the wishes of the Copyright - Holder. -- "Copyright Holder" is whoever is named in the copyright or copyrights for - the package. -- "You" is you, if you're thinking about copying or distributing this Package. -- "Reasonable copying fee" is whatever you can justify on the basis of - media cost, duplication charges, time of people involved, and so on. (You - will not be required to justify it to the Copyright Holder, but only to the - computing community at large as a market that must bear the fee.) -- "Freely Available" means that no fee is charged for the item itself, though - there may be fees involved in handling the item. It also means that - recipients of the item may redistribute it under the same conditions they - received it. - -1. You may make and give away verbatim copies of the source form of the -Standard Version of this Package without restriction, provided that you duplicate -all of the original copyright notices and associated disclaimers. - -2. You may apply bug fixes, portability fixes and other modifications derived from -the Public Domain or from the Copyright Holder. A Package modified in such a -way shall still be considered the Standard Version. - -3. You may otherwise modify your copy of this Package in any way, provided -that you insert a prominent notice in each changed file stating how and when -you changed that file, and provided that you do at least ONE of the following: - - a) place your modifications in the Public Domain or otherwise - make them Freely Available, such as by posting said modifications - to Usenet or an equivalent medium, or placing the modifications on - a major archive site such as ftp.uu.net, or by allowing the - Copyright Holder to include your modifications in the Standard - Version of the Package. - - b) use the modified Package only within your corporation or - organization. - - c) rename any non-standard executables so the names do not - conflict with standard executables, which must also be provided, - and provide a separate manual page for each non-standard - executable that clearly documents how it differs from the Standard - Version. - - d) make other distribution arrangements with the Copyright Holder. - -4. You may distribute the programs of this Package in object code or executable -form, provided that you do at least ONE of the following: - - a) distribute a Standard Version of the executables and library - files, together with instructions (in the manual page or equivalent) - on where to get the Standard Version. - - b) accompany the distribution with the machine-readable source of - the Package with your modifications. - - c) accompany any non-standard executables with their - corresponding Standard Version executables, giving the - non-standard executables non-standard names, and clearly - documenting the differences in manual pages (or equivalent), - together with instructions on where to get the Standard Version. - - d) make other distribution arrangements with the Copyright Holder. - -5. You may charge a reasonable copying fee for any distribution of this Package. -You may charge any fee you choose for support of this Package. You may not -charge a fee for this Package itself. However, you may distribute this Package in -aggregate with other (possibly commercial) programs as part of a larger -(possibly commercial) software distribution provided that you do not advertise -this Package as a product of your own. - -6. The scripts and library files supplied as input to or produced as output from -the programs of this Package do not automatically fall under the copyright of this -Package, but belong to whomever generated them, and may be sold -commercially, and may be aggregated with this Package. - -7. C or perl subroutines supplied by you and linked into this Package shall not -be considered part of this Package. - -8. The name of the Copyright Holder may not be used to endorse or promote -products derived from this software without specific prior written permission. - -9. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED -WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -PURPOSE. - -The End - - diff --git a/docs/bundled_licenses/perl-HTML-Template.txt b/docs/bundled_licenses/perl-HTML-Template.txt deleted file mode 100644 index b8faeba09e..0000000000 --- a/docs/bundled_licenses/perl-HTML-Template.txt +++ /dev/null @@ -1,379 +0,0 @@ -This software is copyright (c) 2012 by Michael Peters. - -This is free software; you can redistribute it and/or modify it under -the same terms as the Perl 5 programming language system itself. - -Terms of the Perl programming language system itself - -a) the GNU General Public License as published by the Free - Software Foundation; either version 1, or (at your option) any - later version, or -b) the "Artistic License" - ---- The GNU General Public License, Version 1, February 1989 --- - -This software is Copyright (c) 2012 by Michael Peters. - -This is free software, licensed under: - - The GNU General Public License, Version 1, February 1989 - - GNU GENERAL PUBLIC LICENSE - Version 1, February 1989 - - Copyright (C) 1989 Free Software Foundation, Inc. - 51 Franklin St, Suite 500, Boston, MA 02110-1335 USA - - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - Preamble - - The license agreements of most software companies try to keep users -at the mercy of those companies. By contrast, our General Public -License is intended to guarantee your freedom to share and change free -software--to make sure the software is free for all its users. The -General Public License applies to the Free Software Foundation's -software and to any other program whose authors commit to using it. -You can use it for your programs, too. - - When we speak of free software, we are referring to freedom, not -price. Specifically, the General Public License is designed to make -sure that you have the freedom to give away or sell copies of free -software, that you receive source code or can get it if you want it, -that you can change the software or use pieces of it in new free -programs; and that you know you can do these things. - - To protect your rights, we need to make restrictions that forbid -anyone to deny you these rights or to ask you to surrender the rights. -These restrictions translate to certain responsibilities for you if you -distribute copies of the software, or if you modify it. - - For example, if you distribute copies of a such a program, whether -gratis or for a fee, 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. - - We protect your rights with two steps: (1) copyright the software, and -(2) offer you this license which gives you legal permission to copy, -distribute and/or modify the software. - - Also, for each author's protection and ours, we want to make certain -that everyone understands that there is no warranty for this free -software. If the software is modified by someone else and passed on, we -want its recipients to know that what they have is not the original, so -that any problems introduced by others will not reflect on the original -authors' reputations. - - The precise terms and conditions for copying, distribution and -modification follow. - - GNU GENERAL PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - 0. This License Agreement applies to any program or other work which -contains a notice placed by the copyright holder saying it may be -distributed under the terms of this General Public License. The -"Program", below, refers to any such program or work, and a "work based -on the Program" means either the Program or any work containing the -Program or a portion of it, either verbatim or with modifications. Each -licensee is addressed as "you". - - 1. You may copy and distribute verbatim copies of the Program's source -code as you receive it, in any medium, provided that you conspicuously and -appropriately publish on each copy an appropriate copyright notice and -disclaimer of warranty; keep intact all the notices that refer to this -General Public License and to the absence of any warranty; and give any -other recipients of the Program a copy of this General Public License -along with the Program. You may charge a fee for the physical act of -transferring a copy. - - 2. You may modify your copy or copies of the Program 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 the Program or any part thereof, either - with or without modifications, to be licensed at no charge to all - third parties under the terms of this General Public License (except - that you may choose to grant warranty protection to some or all - third parties, at your option). - - c) If the modified program normally reads commands interactively when - run, you must cause it, when started running for such interactive use - in the simplest and most usual way, to print or display an - announcement including an appropriate copyright notice and a notice - that there is no warranty (or else, saying that you provide a - warranty) and that users may redistribute the program under these - conditions, and telling the user how to view a copy of this General - Public License. - - d) You may charge a 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 independent work with the Program (or its -derivative) on a volume of a storage or distribution medium does not bring -the other work under the scope of these terms. - - 3. You may copy and distribute the Program (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 charge - for the cost of distribution) 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 noncommercial distribution and only if you - received the program in object code or executable form alone.) - -Source code for a work means the preferred form of the work for making -modifications to it. 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, or for standard header files or definitions files that -accompany that operating system. - - 4. You may not copy, modify, sublicense, distribute or transfer the -Program except as expressly provided under this General Public License. -Any attempt otherwise to copy, modify, sublicense, distribute or transfer -the Program is void, and will automatically terminate your rights to use -the Program under this License. However, parties who have received -copies, or rights to use copies, from you under this General Public -License will not have their licenses terminated so long as such parties -remain in full compliance. - - 5. By copying, distributing or modifying the Program (or any work based -on the Program) you indicate your acceptance of this license to do so, -and all its terms and conditions. - - 6. Each time you redistribute the Program (or any work based on the -Program), the recipient automatically receives a license from the original -licensor to copy, distribute or modify the Program subject to these -terms and conditions. You may not impose any further restrictions on the -recipients' exercise of the rights granted herein. - - 7. The Free Software Foundation may publish revised and/or new versions -of the General Public License from time to time. Such new versions will -be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - -Each version is given a distinguishing version number. If the Program -specifies a version number of the license which applies to it and "any -later version", you have the option of following the terms and conditions -either of that version or of any later version published by the Free -Software Foundation. If the Program does not specify a version number of -the license, you may choose any version ever published by the Free Software -Foundation. - - 8. If you wish to incorporate parts of the Program into other free -programs whose distribution conditions are different, write to the author -to ask for permission. For software which is copyrighted by the Free -Software Foundation, write to the Free Software Foundation; we sometimes -make exceptions for this. Our decision 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 generally. - - NO WARRANTY - - 9. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY -FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN -OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES -PROVIDE THE PROGRAM "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 THE PROGRAM IS WITH YOU. SHOULD THE -PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, -REPAIR OR CORRECTION. - - 10. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR -REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, -INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING -OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED -TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY -YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER -PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE -POSSIBILITY OF SUCH DAMAGES. - - END OF TERMS AND CONDITIONS - - Appendix: How to Apply These Terms to Your New Programs - - If you develop a new program, and you want it to be of the greatest -possible use to humanity, the best way to achieve this is to make it -free software which everyone can redistribute and change under these -terms. - - To do so, attach the following notices to the program. It is safest to -attach them to the start of each source file to most effectively convey -the exclusion of warranty; and each file should have at least the -"copyright" line and a pointer to where the full notice is found. - - - Copyright (C) 19yy - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 1, or (at your option) - any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301 USA - - -Also add information on how to contact you by electronic and paper mail. - -If the program is interactive, make it output a short notice like this -when it starts in an interactive mode: - - Gnomovision version 69, Copyright (C) 19xx name of author - Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. - This is free software, and you are welcome to redistribute it - under certain conditions; type `show c' for details. - -The hypothetical commands `show w' and `show c' should show the -appropriate parts of the General Public License. Of course, the -commands you use may be called something other than `show w' and `show -c'; they could even be mouse-clicks or menu items--whatever suits your -program. - -You should also get your employer (if you work as a programmer) or your -school, if any, to sign a "copyright disclaimer" for the program, if -necessary. Here a sample; alter the names: - - Yoyodyne, Inc., hereby disclaims all copyright interest in the - program `Gnomovision' (a program to direct compilers to make passes - at assemblers) written by James Hacker. - - , 1 April 1989 - Ty Coon, President of Vice - -That's all there is to it! - - ---- The Artistic License 1.0 --- - -This software is Copyright (c) 2012 by Michael Peters. - -This is free software, licensed under: - - The Artistic License 1.0 - -The Artistic License - -Preamble - -The intent of this document is to state the conditions under which a Package -may be copied, such that the Copyright Holder maintains some semblance of -artistic control over the development of the package, while giving the users of -the package the right to use and distribute the Package in a more-or-less -customary fashion, plus the right to make reasonable modifications. - -Definitions: - - - "Package" refers to the collection of files distributed by the Copyright - Holder, and derivatives of that collection of files created through - textual modification. - - "Standard Version" refers to such a Package if it has not been modified, - or has been modified in accordance with the wishes of the Copyright - Holder. - - "Copyright Holder" is whoever is named in the copyright or copyrights for - the package. - - "You" is you, if you're thinking about copying or distributing this Package. - - "Reasonable copying fee" is whatever you can justify on the basis of media - cost, duplication charges, time of people involved, and so on. (You will - not be required to justify it to the Copyright Holder, but only to the - computing community at large as a market that must bear the fee.) - - "Freely Available" means that no fee is charged for the item itself, though - there may be fees involved in handling the item. It also means that - recipients of the item may redistribute it under the same conditions they - received it. - -1. You may make and give away verbatim copies of the source form of the -Standard Version of this Package without restriction, provided that you -duplicate all of the original copyright notices and associated disclaimers. - -2. You may apply bug fixes, portability fixes and other modifications derived -from the Public Domain or from the Copyright Holder. A Package modified in such -a way shall still be considered the Standard Version. - -3. You may otherwise modify your copy of this Package in any way, provided that -you insert a prominent notice in each changed file stating how and when you -changed that file, and provided that you do at least ONE of the following: - - a) place your modifications in the Public Domain or otherwise make them - Freely Available, such as by posting said modifications to Usenet or an - equivalent medium, or placing the modifications on a major archive site - such as ftp.uu.net, or by allowing the Copyright Holder to include your - modifications in the Standard Version of the Package. - - b) use the modified Package only within your corporation or organization. - - c) rename any non-standard executables so the names do not conflict with - standard executables, which must also be provided, and provide a separate - manual page for each non-standard executable that clearly documents how it - differs from the Standard Version. - - d) make other distribution arrangements with the Copyright Holder. - -4. You may distribute the programs of this Package in object code or executable -form, provided that you do at least ONE of the following: - - a) distribute a Standard Version of the executables and library files, - together with instructions (in the manual page or equivalent) on where to - get the Standard Version. - - b) accompany the distribution with the machine-readable source of the Package - with your modifications. - - c) accompany any non-standard executables with their corresponding Standard - Version executables, giving the non-standard executables non-standard - names, and clearly documenting the differences in manual pages (or - equivalent), together with instructions on where to get the Standard - Version. - - d) make other distribution arrangements with the Copyright Holder. - -5. You may charge a reasonable copying fee for any distribution of this -Package. You may charge any fee you choose for support of this Package. You -may not charge a fee for this Package itself. However, you may distribute this -Package in aggregate with other (possibly commercial) programs as part of a -larger (possibly commercial) software distribution provided that you do not -advertise this Package as a product of your own. - -6. The scripts and library files supplied as input to or produced as output -from the programs of this Package do not automatically fall under the copyright -of this Package, but belong to whomever generated them, and may be sold -commercially, and may be aggregated with this Package. - -7. C or perl subroutines supplied by you and linked into this Package shall not -be considered part of this Package. - -8. The name of the Copyright Holder may not be used to endorse or promote -products derived from this software without specific prior written permission. - -9. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED -WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF -MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. - -The End - diff --git a/docs/bundled_licenses/perl-IO-Multiplex.txt b/docs/bundled_licenses/perl-IO-Multiplex.txt deleted file mode 100644 index 694b03c306..0000000000 --- a/docs/bundled_licenses/perl-IO-Multiplex.txt +++ /dev/null @@ -1,3 +0,0 @@ - - You may distribute under the terms of either the GNU General Public - License or the Artistic License, as specified in the Perl README file. diff --git a/docs/bundled_licenses/perl-IPC-ShareLite.txt b/docs/bundled_licenses/perl-IPC-ShareLite.txt deleted file mode 100644 index 694b03c306..0000000000 --- a/docs/bundled_licenses/perl-IPC-ShareLite.txt +++ /dev/null @@ -1,3 +0,0 @@ - - You may distribute under the terms of either the GNU General Public - License or the Artistic License, as specified in the Perl README file. diff --git a/docs/bundled_licenses/perl-Log-Dispatch-FileRotate.txt b/docs/bundled_licenses/perl-Log-Dispatch-FileRotate.txt deleted file mode 100644 index 694b03c306..0000000000 --- a/docs/bundled_licenses/perl-Log-Dispatch-FileRotate.txt +++ /dev/null @@ -1,3 +0,0 @@ - - You may distribute under the terms of either the GNU General Public - License or the Artistic License, as specified in the Perl README file. diff --git a/docs/bundled_licenses/perl-Log-Dispatch.txt b/docs/bundled_licenses/perl-Log-Dispatch.txt deleted file mode 100644 index 6d717b00a0..0000000000 --- a/docs/bundled_licenses/perl-Log-Dispatch.txt +++ /dev/null @@ -1,207 +0,0 @@ -This software is Copyright (c) 2013 by Dave Rolsky. - -This is free software, licensed under: - - The Artistic License 2.0 (GPL Compatible) - - The Artistic License 2.0 - - Copyright (c) 2000-2006, The Perl Foundation. - - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - -Preamble - -This license establishes the terms under which a given free software -Package may be copied, modified, distributed, and/or redistributed. -The intent is that the Copyright Holder maintains some artistic -control over the development of that Package while still keeping the -Package available as open source and free software. - -You are always permitted to make arrangements wholly outside of this -license directly with the Copyright Holder of a given Package. If the -terms of this license do not permit the full use that you propose to -make of the Package, you should contact the Copyright Holder and seek -a different licensing arrangement. - -Definitions - - "Copyright Holder" means the individual(s) or organization(s) - named in the copyright notice for the entire Package. - - "Contributor" means any party that has contributed code or other - material to the Package, in accordance with the Copyright Holder's - procedures. - - "You" and "your" means any person who would like to copy, - distribute, or modify the Package. - - "Package" means the collection of files distributed by the - Copyright Holder, and derivatives of that collection and/or of - those files. A given Package may consist of either the Standard - Version, or a Modified Version. - - "Distribute" means providing a copy of the Package or making it - accessible to anyone else, or in the case of a company or - organization, to others outside of your company or organization. - - "Distributor Fee" means any fee that you charge for Distributing - this Package or providing support for this Package to another - party. It does not mean licensing fees. - - "Standard Version" refers to the Package if it has not been - modified, or has been modified only in ways explicitly requested - by the Copyright Holder. - - "Modified Version" means the Package, if it has been changed, and - such changes were not explicitly requested by the Copyright - Holder. - - "Original License" means this Artistic License as Distributed with - the Standard Version of the Package, in its current version or as - it may be modified by The Perl Foundation in the future. - - "Source" form means the source code, documentation source, and - configuration files for the Package. - - "Compiled" form means the compiled bytecode, object code, binary, - or any other form resulting from mechanical transformation or - translation of the Source form. - - -Permission for Use and Modification Without Distribution - -(1) You are permitted to use the Standard Version and create and use -Modified Versions for any purpose without restriction, provided that -you do not Distribute the Modified Version. - - -Permissions for Redistribution of the Standard Version - -(2) You may Distribute verbatim copies of the Source form of the -Standard Version of this Package in any medium without restriction, -either gratis or for a Distributor Fee, provided that you duplicate -all of the original copyright notices and associated disclaimers. At -your discretion, such verbatim copies may or may not include a -Compiled form of the Package. - -(3) You may apply any bug fixes, portability changes, and other -modifications made available from the Copyright Holder. The resulting -Package will still be considered the Standard Version, and as such -will be subject to the Original License. - - -Distribution of Modified Versions of the Package as Source - -(4) You may Distribute your Modified Version as Source (either gratis -or for a Distributor Fee, and with or without a Compiled form of the -Modified Version) provided that you clearly document how it differs -from the Standard Version, including, but not limited to, documenting -any non-standard features, executables, or modules, and provided that -you do at least ONE of the following: - - (a) make the Modified Version available to the Copyright Holder - of the Standard Version, under the Original License, so that the - Copyright Holder may include your modifications in the Standard - Version. - - (b) ensure that installation of your Modified Version does not - prevent the user installing or running the Standard Version. In - addition, the Modified Version must bear a name that is different - from the name of the Standard Version. - - (c) allow anyone who receives a copy of the Modified Version to - make the Source form of the Modified Version available to others - under - - (i) the Original License or - - (ii) a license that permits the licensee to freely copy, - modify and redistribute the Modified Version using the same - licensing terms that apply to the copy that the licensee - received, and requires that the Source form of the Modified - Version, and of any works derived from it, be made freely - available in that license fees are prohibited but Distributor - Fees are allowed. - - -Distribution of Compiled Forms of the Standard Version -or Modified Versions without the Source - -(5) You may Distribute Compiled forms of the Standard Version without -the Source, provided that you include complete instructions on how to -get the Source of the Standard Version. Such instructions must be -valid at the time of your distribution. If these instructions, at any -time while you are carrying out such distribution, become invalid, you -must provide new instructions on demand or cease further distribution. -If you provide valid instructions or cease distribution within thirty -days after you become aware that the instructions are invalid, then -you do not forfeit any of your rights under this license. - -(6) You may Distribute a Modified Version in Compiled form without -the Source, provided that you comply with Section 4 with respect to -the Source of the Modified Version. - - -Aggregating or Linking the Package - -(7) You may aggregate the Package (either the Standard Version or -Modified Version) with other packages and Distribute the resulting -aggregation provided that you do not charge a licensing fee for the -Package. Distributor Fees are permitted, and licensing fees for other -components in the aggregation are permitted. The terms of this license -apply to the use and Distribution of the Standard or Modified Versions -as included in the aggregation. - -(8) You are permitted to link Modified and Standard Versions with -other works, to embed the Package in a larger work of your own, or to -build stand-alone binary or bytecode versions of applications that -include the Package, and Distribute the result without restriction, -provided the result does not expose a direct interface to the Package. - - -Items That are Not Considered Part of a Modified Version - -(9) Works (including, but not limited to, modules and scripts) that -merely extend or make use of the Package, do not, by themselves, cause -the Package to be a Modified Version. In addition, such works are not -considered parts of the Package itself, and are not subject to the -terms of this license. - - -General Provisions - -(10) Any use, modification, and distribution of the Standard or -Modified Versions is governed by this Artistic License. By using, -modifying or distributing the Package, you accept this license. Do not -use, modify, or distribute the Package, if you do not accept this -license. - -(11) If your Modified Version has been derived from a Modified -Version made by someone other than you, you are nevertheless required -to ensure that your Modified Version complies with the requirements of -this license. - -(12) This license does not grant you the right to use any trademark, -service mark, tradename, or logo of the Copyright Holder. - -(13) This license includes the non-exclusive, worldwide, -free-of-charge patent license to make, have made, use, offer to sell, -sell, import and otherwise transfer the Package with respect to any -patent claims licensable by the Copyright Holder that are necessarily -infringed by the Package. If you institute patent litigation -(including a cross-claim or counterclaim) against any party alleging -that the Package constitutes direct or contributory patent -infringement, then this Artistic License to you shall terminate on the -date that such litigation is filed. - -(14) Disclaimer of Warranty: -THE PACKAGE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS "AS -IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES. THE IMPLIED -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR -NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT PERMITTED BY YOUR LOCAL -LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT HOLDER OR CONTRIBUTOR WILL -BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL -DAMAGES ARISING IN ANY WAY OUT OF THE USE OF THE PACKAGE, EVEN IF -ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/docs/bundled_licenses/perl-Log-Log4perl.txt b/docs/bundled_licenses/perl-Log-Log4perl.txt deleted file mode 100644 index b36289db7e..0000000000 --- a/docs/bundled_licenses/perl-Log-Log4perl.txt +++ /dev/null @@ -1,14 +0,0 @@ -=head1 COPYRIGHT AND LICENSE - -Copyright 2002-2012 by -Mike Schilli and Kevin Goess . - -This library is free software; you can redistribute it and/or modify -it under the same terms as Perl itself. - -=cut - -THE SOFTWARE IS PROVIDED "AS IS" AND WITHOUT WARRANTIES OF ANY KIND, -INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OF ACCURACY OR -COMPLETENESS OF ANY INFORMATION CONTAINED IN THE SOFTWARE OR IMPLIED -WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. diff --git a/docs/bundled_licenses/perl-MIME-Lite.txt b/docs/bundled_licenses/perl-MIME-Lite.txt deleted file mode 100644 index 05e86e0785..0000000000 --- a/docs/bundled_licenses/perl-MIME-Lite.txt +++ /dev/null @@ -1,378 +0,0 @@ - -Terms of Perl itself - -a) the GNU General Public License as published by the Free - Software Foundation; either version 1, or (at your option) any - later version, or -b) the "Artistic License" - ----------------------------------------------------------------------------- - -The General Public License (GPL) -Version 2, June 1991 - -Copyright (C) 1989, 1991 Free Software Foundation, Inc. 675 Mass Ave, -Cambridge, MA 02139, USA. Everyone is permitted to copy and distribute -verbatim copies of this license document, but changing it is not allowed. - -Preamble - -The licenses for most software are designed to take away your freedom to share -and change it. By contrast, the GNU General Public License is intended to -guarantee your freedom to share and change free software--to make sure the -software is free for all its users. This General Public License applies to most of -the Free Software Foundation's software and to any other program whose -authors commit to using it. (Some other Free Software Foundation software is -covered by the GNU Library General Public License instead.) You can apply it to -your programs, too. - -When we speak of free software, we are referring to freedom, not price. Our -General Public Licenses are designed to make sure that you have the freedom -to distribute copies of free software (and charge for this service if you wish), that -you receive source code or can get it if you want it, that you can change the -software or use pieces of it in new free programs; and that you know you can do -these things. - -To protect your rights, we need to make restrictions that forbid anyone to deny -you these rights or to ask you to surrender the rights. These restrictions -translate to certain responsibilities for you if you distribute copies of the -software, or if you modify it. - -For example, if you distribute copies of such a program, whether gratis or for a -fee, 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 show -them these terms so they know their rights. - -We protect your rights with two steps: (1) copyright the software, and (2) offer -you this license which gives you legal permission to copy, distribute and/or -modify the software. - -Also, for each author's protection and ours, we want to make certain that -everyone understands that there is no warranty for this free software. If the -software is modified by someone else and passed on, we want its recipients to -know that what they have is not the original, so that any problems introduced by -others will not reflect on the original authors' reputations. - -Finally, any free program is threatened constantly by software patents. We wish -to avoid the danger that redistributors of a free program will individually obtain -patent licenses, in effect making the program proprietary. To prevent this, we -have made it clear that any patent must be licensed for everyone's free use or -not licensed at all. - -The precise terms and conditions for copying, distribution and modification -follow. - -GNU GENERAL PUBLIC LICENSE -TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND -MODIFICATION - -0. This License applies to any program or other work which contains a notice -placed by the copyright holder saying it may be distributed under the terms of -this General Public License. The "Program", below, refers to any such program -or work, and a "work based on the Program" means either the Program or any -derivative work under copyright law: that is to say, a work containing the -Program or a portion of it, either verbatim or with modifications and/or translated -into another language. (Hereinafter, translation is included without limitation in -the term "modification".) Each licensee is addressed as "you". - -Activities other than copying, distribution and modification are not covered by -this License; they are outside its scope. The act of running the Program is not -restricted, and the output from the Program is covered only if its contents -constitute a work based on the Program (independent of having been made by -running the Program). Whether that is true depends on what the Program does. - -1. You may copy and distribute verbatim copies of the Program's source code as -you receive it, in any medium, provided that you conspicuously and appropriately -publish on each copy an appropriate copyright notice and disclaimer of warranty; -keep intact all the notices that refer to this License and to the absence of any -warranty; and give any other recipients of the Program a copy of this License -along with the Program. - -You may charge a fee for the physical act of transferring a copy, and you may at -your option offer warranty protection in exchange for a fee. - -2. You may modify your copy or copies of the Program or any portion of it, thus -forming a work based on the Program, and copy and distribute such -modifications or work under the terms of Section 1 above, provided that you also -meet all of these conditions: - -a) You must cause the modified files to carry prominent notices stating that you -changed the files and the date of any change. - -b) You must cause any work that you distribute or publish, that in whole or in -part contains or is derived from the Program or any part thereof, to be licensed -as a whole at no charge to all third parties under the terms of this License. - -c) If the modified program normally reads commands interactively when run, you -must cause it, when started running for such interactive use in the most ordinary -way, to print or display an announcement including an appropriate copyright -notice and a notice that there is no warranty (or else, saying that you provide a -warranty) and that users may redistribute the program under these conditions, -and telling the user how to view a copy of this License. (Exception: if the -Program itself is interactive but does not normally print such an announcement, -your work based on the Program is not required to print an announcement.) - -These requirements apply to the modified work as a whole. If identifiable -sections of that work are not derived from the Program, and can be reasonably -considered independent and separate works in themselves, then this License, -and its terms, do not apply to those sections when you distribute them as -separate works. But when you distribute the same sections as part of a whole -which is a work based on the Program, the distribution of the whole must be on -the terms of this License, whose permissions for other licensees extend to the -entire whole, and thus to each and every part regardless of who wrote it. - -Thus, it is not the intent of this section to claim rights or contest your rights to -work written entirely by you; rather, the intent is to exercise the right to control -the distribution of derivative or collective works based on the Program. - -In addition, mere aggregation of another work not based on the Program with the -Program (or with a work based on the Program) on a volume of a storage or -distribution medium does not bring the other work under the scope of this -License. - -3. You may copy and distribute the Program (or a work based on it, under -Section 2) in object code or executable form under the terms of Sections 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 Sections 1 and 2 above on a -medium customarily used for software interchange; or, - -b) Accompany it with a written offer, valid for at least three years, to give any -third party, for a charge no more than your cost of physically performing source -distribution, a complete machine-readable copy of the corresponding source -code, to be distributed under the terms of Sections 1 and 2 above on a medium -customarily used for software interchange; or, - -c) Accompany it with the information you received as to the offer to distribute -corresponding source code. (This alternative is allowed only for noncommercial -distribution and only if you received the program in object code or executable -form with such an offer, in accord with Subsection b above.) - -The source code for a work means the preferred form of the work for making -modifications to it. For an executable work, complete source code means all the -source code for all modules it contains, plus any associated interface definition -files, plus the scripts used to control compilation and installation of the -executable. However, as a special exception, the source code distributed need -not include anything that is normally distributed (in either source or binary form) -with the major components (compiler, kernel, and so on) of the operating system -on which the executable runs, unless that component itself accompanies the -executable. - -If distribution of executable or object code is made by offering access to copy -from a designated place, then offering equivalent access to copy the source -code from the same place counts as distribution of the source code, even though -third parties are not compelled to copy the source along with the object code. - -4. You may not copy, modify, sublicense, or distribute the Program except as -expressly provided under this License. Any attempt otherwise to copy, modify, -sublicense or distribute the Program is void, and will automatically terminate -your rights under this License. However, parties who have received copies, or -rights, from you under this License will not have their licenses terminated so long -as such parties remain in full compliance. - -5. You are not required to accept this License, since you have not signed it. -However, nothing else grants you permission to modify or distribute the Program -or its derivative works. These actions are prohibited by law if you do not accept -this License. Therefore, by modifying or distributing the Program (or any work -based on the Program), you indicate your acceptance of this License to do so, -and all its terms and conditions for copying, distributing or modifying the -Program or works based on it. - -6. Each time you redistribute the Program (or any work based on the Program), -the recipient automatically receives a license from the original licensor to copy, -distribute or modify the Program subject to these terms and conditions. You -may not impose any further restrictions on the recipients' exercise of the rights -granted herein. You are not responsible for enforcing compliance by third parties -to this License. - -7. If, as a consequence of a court judgment or allegation of patent infringement -or for any other reason (not limited to patent issues), conditions are imposed on -you (whether by court order, agreement or otherwise) that contradict the -conditions of this License, they do not excuse you from the conditions of this -License. If you cannot distribute so as to satisfy simultaneously your obligations -under this License and any other pertinent obligations, then as a consequence -you may not distribute the Program at all. For example, if a patent license would -not permit royalty-free redistribution of the Program by all those who receive -copies directly or indirectly through you, then the only way you could satisfy -both it and this License would be to refrain entirely from distribution of the -Program. - -If any portion of this section is held invalid or unenforceable under any particular -circumstance, the balance of the section is intended to apply and the section as -a whole is intended to apply in other circumstances. - -It is not the purpose of this section to induce you to infringe any patents or other -property right claims or to contest validity of any such claims; this section has -the sole purpose of protecting the integrity of the free software distribution -system, which is implemented by public license practices. Many people have -made generous contributions to the wide range of software distributed through -that system in reliance on consistent application of that system; it is up to the -author/donor to decide if he or she is willing to distribute software through any -other system and a licensee cannot impose that choice. - -This section is intended to make thoroughly clear what is believed to be a -consequence of the rest of this License. - -8. If the distribution and/or use of the Program is restricted in certain countries -either by patents or by copyrighted interfaces, the original copyright holder who -places the Program under this License may add an explicit geographical -distribution limitation excluding those countries, so that distribution is permitted -only in or among countries not thus excluded. In such case, this License -incorporates the limitation as if written in the body of this License. - -9. The Free Software Foundation may publish revised and/or new versions of the -General Public License from time to time. Such new versions will be similar in -spirit to the present version, but may differ in detail to address new problems or -concerns. - -Each version is given a distinguishing version number. If the Program specifies a -version number of this License which applies to it and "any later version", you -have the option of following the terms and conditions either of that version or of -any later version published by the Free Software Foundation. If the Program does -not specify a version number of this License, you may choose any version ever -published by the Free Software Foundation. - -10. If you wish to incorporate parts of the Program into other free programs -whose distribution conditions are different, write to the author to ask for -permission. For software which is copyrighted by the Free Software Foundation, -write to the Free Software Foundation; we sometimes make exceptions for this. -Our decision 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 generally. - -NO WARRANTY - -11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS -NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY -APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE -COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM -"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 THE -PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, -YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR -CORRECTION. - -12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED -TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY -WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS -PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY -GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM -(INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING -RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD -PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY -OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS -BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - -END OF TERMS AND CONDITIONS - - ----------------------------------------------------------------------------- - -The Artistic License - -Preamble - -The intent of this document is to state the conditions under which a Package -may be copied, such that the Copyright Holder maintains some semblance of -artistic control over the development of the package, while giving the users of the -package the right to use and distribute the Package in a more-or-less customary -fashion, plus the right to make reasonable modifications. - -Definitions: - -- "Package" refers to the collection of files distributed by the Copyright - Holder, and derivatives of that collection of files created through textual - modification. -- "Standard Version" refers to such a Package if it has not been modified, - or has been modified in accordance with the wishes of the Copyright - Holder. -- "Copyright Holder" is whoever is named in the copyright or copyrights for - the package. -- "You" is you, if you're thinking about copying or distributing this Package. -- "Reasonable copying fee" is whatever you can justify on the basis of - media cost, duplication charges, time of people involved, and so on. (You - will not be required to justify it to the Copyright Holder, but only to the - computing community at large as a market that must bear the fee.) -- "Freely Available" means that no fee is charged for the item itself, though - there may be fees involved in handling the item. It also means that - recipients of the item may redistribute it under the same conditions they - received it. - -1. You may make and give away verbatim copies of the source form of the -Standard Version of this Package without restriction, provided that you duplicate -all of the original copyright notices and associated disclaimers. - -2. You may apply bug fixes, portability fixes and other modifications derived from -the Public Domain or from the Copyright Holder. A Package modified in such a -way shall still be considered the Standard Version. - -3. You may otherwise modify your copy of this Package in any way, provided -that you insert a prominent notice in each changed file stating how and when -you changed that file, and provided that you do at least ONE of the following: - - a) place your modifications in the Public Domain or otherwise - make them Freely Available, such as by posting said modifications - to Usenet or an equivalent medium, or placing the modifications on - a major archive site such as ftp.uu.net, or by allowing the - Copyright Holder to include your modifications in the Standard - Version of the Package. - - b) use the modified Package only within your corporation or - organization. - - c) rename any non-standard executables so the names do not - conflict with standard executables, which must also be provided, - and provide a separate manual page for each non-standard - executable that clearly documents how it differs from the Standard - Version. - - d) make other distribution arrangements with the Copyright Holder. - -4. You may distribute the programs of this Package in object code or executable -form, provided that you do at least ONE of the following: - - a) distribute a Standard Version of the executables and library - files, together with instructions (in the manual page or equivalent) - on where to get the Standard Version. - - b) accompany the distribution with the machine-readable source of - the Package with your modifications. - - c) accompany any non-standard executables with their - corresponding Standard Version executables, giving the - non-standard executables non-standard names, and clearly - documenting the differences in manual pages (or equivalent), - together with instructions on where to get the Standard Version. - - d) make other distribution arrangements with the Copyright Holder. - -5. You may charge a reasonable copying fee for any distribution of this Package. -You may charge any fee you choose for support of this Package. You may not -charge a fee for this Package itself. However, you may distribute this Package in -aggregate with other (possibly commercial) programs as part of a larger -(possibly commercial) software distribution provided that you do not advertise -this Package as a product of your own. - -6. The scripts and library files supplied as input to or produced as output from -the programs of this Package do not automatically fall under the copyright of this -Package, but belong to whomever generated them, and may be sold -commercially, and may be aggregated with this Package. - -7. C or perl subroutines supplied by you and linked into this Package shall not -be considered part of this Package. - -8. The name of the Copyright Holder may not be used to endorse or promote -products derived from this software without specific prior written permission. - -9. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED -WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR -PURPOSE. - -The End - - diff --git a/docs/bundled_licenses/perl-MIME-Types.txt b/docs/bundled_licenses/perl-MIME-Types.txt deleted file mode 100644 index 694b03c306..0000000000 --- a/docs/bundled_licenses/perl-MIME-Types.txt +++ /dev/null @@ -1,3 +0,0 @@ - - You may distribute under the terms of either the GNU General Public - License or the Artistic License, as specified in the Perl README file. diff --git a/docs/bundled_licenses/perl-Mail-Sender.txt b/docs/bundled_licenses/perl-Mail-Sender.txt deleted file mode 100644 index 694b03c306..0000000000 --- a/docs/bundled_licenses/perl-Mail-Sender.txt +++ /dev/null @@ -1,3 +0,0 @@ - - You may distribute under the terms of either the GNU General Public - License or the Artistic License, as specified in the Perl README file. diff --git a/docs/bundled_licenses/perl-Net-CIDR.txt b/docs/bundled_licenses/perl-Net-CIDR.txt deleted file mode 100644 index c3f7283189..0000000000 --- a/docs/bundled_licenses/perl-Net-CIDR.txt +++ /dev/null @@ -1,6 +0,0 @@ -Net::CIDR - -Copyright 2001 Sam Varshavchik. - -This program is free software; you can redistribute it -and/or modify it under the same terms as Perl itself. diff --git a/docs/bundled_licenses/perl-Net-SNMP.txt b/docs/bundled_licenses/perl-Net-SNMP.txt deleted file mode 100644 index 694b03c306..0000000000 --- a/docs/bundled_licenses/perl-Net-SNMP.txt +++ /dev/null @@ -1,3 +0,0 @@ - - You may distribute under the terms of either the GNU General Public - License or the Artistic License, as specified in the Perl README file. diff --git a/docs/bundled_licenses/perl-Net-Sendmail.txt b/docs/bundled_licenses/perl-Net-Sendmail.txt deleted file mode 100644 index 9ee5528836..0000000000 --- a/docs/bundled_licenses/perl-Net-Sendmail.txt +++ /dev/null @@ -1 +0,0 @@ -You can use this module freely. diff --git a/docs/bundled_licenses/perl-Net-Server.txt b/docs/bundled_licenses/perl-Net-Server.txt deleted file mode 100644 index 694b03c306..0000000000 --- a/docs/bundled_licenses/perl-Net-Server.txt +++ /dev/null @@ -1,3 +0,0 @@ - - You may distribute under the terms of either the GNU General Public - License or the Artistic License, as specified in the Perl README file. diff --git a/docs/bundled_licenses/postgresql94.txt b/docs/bundled_licenses/postgresql94.txt deleted file mode 100644 index 6fba6e7e13..0000000000 --- a/docs/bundled_licenses/postgresql94.txt +++ /dev/null @@ -1,23 +0,0 @@ -PostgreSQL Database Management System -(formerly known as Postgres, then as Postgres95) - -Portions Copyright (c) 1996-2015, PostgreSQL Global Development Group - -Portions Copyright (c) 1994, The Regents of the University of California - -Permission to use, copy, modify, and distribute this software and its -documentation for any purpose, without fee, and without a written agreement -is hereby granted, provided that the above copyright notice and this -paragraph and the following two paragraphs appear in all copies. - -IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING -LOST PROFITS, ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS -DOCUMENTATION, EVEN IF THE UNIVERSITY OF CALIFORNIA HAS BEEN ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. - -THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES, -INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY -AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATIONS TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. diff --git a/docs/bundled_licenses/proot.txt b/docs/bundled_licenses/proot.txt deleted file mode 100644 index d159169d10..0000000000 --- a/docs/bundled_licenses/proot.txt +++ /dev/null @@ -1,339 +0,0 @@ - GNU GENERAL PUBLIC LICENSE - Version 2, June 1991 - - Copyright (C) 1989, 1991 Free Software Foundation, Inc., - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - Preamble - - The licenses for most software are designed to take away your -freedom to share and change it. By contrast, the GNU General Public -License is intended to guarantee your freedom to share and change free -software--to make sure the software is free for all its users. This -General Public License applies to most of the Free Software -Foundation's software and to any other program whose authors commit to -using it. (Some other Free Software Foundation software is covered by -the GNU Lesser General Public License instead.) You can apply it to -your programs, too. - - When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -this service if you wish), that you receive source code or can get it -if you want it, that you can change the software or use pieces of it -in new free programs; and that you know you can do these things. - - To protect your rights, we need to make restrictions that forbid -anyone to deny you these rights or to ask you to surrender the rights. -These restrictions translate to certain responsibilities for you if you -distribute copies of the software, or if you modify it. - - For example, if you distribute copies of such a program, whether -gratis or for a fee, 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 show them these terms so they know their -rights. - - We protect your rights with two steps: (1) copyright the software, and -(2) offer you this license which gives you legal permission to copy, -distribute and/or modify the software. - - Also, for each author's protection and ours, we want to make certain -that everyone understands that there is no warranty for this free -software. If the software is modified by someone else and passed on, we -want its recipients to know that what they have is not the original, so -that any problems introduced by others will not reflect on the original -authors' reputations. - - Finally, any free program is threatened constantly by software -patents. We wish to avoid the danger that redistributors of a free -program will individually obtain patent licenses, in effect making the -program proprietary. To prevent this, we have made it clear that any -patent must be licensed for everyone's free use or not licensed at all. - - The precise terms and conditions for copying, distribution and -modification follow. - - GNU GENERAL PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - 0. This License applies to any program or other work which contains -a notice placed by the copyright holder saying it may be distributed -under the terms of this General Public License. The "Program", below, -refers to any such program or work, and a "work based on the Program" -means either the Program or any derivative work under copyright law: -that is to say, a work containing the Program or a portion of it, -either verbatim or with modifications and/or translated into another -language. (Hereinafter, translation is included without limitation in -the term "modification".) Each licensee is addressed as "you". - -Activities other than copying, distribution and modification are not -covered by this License; they are outside its scope. The act of -running the Program is not restricted, and the output from the Program -is covered only if its contents constitute a work based on the -Program (independent of having been made by running the Program). -Whether that is true depends on what the Program does. - - 1. You may copy and distribute verbatim copies of the Program's -source code as you receive it, in any medium, provided that you -conspicuously and appropriately publish on each copy an appropriate -copyright notice and disclaimer of warranty; keep intact all the -notices that refer to this License and to the absence of any warranty; -and give any other recipients of the Program a copy of this License -along with the Program. - -You may charge a fee for the physical act of transferring a copy, and -you may at your option offer warranty protection in exchange for a fee. - - 2. You may modify your copy or copies of the Program or any portion -of it, thus forming a work based on the Program, and copy and -distribute such modifications or work under the terms of Section 1 -above, provided that you also meet all of these conditions: - - a) You must cause the modified files to carry prominent notices - stating that you changed the files and the date of any change. - - b) You must cause any work that you distribute or publish, that in - whole or in part contains or is derived from the Program or any - part thereof, to be licensed as a whole at no charge to all third - parties under the terms of this License. - - c) If the modified program normally reads commands interactively - when run, you must cause it, when started running for such - interactive use in the most ordinary way, to print or display an - announcement including an appropriate copyright notice and a - notice that there is no warranty (or else, saying that you provide - a warranty) and that users may redistribute the program under - these conditions, and telling the user how to view a copy of this - License. (Exception: if the Program itself is interactive but - does not normally print such an announcement, your work based on - the Program is not required to print an announcement.) - -These requirements apply to the modified work as a whole. If -identifiable sections of that work are not derived from the Program, -and can be reasonably considered independent and separate works in -themselves, then this License, and its terms, do not apply to those -sections when you distribute them as separate works. But when you -distribute the same sections as part of a whole which is a work based -on the Program, the distribution of the whole must be on the terms of -this License, whose permissions for other licensees extend to the -entire whole, and thus to each and every part regardless of who wrote it. - -Thus, it is not the intent of this section to claim rights or contest -your rights to work written entirely by you; rather, the intent is to -exercise the right to control the distribution of derivative or -collective works based on the Program. - -In addition, mere aggregation of another work not based on the Program -with the Program (or with a work based on the Program) on a volume of -a storage or distribution medium does not bring the other work under -the scope of this License. - - 3. You may copy and distribute the Program (or a work based on it, -under Section 2) in object code or executable form under the terms of -Sections 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 Sections - 1 and 2 above on a medium customarily used for software interchange; or, - - b) Accompany it with a written offer, valid for at least three - years, to give any third party, for a charge no more than your - cost of physically performing source distribution, a complete - machine-readable copy of the corresponding source code, to be - distributed under the terms of Sections 1 and 2 above on a medium - customarily used for software interchange; or, - - c) Accompany it with the information you received as to the offer - to distribute corresponding source code. (This alternative is - allowed only for noncommercial distribution and only if you - received the program in object code or executable form with such - an offer, in accord with Subsection b above.) - -The source code for a work means the preferred form of the work for -making modifications to it. For an executable work, complete source -code means all the source code for all modules it contains, plus any -associated interface definition files, plus the scripts used to -control compilation and installation of the executable. However, as a -special exception, the source code distributed need not include -anything that is normally distributed (in either source or binary -form) with the major components (compiler, kernel, and so on) of the -operating system on which the executable runs, unless that component -itself accompanies the executable. - -If distribution of executable or object code is made by offering -access to copy from a designated place, then offering equivalent -access to copy the source code from the same place counts as -distribution of the source code, even though third parties are not -compelled to copy the source along with the object code. - - 4. You may not copy, modify, sublicense, or distribute the Program -except as expressly provided under this License. Any attempt -otherwise to copy, modify, sublicense or distribute the Program is -void, and will automatically terminate your rights under this License. -However, parties who have received copies, or rights, from you under -this License will not have their licenses terminated so long as such -parties remain in full compliance. - - 5. You are not required to accept this License, since you have not -signed it. However, nothing else grants you permission to modify or -distribute the Program or its derivative works. These actions are -prohibited by law if you do not accept this License. Therefore, by -modifying or distributing the Program (or any work based on the -Program), you indicate your acceptance of this License to do so, and -all its terms and conditions for copying, distributing or modifying -the Program or works based on it. - - 6. Each time you redistribute the Program (or any work based on the -Program), the recipient automatically receives a license from the -original licensor to copy, distribute or modify the Program subject to -these terms and conditions. You may not impose any further -restrictions on the recipients' exercise of the rights granted herein. -You are not responsible for enforcing compliance by third parties to -this License. - - 7. If, as a consequence of a court judgment or allegation of patent -infringement or for any other reason (not limited to patent issues), -conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot -distribute so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you -may not distribute the Program at all. For example, if a patent -license would not permit royalty-free redistribution of the Program by -all those who receive copies directly or indirectly through you, then -the only way you could satisfy both it and this License would be to -refrain entirely from distribution of the Program. - -If any portion of this section is held invalid or unenforceable under -any particular circumstance, the balance of the section is intended to -apply and the section as a whole is intended to apply in other -circumstances. - -It is not the purpose of this section to induce you to infringe any -patents or other property right claims or to contest validity of any -such claims; this section has the sole purpose of protecting the -integrity of the free software distribution system, which is -implemented by public license practices. Many people have made -generous contributions to the wide range of software distributed -through that system in reliance on consistent application of that -system; it is up to the author/donor to decide if he or she is willing -to distribute software through any other system and a licensee cannot -impose that choice. - -This section is intended to make thoroughly clear what is believed to -be a consequence of the rest of this License. - - 8. If the distribution and/or use of the Program is restricted in -certain countries either by patents or by copyrighted interfaces, the -original copyright holder who places the Program under this License -may add an explicit geographical distribution limitation excluding -those countries, so that distribution is permitted only in or among -countries not thus excluded. In such case, this License incorporates -the limitation as if written in the body of this License. - - 9. The Free Software Foundation may publish revised and/or new versions -of the General Public License from time to time. Such new versions will -be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - -Each version is given a distinguishing version number. If the Program -specifies a version number of this License which applies to it and "any -later version", you have the option of following the terms and conditions -either of that version or of any later version published by the Free -Software Foundation. If the Program does not specify a version number of -this License, you may choose any version ever published by the Free Software -Foundation. - - 10. If you wish to incorporate parts of the Program into other free -programs whose distribution conditions are different, write to the author -to ask for permission. For software which is copyrighted by the Free -Software Foundation, write to the Free Software Foundation; we sometimes -make exceptions for this. Our decision 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 generally. - - NO WARRANTY - - 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY -FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN -OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES -PROVIDE THE PROGRAM "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 THE PROGRAM IS WITH YOU. SHOULD THE -PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, -REPAIR OR CORRECTION. - - 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR -REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, -INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING -OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED -TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY -YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER -PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE -POSSIBILITY OF SUCH DAMAGES. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Programs - - If you develop a new program, and you want it to be of the greatest -possible use to the public, the best way to achieve this is to make it -free software which everyone can redistribute and change under these terms. - - To do so, attach the following notices to the program. It is safest -to attach them to the start of each source file to most effectively -convey the exclusion of warranty; and each file should have at least -the "copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License along - with this program; if not, write to the Free Software Foundation, Inc., - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. - -Also add information on how to contact you by electronic and paper mail. - -If the program is interactive, make it output a short notice like this -when it starts in an interactive mode: - - Gnomovision version 69, Copyright (C) year name of author - Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. - This is free software, and you are welcome to redistribute it - under certain conditions; type `show c' for details. - -The hypothetical commands `show w' and `show c' should show the appropriate -parts of the General Public License. Of course, the commands you use may -be called something other than `show w' and `show c'; they could even be -mouse-clicks or menu items--whatever suits your program. - -You should also get your employer (if you work as a programmer) or your -school, if any, to sign a "copyright disclaimer" for the program, if -necessary. Here is a sample; alter the names: - - Yoyodyne, Inc., hereby disclaims all copyright interest in the program - `Gnomovision' (which makes passes at compilers) written by James Hacker. - - , 1 April 1989 - Ty Coon, President of Vice - -This General Public License does not permit incorporating your program into -proprietary programs. If your program is a subroutine library, you may -consider it more useful to permit linking proprietary applications with the -library. If this is what you want to do, use the GNU Lesser General -Public License instead of this License. diff --git a/docs/bundled_licenses/python-crypto.txt b/docs/bundled_licenses/python-crypto.txt deleted file mode 100644 index 5ea30bec0c..0000000000 --- a/docs/bundled_licenses/python-crypto.txt +++ /dev/null @@ -1,69 +0,0 @@ -Copyright and licensing of the Python Cryptography Toolkit ("PyCrypto"): -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -Previously, the copyright and/or licensing status of the Python -Cryptography Toolkit ("PyCrypto") had been somewhat ambiguous. The -original intention of Andrew M. Kuchling and other contributors has -been to dedicate PyCrypto to the public domain, but that intention was -not necessarily made clear in the original disclaimer (see -LEGAL/copy/LICENSE.orig). - -Additionally, some files within PyCrypto had specified their own -licenses that differed from the PyCrypto license itself. For example, -the original RIPEMD.c module simply had a copyright statement and -warranty disclaimer, without clearly specifying any license terms. -(An updated version on the author's website came with a license that -contained a GPL-incompatible advertising clause.) - -To rectify this situation for PyCrypto 2.1, the following steps have -been taken: - - 1. Obtaining explicit permission from the original contributors to - dedicate their contributions to the public domain if they have not - already done so. (See the "LEGAL/copy/stmts" directory for - contributors' statements.) - - 2. Replacing some modules with clearly-licensed code from other - sources (e.g. the DES and DES3 modules were replaced with new ones - based on Tom St. Denis's public-domain LibTomCrypt library.) - - 3. Replacing some modules with code written from scratch (e.g. the - RIPEMD and Blowfish modules were re-implemented from their - respective algorithm specifications without reference to the old - implementations). - - 4. Removing some modules altogether without replacing them. - -To the best of our knowledge, with the exceptions noted below or -within the files themselves, the files that constitute PyCrypto are in -the public domain. Most are distributed with the following notice: - - The contents of this file are dedicated to the public domain. To - the extent that dedication to the public domain is not available, - everyone is granted a worldwide, perpetual, royalty-free, - non-exclusive license to exercise all rights associated with the - contents of this file for any purpose whatsoever. - No rights are reserved. - - 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. - -Exception: - - - Portions of HMAC.py and setup.py are derived from Python 2.2, and - are therefore Copyright (c) 2001, 2002, 2003 Python Software - Foundation (All Rights Reserved). They are licensed by the PSF - under the terms of the Python 2.2 license. (See the file - LEGAL/copy/LICENSE.python-2.2 for details.) - -EXPORT RESTRICTIONS: - -Note that the export or re-export of cryptographic software and/or -source code may be subject to regulation in your jurisdiction. - diff --git a/docs/bundled_licenses/python-ecdsa.txt b/docs/bundled_licenses/python-ecdsa.txt deleted file mode 100644 index 474479a2ce..0000000000 --- a/docs/bundled_licenses/python-ecdsa.txt +++ /dev/null @@ -1,24 +0,0 @@ -"python-ecdsa" Copyright (c) 2010 Brian Warner - -Portions written in 2005 by Peter Pearson and placed in the public domain. - -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. diff --git a/docs/bundled_licenses/python-httplib2.txt b/docs/bundled_licenses/python-httplib2.txt deleted file mode 100644 index e9a1ada181..0000000000 --- a/docs/bundled_licenses/python-httplib2.txt +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) - -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. diff --git a/docs/bundled_licenses/python-keyczar.txt b/docs/bundled_licenses/python-keyczar.txt deleted file mode 100644 index d645695673..0000000000 --- a/docs/bundled_licenses/python-keyczar.txt +++ /dev/null @@ -1,202 +0,0 @@ - - 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. diff --git a/docs/bundled_licenses/python-meld3.txt b/docs/bundled_licenses/python-meld3.txt deleted file mode 100644 index 0f06d960d8..0000000000 --- a/docs/bundled_licenses/python-meld3.txt +++ /dev/null @@ -1,54 +0,0 @@ -Zope Public License (ZPL) Version 2.1 -------------------------------------- - -A copyright notice accompanies this license document that -identifies the copyright holders. - -This license has been certified as open source. It has also -been designated as GPL compatible by the Free Software -Foundation (FSF). - -Redistribution and use in source and binary forms, with or -without modification, are permitted provided that the -following conditions are met: - -1. Redistributions in source code must retain the - accompanying copyright notice, this list of conditions, - and the following disclaimer. - -2. Redistributions in binary form must reproduce the accompanying - copyright notice, this list of conditions, and the - following disclaimer in the documentation and/or other - materials provided with the distribution. - -3. Names of the copyright holders must not be used to - endorse or promote products derived from this software - without prior written permission from the copyright - holders. - -4. The right to distribute this software or to use it for - any purpose does not give you the right to use - Servicemarks (sm) or Trademarks (tm) of the copyright - holders. Use of them is covered by separate agreement - with the copyright holders. - -5. If any files are modified, you must cause the modified - files to carry prominent notices stating that you changed - the files and the date of any change. - -Disclaimer - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' - AND ANY EXPRESSED 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 HOLDERS 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. diff --git a/docs/bundled_licenses/python-paramiko.txt b/docs/bundled_licenses/python-paramiko.txt deleted file mode 100644 index d12bef0c5a..0000000000 --- a/docs/bundled_licenses/python-paramiko.txt +++ /dev/null @@ -1,504 +0,0 @@ - GNU LESSER GENERAL PUBLIC LICENSE - Version 2.1, February 1999 - - Copyright (C) 1991, 1999 Free Software Foundation, Inc. - 51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - -[This is the first released version of the Lesser GPL. It also counts - as the successor of the GNU Library Public License, version 2, hence - the version number 2.1.] - - Preamble - - The licenses for most software are designed to take away your -freedom to share and change it. By contrast, the GNU General Public -Licenses are intended to guarantee your freedom to share and change -free software--to make sure the software is free for all its users. - - This license, the Lesser General Public License, applies to some -specially designated software packages--typically libraries--of the -Free Software Foundation and other authors who decide to use it. You -can use it too, but we suggest you first think carefully about whether -this license or the ordinary General Public License is the better -strategy to use in any particular case, based on the explanations below. - - When we speak of free software, we are referring to freedom of use, -not price. Our General Public Licenses are designed to make sure that -you have the freedom to distribute copies of free software (and charge -for this service if you wish); that you receive source code or can get -it if you want it; that you can change the software and use pieces of -it in new free programs; and that you are informed that you can do -these things. - - To protect your rights, we need to make restrictions that forbid -distributors to deny you these rights or to ask you to surrender these -rights. These restrictions translate to certain responsibilities for -you if you distribute copies of the library or if you modify it. - - For example, if you distribute copies of the library, whether gratis -or for a fee, you must give the recipients all the rights that we gave -you. You must make sure that they, too, receive or can get the source -code. If you link other code with the library, you must provide -complete object files to the recipients, so that they can relink them -with the library after making changes to the library and recompiling -it. And you must show them these terms so they know their rights. - - We protect your rights with a two-step method: (1) we copyright the -library, and (2) we offer you this license, which gives you legal -permission to copy, distribute and/or modify the library. - - To protect each distributor, we want to make it very clear that -there is no warranty for the free library. Also, if the library is -modified by someone else and passed on, the recipients should know -that what they have is not the original version, so that the original -author's reputation will not be affected by problems that might be -introduced by others. - - Finally, software patents pose a constant threat to the existence of -any free program. We wish to make sure that a company cannot -effectively restrict the users of a free program by obtaining a -restrictive license from a patent holder. Therefore, we insist that -any patent license obtained for a version of the library must be -consistent with the full freedom of use specified in this license. - - Most GNU software, including some libraries, is covered by the -ordinary GNU General Public License. This license, the GNU Lesser -General Public License, applies to certain designated libraries, and -is quite different from the ordinary General Public License. We use -this license for certain libraries in order to permit linking those -libraries into non-free programs. - - When a program is linked with a library, whether statically or using -a shared library, the combination of the two is legally speaking a -combined work, a derivative of the original library. The ordinary -General Public License therefore permits such linking only if the -entire combination fits its criteria of freedom. The Lesser General -Public License permits more lax criteria for linking other code with -the library. - - We call this license the "Lesser" General Public License because it -does Less to protect the user's freedom than the ordinary General -Public License. It also provides other free software developers Less -of an advantage over competing non-free programs. These disadvantages -are the reason we use the ordinary General Public License for many -libraries. However, the Lesser license provides advantages in certain -special circumstances. - - For example, on rare occasions, there may be a special need to -encourage the widest possible use of a certain library, so that it becomes -a de-facto standard. To achieve this, non-free programs must be -allowed to use the library. A more frequent case is that a free -library does the same job as widely used non-free libraries. In this -case, there is little to gain by limiting the free library to free -software only, so we use the Lesser General Public License. - - In other cases, permission to use a particular library in non-free -programs enables a greater number of people to use a large body of -free software. For example, permission to use the GNU C Library in -non-free programs enables many more people to use the whole GNU -operating system, as well as its variant, the GNU/Linux operating -system. - - Although the Lesser General Public License is Less protective of the -users' freedom, it does ensure that the user of a program that is -linked with the Library has the freedom and the wherewithal to run -that program using a modified version of the Library. - - The precise terms and conditions for copying, distribution and -modification follow. Pay close attention to the difference between a -"work based on the library" and a "work that uses the library". The -former contains code derived from the library, whereas the latter must -be combined with the library in order to run. - - GNU LESSER GENERAL PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - 0. This License Agreement applies to any software library or other -program which contains a notice placed by the copyright holder or -other authorized party saying it may be distributed under the terms of -this Lesser General Public License (also called "this License"). -Each licensee is addressed as "you". - - A "library" means a collection of software functions and/or data -prepared so as to be conveniently linked with application programs -(which use some of those functions and data) to form executables. - - The "Library", below, refers to any such software library or work -which has been distributed under these terms. A "work based on the -Library" means either the Library or any derivative work under -copyright law: that is to say, a work containing the Library or a -portion of it, either verbatim or with modifications and/or translated -straightforwardly into another language. (Hereinafter, translation is -included without limitation in the term "modification".) - - "Source code" for a work means the preferred form of the work for -making modifications to it. For a library, complete source code means -all the source code for all modules it contains, plus any associated -interface definition files, plus the scripts used to control compilation -and installation of the library. - - Activities other than copying, distribution and modification are not -covered by this License; they are outside its scope. The act of -running a program using the Library is not restricted, and output from -such a program is covered only if its contents constitute a work based -on the Library (independent of the use of the Library in a tool for -writing it). Whether that is true depends on what the Library does -and what the program that uses the Library does. - - 1. You may copy and distribute verbatim copies of the Library's -complete source code as you receive it, in any medium, provided that -you conspicuously and appropriately publish on each copy an -appropriate copyright notice and disclaimer of warranty; keep intact -all the notices that refer to this License and to the absence of any -warranty; and distribute a copy of this License along with the -Library. - - You may charge a fee for the physical act of transferring a copy, -and you may at your option offer warranty protection in exchange for a -fee. - - 2. You may modify your copy or copies of the Library or any portion -of it, thus forming a work based on the Library, and copy and -distribute such modifications or work under the terms of Section 1 -above, provided that you also meet all of these conditions: - - a) The modified work must itself be a software library. - - b) You must cause the files modified to carry prominent notices - stating that you changed the files and the date of any change. - - c) You must cause the whole of the work to be licensed at no - charge to all third parties under the terms of this License. - - d) If a facility in the modified Library refers to a function or a - table of data to be supplied by an application program that uses - the facility, other than as an argument passed when the facility - is invoked, then you must make a good faith effort to ensure that, - in the event an application does not supply such function or - table, the facility still operates, and performs whatever part of - its purpose remains meaningful. - - (For example, a function in a library to compute square roots has - a purpose that is entirely well-defined independent of the - application. Therefore, Subsection 2d requires that any - application-supplied function or table used by this function must - be optional: if the application does not supply it, the square - root function must still compute square roots.) - -These requirements apply to the modified work as a whole. If -identifiable sections of that work are not derived from the Library, -and can be reasonably considered independent and separate works in -themselves, then this License, and its terms, do not apply to those -sections when you distribute them as separate works. But when you -distribute the same sections as part of a whole which is a work based -on the Library, the distribution of the whole must be on the terms of -this License, whose permissions for other licensees extend to the -entire whole, and thus to each and every part regardless of who wrote -it. - -Thus, it is not the intent of this section to claim rights or contest -your rights to work written entirely by you; rather, the intent is to -exercise the right to control the distribution of derivative or -collective works based on the Library. - -In addition, mere aggregation of another work not based on the Library -with the Library (or with a work based on the Library) on a volume of -a storage or distribution medium does not bring the other work under -the scope of this License. - - 3. You may opt to apply the terms of the ordinary GNU General Public -License instead of this License to a given copy of the Library. To do -this, you must alter all the notices that refer to this License, so -that they refer to the ordinary GNU General Public License, version 2, -instead of to this License. (If a newer version than version 2 of the -ordinary GNU General Public License has appeared, then you can specify -that version instead if you wish.) Do not make any other change in -these notices. - - Once this change is made in a given copy, it is irreversible for -that copy, so the ordinary GNU General Public License applies to all -subsequent copies and derivative works made from that copy. - - This option is useful when you wish to copy part of the code of -the Library into a program that is not a library. - - 4. You may copy and distribute the Library (or a portion or -derivative of it, under Section 2) in object code or executable form -under the terms of Sections 1 and 2 above provided that you accompany -it with the complete corresponding machine-readable source code, which -must be distributed under the terms of Sections 1 and 2 above on a -medium customarily used for software interchange. - - If distribution of object code is made by offering access to copy -from a designated place, then offering equivalent access to copy the -source code from the same place satisfies the requirement to -distribute the source code, even though third parties are not -compelled to copy the source along with the object code. - - 5. A program that contains no derivative of any portion of the -Library, but is designed to work with the Library by being compiled or -linked with it, is called a "work that uses the Library". Such a -work, in isolation, is not a derivative work of the Library, and -therefore falls outside the scope of this License. - - However, linking a "work that uses the Library" with the Library -creates an executable that is a derivative of the Library (because it -contains portions of the Library), rather than a "work that uses the -library". The executable is therefore covered by this License. -Section 6 states terms for distribution of such executables. - - When a "work that uses the Library" uses material from a header file -that is part of the Library, the object code for the work may be a -derivative work of the Library even though the source code is not. -Whether this is true is especially significant if the work can be -linked without the Library, or if the work is itself a library. The -threshold for this to be true is not precisely defined by law. - - If such an object file uses only numerical parameters, data -structure layouts and accessors, and small macros and small inline -functions (ten lines or less in length), then the use of the object -file is unrestricted, regardless of whether it is legally a derivative -work. (Executables containing this object code plus portions of the -Library will still fall under Section 6.) - - Otherwise, if the work is a derivative of the Library, you may -distribute the object code for the work under the terms of Section 6. -Any executables containing that work also fall under Section 6, -whether or not they are linked directly with the Library itself. - - 6. As an exception to the Sections above, you may also combine or -link a "work that uses the Library" with the Library to produce a -work containing portions of the Library, and distribute that work -under terms of your choice, provided that the terms permit -modification of the work for the customer's own use and reverse -engineering for debugging such modifications. - - You must give prominent notice with each copy of the work that the -Library is used in it and that the Library and its use are covered by -this License. You must supply a copy of this License. If the work -during execution displays copyright notices, you must include the -copyright notice for the Library among them, as well as a reference -directing the user to the copy of this License. Also, you must do one -of these things: - - a) Accompany the work with the complete corresponding - machine-readable source code for the Library including whatever - changes were used in the work (which must be distributed under - Sections 1 and 2 above); and, if the work is an executable linked - with the Library, with the complete machine-readable "work that - uses the Library", as object code and/or source code, so that the - user can modify the Library and then relink to produce a modified - executable containing the modified Library. (It is understood - that the user who changes the contents of definitions files in the - Library will not necessarily be able to recompile the application - to use the modified definitions.) - - b) Use a suitable shared library mechanism for linking with the - Library. A suitable mechanism is one that (1) uses at run time a - copy of the library already present on the user's computer system, - rather than copying library functions into the executable, and (2) - will operate properly with a modified version of the library, if - the user installs one, as long as the modified version is - interface-compatible with the version that the work was made with. - - c) Accompany the work with a written offer, valid for at - least three years, to give the same user the materials - specified in Subsection 6a, above, for a charge no more - than the cost of performing this distribution. - - d) If distribution of the work is made by offering access to copy - from a designated place, offer equivalent access to copy the above - specified materials from the same place. - - e) Verify that the user has already received a copy of these - materials or that you have already sent this user a copy. - - For an executable, the required form of the "work that uses the -Library" must include any data and utility programs needed for -reproducing the executable from it. However, as a special exception, -the materials to be distributed need not include anything that is -normally distributed (in either source or binary form) with the major -components (compiler, kernel, and so on) of the operating system on -which the executable runs, unless that component itself accompanies -the executable. - - It may happen that this requirement contradicts the license -restrictions of other proprietary libraries that do not normally -accompany the operating system. Such a contradiction means you cannot -use both them and the Library together in an executable that you -distribute. - - 7. You may place library facilities that are a work based on the -Library side-by-side in a single library together with other library -facilities not covered by this License, and distribute such a combined -library, provided that the separate distribution of the work based on -the Library and of the other library facilities is otherwise -permitted, and provided that you do these two things: - - a) Accompany the combined library with a copy of the same work - based on the Library, uncombined with any other library - facilities. This must be distributed under the terms of the - Sections above. - - b) Give prominent notice with the combined library of the fact - that part of it is a work based on the Library, and explaining - where to find the accompanying uncombined form of the same work. - - 8. You may not copy, modify, sublicense, link with, or distribute -the Library except as expressly provided under this License. Any -attempt otherwise to copy, modify, sublicense, link with, or -distribute the Library is void, and will automatically terminate your -rights under this License. However, parties who have received copies, -or rights, from you under this License will not have their licenses -terminated so long as such parties remain in full compliance. - - 9. You are not required to accept this License, since you have not -signed it. However, nothing else grants you permission to modify or -distribute the Library or its derivative works. These actions are -prohibited by law if you do not accept this License. Therefore, by -modifying or distributing the Library (or any work based on the -Library), you indicate your acceptance of this License to do so, and -all its terms and conditions for copying, distributing or modifying -the Library or works based on it. - - 10. Each time you redistribute the Library (or any work based on the -Library), the recipient automatically receives a license from the -original licensor to copy, distribute, link with or modify the Library -subject to these terms and conditions. You may not impose any further -restrictions on the recipients' exercise of the rights granted herein. -You are not responsible for enforcing compliance by third parties with -this License. - - 11. If, as a consequence of a court judgment or allegation of patent -infringement or for any other reason (not limited to patent issues), -conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot -distribute so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you -may not distribute the Library at all. For example, if a patent -license would not permit royalty-free redistribution of the Library by -all those who receive copies directly or indirectly through you, then -the only way you could satisfy both it and this License would be to -refrain entirely from distribution of the Library. - -If any portion of this section is held invalid or unenforceable under any -particular circumstance, the balance of the section is intended to apply, -and the section as a whole is intended to apply in other circumstances. - -It is not the purpose of this section to induce you to infringe any -patents or other property right claims or to contest validity of any -such claims; this section has the sole purpose of protecting the -integrity of the free software distribution system which is -implemented by public license practices. Many people have made -generous contributions to the wide range of software distributed -through that system in reliance on consistent application of that -system; it is up to the author/donor to decide if he or she is willing -to distribute software through any other system and a licensee cannot -impose that choice. - -This section is intended to make thoroughly clear what is believed to -be a consequence of the rest of this License. - - 12. If the distribution and/or use of the Library is restricted in -certain countries either by patents or by copyrighted interfaces, the -original copyright holder who places the Library under this License may add -an explicit geographical distribution limitation excluding those countries, -so that distribution is permitted only in or among countries not thus -excluded. In such case, this License incorporates the limitation as if -written in the body of this License. - - 13. The Free Software Foundation may publish revised and/or new -versions of the Lesser General Public License from time to time. -Such new versions will be similar in spirit to the present version, -but may differ in detail to address new problems or concerns. - -Each version is given a distinguishing version number. If the Library -specifies a version number of this License which applies to it and -"any later version", you have the option of following the terms and -conditions either of that version or of any later version published by -the Free Software Foundation. If the Library does not specify a -license version number, you may choose any version ever published by -the Free Software Foundation. - - 14. If you wish to incorporate parts of the Library into other free -programs whose distribution conditions are incompatible with these, -write to the author to ask for permission. For software which is -copyrighted by the Free Software Foundation, write to the Free -Software Foundation; we sometimes make exceptions for this. Our -decision 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 generally. - - NO WARRANTY - - 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO -WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. -EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR -OTHER PARTIES PROVIDE THE LIBRARY "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 THE -LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME -THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - - 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN -WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY -AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU -FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR -CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE -LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING -RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A -FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF -SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGES. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Libraries - - If you develop a new library, and you want it to be of the greatest -possible use to the public, we recommend making it free software that -everyone can redistribute and change. You can do so by permitting -redistribution under these terms (or, alternatively, under the terms of the -ordinary General Public License). - - To apply these terms, attach the following notices to the library. It is -safest to attach them to the start of each source file to most effectively -convey the exclusion of warranty; and each file should have at least the -"copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA - -Also add information on how to contact you by electronic and paper mail. - -You should also get your employer (if you work as a programmer) or your -school, if any, to sign a "copyright disclaimer" for the library, if -necessary. Here is a sample; alter the names: - - Yoyodyne, Inc., hereby disclaims all copyright interest in the - library `Frob' (a library for tweaking knobs) written by James Random Hacker. - - , 1 April 1990 - Ty Coon, President of Vice - -That's all there is to it! - - diff --git a/docs/bundled_licenses/redis.txt b/docs/bundled_licenses/redis.txt deleted file mode 100644 index a58de44ddd..0000000000 --- a/docs/bundled_licenses/redis.txt +++ /dev/null @@ -1,10 +0,0 @@ -Copyright (c) 2006-2014, Salvatore Sanfilippo -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 Redis 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. diff --git a/docs/bundled_licenses/sshpass.txt b/docs/bundled_licenses/sshpass.txt deleted file mode 100644 index d60c31a97a..0000000000 --- a/docs/bundled_licenses/sshpass.txt +++ /dev/null @@ -1,340 +0,0 @@ - GNU GENERAL PUBLIC LICENSE - Version 2, June 1991 - - Copyright (C) 1989, 1991 Free Software Foundation, Inc. - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - Preamble - - The licenses for most software are designed to take away your -freedom to share and change it. By contrast, the GNU General Public -License is intended to guarantee your freedom to share and change free -software--to make sure the software is free for all its users. This -General Public License applies to most of the Free Software -Foundation's software and to any other program whose authors commit to -using it. (Some other Free Software Foundation software is covered by -the GNU Library General Public License instead.) You can apply it to -your programs, too. - - When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -this service if you wish), that you receive source code or can get it -if you want it, that you can change the software or use pieces of it -in new free programs; and that you know you can do these things. - - To protect your rights, we need to make restrictions that forbid -anyone to deny you these rights or to ask you to surrender the rights. -These restrictions translate to certain responsibilities for you if you -distribute copies of the software, or if you modify it. - - For example, if you distribute copies of such a program, whether -gratis or for a fee, 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 show them these terms so they know their -rights. - - We protect your rights with two steps: (1) copyright the software, and -(2) offer you this license which gives you legal permission to copy, -distribute and/or modify the software. - - Also, for each author's protection and ours, we want to make certain -that everyone understands that there is no warranty for this free -software. If the software is modified by someone else and passed on, we -want its recipients to know that what they have is not the original, so -that any problems introduced by others will not reflect on the original -authors' reputations. - - Finally, any free program is threatened constantly by software -patents. We wish to avoid the danger that redistributors of a free -program will individually obtain patent licenses, in effect making the -program proprietary. To prevent this, we have made it clear that any -patent must be licensed for everyone's free use or not licensed at all. - - The precise terms and conditions for copying, distribution and -modification follow. - - GNU GENERAL PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - 0. This License applies to any program or other work which contains -a notice placed by the copyright holder saying it may be distributed -under the terms of this General Public License. The "Program", below, -refers to any such program or work, and a "work based on the Program" -means either the Program or any derivative work under copyright law: -that is to say, a work containing the Program or a portion of it, -either verbatim or with modifications and/or translated into another -language. (Hereinafter, translation is included without limitation in -the term "modification".) Each licensee is addressed as "you". - -Activities other than copying, distribution and modification are not -covered by this License; they are outside its scope. The act of -running the Program is not restricted, and the output from the Program -is covered only if its contents constitute a work based on the -Program (independent of having been made by running the Program). -Whether that is true depends on what the Program does. - - 1. You may copy and distribute verbatim copies of the Program's -source code as you receive it, in any medium, provided that you -conspicuously and appropriately publish on each copy an appropriate -copyright notice and disclaimer of warranty; keep intact all the -notices that refer to this License and to the absence of any warranty; -and give any other recipients of the Program a copy of this License -along with the Program. - -You may charge a fee for the physical act of transferring a copy, and -you may at your option offer warranty protection in exchange for a fee. - - 2. You may modify your copy or copies of the Program or any portion -of it, thus forming a work based on the Program, and copy and -distribute such modifications or work under the terms of Section 1 -above, provided that you also meet all of these conditions: - - a) You must cause the modified files to carry prominent notices - stating that you changed the files and the date of any change. - - b) You must cause any work that you distribute or publish, that in - whole or in part contains or is derived from the Program or any - part thereof, to be licensed as a whole at no charge to all third - parties under the terms of this License. - - c) If the modified program normally reads commands interactively - when run, you must cause it, when started running for such - interactive use in the most ordinary way, to print or display an - announcement including an appropriate copyright notice and a - notice that there is no warranty (or else, saying that you provide - a warranty) and that users may redistribute the program under - these conditions, and telling the user how to view a copy of this - License. (Exception: if the Program itself is interactive but - does not normally print such an announcement, your work based on - the Program is not required to print an announcement.) - -These requirements apply to the modified work as a whole. If -identifiable sections of that work are not derived from the Program, -and can be reasonably considered independent and separate works in -themselves, then this License, and its terms, do not apply to those -sections when you distribute them as separate works. But when you -distribute the same sections as part of a whole which is a work based -on the Program, the distribution of the whole must be on the terms of -this License, whose permissions for other licensees extend to the -entire whole, and thus to each and every part regardless of who wrote it. - -Thus, it is not the intent of this section to claim rights or contest -your rights to work written entirely by you; rather, the intent is to -exercise the right to control the distribution of derivative or -collective works based on the Program. - -In addition, mere aggregation of another work not based on the Program -with the Program (or with a work based on the Program) on a volume of -a storage or distribution medium does not bring the other work under -the scope of this License. - - 3. You may copy and distribute the Program (or a work based on it, -under Section 2) in object code or executable form under the terms of -Sections 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 Sections - 1 and 2 above on a medium customarily used for software interchange; or, - - b) Accompany it with a written offer, valid for at least three - years, to give any third party, for a charge no more than your - cost of physically performing source distribution, a complete - machine-readable copy of the corresponding source code, to be - distributed under the terms of Sections 1 and 2 above on a medium - customarily used for software interchange; or, - - c) Accompany it with the information you received as to the offer - to distribute corresponding source code. (This alternative is - allowed only for noncommercial distribution and only if you - received the program in object code or executable form with such - an offer, in accord with Subsection b above.) - -The source code for a work means the preferred form of the work for -making modifications to it. For an executable work, complete source -code means all the source code for all modules it contains, plus any -associated interface definition files, plus the scripts used to -control compilation and installation of the executable. However, as a -special exception, the source code distributed need not include -anything that is normally distributed (in either source or binary -form) with the major components (compiler, kernel, and so on) of the -operating system on which the executable runs, unless that component -itself accompanies the executable. - -If distribution of executable or object code is made by offering -access to copy from a designated place, then offering equivalent -access to copy the source code from the same place counts as -distribution of the source code, even though third parties are not -compelled to copy the source along with the object code. - - 4. You may not copy, modify, sublicense, or distribute the Program -except as expressly provided under this License. Any attempt -otherwise to copy, modify, sublicense or distribute the Program is -void, and will automatically terminate your rights under this License. -However, parties who have received copies, or rights, from you under -this License will not have their licenses terminated so long as such -parties remain in full compliance. - - 5. You are not required to accept this License, since you have not -signed it. However, nothing else grants you permission to modify or -distribute the Program or its derivative works. These actions are -prohibited by law if you do not accept this License. Therefore, by -modifying or distributing the Program (or any work based on the -Program), you indicate your acceptance of this License to do so, and -all its terms and conditions for copying, distributing or modifying -the Program or works based on it. - - 6. Each time you redistribute the Program (or any work based on the -Program), the recipient automatically receives a license from the -original licensor to copy, distribute or modify the Program subject to -these terms and conditions. You may not impose any further -restrictions on the recipients' exercise of the rights granted herein. -You are not responsible for enforcing compliance by third parties to -this License. - - 7. If, as a consequence of a court judgment or allegation of patent -infringement or for any other reason (not limited to patent issues), -conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot -distribute so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you -may not distribute the Program at all. For example, if a patent -license would not permit royalty-free redistribution of the Program by -all those who receive copies directly or indirectly through you, then -the only way you could satisfy both it and this License would be to -refrain entirely from distribution of the Program. - -If any portion of this section is held invalid or unenforceable under -any particular circumstance, the balance of the section is intended to -apply and the section as a whole is intended to apply in other -circumstances. - -It is not the purpose of this section to induce you to infringe any -patents or other property right claims or to contest validity of any -such claims; this section has the sole purpose of protecting the -integrity of the free software distribution system, which is -implemented by public license practices. Many people have made -generous contributions to the wide range of software distributed -through that system in reliance on consistent application of that -system; it is up to the author/donor to decide if he or she is willing -to distribute software through any other system and a licensee cannot -impose that choice. - -This section is intended to make thoroughly clear what is believed to -be a consequence of the rest of this License. - - 8. If the distribution and/or use of the Program is restricted in -certain countries either by patents or by copyrighted interfaces, the -original copyright holder who places the Program under this License -may add an explicit geographical distribution limitation excluding -those countries, so that distribution is permitted only in or among -countries not thus excluded. In such case, this License incorporates -the limitation as if written in the body of this License. - - 9. The Free Software Foundation may publish revised and/or new versions -of the General Public License from time to time. Such new versions will -be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - -Each version is given a distinguishing version number. If the Program -specifies a version number of this License which applies to it and "any -later version", you have the option of following the terms and conditions -either of that version or of any later version published by the Free -Software Foundation. If the Program does not specify a version number of -this License, you may choose any version ever published by the Free Software -Foundation. - - 10. If you wish to incorporate parts of the Program into other free -programs whose distribution conditions are different, write to the author -to ask for permission. For software which is copyrighted by the Free -Software Foundation, write to the Free Software Foundation; we sometimes -make exceptions for this. Our decision 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 generally. - - NO WARRANTY - - 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY -FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN -OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES -PROVIDE THE PROGRAM "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 THE PROGRAM IS WITH YOU. SHOULD THE -PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, -REPAIR OR CORRECTION. - - 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR -REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, -INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING -OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED -TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY -YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER -PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE -POSSIBILITY OF SUCH DAMAGES. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Programs - - If you develop a new program, and you want it to be of the greatest -possible use to the public, the best way to achieve this is to make it -free software which everyone can redistribute and change under these terms. - - To do so, attach the following notices to the program. It is safest -to attach them to the start of each source file to most effectively -convey the exclusion of warranty; and each file should have at least -the "copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - - -Also add information on how to contact you by electronic and paper mail. - -If the program is interactive, make it output a short notice like this -when it starts in an interactive mode: - - Gnomovision version 69, Copyright (C) year name of author - Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. - This is free software, and you are welcome to redistribute it - under certain conditions; type `show c' for details. - -The hypothetical commands `show w' and `show c' should show the appropriate -parts of the General Public License. Of course, the commands you use may -be called something other than `show w' and `show c'; they could even be -mouse-clicks or menu items--whatever suits your program. - -You should also get your employer (if you work as a programmer) or your -school, if any, to sign a "copyright disclaimer" for the program, if -necessary. Here is a sample; alter the names: - - Yoyodyne, Inc., hereby disclaims all copyright interest in the program - `Gnomovision' (which makes passes at compilers) written by James Hacker. - - , 1 April 1989 - Ty Coon, President of Vice - -This General Public License does not permit incorporating your program into -proprietary programs. If your program is a subroutine library, you may -consider it more useful to permit linking proprietary applications with the -library. If this is what you want to do, use the GNU Library General -Public License instead of this License. diff --git a/docs/bundled_licenses/supervisor.txt b/docs/bundled_licenses/supervisor.txt deleted file mode 100644 index 3c8cd732ed..0000000000 --- a/docs/bundled_licenses/supervisor.txt +++ /dev/null @@ -1,164 +0,0 @@ -Supervisor is licensed under the following license: - - A copyright notice accompanies this license document that identifies - the copyright holders. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - 1. Redistributions in source code must retain the accompanying - copyright notice, this list of conditions, and the following - disclaimer. - - 2. Redistributions in binary form must reproduce the accompanying - copyright notice, this list of conditions, and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - 3. Names of the copyright holders must not be used to endorse or - promote products derived from this software without prior - written permission from the copyright holders. - - 4. If any files are modified, you must cause the modified files to - carry prominent notices stating that you changed the files and - the date of any change. - - Disclaimer - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND - ANY EXPRESSED 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 - HOLDERS 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. - -http_client.py code is based on code by Daniel Krech, which was -released under this license: - - LICENSE AGREEMENT FOR RDFLIB 0.9.0 THROUGH 2.3.1 - ------------------------------------------------ - Copyright (c) 2002-2005, Daniel Krech, http://eikeon.com/ - 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 Daniel Krech 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. - -Medusa, the asynchronous communications framework upon which -supervisor's server and client code is based, was created by Sam -Rushing: - - Medusa was once distributed under a 'free for non-commercial use' - license, but in May of 2000 Sam Rushing changed the license to be - identical to the standard Python license at the time. The standard - Python license has always applied to the core components of Medusa, - this change just frees up the rest of the system, including the http - server, ftp server, utilities, etc. Medusa is therefore under the - following license: - - ============================== - Permission to use, copy, modify, and distribute this software and - its documentation for any purpose and without fee is hereby granted, - provided that the above copyright notice appear in all copies and - that both that copyright notice and this permission notice appear in - supporting documentation, and that the name of Sam Rushing not be - used in advertising or publicity pertaining to distribution of the - software without specific, written prior permission. - - SAM RUSHING DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, - INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN - NO EVENT SHALL SAM RUSHING BE LIABLE FOR ANY SPECIAL, INDIRECT OR - CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS - OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, - NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION - WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - ============================== - -Some software in this distribution is released under the Zope Public -License (as marked in its file header): - - Zope Public License (ZPL) Version 2.1 - ------------------------------------- - - A copyright notice accompanies this license document that - identifies the copyright holders. - - This license has been certified as open source. It has also - been designated as GPL compatible by the Free Software - Foundation (FSF). - - Redistribution and use in source and binary forms, with or - without modification, are permitted provided that the - following conditions are met: - - 1. Redistributions in source code must retain the - accompanying copyright notice, this list of conditions, - and the following disclaimer. - - 2. Redistributions in binary form must reproduce the accompanying - copyright notice, this list of conditions, and the - following disclaimer in the documentation and/or other - materials provided with the distribution. - - 3. Names of the copyright holders must not be used to - endorse or promote products derived from this software - without prior written permission from the copyright - holders. - - 4. The right to distribute this software or to use it for - any purpose does not give you the right to use - Servicemarks (sm) or Trademarks (tm) of the copyright - holders. Use of them is covered by separate agreement - with the copyright holders. - - 5. If any files are modified, you must cause the modified - files to carry prominent notices stating that you changed - the files and the date of any change. - - Disclaimer - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' - AND ANY EXPRESSED 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 HOLDERS 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. diff --git a/docs/bundled_licenses/zeromq3.txt b/docs/bundled_licenses/zeromq3.txt deleted file mode 100644 index b6f3fd5d30..0000000000 --- a/docs/bundled_licenses/zeromq3.txt +++ /dev/null @@ -1,674 +0,0 @@ - GNU GENERAL PUBLIC LICENSE - Version 3, 29 June 2007 - - Copyright (C) 2007 Free Software Foundation, Inc. - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - Preamble - - The GNU General Public License is a free, copyleft license for -software and other kinds of works. - - The licenses for most software and other practical works are designed -to take away your freedom to share and change the works. By contrast, -the GNU General Public License is intended to guarantee your freedom to -share and change all versions of a program--to make sure it remains free -software for all its users. We, the Free Software Foundation, use the -GNU General Public License for most of our software; it applies also to -any other work released this way by its authors. You can apply it to -your programs, too. - - When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -them if you wish), that you receive source code or can get it if you -want it, that you can change the software or use pieces of it in new -free programs, and that you know you can do these things. - - To protect your rights, we need to prevent others from denying you -these rights or asking you to surrender the rights. Therefore, you have -certain responsibilities if you distribute copies of the software, or if -you modify it: responsibilities to respect the freedom of others. - - For example, if you distribute copies of such a program, whether -gratis or for a fee, you must pass on to the recipients the same -freedoms that you received. You must make sure that they, too, receive -or can get the source code. And you must show them these terms so they -know their rights. - - Developers that use the GNU GPL protect your rights with two steps: -(1) assert copyright on the software, and (2) offer you this License -giving you legal permission to copy, distribute and/or modify it. - - For the developers' and authors' protection, the GPL clearly explains -that there is no warranty for this free software. For both users' and -authors' sake, the GPL requires that modified versions be marked as -changed, so that their problems will not be attributed erroneously to -authors of previous versions. - - Some devices are designed to deny users access to install or run -modified versions of the software inside them, although the manufacturer -can do so. This is fundamentally incompatible with the aim of -protecting users' freedom to change the software. The systematic -pattern of such abuse occurs in the area of products for individuals to -use, which is precisely where it is most unacceptable. Therefore, we -have designed this version of the GPL to prohibit the practice for those -products. If such problems arise substantially in other domains, we -stand ready to extend this provision to those domains in future versions -of the GPL, as needed to protect the freedom of users. - - Finally, every program is threatened constantly by software patents. -States should not allow patents to restrict development and use of -software on general-purpose computers, but in those that do, we wish to -avoid the special danger that patents applied to a free program could -make it effectively proprietary. To prevent this, the GPL assures that -patents cannot be used to render the program non-free. - - The precise terms and conditions for copying, distribution and -modification follow. - - TERMS AND CONDITIONS - - 0. Definitions. - - "This License" refers to version 3 of the GNU General Public License. - - "Copyright" also means copyright-like laws that apply to other kinds of -works, such as semiconductor masks. - - "The Program" refers to any copyrightable work licensed under this -License. Each licensee is addressed as "you". "Licensees" and -"recipients" may be individuals or organizations. - - To "modify" a work means to copy from or adapt all or part of the work -in a fashion requiring copyright permission, other than the making of an -exact copy. The resulting work is called a "modified version" of the -earlier work or a work "based on" the earlier work. - - A "covered work" means either the unmodified Program or a work based -on the Program. - - To "propagate" a work means to do anything with it that, without -permission, would make you directly or secondarily liable for -infringement under applicable copyright law, except executing it on a -computer or modifying a private copy. Propagation includes copying, -distribution (with or without modification), making available to the -public, and in some countries other activities as well. - - To "convey" a work means any kind of propagation that enables other -parties to make or receive copies. Mere interaction with a user through -a computer network, with no transfer of a copy, is not conveying. - - An interactive user interface displays "Appropriate Legal Notices" -to the extent that it includes a convenient and prominently visible -feature that (1) displays an appropriate copyright notice, and (2) -tells the user that there is no warranty for the work (except to the -extent that warranties are provided), that licensees may convey the -work under this License, and how to view a copy of this License. If -the interface presents a list of user commands or options, such as a -menu, a prominent item in the list meets this criterion. - - 1. Source Code. - - The "source code" for a work means the preferred form of the work -for making modifications to it. "Object code" means any non-source -form of a work. - - A "Standard Interface" means an interface that either is an official -standard defined by a recognized standards body, or, in the case of -interfaces specified for a particular programming language, one that -is widely used among developers working in that language. - - The "System Libraries" of an executable work include anything, other -than the work as a whole, that (a) is included in the normal form of -packaging a Major Component, but which is not part of that Major -Component, and (b) serves only to enable use of the work with that -Major Component, or to implement a Standard Interface for which an -implementation is available to the public in source code form. A -"Major Component", in this context, means a major essential component -(kernel, window system, and so on) of the specific operating system -(if any) on which the executable work runs, or a compiler used to -produce the work, or an object code interpreter used to run it. - - The "Corresponding Source" for a work in object code form means all -the source code needed to generate, install, and (for an executable -work) run the object code and to modify the work, including scripts to -control those activities. However, it does not include the work's -System Libraries, or general-purpose tools or generally available free -programs which are used unmodified in performing those activities but -which are not part of the work. For example, Corresponding Source -includes interface definition files associated with source files for -the work, and the source code for shared libraries and dynamically -linked subprograms that the work is specifically designed to require, -such as by intimate data communication or control flow between those -subprograms and other parts of the work. - - The Corresponding Source need not include anything that users -can regenerate automatically from other parts of the Corresponding -Source. - - The Corresponding Source for a work in source code form is that -same work. - - 2. Basic Permissions. - - All rights granted under this License are granted for the term of -copyright on the Program, and are irrevocable provided the stated -conditions are met. This License explicitly affirms your unlimited -permission to run the unmodified Program. The output from running a -covered work is covered by this License only if the output, given its -content, constitutes a covered work. This License acknowledges your -rights of fair use or other equivalent, as provided by copyright law. - - You may make, run and propagate covered works that you do not -convey, without conditions so long as your license otherwise remains -in force. You may convey covered works to others for the sole purpose -of having them make modifications exclusively for you, or provide you -with facilities for running those works, provided that you comply with -the terms of this License in conveying all material for which you do -not control copyright. Those thus making or running the covered works -for you must do so exclusively on your behalf, under your direction -and control, on terms that prohibit them from making any copies of -your copyrighted material outside their relationship with you. - - Conveying under any other circumstances is permitted solely under -the conditions stated below. Sublicensing is not allowed; section 10 -makes it unnecessary. - - 3. Protecting Users' Legal Rights From Anti-Circumvention Law. - - No covered work shall be deemed part of an effective technological -measure under any applicable law fulfilling obligations under article -11 of the WIPO copyright treaty adopted on 20 December 1996, or -similar laws prohibiting or restricting circumvention of such -measures. - - When you convey a covered work, you waive any legal power to forbid -circumvention of technological measures to the extent such circumvention -is effected by exercising rights under this License with respect to -the covered work, and you disclaim any intention to limit operation or -modification of the work as a means of enforcing, against the work's -users, your or third parties' legal rights to forbid circumvention of -technological measures. - - 4. Conveying Verbatim Copies. - - You may convey verbatim copies of the Program's source code as you -receive it, in any medium, provided that you conspicuously and -appropriately publish on each copy an appropriate copyright notice; -keep intact all notices stating that this License and any -non-permissive terms added in accord with section 7 apply to the code; -keep intact all notices of the absence of any warranty; and give all -recipients a copy of this License along with the Program. - - You may charge any price or no price for each copy that you convey, -and you may offer support or warranty protection for a fee. - - 5. Conveying Modified Source Versions. - - You may convey a work based on the Program, or the modifications to -produce it from the Program, in the form of source code under the -terms of section 4, provided that you also meet all of these conditions: - - a) The work must carry prominent notices stating that you modified - it, and giving a relevant date. - - b) The work must carry prominent notices stating that it is - released under this License and any conditions added under section - 7. This requirement modifies the requirement in section 4 to - "keep intact all notices". - - c) You must license the entire work, as a whole, under this - License to anyone who comes into possession of a copy. This - License will therefore apply, along with any applicable section 7 - additional terms, to the whole of the work, and all its parts, - regardless of how they are packaged. This License gives no - permission to license the work in any other way, but it does not - invalidate such permission if you have separately received it. - - d) If the work has interactive user interfaces, each must display - Appropriate Legal Notices; however, if the Program has interactive - interfaces that do not display Appropriate Legal Notices, your - work need not make them do so. - - A compilation of a covered work with other separate and independent -works, which are not by their nature extensions of the covered work, -and which are not combined with it such as to form a larger program, -in or on a volume of a storage or distribution medium, is called an -"aggregate" if the compilation and its resulting copyright are not -used to limit the access or legal rights of the compilation's users -beyond what the individual works permit. Inclusion of a covered work -in an aggregate does not cause this License to apply to the other -parts of the aggregate. - - 6. Conveying Non-Source Forms. - - You may convey a covered work in object code form under the terms -of sections 4 and 5, provided that you also convey the -machine-readable Corresponding Source under the terms of this License, -in one of these ways: - - a) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by the - Corresponding Source fixed on a durable physical medium - customarily used for software interchange. - - b) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by a - written offer, valid for at least three years and valid for as - long as you offer spare parts or customer support for that product - model, to give anyone who possesses the object code either (1) a - copy of the Corresponding Source for all the software in the - product that is covered by this License, on a durable physical - medium customarily used for software interchange, for a price no - more than your reasonable cost of physically performing this - conveying of source, or (2) access to copy the - Corresponding Source from a network server at no charge. - - c) Convey individual copies of the object code with a copy of the - written offer to provide the Corresponding Source. This - alternative is allowed only occasionally and noncommercially, and - only if you received the object code with such an offer, in accord - with subsection 6b. - - d) Convey the object code by offering access from a designated - place (gratis or for a charge), and offer equivalent access to the - Corresponding Source in the same way through the same place at no - further charge. You need not require recipients to copy the - Corresponding Source along with the object code. If the place to - copy the object code is a network server, the Corresponding Source - may be on a different server (operated by you or a third party) - that supports equivalent copying facilities, provided you maintain - clear directions next to the object code saying where to find the - Corresponding Source. Regardless of what server hosts the - Corresponding Source, you remain obligated to ensure that it is - available for as long as needed to satisfy these requirements. - - e) Convey the object code using peer-to-peer transmission, provided - you inform other peers where the object code and Corresponding - Source of the work are being offered to the general public at no - charge under subsection 6d. - - A separable portion of the object code, whose source code is excluded -from the Corresponding Source as a System Library, need not be -included in conveying the object code work. - - A "User Product" is either (1) a "consumer product", which means any -tangible personal property which is normally used for personal, family, -or household purposes, or (2) anything designed or sold for incorporation -into a dwelling. In determining whether a product is a consumer product, -doubtful cases shall be resolved in favor of coverage. For a particular -product received by a particular user, "normally used" refers to a -typical or common use of that class of product, regardless of the status -of the particular user or of the way in which the particular user -actually uses, or expects or is expected to use, the product. A product -is a consumer product regardless of whether the product has substantial -commercial, industrial or non-consumer uses, unless such uses represent -the only significant mode of use of the product. - - "Installation Information" for a User Product means any methods, -procedures, authorization keys, or other information required to install -and execute modified versions of a covered work in that User Product from -a modified version of its Corresponding Source. The information must -suffice to ensure that the continued functioning of the modified object -code is in no case prevented or interfered with solely because -modification has been made. - - If you convey an object code work under this section in, or with, or -specifically for use in, a User Product, and the conveying occurs as -part of a transaction in which the right of possession and use of the -User Product is transferred to the recipient in perpetuity or for a -fixed term (regardless of how the transaction is characterized), the -Corresponding Source conveyed under this section must be accompanied -by the Installation Information. But this requirement does not apply -if neither you nor any third party retains the ability to install -modified object code on the User Product (for example, the work has -been installed in ROM). - - The requirement to provide Installation Information does not include a -requirement to continue to provide support service, warranty, or updates -for a work that has been modified or installed by the recipient, or for -the User Product in which it has been modified or installed. Access to a -network may be denied when the modification itself materially and -adversely affects the operation of the network or violates the rules and -protocols for communication across the network. - - Corresponding Source conveyed, and Installation Information provided, -in accord with this section must be in a format that is publicly -documented (and with an implementation available to the public in -source code form), and must require no special password or key for -unpacking, reading or copying. - - 7. Additional Terms. - - "Additional permissions" are terms that supplement the terms of this -License by making exceptions from one or more of its conditions. -Additional permissions that are applicable to the entire Program shall -be treated as though they were included in this License, to the extent -that they are valid under applicable law. If additional permissions -apply only to part of the Program, that part may be used separately -under those permissions, but the entire Program remains governed by -this License without regard to the additional permissions. - - When you convey a copy of a covered work, you may at your option -remove any additional permissions from that copy, or from any part of -it. (Additional permissions may be written to require their own -removal in certain cases when you modify the work.) You may place -additional permissions on material, added by you to a covered work, -for which you have or can give appropriate copyright permission. - - Notwithstanding any other provision of this License, for material you -add to a covered work, you may (if authorized by the copyright holders of -that material) supplement the terms of this License with terms: - - a) Disclaiming warranty or limiting liability differently from the - terms of sections 15 and 16 of this License; or - - b) Requiring preservation of specified reasonable legal notices or - author attributions in that material or in the Appropriate Legal - Notices displayed by works containing it; or - - c) Prohibiting misrepresentation of the origin of that material, or - requiring that modified versions of such material be marked in - reasonable ways as different from the original version; or - - d) Limiting the use for publicity purposes of names of licensors or - authors of the material; or - - e) Declining to grant rights under trademark law for use of some - trade names, trademarks, or service marks; or - - f) Requiring indemnification of licensors and authors of that - material by anyone who conveys the material (or modified versions of - it) with contractual assumptions of liability to the recipient, for - any liability that these contractual assumptions directly impose on - those licensors and authors. - - All other non-permissive additional terms are considered "further -restrictions" within the meaning of section 10. If the Program as you -received it, or any part of it, contains a notice stating that it is -governed by this License along with a term that is a further -restriction, you may remove that term. If a license document contains -a further restriction but permits relicensing or conveying under this -License, you may add to a covered work material governed by the terms -of that license document, provided that the further restriction does -not survive such relicensing or conveying. - - If you add terms to a covered work in accord with this section, you -must place, in the relevant source files, a statement of the -additional terms that apply to those files, or a notice indicating -where to find the applicable terms. - - Additional terms, permissive or non-permissive, may be stated in the -form of a separately written license, or stated as exceptions; -the above requirements apply either way. - - 8. Termination. - - You may not propagate or modify a covered work except as expressly -provided under this License. Any attempt otherwise to propagate or -modify it is void, and will automatically terminate your rights under -this License (including any patent licenses granted under the third -paragraph of section 11). - - However, if you cease all violation of this License, then your -license from a particular copyright holder is reinstated (a) -provisionally, unless and until the copyright holder explicitly and -finally terminates your license, and (b) permanently, if the copyright -holder fails to notify you of the violation by some reasonable means -prior to 60 days after the cessation. - - Moreover, your license from a particular copyright holder is -reinstated permanently if the copyright holder notifies you of the -violation by some reasonable means, this is the first time you have -received notice of violation of this License (for any work) from that -copyright holder, and you cure the violation prior to 30 days after -your receipt of the notice. - - Termination of your rights under this section does not terminate the -licenses of parties who have received copies or rights from you under -this License. If your rights have been terminated and not permanently -reinstated, you do not qualify to receive new licenses for the same -material under section 10. - - 9. Acceptance Not Required for Having Copies. - - You are not required to accept this License in order to receive or -run a copy of the Program. Ancillary propagation of a covered work -occurring solely as a consequence of using peer-to-peer transmission -to receive a copy likewise does not require acceptance. However, -nothing other than this License grants you permission to propagate or -modify any covered work. These actions infringe copyright if you do -not accept this License. Therefore, by modifying or propagating a -covered work, you indicate your acceptance of this License to do so. - - 10. Automatic Licensing of Downstream Recipients. - - Each time you convey a covered work, the recipient automatically -receives a license from the original licensors, to run, modify and -propagate that work, subject to this License. You are not responsible -for enforcing compliance by third parties with this License. - - An "entity transaction" is a transaction transferring control of an -organization, or substantially all assets of one, or subdividing an -organization, or merging organizations. If propagation of a covered -work results from an entity transaction, each party to that -transaction who receives a copy of the work also receives whatever -licenses to the work the party's predecessor in interest had or could -give under the previous paragraph, plus a right to possession of the -Corresponding Source of the work from the predecessor in interest, if -the predecessor has it or can get it with reasonable efforts. - - You may not impose any further restrictions on the exercise of the -rights granted or affirmed under this License. For example, you may -not impose a license fee, royalty, or other charge for exercise of -rights granted under this License, and you may not initiate litigation -(including a cross-claim or counterclaim in a lawsuit) alleging that -any patent claim is infringed by making, using, selling, offering for -sale, or importing the Program or any portion of it. - - 11. Patents. - - A "contributor" is a copyright holder who authorizes use under this -License of the Program or a work on which the Program is based. The -work thus licensed is called the contributor's "contributor version". - - A contributor's "essential patent claims" are all patent claims -owned or controlled by the contributor, whether already acquired or -hereafter acquired, that would be infringed by some manner, permitted -by this License, of making, using, or selling its contributor version, -but do not include claims that would be infringed only as a -consequence of further modification of the contributor version. For -purposes of this definition, "control" includes the right to grant -patent sublicenses in a manner consistent with the requirements of -this License. - - Each contributor grants you a non-exclusive, worldwide, royalty-free -patent license under the contributor's essential patent claims, to -make, use, sell, offer for sale, import and otherwise run, modify and -propagate the contents of its contributor version. - - In the following three paragraphs, a "patent license" is any express -agreement or commitment, however denominated, not to enforce a patent -(such as an express permission to practice a patent or covenant not to -sue for patent infringement). To "grant" such a patent license to a -party means to make such an agreement or commitment not to enforce a -patent against the party. - - If you convey a covered work, knowingly relying on a patent license, -and the Corresponding Source of the work is not available for anyone -to copy, free of charge and under the terms of this License, through a -publicly available network server or other readily accessible means, -then you must either (1) cause the Corresponding Source to be so -available, or (2) arrange to deprive yourself of the benefit of the -patent license for this particular work, or (3) arrange, in a manner -consistent with the requirements of this License, to extend the patent -license to downstream recipients. "Knowingly relying" means you have -actual knowledge that, but for the patent license, your conveying the -covered work in a country, or your recipient's use of the covered work -in a country, would infringe one or more identifiable patents in that -country that you have reason to believe are valid. - - If, pursuant to or in connection with a single transaction or -arrangement, you convey, or propagate by procuring conveyance of, a -covered work, and grant a patent license to some of the parties -receiving the covered work authorizing them to use, propagate, modify -or convey a specific copy of the covered work, then the patent license -you grant is automatically extended to all recipients of the covered -work and works based on it. - - A patent license is "discriminatory" if it does not include within -the scope of its coverage, prohibits the exercise of, or is -conditioned on the non-exercise of one or more of the rights that are -specifically granted under this License. You may not convey a covered -work if you are a party to an arrangement with a third party that is -in the business of distributing software, under which you make payment -to the third party based on the extent of your activity of conveying -the work, and under which the third party grants, to any of the -parties who would receive the covered work from you, a discriminatory -patent license (a) in connection with copies of the covered work -conveyed by you (or copies made from those copies), or (b) primarily -for and in connection with specific products or compilations that -contain the covered work, unless you entered into that arrangement, -or that patent license was granted, prior to 28 March 2007. - - Nothing in this License shall be construed as excluding or limiting -any implied license or other defenses to infringement that may -otherwise be available to you under applicable patent law. - - 12. No Surrender of Others' Freedom. - - If conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot convey a -covered work so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you may -not convey it at all. For example, if you agree to terms that obligate you -to collect a royalty for further conveying from those to whom you convey -the Program, the only way you could satisfy both those terms and this -License would be to refrain entirely from conveying the Program. - - 13. Use with the GNU Affero General Public License. - - Notwithstanding any other provision of this License, you have -permission to link or combine any covered work with a work licensed -under version 3 of the GNU Affero General Public License into a single -combined work, and to convey the resulting work. The terms of this -License will continue to apply to the part which is the covered work, -but the special requirements of the GNU Affero General Public License, -section 13, concerning interaction through a network will apply to the -combination as such. - - 14. Revised Versions of this License. - - The Free Software Foundation may publish revised and/or new versions of -the GNU General Public License from time to time. Such new versions will -be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - - Each version is given a distinguishing version number. If the -Program specifies that a certain numbered version of the GNU General -Public License "or any later version" applies to it, you have the -option of following the terms and conditions either of that numbered -version or of any later version published by the Free Software -Foundation. If the Program does not specify a version number of the -GNU General Public License, you may choose any version ever published -by the Free Software Foundation. - - If the Program specifies that a proxy can decide which future -versions of the GNU General Public License can be used, that proxy's -public statement of acceptance of a version permanently authorizes you -to choose that version for the Program. - - Later license versions may give you additional or different -permissions. However, no additional obligations are imposed on any -author or copyright holder as a result of your choosing to follow a -later version. - - 15. Disclaimer of Warranty. - - THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY -APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT -HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "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 THE PROGRAM -IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF -ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - - 16. Limitation of Liability. - - IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS -THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY -GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE -USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF -DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD -PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), -EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF -SUCH DAMAGES. - - 17. Interpretation of Sections 15 and 16. - - If the disclaimer of warranty and limitation of liability provided -above cannot be given local legal effect according to their terms, -reviewing courts shall apply local law that most closely approximates -an absolute waiver of all civil liability in connection with the -Program, unless a warranty or assumption of liability accompanies a -copy of the Program in return for a fee. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Programs - - If you develop a new program, and you want it to be of the greatest -possible use to the public, the best way to achieve this is to make it -free software which everyone can redistribute and change under these terms. - - To do so, attach the following notices to the program. It is safest -to attach them to the start of each source file to most effectively -state the exclusion of warranty; and each file should have at least -the "copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . - -Also add information on how to contact you by electronic and paper mail. - - If the program does terminal interaction, make it output a short -notice like this when it starts in an interactive mode: - - Copyright (C) - This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. - This is free software, and you are welcome to redistribute it - under certain conditions; type `show c' for details. - -The hypothetical commands `show w' and `show c' should show the appropriate -parts of the General Public License. Of course, your program's commands -might be different; for a GUI interface, you would use an "about box". - - You should also get your employer (if you work as a programmer) or school, -if any, to sign a "copyright disclaimer" for the program, if necessary. -For more information on this, and how to apply and follow the GNU GPL, see -. - - The GNU General Public License does not permit incorporating your program -into proprietary programs. If your program is a subroutine library, you -may consider it more useful to permit linking proprietary applications with -the library. If this is what you want to do, use the GNU Lesser General -Public License instead of this License. But first, please read -. From 5ff2e84ef4e9e26fb701064065176394080ff652 Mon Sep 17 00:00:00 2001 From: James Laska Date: Mon, 21 Sep 2015 13:55:55 -0400 Subject: [PATCH 13/17] Update font-awesome licenses per legal feedback --- docs/licenses/components-font-awesome.txt | 185 +++++++++++++++++++++- 1 file changed, 181 insertions(+), 4 deletions(-) diff --git a/docs/licenses/components-font-awesome.txt b/docs/licenses/components-font-awesome.txt index 832e5382a7..fe94050848 100644 --- a/docs/licenses/components-font-awesome.txt +++ b/docs/licenses/components-font-awesome.txt @@ -1,4 +1,181 @@ -- The Font Awesome font is licensed under the SIL Open Font License - http://scripts.sil.org/OFL -- Font Awesome CSS, LESS, and SASS files are licensed under the MIT License - http://opensource.org/licenses/mit-license.html -- The Font Awesome pictograms are licensed under the CC BY 3.0 License - http://creativecommons.org/licenses/by/3.0/ -- Attribution is no longer required in Font Awesome 3.0, but much appreciated: "Font Awesome by Dave Gandy - http://fortawesome.github.com/Font-Awesome" +Copyright (c) , (), +with Reserved Font Name . +Copyright (c) , (), +with Reserved Font Name . +Copyright (c) , (). + +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: +http://scripts.sil.org/OFL + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. + + + +The MIT License (MIT) + +Copyright (c) + +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. + + +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 OR COPYRIGHT LAW IS PROHIBITED. + +BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS LICENSE MAY BE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS. + +1. Definitions + + "Adaptation" means a work based upon the Work, or upon the Work and other pre-existing works, such as a translation, adaptation, derivative work, arrangement of music or other alterations of a literary or artistic work, or phonogram or performance and includes cinematographic adaptations or any other form in which the Work may be recast, transformed, or adapted including in any form recognizably derived from the original, except that a work that constitutes a Collection will not be considered an Adaptation for the purpose of this License. For the avoidance of doubt, where the Work is a musical work, performance or phonogram, the synchronization of the Work in timed-relation with a moving image ("synching") will be considered an Adaptation for the purpose of this License. + "Collection" means a collection of literary or artistic works, such as encyclopedias and anthologies, or performances, phonograms or broadcasts, or other works or subject matter other than works listed in Section 1(f) below, which, by reason of the selection and arrangement of their contents, constitute intellectual creations, in which the Work is included in its entirety in unmodified form along with one or more other contributions, each constituting separate and independent works in themselves, which together are assembled into a collective whole. A work that constitutes a Collection will not be considered an Adaptation (as defined above) for the purposes of this License. + "Distribute" means to make available to the public the original and copies of the Work or Adaptation, as appropriate, through sale or other transfer of ownership. + "Licensor" means the individual, individuals, entity or entities that offer(s) the Work under the terms of this License. + "Original Author" means, in the case of a literary or artistic work, the individual, individuals, entity or entities who created the Work or if no individual or entity can be identified, the publisher; and in addition (i) in the case of a performance the actors, singers, musicians, dancers, and other persons who act, sing, deliver, declaim, play in, interpret or otherwise perform literary or artistic works or expressions of folklore; (ii) in the case of a phonogram the producer being the person or legal entity who first fixes the sounds of a performance or other sounds; and, (iii) in the case of broadcasts, the organization that transmits the broadcast. + "Work" means the literary and/or artistic work offered under the terms of this License including without limitation any production in the literary, scientific and artistic domain, whatever may be the mode or form of its expression including digital form, such as a book, pamphlet and other writing; a lecture, address, sermon or other work of the same nature; a dramatic or dramatico-musical work; a choreographic work or entertainment in dumb show; a musical composition with or without words; a cinematographic work to which are assimilated works expressed by a process analogous to cinematography; a work of drawing, painting, architecture, sculpture, engraving or lithography; a photographic work to which are assimilated works expressed by a process analogous to photography; a work of applied art; an illustration, map, plan, sketch or three-dimensional work relative to geography, topography, architecture or science; a performance; a broadcast; a phonogram; a compilation of data to the extent it is protected as a copyrightable work; or a work performed by a variety or circus performer to the extent it is not otherwise considered a literary or artistic work. + "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. + "Publicly Perform" means to perform public recitations of the Work and to communicate to the public those public recitations, by any means or process, including by wire or wireless means or public digital performances; to make available to the public Works in such a way that members of the public may access these Works from a place and at a place individually chosen by them; to perform the Work to the public by any means or process and the communication to the public of the performances of the Work, including by public digital performance; to broadcast and rebroadcast the Work by any means including signs, sounds or images. + "Reproduce" means to make copies of the Work by any means including without limitation by sound or visual recordings and the right of fixation and reproducing fixations of the Work, including storage of a protected performance or phonogram in digital form or other electronic medium. + +2. Fair Dealing Rights. Nothing in this License is intended to reduce, limit, or restrict any uses free from copyright or rights arising from limitations or exceptions that are provided for in connection with the copyright protection 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: + + to Reproduce the Work, to incorporate the Work into one or more Collections, and to Reproduce the Work as incorporated in the Collections; + to create and Reproduce Adaptations provided that any such Adaptation, including any translation in any medium, takes reasonable steps to clearly label, demarcate or otherwise identify that changes were made to the original Work. For example, a translation could be marked "The original work was translated from English to Spanish," or a modification could indicate "The original work has been modified."; + to Distribute and Publicly Perform the Work including as incorporated in Collections; and, + to Distribute and Publicly Perform Adaptations. + + For the avoidance of doubt: + Non-waivable Compulsory License Schemes. In those jurisdictions in which the right to collect royalties through any statutory or compulsory licensing scheme cannot be waived, the Licensor reserves the exclusive right to collect such royalties for any exercise by You of the rights granted under this License; + Waivable Compulsory License Schemes. In those jurisdictions in which the right to collect royalties through any statutory or compulsory licensing scheme can be waived, the Licensor waives the exclusive right to collect such royalties for any exercise by You of the rights granted under this License; and, + Voluntary License Schemes. The Licensor waives the right to collect royalties, whether individually or, in the event that the Licensor is a member of a collecting society that administers voluntary licensing schemes, via that society, from any exercise by You of the rights granted under this License. + +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. Subject to Section 8(f), 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: + + You may Distribute or Publicly Perform the Work only under the terms of this License. You must include a copy of, or the Uniform Resource Identifier (URI) for, this License with every copy of the Work You Distribute or Publicly Perform. You may not offer or impose any terms on the Work that restrict the terms of this License or the ability of the recipient of the Work to exercise the rights granted to that recipient under the terms of the License. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties with every copy of the Work You Distribute or Publicly Perform. When You Distribute or Publicly Perform the Work, You may not impose any effective technological measures on the Work that restrict the ability of a recipient of the Work from You to exercise the rights granted to that recipient under the terms of the License. This Section 4(a) applies to the Work as incorporated in a Collection, but this does not require the Collection apart from the Work itself to be made subject to the terms of this License. If You create a Collection, upon notice from any Licensor You must, to the extent practicable, remove from the Collection any credit as required by Section 4(b), as requested. If You create an Adaptation, upon notice from any Licensor You must, to the extent practicable, remove from the Adaptation any credit as required by Section 4(b), as requested. + If You Distribute, or Publicly Perform the Work or any Adaptations or Collections, You must, unless a request has been made pursuant to Section 4(a), keep intact all copyright notices for the Work and provide, reasonable to the medium or means You are utilizing: (i) the name of the Original Author (or pseudonym, if applicable) if supplied, and/or if the Original Author and/or Licensor designate another party or parties (e.g., a sponsor institute, publishing entity, journal) for attribution ("Attribution Parties") in Licensor's copyright notice, terms of service or by other reasonable means, the name of such party or parties; (ii) the title of the Work if supplied; (iii) to the extent reasonably practicable, the URI, if any, that Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work; and (iv) , consistent with Section 3(b), in the case of an Adaptation, a credit identifying the use of the Work in the Adaptation (e.g., "French translation of the Work by Original Author," or "Screenplay based on original Work by Original Author"). The credit required by this Section 4 (b) may be implemented in any reasonable manner; provided, however, that in the case of a Adaptation or Collection, at a minimum such credit will appear, if a credit for all contributing authors of the Adaptation or Collection appears, then as part of these credits and in a manner at least as prominent as the credits for the other contributing authors. For the avoidance of doubt, You may only use the credit required by this Section for the purpose of attribution in the manner set out above and, by exercising Your rights under this License, You may not implicitly or explicitly assert or imply any connection with, sponsorship or endorsement by the Original Author, Licensor and/or Attribution Parties, as appropriate, of You or Your use of the Work, without the separate, express prior written permission of the Original Author, Licensor and/or Attribution Parties. + Except as otherwise agreed in writing by the Licensor or as may be otherwise permitted by applicable law, if You Reproduce, Distribute or Publicly Perform the Work either by itself or as part of any Adaptations or Collections, You must not distort, mutilate, modify or take other derogatory action in relation to the Work which would be prejudicial to the Original Author's honor or reputation. Licensor agrees that in those jurisdictions (e.g. Japan), in which any exercise of the right granted in Section 3(b) of this License (the right to make Adaptations) would be deemed to be a distortion, mutilation, modification or other derogatory action prejudicial to the Original Author's honor and reputation, the Licensor will waive or not assert, as appropriate, this Section, to the fullest extent permitted by the applicable national law, to enable You to reasonably exercise Your right under Section 3(b) of this License (right to make Adaptations) but not otherwise. + +5. Representations, Warranties and Disclaimer + +UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU. + +6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, 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 + + 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 Adaptations or Collections 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. + 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 + + Each time You Distribute or Publicly Perform the Work or a Collection, 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. + Each time You Distribute or Publicly Perform an Adaptation, 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. + 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. + 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. + 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. + The rights granted under, and the subject matter referenced, in this License were drafted utilizing the terminology of the Berne Convention for the Protection of Literary and Artistic Works (as amended on September 28, 1979), the Rome Convention of 1961, the WIPO Copyright Treaty of 1996, the WIPO Performances and Phonograms Treaty of 1996 and the Universal Copyright Convention (as revised on July 24, 1971). These rights and subject matter take effect in the relevant jurisdiction in which the License terms are sought to be enforced according to the corresponding provisions of the implementation of those treaty provisions in the applicable national law. If the standard suite of rights granted under applicable copyright law includes additional rights not granted under this License, such additional rights are deemed to be included in the License; this License is not intended to restrict the license of any rights under applicable law. + From 27869be4cda28d12320b10849467f02b23a43c0d Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Mon, 21 Sep 2015 14:01:04 -0400 Subject: [PATCH 14/17] Add LGPL source directly so it gets shipped. (HAAAAAAAAAAAAAAAAAAAAAAACK) --- docs/licenses/amqp-1.4.5.tar.gz | Bin 0 -> 77748 bytes docs/licenses/psycopg2-2.6.1.tar.gz | Bin 0 -> 371373 bytes docs/licenses/suds-0.4.tar.gz | Bin 0 -> 104013 bytes 3 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 docs/licenses/amqp-1.4.5.tar.gz create mode 100644 docs/licenses/psycopg2-2.6.1.tar.gz create mode 100644 docs/licenses/suds-0.4.tar.gz diff --git a/docs/licenses/amqp-1.4.5.tar.gz b/docs/licenses/amqp-1.4.5.tar.gz new file mode 100644 index 0000000000000000000000000000000000000000..2c6d6f114764cffcab78ef421c538a5cb868a857 GIT binary patch literal 77748 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�~- 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%0AJ5s*a5#@ClAM=P?lE?p0`lQ#-zvbk2om^cYq#ze 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 literal 0 HcmV?d00001 diff --git a/docs/licenses/psycopg2-2.6.1.tar.gz b/docs/licenses/psycopg2-2.6.1.tar.gz new file mode 100644 index 0000000000000000000000000000000000000000..b825a43c138896781ec6d040320324ee147ec2a2 GIT binary patch literal 371373 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%0D%Xi87mTeMLnrnO(>e{*xJpBS03J=yDugG# zryiJF$!gj9=-yG^9_1|rpd6YmsDAxt&yQQ@r!SB8jaaML1D(#+RX*rm7Z=$|Gbpo% z4aFTgQn6YfCSeI@zihxQ$v+vvOInXMqrJ0}rg(b6zE!}^rWBKNok0zG4qnuJDJx{H zUAWlAMVHlM5mnqPy+yEZpe=X#dE6jX98!v5lg6_B{5FOkLUGG+Lc##KaWNfH^kLI` zL3&u+?LvSJ$2E=L8j)g(AT2Zk^NabR6QBHe{_Oaud+^g^)4ZZwu_T3>}mj`AT-L9)NqwGCqgqCI|Y4WB$gQ{{y@Sa2YU5F&z ze44)9Pk~4_U27E<9*WI?cCqFzX=Dkl@%>BJP|m|09v?0 zr5`H#0B>L0=nNN-k8gUIZ1MtZUT1Hz&3#5=N4tV8`%--7uf(U$Rag@LuR{qxIt^fT z{Qske+adm=`Je4S@t=N|KUfDjcH14t6lhiZSH}JWo*;?Y-k{yJr z?IL22&N#GxJta^QG7NDdg2W)G^-{da318+i-GDJ|pqplr_OoFI;kBfivI&|scd5Ca z@chYY;4;v%fmQOqre`hqO-vu(#8DkhD(u`VsAp+@L)B0?mKz@>0o&~~y)dK$!NH_o zL+cy-c{_@pIHySZ9$0d`0Mv$|vb`ws7_Yx0|s`%g&AX0uIG^GrotL8k0?A>b{drkJZ~~i6hUa zu4X~=NrG(!_JraV({v&Ma3GEWR2;{osRL`)(#WJ{_op2jKS~KNZ2q62@Pmm9q;Ejk zjf;%T9Ei!5K}oG~D;Z79I4NSrVc(cjWhfn@2jP9Jz+I>jFDd36q?3}rZ?qsw7fqyc z4n=g0iBf&A4WmQd2P`FefF<(B!1Z7{ejY0sFXv-q6&Rg}7H%K_K0Uzx#t?%(oumJV z3~WtrB`G|VxS>j{!SG}V(Nb;o$m1vFO`e^yUCiB?f?<~nL^zzfbHc}*EOUhYW;qDvTM!-2d-N^k!0S z-{-pINH%iB-CDPAXyBp#+;JA&fNsGqrPj647{Hb#8=K>TR^e6@h0bk-IEvn5Y039s zK;k}hk#AS;{oI+-q4YJ_^DFK{PFHhdqc_nXCV5ExrgQUqjPDTFR`)px*J6W?2Qcp-9sF)hZJR+$R;4&}@)Xg=L4*n<`iSY#=w~>yeXmo4jC?mP0)g;E? z2sHu|;qjaP!4M6m+9)2RBRuMoL(c5%{r`=?!#~L$SYE zGdi^=Qzn`LaWW~L^clch&cqTPNcJ>RG*%`PLklT8?nff>uz6Uc1aS`1ytG!PwIdgV zAf#GBq8|Ue9jUq#Awn$>sJqI^S4N?bupBIggOvVcZ~w0`8mKKfNA>x51le$^6r2Mp zDRSn;lmHC*@;w4OADMYTWxqnPLhrtZ+GY0pE`D$BgNA>6LRR7uGCI-8#S_F8nLake z(jTSCn7yqx9l)JsqOZyVuUr)NnYz5BNWm&nT(X2zu&l=MX?=`Jz{`S{hoZ)`2OWG@ z<3OS{gl06KDc&t$)y6z08y-uxXEW|;isZ;HQfZJ)sJ1m`VC2U}cd1!6qAE;UM1nGR z7eLovWrM*ey-pYr0rg6+HKZxJ{l=WFF#>fSvHorHjnCmY=X>Wb&$@?4-SgAEqqDvJ^TXpKus@^S+LBE-K!qZ&k)eS&_US2(CHe+d zttcJkbAO@5-H{d6-ywm#W`vwhYM9iO*>W-`exu(zRefEdwmK1#g|PpNz@ZJ^Wlro}kF z&Ra%t=YZ90_E<0*%1aQwYMqPW7tGgCaY3$j-##)d7Zw82)JgW7^hwmD?9r*26{&8( z?2<7taMErIkt{?Wb+=SiX8o)*T7*lK;Px-u+Z}2Z+Y+D(N+wok*K~3wq4IofXG0Q* z=mdx}lqbzl_;5Crw9+;6>~bHSvJCSs8`LSpxtke9`V<_DkAZ7ciG*8@od0(l!@m<3z^`Uhc

    XSB+nO6(L9Wv1&am&!BZOGMa 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%0AImaDnOjj*1!Ab*|KR4yfP(?`jU;~xM- z0XW(p1iK&gQtfA6xzx?gL)cz6H)$hzq%`E;vfE^u0i}UEixiU4e6CkXWTU~*x)r%k zbxGWn;T=xSt=~*1m+4hW;Pjj5x&&opNKplLh4TrRKKz&4dgG>eX*6J1WzjoI9{nd{ z`FK1jQsh}8BugShNkK^G03}$Utn50D5U>EPUT%-^$Y=y{``%8s(=k%<*RPJGV!?;C zQUz0@!s1LL<{S!D-5gvt1|Sx>DD%1y3!M=V)kkm zfIFf>J=090Y0{-bPVqvl>D~zp^wLtsx;j(ttyXtzZjEqF0BgC?VU^>Si(7A`&8>8P zhDO2-`Vq~%p=Q3Nv3UD@gs2@|dOg$?_>lNrp0ds^MF1Vd2o>989v)G6Fx5!lh*ret zWIz!FS7jG2!|urblmHqTab9hJ<+9|U7&i(o8X3B+8n{(-&K(d4C_N^;7kMqim^4vF`u)KWz#J6BBvmB>pAjx820W_92|DGoR)DL zC(Rj-TA!3gVBRq2{c!(J`>*0BNAby52gkN0n(!mTUpzUk*-(W(KM}Lk$J9vt^}+M! z@zdRd=kbdJGm_oM&%fcI{R*mBKg4Y`tla#U9330dY2-sr-)34zRvWkhj(QD5wZx*i zE3FchskT9~5L68V1cJnQD6?oaTP{}Q4-zM@CmN8+biT6HePL6*%+3tK8&R7ow=9={ zOkXh8PGpV+z+Z=pbPO-_G@YOYG)-jF)#^{@GExX=B}suRF`WZBkq2KaA}Cx~7610rsxiGwt#ip+XGYTGUPzJ3PteO2=m@mu& zQawVM4awz3%-fu?fR0~@k%+7wDjNY)i`yi>chq1d&v?oUS?K1)#6JEB9*465_PoH( zlUmc!mDiY&5)a|+heT#w4qUoH1{kQ9L8>|#*j$sltK+otIHd< zCi0Kr&SaDUZ$^-_(ahum`*Ga4Yniic?h~v3T@%)`Ye~Sf^a*s>7u9cV$xwSy29I#i za5I6K6>?9KZCwp|ByWl}k1yZeEq?^uu+h}VdbU{jNMA(zuKp(rIwD=^*_49yV&Ktg z)ujKQ1Q28_-@>8C<{~KzXm~b*sfKWm6{yFEQ>AUb`pMCgqdtpr97(CTt23@j0viQl z35(TozFN{MBhtPPp2P*+5`j=w3>C78lPM6qCmB)xL;-xT(FLe}4xbk@aE_j6z3fZuQAv?fQwKVGzu>Y3Q~+ z7UKuM+$+dDfN{>O?t3~y<^fcZ|!d6QmE2*lUdWVl^Dh9tJh zXQT*^0XXkf!il^ZI9~8E8)}1^A&babm{C68lix+t7$z8~ZJFIu;;pnaj<^-6XsZ*BNOv=&+Ed4O7CCp{6)p`YnE~FkuGu_{o>f-r6|15++q^|9RRMKilVK7-a04? zx?~ol%LUokMMNpp@X9iHo~C8_(Mx@sa&0p(CGORNubP1{4+Q&bAP9m{l&DCIhZD`{ zSEQL)U}@9yuvjfn{lv@?c^6ldozCUP=J1nBiWp^%WZYu z<f|jL5)m?B z5_zTzWdm(7k2vrA-454An&Cms>Gn#?ML~czJw|2{iPeAyRgfsX648ARppty7X=LN{ z!pJ*?!qFC#@Gl0z}#6F{?SZ{|ssYzpGgra6k3(Ns z9&E~dHzW7mPABmJLdmtpNSFQ@^cU5=ilEefAQ@i|NPtk^|$}^xBusF|L_0zfBdibA)(~AWZha{Mn5eJh&+boUi|c4 zH(ntmyAFeQ3+6U8XD5f5tOmn-9dIueje&bVR)<^9E|A3aF663hPI2gZY-Pub=kW?( z;8N5B{8@aKFZJju!BzN>qn?n;>f1yqKb8pb-RqO5pGDWEJ<&95=2QIjSNpH_DZ}hh z{OLU}59&P<--2AIH(TFU`hPEE^1jn0xybyoo?Z}L{bk(x%lqNozr0Vkg?OC=es8dho84Pzuxp4=U$y{W@eh1S!QO2 zV>6qvnOSL*X`dKE&MM7eA`&6dvVTz-h%9HLDKQzzI^68_iKw zt{fwmj%0Sq+vM=u+=^Uy)c`#}!oSeH)zO8Zh|>aL5@i+jSD`w1T(iRkctF#0(DLq?sBa_$S$e1ss=gKuKl*W{#`iZ);{6fe`_Ck z><4uFS`NDufegS;T&Lt%9fx&o%YrGohF|xE&`{%vJlXLq2rp;dr%S+B7D7I7h*HEl zN}0yTtKmiDRDJ77Z4+Avkk71&&oCLZh4~=u~TempT|#;(_jRNVxG;~E%Q4{0E>wOKZ2(JCTS*kf4Y% za=P6l+SP{*H5^Q^rffNfcL2Py!wzt`DKUZu1kVB|A6~Lbhl5947vq!Bcm->$$ji7| zhSai@E0-`>FILAPLl=Qj0OF$ zBb3F*!ScC17*g9Ld|eT-Lt}-aHME&*H6qj@aGRcv_fKMfXtB}Vx%V#+$gH_aZu#7K zVhsBqrMp|hBsa$z{Eux+fQ|*_vd5EW75~}mz24(*PWE?uN3Ty_zCO8~`vcgbcTT9* zj)yAZMGf08)(Q{)+iM>>kl2D7AN24}*O^`suwhPhZRj_-v}%G1zzvr`LH(~F1$rqZ zIm1r}-N^eyo{1|TNnAyPMb{m`RvA^ILEbFC|JFJnxGyhYB>2|FXt>m;B%)RL9vNQs z%zCL&y?>s~^7nCoCwm%N1v&IOvbpb<>6Ndqj+TbK*A^<76_*}P%ZT$FYmc>ew&3V7 zH`Zs}c)J_l!yliTe|PTRz58kBgM5J_bC->loUPuWU#SOmF6mn>blKb5>1};>vbEj6 zx7FYIG~xbQUH@DBRej)#jhlufLy3FqCcE9;rpqW8)7{U^<5y+;V9WNUMRcjpwGI+j z`17Z`NbG>u`$&Sr{qK}J$l$c!`-W_f?$+9}$((%>7Of(|vT_I{fm2(AfStTe4Ck$f zPIclsu!Z_p8jiB1a;jsJHa(LpzXy_}SNWDNG^Fc$D*p2OXow9phpX|lIjkjYI2fx;+BXqlM{y*N{>fhb! z-@D)H_r2v=kN5Ou>sy&<6ez{b(`py==c5Pas1g7feDLO^B3p$Myh(swIvQY?#LPNr zU7ctycV6L6{fLxj%B7^-(4fwuZm8QvEw&Z!QuKv+7v+`Vw#N67(&5Nfr4|tZYs+)# zOEPmXW?M9ki%6Qsq6IRj9efBB^~URd3t9rotQ6| zsZs(D0hpEXZ}0c--|g>gT~83(pWpp;3F7YkyCFq1>qzGRq-Z+7u1U_aIpIasrtfIo z;j~HOmm>U5Sct2%v`9&vb-u*-z_Y)O3J=Wz*$-7I>A*;4GhlQ}2_pWBcy8(QPJNCz`}O=&T!LQh9thmaLiF-_!n*l- zLwnwc8D+*21Ty#|l_Qe4G7fAD)%>(p3CmnHmAuS+xgnZz^>K=ZKpV+4eNPq5Epycm zY^V4jiC+V|cew)M*o4c^XiS%xAI1PIgPaSoFrtO+pU0}{m9!Kia#g#SBWv?iLdX}Q zOuAHWzFIyvKfUdp-ra5N@RFeE&_5j>hrZf-uGUDtf?hV}s*x9068 zdoR}dsnM2SUbX#UbrQEmBB@?$PZr8(2UF=*Hq$h8WW#2tydCsi)J|Rev>`vhHD9Ystye4??a<05sohYglRJLGJzl3Y z1tH*niEj};Nb>m`Qaa54?rweCjVsY-)EJ&H518)}c~&vCed86ju|;&K9E5lts|m+0 zY}*1kxpF~+O6k_!!*A?kR23!gnV2i`QS6W3x16oR`y{219ep_tyy>E?Aqb|$t|E>; zT`j<R>B- ze@gHCBzxt+UM&3I&9fpuTq_% zIVMJ%?#v~l^tvl!tsurVvPl9Ks1tKer`#R^qzlFZ01l~*UG5Lk;>>-=FZiZ$dz-sZ zDto-C02R~H;6KvtS$FuK1K9p+6$cr|z>UgRk#sU*xnr161+oxOCeOc0?iP-t#tdo` zU`-Sc_vnG1eEa1fCWK==?dtoL~uF9jD+a1kv*C7fkIkRj(>q5ku=@e-;s<5^O1xg8fSv3BrxBLVWA zOau-)@spHPS`9H9Ci&aU;wtL7BlKk2o#n-@WS1AcLm?1e2Qozux7DYd1%J4oG%x}1dPZBIhK#3wRLXPofAMKWA>!DIbI#W zK9dxm#E-8caV>Fh%Q#0N3o=5aKAs6JMisnBJQ@zBC$ebJu>!K&-d*RNu7b3?0ml}> z-Ryh_k5R{mR*6v&HN3Da#f2>{V3}3K=EUJTldl1|=jwY7FgV`vq zJLou{PJyXJy7)95`QYv@Cfy4$2By0P<9c&jhfmJX?G~P#f}BcobP=%TPAKMl-2^ z0CXZD%gBuUm(d)*X#5xV&pdX;NLK1BBqf;E&Oa<^T^7Ag@*kuE_V zjO2;=m|OatSb)mmBA-L86URH%^W)-Pg;xw9SQ{_$&mAHQanD9FM-1MMM$xXznG9MK z6388tBu=DEr3W}Vtxi4o$h%zof!(Yjzk?(m1fBHwF7hvKGh)f9ARS35Ehb7!2=%DO z!a$QUDvyzkDI#JLF{YG;ZLYJBum#*mjuf61MS}r8AqZ^!tVtURBTF z>8&=~BK6h;m2Aqj9Z4bFa+4q71t*cr0;tvpr3Z^1snyVUa(vj~LZLIyT1U?Y#bxN3 z6;dC4dt49)WRw9#98Y~-lfBOc=G_kN3`al@WA+}%*Ld;*;cEc$5*NYQ6>W_?T@?eQ zln}9Jn8Iy2L)T#C6=3Rvfs4I4aiithJL^U&1WNbds4Jp9g{sUDu*+DK5!lsoB_XzD zG0fAY?o7U9@L1XumA)!-A;bN6Oa_X?^VD?>dm-tZgJ;A50N)jzM(rM~zzkn6aJT-g zGOEmGQ`JtIQ04JWXB(-mUVT>maHoBWG<oFJM(}S4oBJGU1GY_{%3{Y73H3JQmX3p{0{u z&LL7eBcI_?D|7Xv(_+P@V+_4Z5q||$eulHl49w`!=UL<)C%hfz2ihq<^e9jAE`a}y;qyu^Rg4o(%oJ?y*el4f~Ql#}S)IclAX5+|okfstu0 zl@*j2GNbV;kH$(c|F&a@Mk{5^ZVLSX^wqjjceb{+ywd2@k|g$QZ*BeIF(A1)D#eU& z4w-B=Q^*QVhO`6bHiW`+^`Fh)wcfglsS$ zgs*Voyb%KErjYI$=|FEWJge@J{MFI(Cx+Ebvs9tduSf%A^QhTY(h0?z zDLyz~Fftot^Zt2t7)L$!ISkhbrpUT=Rw@7D2wtU-^{U}C3gy~BJ7YsB*+~bxuTPHl zj$XVtP;EYh8BiHMxhAN?TQ6QL9hkXOJ)VbT3WB?dc)Qe9L}Dju%nT}V?ajxE*XW);?D{HePlk(hn|k zmheUL5Ttk3vCV*EPkeK#M9h}bN+Pedr#d}{H6l2d3_qLM*uqPy-n3?O%4m|0xhe#C zJ7BKPP!yDERX0z?^e*?A7m^@m zNOi%Rr^k4^ZT{tlJMpXilh>~fk7N5$yn7t~<~O#9$NSF?4g(G5=;i)l{G09g>CvlL zT%SlWbJa_Or@4Ley!&|n@QM55H@}IW?;bvTz58rGo=@iIhJ3yVLpiK)pc??Yh&dDH zSnApG6MPkBLvB#cK$;b^9_?(`-j}jkHsXOGKS&qtD}sOI2XJiHD)0JVCKw8|h;~aB zxz&x|w9HrNw)L%-jJgE>Y#=rfpU6exb5lcv8;Je!9V;8RANNjW+;&WE0$`0I6_`Qb zoqo(UnF^9XcB~B6jjhm?2(r5Vd>oGoF8y+0uR?A#cnqm*tlqk_;p&tz_mD3Jq-x3^ z9~zE=9Bq--IDx0)qP!roDpNC`t8V-P0?(2@lRrcw6n`Xr)8nV9iV?ky-IV8~rRW+Q z{S!~46)&%lL+FC^GdwoEo;Uj>NJab+n_jg%iPDYLGQ>d4oXFZw#2Cs>USec=Q~Cp# zlY~h#)MzN@IP?rZWRBEEY#*Mllk9V@hIhJ{q*NftC7(x|EFtV@hcr>~zqy)1K?Nbk z9#~!$woDKgcoMT24c8Tw^GvMW(7V~>E_LOh{H4-IBf2-a9Fq4S>2pE{2)a1paq^`A zZBj=?az|`F5Mn?q&#>|07wk#s^;M;8E z*47M~E@gA}i5TeBBpy%}v452-C3!;l!)IoxPtIC1Wp{nK>EW%=8q^XjJAa;_TG= zCO+Q;ZmH>^M@9khvcobih;L%a^h~KV3@#Hd#wjcsN6V3jhUOHbxFZeYBxa1(CN~#Ac6?s52bc2hkAgD7;tTkbZNA{yw31ld&RD%E&_(-3# zg-B8;s4p@a^%O%Xigs-sHSc&$g7UQoKf3%ZB*iP3^%e@ZdedIMkrXz(hM%8uieq%l!zw(e4B$+wuF zko^%cIm_AdOr_Q?jfS56Xy%V@Wd5>i$_>S4=4K57^B3$!sJ;n5XM^O9JVEt5o5619 zo2LWZKzSFZ(QsXW@7U-j0+kd$fKg``dG^j-Lhua(l?6B>=6A&g69b)RX%A+iL}8h_ zm{RV54=eNvqAD?e}vK77D0n-3Ut!3Mm`@pG?uXAq@nH}7M5u+O% z*5Ir{zF_Ps*iUwzJx*emv`U;%-ef3_IGcg7j%+l)GGiAWX(Mu&KFz=k8%G8!z2EZ_ zRskwN(VP$N0S>YJ!h6J$KUvfXe!zxWD-MSR;kfI+DSCm1e!$|S&wE_#a}M0abzKQv z!P}?u_P~a2efcOJ3_jnwyS0Th09j3PPc+EbE<Ev*$mPcDnz{6d3h^W_(Q=(4E(^C1*|^WaN* zkV7#YvXU%jbc@TYDPsMu<6tZ!vZ%DI46I42CW=GTA%yETi95dWzeEQwAD?Gld;$ zGdeA}YxvzW^O70mUspzDHH5#o#cL7lwTnA-|()5BfsR-y>ax;6QrgG>H>KJvqs zk3gRm>ndz6A9ZP*r8rJTfdfgS3K2x7aYuef=1`uVA+LbE1oH)KPdcj5S%4?ydsSet z;*-qHqV~M+2CKK`xgP-3QXyiSj~56t>SJ|jpKH2?!PM;Tx}jS0S2Xx294TvN)$s)a zv&Mh%9Z7BBsA^$P#9f?UbgfO&Y&g-MUsThsbi-zGl~6h%46d-VwdG;B(ve9bulP%& zjQM92DA9{5#D#@EYDO&5dk`FomA6HqH7lW-docJYpijd5^Vg@!kBq`#*eLEivK%4c zmyqMsJ!}h>GDg@;*&5b0A2lYhDRdo-;1;aH5k>AgByMVLB} z_Tqe&f3FrU%ifA{xM}9@8Lfu0y41HuY$wb~D|RFceppaMZ-Xv^d|t_oiB>j zoaEcHqIgSc-W|j6(n)cCXSn_OT?n<6SHByb4XeU&6#dKJ??=x~&j{DaHU#xMgVZW%ltfea1Z}(e|mq*|JVHNY~8(g|6jIu?%)0NzWEr>Z9mxF-uah!>(^L- z6)uK2{ud*66xS})4d3%*w(P(EAU_|+z0F=MAnfsKIqrRiPoj^bkF6pQo)Ok?>Zp8O zk4Ku9%lSnu?x9PM=<=~n(@c2(OEjr zPwmIl-(M$?Jv01n)StK6lK)K$P7U*DbWMY3qmA0)di!Rz?&fkCz1SO-d(j+erBj^#jDZ0 za{L`#W#)2ZSRT+(de!bE_$-1cf03VGa7#u!-|hjU@o6?f`K2O$lE=>$*|}jQMK^wu z&hpHhls^F?;`{H5R{Tj!t;l4pUCWH!%3wNDa{yWkw*qFhy2!dK1uX-XN#b|rJ=5F| z($)`bX_XxMAG)kaX!^w*FJDtog(mO_!PVX#+@iK+^c?qcXb%6OY5kEV{GnOUg zd;;A~D>rzfNm|Kwg;8#$0eRAV+W?W#jtVid=+osuH8%3$5cZ>w`4zLgE%W^T1m%Y4qto%!KBg+TqN>x( z%mq6pMujlBL>i*EOk}rM)fYH)D z`)$yklasi zh>ZDcB>dAX;51#lUCsM3*R}7cuUQR&9$%AI=#IrA7H8kJM9}1#nyq%HjwFC3L}6>fF$%bL-|u&1K-~B#i*5}ADFt+JWw;85@$(z@@AFw9mTfEBe~gz-xlIg%N}KBb(!?zq>N%5dTR@90%+))=^$WPn zn51ly+>!IfayBJ|ZI_wvpbk z$KrsGP<(RqRXfo3s&}PP2JFDR3)nY;15;CmWNU1Mgv?LWZlQ86%DR z&h-6bb8nh|^hF-?4=?_-w->}?q-SS~{s14xZ3;5gJKtO!Jiy_VX3lg55muD7qa%;A ze|7TWxsYo7Bef%nnz_iPna^LSU7Q;F<*RHmH^Mq@o;ZGye#ZjdG_$h%lwmqammqbB zbYx!T$(7L%_`tNNNug%wIZ1@IKIQHox#z6tjss9$WNaf?DH^CZYlZc|Ar``9o3D{= zb6}3*awH9zgZT)g0}%`0)zrB?WFiVA!?M%?-~i8^-r< zpfvv4+zbc?qF18 zuv@jE;6ckj(70!U;15{NI~bGQveklvv-KSD9;^9?Gyx;cv>d9lIM3NVloIgG;)-}K zTwP|lFmC7fJI?`(V+CmzuPrH=Zce2eD^{QRVzm{Mj*X1Dyn31X9%lu3Qy5Bu&gE#w zQCePPa&DJbbNFY>QI}LJu82b!+CYQR(U|5=OX_A$-8f-wPw0RTf;0Vefx28eLnsS* z1Zu-i#A3aXBg^jxye}8TX=hII#CUec8gXdB6Q!F?I;9oY4l&EdE>qjXDZOmFHVaEy zQx~Wvfh=bB*J^?O(x_w>3bC${>)&p8)d}MERWcc{)6smEzspA}vo<_(d)ok=E3@o~ zUa`$vxz@HHXx^mBXyPD43VQJSb5U89zh0j5qiCXO=!V@L871MEv@Bmi;3KPK%J)CJ zsL3xt(;>vBk1eZ7)v^G zfzDhab(sVby8n<8;%^Y#jI1xRrmQ?+M$nwySW75ybE+{I!XpV&Y$JJ();Btq z_nI#~3nuk(#3CWJNTav+G_`jDfsWKt>^NG%C#QIl9(2+Wq_n6(@O+-0WPkqglBZsA z^K?$|2S$Esx0nK3xNBPJy;g_J97YK}rKe8mDKj#8%v$IQLc5?AwzuYF?%v)u|57{K zJLWgn5+1e<(bHslg&$a1t7SW6x1~eFlVt_pnh+Qv)4bgl0{}b8*pnt<=vd4y%O>5J z)x@stfHC6Vm;LAnJ2i6nYA$NH`X7rjs@kPtH=-=v zQw2(r`T^FGP2kNX^7xy*qnFQiPM;hfw%A}TR_H%uSDp!)Vtq@h z4EU6%xbcmTts%&b(k>l381_jE^846`|5B?1uo2)OQibH2z2c*dsHtRtPS#AU6Geg< z6)pqdKx!$zv|OV_F+Zh;DHVnMezIyIu>0lcD!|7^Wv+c=g%MS?)?ENQaAR`bCZ}co*VoB{n^RPs*`S!U$Il4wd9!d z;AvCZ`6xc#e|50?JbwA=;KlB%Z{k1ff77Kx)@F2FPL4R)|MN+wd0?R7fBEOn2gLs% z$>-qkS@L}U*sT079{;ob;M1K?tMNZu=AVDY|NII+|N5`y$UHlI9rJF-&-M@ZU*WL5 ze*FAkFE;<%KRn*Au}}H=lh_>ZcH^DT2r8IjCnDUDQja4sc2sKf(mEm2cVXS_FIQ)#eIwOzANkDavF4V9 z&PXZQ08$k^PM1Vtn$wo=`fZ1eM$%}Pe0Us*?_xNe4#`U+8RoDHQUPN#6-w#YN_>Ik zNk%1MC_FaC*Sq3qgQWz}>Kn9V((?xEJS3+y4wx4sYF-Q%{<}ewd-?pP_SQ5+^Vool z`JAgF`|SWJ?j5P(RJG(Be^}H$Hx&W15irSFygLUtv?NHvpt@H~&j>Z{YcylTu@ROk zSjyd5yy3mKL3uc{EAE&K1PEy2!eSx_+st6e8XQHkeKHfKMOF!g3LWSU^eKzW_go7? z^A?gdx?G*H7C@$A{?!gU=m(9DvTRBb{Yb%xP{>0NNE?P(d7Y;pZv>0P^XJ+7@wY>I zh~i!rr08=mk-y|NqE9=BMW3_T4wa)P&qeg2Q=!9ML&g$;mn$UCkc$`-4L&y`G3zfZ zYa`)9ZoYV720JxGw+9OpaM{V$e@t50hWMPret@S%I(O9cj@1W(mjJG6qdySd&d*W- z4!j`9kEKpH?2+*(kP(%$-6{86S6wQ^7Ep_~)?EP}Uph*{LMZQc>k!Vx->p3}$eUI| zvLz{_(sX#odA8{zU6Wv7UOdcuQ-#^5vDq+$M=XQ>X_fHC4C6;n>`Wpc@=9 zxA;`zg)=pos1WSfwCJ=l+ey6dz<`VRSU@jAzWwq!J^YQJERpH+s>+&x@x4&ba%oz? zT<_UyN*Gn7sFiF!Kf^W2sA1Q1ypx!rqffl@!l-wYX&^hy^(dwG3Ut3Q4{d%`Ib1|3 z*cA>sq(@~DjaHpThC}ei_}te*B^8?XO!+EwWw~?*Z$Bd9lq=0nvyHZW2F=>Ame-OL z2L+3B10k#TyW*{;63#5pmA3_Mo>N&Fjn?7>&a@+26WkY$71DUQT>`N@F97_VQhBWL zm`bp4Y4{nVa?nu~4+|lkRqq=l&(MLSMY_^@=hc<$hU-%<$+19r7_c`JU=X7+QXcE2 z>6ZW<=M-!`rkLpYYJr?Q0iZ7x32?lcP#s9Tcjl&ViAsu`&Rp4%b@E0r<|;RCyALJLIlrdJ|89;3wh|5w4j4@L%{C>&^95mSS{IIX*_1mCtRk0&?H_s|+ge z#4+=?*Lswa83+ZgV5QPjeOijrO(V60K78_y3dE= zbtf-@e;WNg)ZA<|m!tFv}B13cOa?%%yKL8U!t^*jK%4ks$x{e zAXsny5al>X=T4W1s3@6+NA5?3tw@@Xt3gz;yz;cX!!?L|Hr1QcV}VUdm;Z7ThS>fL|VvTk(%A?H8LSy8a49w%jah zLx?Cs6asvf6){-pNQDzm^U+r7Qaia$Sm*Lzt!Nw)jVP^5)7cCHD90aVfmHdRx``5k z%p#?>(6j-G-L&ma{F;y`?UD%w*hENgn!)Ijms7^<5Y13kLAPUi@9w&m+^cZ1&g8;q zLv$l3r6t!d0{*i)4w@uf!Nm``Z*HrMMa7ZUh37V+3$A>d4WytfO zcElObd?K{xkZbzZ2R(6Of8aBx00V&Ly4A^RQk3KN0i8%JCz*IyDZDq@;-kNAGdLO` z)tf{wu4}m(A=ItoRJ;JA%vOF4Mzbwwzvxu=v^qSr;EzzmfDhpikzl=ACeh3t2&?wK zCmmUxJCKmr4Xlhpbe`N#nG{2lZ{>*eOqEh4ivDGsEe1Q&233UO9cM*TzKfbVgJk6` zxX9M>MMY+af-AIeUqFcKl z*ant!KsFVi=i(fuHMM(qSqnzjgtZk>j`Mtx+XAF|LE79kTqtI&5yQa{zAZs1kQHb& zS^x+R12#KsZn7!WmqI9dwh#l#@%B{U3| z&rrz@vc9q_J-@N(lcKk{3GYU}^%`za(g#ZLEFJ9DMnskkjwOV=XW?i_lboyO<#59S z2TU*aYpycm;EcJ#n{p`WZ2I zG9lv7d@t&wRq|wpu3{N&>Ja8+s#+*p><$GAj+jeW^8PN0MgF}5Cc(_$`{Wg-e)LUI z@*?Z5`6>SYpTvB$fLyZgZWJlwh=`5U*B~C6Xo} z#DZCwLmrjcIp?~l{i0yg6_rIghaN0u8~&d9r1F>S+Lh@?jP6I_8SRwn8O2-4=btA# z{|4B{@3@dO0wjE+0Obl?e ztz@$m)5_@V3&Wk4QR?XiN&Iz2TRirpAC{LWu3Y7zO9-O`hcmf~%3^{@Z^=?ypb8Ty zFNV(wsVVdI!fx zgz3Q9GWkqEJG~owu4SJ|BrM+Yp~>Ry`;bj`wqhg3ua+zenRQ*vtmikPH0X(lMbdSb zOEHsY^8)1l)==;y8=cdXhrBrRf-3AhKKUA1YfSlqfSeDPR4jz*e$V_k0d|ID%eak1 zH%niUedW)8{&Txyx1j@h6JfNec+u$~d}gR|$8_E6#nEGg9WJtSlxyoodK%pMI57<8 z_Ze&oW&CjY9sl;b5kz+|Cpjfefz$EBadB>*Jj>G=ACA4@uYI6C>+js}-`_Eu_1@N2 z^sj_E_xd<~R=iurPtd?p<&@{?SplQi5pa)bo1U1JJ7Z_$J|W6Y8RFg?1qeIt>nCJ1 zMlAyzAA$*5p?02}QA3m8YZSU$*W+Pf?w;qFp+Td0#1G4f{QA2EAU^UBUfiF|c^>q) zw|Jop=XphgXaRfBoOQ0FOiNX&XqwN)i`2U1*f8m#WH1tZ#4wES71CF#c#>P#h@&O@ zQRb5sb)dB%H1PubYeM*EE zDN372sQ$djDO^sgrBKy4#_GER2*GCzA?VdVU}rB(jRJg6>hzE++F5HOpjs%xz*WkD z*6TCXC?a}rnVKV-AS->Z|X8#cgf+F{&qk*R&p0D#sX@>MwfuyL1;|u)zJ45Vz zL_CT0HrwX5?0CgTtR!SJIyE9aHErEi|NiIw?N2QmeZmFt6jumz{+3SI%PTn~*p-*X zOQRv~4-2VaV5^lQ@mr{cU@|9^#LzWDVYw7{EN9V7u7Fe18$&1NgV^)1Jl#Rm6J~Lr zqR07+Or?r_K66)mN>w1OC2lpf5eUdp;^e4&=EIwQnrwG9T-Go;OkE@!2D4sX%`>l% zNRP^aGICy|Yz>ueQa?cI?Efmt03c%#zNTM(?I4?nsrj>L&rlomTObpA*n2o)b zqB|A_RSJ=khk=SvjWu_dojZ|~GT=#|D7%?MHd|gEj?&z!-7jp!xJW6bjdPGDw1Wm*gw7?BoxSqfwT zfqD~@H4=r(WHvdcw?_C!Crjs4*v)9|K-4jV8^Uss}ky!HJtu2^NzRLR!bn~iVgP*EUSW=fVI%Rw>2UhHbHi4KMUpS&>Im_%FpR(d&h$^SNAI$eL!ui-?l(To$T&+e#pJ)8S1(5&Ar)$IlBeek9 zX~J2|Tt&__FQSWBfy~WI&B!RaUX-Ox3kK>2y-J0l5q?5}qTbNDw$3a{SQHd5yO5wh zcX?^qfp=I9vd8igB>t*qo>URkhR{igKFYd-2Fdqb6ZqLgY&#O1540`sD_4n7i%I!k za#`H^7f&7^5I$Ab^d;!aRi>hlj2SEVC_?R?JJ3QYJfpA7RQ<0R@@kKCtdds|QHX2}dlq+?O3RMfD*`*vt2#XKL<)6Z5^P;t2i&TWYY%RAcn z9T_B@Sc|&Acpqn3AkbdJ&2$Ht$OV9kQSQX0Ysk^7DIs}E@YF-mQ@wm!n(_SG9Ix+I zfZ%E+tdc_W4C@7tO5&HiHhk^@8nj@Q-Le~7Cve%2lo%34%7kZTo3rf)K6$UsRurv0 zLR`5pDCy=`lc2;ZHyuIC^~<|cw42n6V-RERsuqeARMyf1MLKJ&fvH~Mam}iCA@E6( zbfO?9buVlu_UaLPm1--q3TsZkqBQ@KLUJpdBteReJI?oBlBAov*7faESSqxdFrIsxMte_{-`{CsG zEZ820@m<)mcyY_nwjl5A&~I$V;Y?Y-jo=SKuA(3hfLA?v+(XykdyK;2T?dM)6f|J; zY;&U5bs@!LxlVT2G1qKrUJCA-4vtr{+mAk_A8%~Dc7~o`YTW==DWD(K@}jq5-cqir z4GvB56&C{kC)=FV-rKIdSAB;)N*sS?OYYVi+PSeI4O3g+#@$;C#xIYo+`j%J^{JBz zv5GY(_iJzy-tqgT%_vN{q}9@mB4~qa-g|YcIBD*3A;{AC(iLD{Ey>5S9FFVm|s3QZPoIp`IJXIEa!Co@=g$ZJ4@A}(8*kT=?X zP^OEvV3E<`)GA;KbP_gFsE^u?#f?P7(6j8SFa*HKCJYbiZ4a?AE{e3~U|+{+$m|E_ zp)y0lAa?Q8^uv+_y@R5;LocV@p1a257PRta=i7$k*ZM0uY}vp6C{h%SgRud-@j5UA z`$ITcEpy3y{nh@feL_!p^lzv#pFkXR6FejU!k^R& z{@c(IZj}k;tn8MRWZ>5 z?R*V!lBbc}G5`^UiWymWgIWkTrs`b z@`fXK$qkfTErrsi1D>{6%`|S=$Rgz62Z$0?P9UUiBh9FQ5r7DU%{ck_Sn9eFHj~j8 zL?hOyaazCNUAG#YH5WKH6|I@JDyjsYNjj#5IY0mavpBS{rq_f5%Ms&erDjCVrAr8A zy0@i7gU`aTOPo%NTWh)Cy+n7e^g_WkAwL`lH_stED=nu+Z`kqhj9_GdB&u5yG*jK4 zTW?8tH!*qNyd_p6pf;nMDN?3suNHDrxl(lg`!$WxJe|6H?@-rRmf2(s(BE)58cCK3 z$-BW+*ZT!0K|{NKIE@R8q3u_w_QMA_VppS!D*|$M_28OshwM}$7Zfv!oGo>@ZNJYJ zMOV{{`Hl?*i4`fr3z#f!U>f0yubKLhmJduPKYaymu|=&ib`=X1|3Xuatewo33N}Je zIQ_A%A^<3+lzWTIgbFuWsbvHQ5Q)KYF@&hwt?dIxC$SVq0Ev?0O_5pEvZzDl5>+l> zcN1?+vuQz@Y&LL&Zz>uBTx>2!)M=;OfV%;H+HR7L1>+}kpEdW`^&6{T4&vG-X(`us zy-cqL7Gl^YB|>98cw0awS$;l?-=gFe{9jbaxx6hCx$UGEO26xbk6X^!&V@`oGq(7M z;}u5i+GQdWmHHSkWeOpgqni^_HtclW+MY3ocMk-{&`JCDNoP6F=9z$g}HirK3d3eF=h2AylBH{^LvV&*Eu}N@l zp?)SpGD_vKnq)p~r2u}OlH$vyNfjx?+BN}zv??poNPsToj6tGv>HD(Y5XwXXH zY5`N+QD9f2taTsN1Xaw}(P6P5=Son&6{a`1tjFUDNrpRj^GZ9Du!xUV?lG%p8Z$k{zuhK!)F!YDf}{&NkWbxU$6P!)WC^mv~{ypHIQPky=d=Bu2na(ds1y%u{Jg z9NVr`nfCTRYVZMxYo+?R%H)!56?aIJ`r z;OV6u?^tNF%ws}3DCZ|RNeWl*5|A-A{3)C*ZESdCsZ@r`o1+LozQMFI_i}M1j!agL z!Up`tJ$oGXqGsP0D`4e)Ai-J_)lj`~2zckY4^uKGQY6+SALilv%Ju};N)VR_C9;vb zJLuVUR6^f#af^&|rG4&L^-;JvSGOh*B-Bt%xLK=Z(c@ugSePKiH>sF}2T9Ig;=a3n z{Fhua;%RhPMn%Zn0gr6@qGeLQZ{yspBQEfc3zUt9CI%OS$0O|2t-+S(#A76Cd{-D@ zNCA#ggrct*jDMT0+o%(-bqnnen;zwsXgy);EZ5~(d+*8olK9QtZ?AEj*gM{Nj|$g% z<=S*Ztnd(vuNF`ViZvEE?n2N~1cr001)IPr4Rz{Fn92Q}58j${r#Rbd7MA^caNuQ^ zVLX6W7$x8~2iGVeR@%{hNyQPb+>LUd=gaOodkn1rXAc)~HeFGb5b>ADfY{C@4w0g! zTMEdAfFmk`QQ!_XlX!ElLTphb7Q%BvDn|y$BBy_QRLEoNI&o40S|Y)gL0F9H({SW) zq%AUV+y#=z!k4yIINf1tN9EhXqbrpg80r$Tc%EcQmzbvz6a$PCBuvF;eMazqJXy-m zFpB&Lk-LV~!4iTi^vpT`c(v7I)jUuaOzHc-hN<|z7i4n8fWcSonA!VFJ35QCz;^>@ z;Nq{PV{oQh%4#A!t&luhW$dvqcIolG!>cLcOVSCYwQ%omD+IZCj-{Y22Xc{LW93?A z3SF&74rbdBV>*=3IwT|d(;g}ahC+mV4SjxJ!jD+SwBNY=1J7a~9$k(M;cX!28q&*# z#bh;|^|=6dmpoXf@Gpd>96{uw(jQ%`rpuq^tZ?E^moi-{ug+GJ$!YPn!x0h8{ovT- zGKthJ8;Z5(PR-Xfg=(VJL^C1OF(hV?wY`_9N~P#cT$43u<&c21#~uWvU-aH%WmVCJ zw$5#s%8S$kw8&bQowm|!;L<`DOWuw}!U)^&1Hv3kj+Rpst|f@k>jaNWGWmS? zN%4^kGS6s1t6E!m3U@#-cCb31O$~s?gUJsw{6WGvm%^?hGtfz6_F1V6-KoTw({C#7t=15W*w=OqN@VB zBcG-2p70&iZ$AAts+=z3`w$}WiX!xP1L(%JUbt8Os)3?mS*T#62K7Y8pb3kAhCs(bYozzfCRqD<@3y5wn6^psxRPD2SA z`ICJPQwc77FT2rJ^fmmiE_b#y;+Yk{R_O&5T>jF`$G?RXF{~8m)u7}SmBD-5o zOAnbq{GQe08)e5Wd=jZ$t_itd2oJjyze9R%TC4dtgPRs26)prSXAGR(v&`ICId!BK zdBCoO-YtbRmb&yv&R$-?tiqjYMkk~NAK@>;G%b8JQ zms!_c83I5!De8Vix0E;CCgGW<>*UNofoW+=U~?tKs=7noEEYT&X8@_pBr5v=k=_QL zNtQ*>%3B}@QmGV}H>ijTse4fD`^wiqQf5D0b=aB7FlvKKlmdKXiOwnMbgGCimks`0t40Y&uTA8d z^?M-(Wz2@M3oHl1IjGROa-scIDjar~u>$vI& zj0OQB{z9=h#vN@goBKBgmBnjC+%-DiL@)^K+kk5_ZjQUgN%ankkQ; z!5nK?ADd+PRJ(=jiY`)j`3sL!YNe7Ahny4+ElUy)Da5J5Hm%rhB$)@-NisJ{x6qU% z_CZ6kIPAzFs}{qg&-_`(B-htlK?Fr!ma9z6N%jd^apJUZa0NdS8HyMI zK3K0bS2jX&%-9xI-H>ZG!&6@!Lv2g^Q+OA4$c;xOqMO_B70_TaX;gG0*d4t7pj6FJ zg_!*3WVv8nH^7r#E90;@>ZW~vKTV-rlyJFd8OU)X~7)cH^Dn(pt@R-Tvy<|Lc zo&!}A1J%%?lvMnDn0m1@wUKy}IdDaYi3&BJLBcn^%)N@NP#HdZ6NnykOS)2{g}!H% zsA5Iptxf)s58m3Li$5IN0Tpm&yB|gMXgIc5qrv_Gv)3FVORzRR^*tq9_L4x^y;hq< z`&GFjk9k$ZxAf^0J5S46OD$HXVV#Q40JTkl|I`KRb9M6vE-J1;Pxb^d%3D^|u{)&f z=h_R!Jc|pZfqS8qHW!gHq}aKcdsUZv%CgRfaj~X-7sFefC3w0tG*LEJ*V&CnE-F0T zMkx3PJunIO+%$5HobbUm-KO|Hr(ros@+PzHNf5n3g{s~LcDM3vKKE(2S;Sx&2C>-b z!qyVBq{@_P>jGA+AY?5luVpuUcoz!0%GV^O*HwHdjGyVgtU270_()4`5Fc6CBx6*j zmxD`c{pyU*!*abw!ncz8WNFEK$C^&EzE*BilK(Aav7|{3Xm+CAp@jNdd(pyCh!_CH zg8=o(vf*)8N{TR&I-~5FNpGunwW1}kyJEAv+#itWgQy}ZD;h~ z&b50l{#_czS%&lg1cNluW@WjoLChvv0MXf&(Xw}i+Hr3(Ot8H!kb=XTu-BtY8}R_m zUZ*_t_J~)3o_8jv)b~x-y}?6Uo5gYyZkAD~)ipsf2#XvIfp=$_CMlfTDlu0YIi=Q8 zt{2F%0YeB}C+;tGCT4-aFGT{H6~1ATH=^Q+%TmwOO$TBmo0Mu)2Qao-0yh&wyhCNH zQwkUKI&xb*Nf+m`MCJ8vYwr&8&3{UCYho3`4YpNGKY$hZM^~&(ZYUgfaZz1-s$N#A zSzO=Nw8VUQ&FN!59f+Au-qp9uM(VA6G&nSBjqAfJ1o^KuXr9!T((lWOkCQ;;ssLH~p zuzWWk@ReX9O^KM-`q}=sC#L9nFeQ5Ug_eP4K@*XUfiaa?7TNDT1aQd;SGUJmK2u;U z-xS&^tBkZ1oiBTzVmZ3(FO3|_C38P=VT84$@sr(?ec58Ct7*)Ybu;P4dr7b1h?y_S zz|AO*r3#PD>7;a~NF2fO#w&Bx9z5Bw#AO-O8H2h?EE%1bvx$)p@WiX#uOnvt^ioH? za1z>Cy57)-q!qKwzYIJuKCo0%*cE}B&ETOLnLfU*<+yqI;ble;I@%d81G^i$T9F3z z5P%Mk?XdTdU0)7EqzjZpiFog;-B)%?xOioH89zQa+>N>pRPqM8dkx-oNau9pw2>pJ#AtGT}3HkKFth>$E1@Wnt~QfoUF3KqWg%H-}Ql8 zhMXxq6Qj7LGpIq&k| zc(E^;w}!^_MH`W9U*TgiB3CCV1LOyRA9-omhtBj1#W#!UY?g81gjxc3e+`Qwd(X)n zYr(SA7Ys>!X@T;p+2&dMDoYpLX)#+~bVun`ry;P@RvovkQx1v50Dy8WqO$0#Ywnd3 zvleZ0SWSOa8lqcfK&SsHebPGL)F-WfWuo0*U>wv>(1wgGSaARhpX9^0WqXPL{yZxl zDy6FCbFdqABWhsVsk1!k(lPYVWjim17nW8ndS2ivvw>B@t^MMvej-ByCF|DI7UMd> z=fjEOA81*wr{15DXs#pGAG1dFtdkF4qp%GO@Osi=sQNaG2S0^qhUuIvgl1TFg+h&% z<)=0P@H;AxG%*~PCw%hi;P6?)2J!7{Bc~MYRq-f&#lS^dR908;EqEL~u5rmX6{MVC ziAcWr5yOzF%EX)0u3&(k64r%8DT>%Siavb(;_?2gA2BRNBJo$L8GFTJw{m-5OCUFO z3?_SrXwr3EiJoePi?n~dI{NzH$xj*sj!Z?yU%w*_qX3lq;p^wm{TKq9!sWb`!m!AL zZzYGg@HHN)61Cv+ zR_}46gG(!XEtxq*Cn!nlw`Hs&o30$nXlkyfn!f4ML&%Nysz{tS&4s2Sg*?JJ=nTZr zBH@D8MS}9Km3xcQJ{7lD-gaoV_miC@e#r&Xl-0|NA;)*YhQi1b(y412g3U$U^U{k+ zvDb5sA{AJmgV}Jh8fABQDm=~P!i!@Uc|Uw$sGFwKBg~!1rf;zdqh&*}%E$f!=xaO4 z-LA#SWC~+%BFx(A<>fA=ZC>gM<=Djr&DCx^rNgKS&Xb@{1Om&uq2@a)2=0h|pM-YI z$)}M9;LWKnpjlgjcSSCaN4xYi2ZDLvnvAvMhbz-M>`7_mQ8iPWf_D+_lOu-HD0elo z{R&<(PUjWYj#C(jpfy zGHw*s`wd|f9Ol)=<6ZJ}0Cs7D-{hq?eRw&8wwq+%Yud)+Yudisf6&x;qttjq5A@Eu zDcD{%`O1>xARu*IBFAp0nn@YB6$e0iR-R;Q{c*lVU`=p3_&CoDd0*kbDuGxxvfN~p zUO4kFP#+hX2KVH#p?TN=j^z6=GH4v1o&w?E^t26Bx$Y*nTv;r(O-;s$^!rE#(9qa$ zI@h)+5woGCd@MPdV7so>ej{d-?9YmW0pyPqQy_|BwIDHhlI0Yyp#xQ z3&Lxf$QPBny;NA~O95`Rr5+WQ;>lySG*^>g6PV(&*@eXK8Ah|rrN(H=-V~QbI5hGo z4`wwtG&O=)j!=cdMOUt=;U09^72__|E*whf%`t_KRx3cb!ViwMEi{{#nlUR^nUI*& z1zi@LQWn_;RtYAL822lZmacy!ZtlRd=4Uhj{=lov=AapTwSx|BS&w60*g)>W_{ob= z$R$FNU@O%+6;90Vg|4K8+$)%eY>`9l1oa_+2(y=~#$qQ|^GU<+&8nO82x*fDR3g)0 zaFQ~698thKcnmpOmiz}$ZeaqhT;|-~WVF_9z16*@35pC3<>vr7{PxcuVG^t*% z93tU*-v!#Wy)YD%+`7@O0(1hUxOznnRxvHMf;TAN4&m{jHugZcQ{)B0RYKXJ@GJiM z(5!za-10JLQ;KU|3B0GRt7*C-#i3WJMMDF3<&w(}+!O}|_0X>1m%-Llj#mlrH#>rx z516WG^>p67`b0z)w>e!Nxg$H?ip`+B`~KZ%HIvyhxrlaPXVV$_v|^2~XR7BZj)J5vSd zjcO6N66cc+-%>GO9v?hqKk8)4q3c}7*y2QGkP27Jy=Wdz-VkGT;c+Qv?@i|bLUU@8 zWNx=B7gX1~vFH?ZY>=HDM+j~lbOUBP%nV_8A@KzFKA`|VyN-UIJQKDA=mjj4rbYD{ zvQ!irDz2_~Wf-p`0sHOwBKKR@kYgKQ2r8FZTK`1iA(&7zj)GUq0>< zm#7o1p~@^V6BwM@ti3zjn}Hk6#wb%jR=de>`rmF;MF`?3gry;rWu;OsCfR@}9pIP= zxQxVM=A6CXjm-#2LvXq&XOAbkzl+ zrjxergw>CV*Ub7Ov;L?=4Y0&(j?IUOn2oy^ibv2?fLat)GRK1yZ_Dw9wxXY#!Lg6` z=5A?=eoD!ND3mrc`#~wMUZQz|IKks(F+W&lixB3fDM!ew?_g!J929k74$D#wSS3Eh znr(KH9oiEBXf6`KR0QQV;Q>RKs0IdmDDK|yykSwWT;X#FMZRPU$IPqpVC5$Z+VLX} zBk$EUn|XSQI-jSfZBML~{e-pO8bK5hR!w8h%#qu98oskEhCv;-+mF-@xa$p_ip2OJ!0?#QG7m_Zo<77gy6A3$_3~F`_sc3Em3{q|A${xC^*IxAkK^uO8Dl{ZKxFD=+F;*wBtFp`{PU@bRm2W6qXZEoB3DwF5GPvU1 z>nzJOAH&oM<&H%wXICbHi^-2v9}cbX*? zdP82Y)by$;t&{iM8d6AO4*KH)a1(ojTV+_EL(rpDW2aDfZI2*JZN}AoQRihU+Tk*_ zVyunXjw;BJWk2@k)OHd;*8*(Q1FQ(?>-3SRLJW-N30kCt)l5ir$*IY7#7vP2#ES;r z&=P&4t+cHb*W*pRf|gG*G7ec__~lMG6ZWs=-X`%UGQ5JWUa&_<HWw#|}cNDRWF)6vKqzaO;ZbPjTF%;B9_(0H7v=BTgTB+0ootBBQ%qs5{}=+LX! zWhqRzVdV%@(XE7^hZ;FU7GQHdTBAfc!!O&*D%38vv(pU%mx4|m%PEbr#+pL0T27n; zzUybAQn3$DY`Vq$5ghco9AbgWrGyWw%fUNlW=r6}ZqEJkChH3}VPesBdh8s@Q zrwdNOH^jSJ!fU1VV;xGqW2(mo&qV#BtfocA1=ui%zv^pV?3?E^tU5q_mP+xDCErGx z%Yzhnh%|-bmEl`TJz)vhB6&7BB6SLV$IiYo7Zz^E19yO^d;wR@Ky2a4;v|cS#-atC zS;H8s2Jhd$Z+9gAVs}SIz$*`2QUMU%J_IpYzjr7C=S`?Lt4!$La}ZA?_rne)<%BD70(K`^Sk zL!(7{3Dcq%L$?_pgBqP^&dQgLXGjpJILIUx1#9hN%}G_78CzemcM?d1Qt}JBO2o)# z8s-n&%hoo6#5p&xy&&7xS2dZSKzlX&6y>2sl{8}!h@l~CPJ!XmJkx2)FeGdP_U0D_ z$*^vL6dp*smem+LL9a2){T+~WTty!>5gTF35!G&KQSiD_Mm)?~cAjmIP(ZGc^(!oL zipO4F!iDNaO<@B@=kz^93!St(m7V}=SmulLJ2R_2E$#yD`zISkyoF`cKX;NX$3;bU zdg2$aLnuWc-H)?NGa$6@*ZPoXG#hM&Zp1E-#E&J)+~c36t33m^Ze;7@IBq1z4=r)@ zD>DGb4l@V$t)yXMEYbhZ-n+K9jU0)>`TFWPKLSgy56BscCP-bz$|yUsB~P@mC9fnW zJ8SFV0ZC9oOc5Lav?S-rxAWJ||9b1v4K#qpjihYPM9##P$nNUu>gww1>bj_o(&D)m zAK>iq-`TD~H;u`Z12oalMT2K5)H!S*74e-xsML2Jsniry1mb97{Js-U*inFTfcZR; zP;rBdgB7stM&6THW+i@5!x{Ir;*+op;~0c<78RmdLO z?BSD0+8AXa#V0_Jt0)Yj?V+Etjh>24d+w4aKcbKJ5b;Z#=edIiLKbOd;6nj-Bhuu?U$U*G8=cSxCvu=lM=-Nmm^l?(Mn}{8yLSd&+ zIN*=z`XDs)sp6IYDL$Cfg-NEMBap8MrtywOj;}SGHOP@wCp;WS=wQlm+*UHDK}T`+ z($O5}XA`#@-ki!Uay<4OnS7qTI@Oam&>n_|oVdxB`F;}80#6<#9iG&dN%16`%7z;B zhn^$JmkUisRCNQee=aC3E_#PiMTaP=F^b)ydUpY(M&ATMpvD)#VdR9UtC1=Rt8pU= zV*4x>WwsE!rg~n8AwgnM-&>cg7G5o2Gf!pt80G4#oX&|7#~C*-welF?32Ni52clBx zgR>yn2dFJrSWP{IS6SCO}j{N8cKP~yvETFN1X6dmXGKB6BGeQ(OXD6 z4V^^uCeUl&ytzjd_ul++_`+->N%l=-0MBg8$?luI{?@;nso~%EF0~>ya`#00pJ58# zHQVqbYF>$|PUifc+0mplDr#9W`Zx~vP9c(TZaQd0`}jdMSDy7sYh~^^rJb zB1H26YCR}Z#bRiPgO3~}`N#LbPU5v6_<7=9EqvAsr1y@?nFKlUas0fdm|#h5qLog7 zyNM0(sl-@HK61W!DZ@ov;LH*Z?|P?qGEQ?EXnuJ2W}CwAU3K>n?~lShBrC2)Z{qPn zX>xV(2H3h(!|;`oyz1jkv=#VrBp-_v?Z%eLV`MfyrHGaKATIbsy0L`qksOpMk6}Q;4s4(iDJPUfCAgGP5+#wjDY2t)$53c@oXuF>(X!fwaQLUt ze_LcC%Ml^y{BATT*;RudV*(|zfoe#=q-B;fO30{I3S(u5-d-Z^iC-T%W||&6=V(yF zokJtWZ%s1yTNEiA=aY(@U%Axn^gf!9oyy3PDXS#jcBd|7+~qAN3Z+J|LW($QI01+s zr@@LUd%}7mL@-Pw_k=53)Mg`<&0R_8#75##h`&X2NoD$A{@b}sS#FbiPq{OqyA854 zu0z7+ERs@lItAi8Q5T7Wr8=Tqj~e%IwE#AQfn=Pwtz_;_rAek|aOpW44;cg=*QJpr zZQ;#|XP|Hdh^ERj-Q}H@y}Qa6Z#4UfVpsU0ONeoe$9S7zp(kD-MHF|^Nmx-ER}Ys| z!Aha1i^6CTLc*}k-X)VzC>mTtRgg#V-^j`qP$mvWm`iTzjITJXR7o_5E)pLDz*Nu)g1Gt`YI*NmgkA96JDkwA1u#zuUx#>{rTd}Yni7IZ@^J{ zvA0KWW5xcZH@_!CgtU`Vs6S_0P~xPdCnW>GYv{;0^zc4~mxKSc@fxGM^HGG^9KL63G)ax`TLnW-8hjP0!5-tP7vjP92pzycGY7{(vw zuJ08Rs^ohym+0T$$e$;09j4SaLd?d-;Nik$wHReku<`c(ia6p=`&MUr<9rUM-W~qj zYySv;_aCLk?_&SM$sPvJ);tF8hh5mvdHWx?i`@UaTf4CTx3+rSKN#DO`~T~#|9EK6 z-CnmdzhB$>=ga@y-EMy;CI5GNy+`@~W#s?AJzE6+Gq_GZb7r56IV-uQX+}@<@mt2& zchT6#7kx_Du$ZAU78WWB7B1F0+E8A&@zKSbgts;)eo1Jm!r9+i>sj1=@6h}}L_l zJHkZ{F2Kid&wAlf6csMr#>QaakAi_a9t;d)-!T9Ec)VxCo4WnUusW7y^t#>cXI<-A zw`X*Fdt26C*D^jkGx*Oqx||H`bb}r_2 z=WxyTLqG}c;dA51fPVdn{~6MUotYE<2@n%Wrwuh-m-sojhfCYW6GM*8LnHFf z0rO|w9i!Xd>u>MDgp7}q-MbrTdqK8O!~1C8C(^t1G0%z13FZRws5dxCFlG{=iUf3b zdt>__jX!rbo}`AQ|MfZ+jsC+kK%mz(tmk{%TYKBjF}cMYRtfru6m}H85~Tb&i2H|d z*9T5|V!Y$qG~JEo_x+EVA$hFKGKqDHAPC=X1E1BV^6@MKtV_W9&#W%sj%2g8;6DY} z0s6zrx?{@Dj~*zam&vy9Lso1|kq`b8dhwGf1MEPJ;m=DTkRkSSfh*A2>Kk2a&)V7R z?;x5Oxg3$nZQPPHFYqeB@OQf32zIgZ*;qRR)4Rzt-upLOq4_()2RoG zt1J25IlMRCbT$t<#%t$hxbUx_`6dy|7G7a!_jm8w^gKNa(1J=9#koycZKhL~UvoLe z>=tc9xW_Rx%^9aL-IbX3p7nN&9xyljx2s_K0$q|wRvaF_<`;E#m5g22qFIQC0Gz?0 z{mC60XN%x^c%L3~M;X&X&ggEzu*#UQr6&`n^PioW?|w9nK04C{+6$hr{e|6CV5|Z9 z6K6jaPp`)RHm*JIV}?1mV+^caqu1N({;;>DVh|++O{@$>?ol?m1Zs#GED`ZCr{PbP z>jZ$w!cG5M<`axk76=a+20{}_$2Eu3t0+FBj&}0phzh`Qq z@d|lDb+yI5h>Y?K7pHp@0l(9GYDO+-b8n8Z`wm-DZ~4Q4{IuDk;9@N4k(mKLS^5;8 zMt#QPsinH=Q6?h$imaSC+FuXOlp+&67-uepvt=A!w}tZp8E4^aLt`huMzMt!hs2Fa zSrO^&92cDYhPXgcT*pXIjw@e?sABFRLW^63QJgP^?WCMkB}%n4;l~P}LMCN(ZhB`G z2GS@y6fsHk@+WIR#%;O$X;hJxD#}s>Zy-it7m0x8$UPPo+d^Z)hQXo+J z3-XhM5quXWKPEV`*bE}~%DqFr2_lY3lp-3iS06bwiZA0TVX#>-V86_HUl;|Irohm>eWUlO1?Mz4D=lQr!#g?{4^VwMq*|) zS{sTzn;JN?RD+FVHa|FHdtGGwrqqHua!-mOQ5&b7p*-m@=Q3lb4(mh~wN5HwLoy{R zUH6Qi?ePR1?1Xb!Boa21nnLV9LQl2wA%l~H-jUld9dYF0JLERs;^Zbe0DU6bH%N}NaaSn!5tMg<((qK%gN-3 z@8Py}sU*=qq$`&xhRAg0vs}P7DQOGc%-m@r{(d5#g`+DGu;ZqIZrBlQ38W)85+m_M zc*Mqgh@YEfFiu1o#Rr=8UHrflbT$R7_%&bDnvMz;3E=w_Vx`|AgZiqmHDc4p>RW3z{Gc2~86q98ZYCvf!2| zhejc-)P@FQUNsBe3C>K%4;ZIS7 zOY*7ti3qF_qJf-V#0p3iMfgvNNT@cSp>=2uV2lM(KwKolaUR)QI206)&5}g8-l| zl7&yGrrSN~h%!?@oaPIz?#=;#QqRp4SU_=+O%RLNOToPM2~djDI#a;h=+PADjMW#4 zxKPR#BI~m+81HF5QstY!OeCkH0x&k}J)~(%XGFzW#=qZ7S3HE~(6GZC(M(o@CWnAA zdbt|RBea>@(T_b%ZfzXH&?dBoAtH{0&Mkc-#D(@rGuuF9yHOU9(=6r;_{2B}g2jy# zU1N8Qry2zniL%c^zassf9qimm4k)RnW8wEj5T;`)v{{BHF6BT?(Hv(u^#Z4J+o1y1@GcgWIpl;i0_uBo|da0!jlc87~AhtZcVi+lE#b2yUD`gC%RAxV$zuwsX zN3$I}jSHXgwkh1i+p))ZRvN6A;xV!rdPf=8gEYO-)bb_5+kfF$8)lsjViml;&_tMx0J+g1^8BZuHVe~dZ6=|X}0!nZf4IUJ(5Ju7Pjk2lo zfJnX2jwaq}Edz!#3+sSn>r2$cELl2X1?b z4wWwE@UWvL3pYIcSpJupRwm>2gN~MoKqwzBPv#v2@vB>$vpOpYPv2e~pPn4NHje)L z;^^cYepbG`kgtR6-kpqFMC)Vbg)oufCQv}teHT@7i&?2@y4 zRc!MKA|6lC=huxxU4&tdT^sl{fm0aHP~RUbV21bdZq=!%R*wBo$>TbgNl*cm8FbJe z*#9JdZ58$rQ9|4!#V5MqQ8-@`7*2SGl`z`;g2j(hk?eP#ZP zHTEb;D%-B&01QfKs{}&hvuz4WYOO=xo&~l{tS3-4viETq(kilT!H2z~?`fW@ITitC zKv+;R@60-qs8)=rGiy@ER@`Gd$d; z%j2Dr8KZGj!LN<)QSIzKUKsAxdW~uoQndci<3gNL+BUKmdNWQ+%f2`EOd1y9QtM;b zWK-I&0sod+U?5CecFjB{G|QP#%QY#=0P|F%OPu=@^TLv&gm4fkn@$xph>dqEVe%hypOx%XJHhX2< zEG=%BtD|H5?1jct-_+XRpBh?JH1o+luo!EFo35M?9ktYi)S8{%d(fTE;kYt`mPlL8 zG3)Vu*X;J0w<$BF$bFBQt*$zyo4d9?$o@{>q;!?YwKod{NaV2O`!eGm*72d5#565b?%@+1wV0DNM5e&`fM4kaMQags z1!d>~$ueQG$aJkskVX3BRi?_4GOFHwiDeTB$sFV>3a8aY5}k&Fq)$ldwj=ZFJ*cc= z7s^RT!3UoxqPywBZ<`VmQ}decvr67cV5>lDH_cb4r)Im=(hGyM7UO4hZ*5bb6mNvw z%0(&Xl2ABwJX!R|!8D>{(m10$US?Hbe2r*p&wtGz?u?((l##SuE7FF@Gx0ogNd$tj z(d%B_>C>-lNMIc*=~|R7<08sSz_vgVMZVCQDnbAWfsZ#d3vq_fbZ<;))u2tHPK6n# zfoJ1aZ3N8>h8?pOjY!ez!>&~^ELI9z1x9YI)}t`3Jlrz=4D^7`E(d$L3R+eb zD4OYiw6ykvto&^@UV50-$P60oR*_@Vv>1KqDY32z>{(xY2IS$fHvET<wfnS z6PufR@l^h~!c2r?%DSfV^l9*=*CKMRS>GI*v>=sdQg=mi-A0<`vCw7WIhrd-k#!gk zG4*w>R;pJZouJk3wdFk~imZz2XrR#$^V{QfO_?4N5yyHD0E8llKUw(GWwKQV0Eb0* zP%DI>FxiIgmZf6Haaf$QnM!P;J271&DR;WOZ>O$WX4HOqZx(q!Wbv~Aztl1FRnXL` z15^v`D_fhUBGlu3Qd$^o`2B@vU-55A^W#m_NA62Q*_dtRQvu#Eq4~LXF}D_<+aX8b2hJOJ_YBr7TV34rldXK)-$IX2lhG_Dd*5$*PPS? zTo0g{O*fj{s_UCR@>9qDyBTI`oavAKsz-lMXEqgdV!y7W0fFA_(4d$$I08vc9VB_) zaLUW4zA2uAWXCV`lv${elxZco=GMX!HfdrmvkF&JWO9|65`{*dduCDri19WnfwB_1 zQ59e{4QEmHYi5t1(efq9f$qCwEbxa=hRDYI##G0eSYY}j#R&RgGgX@v!6XX z@x_@lCg)h?qx@Ag{~P|qWVlp~-ZHn3ChGc3mW!W?WD3ErQ>yW1&&HHTfkMM&b*89x zH?C3AV;3WKb3(vn!XcGRl&ro`hCB^~*vMWlf>zeFiKqopM5|btM61hm+H{GSPWgBk z3r2w`XN|f#KlTx^yy`$ zUDha+>rj2`(A25i7FJMU3l8~;r1cCO)TKc&*<-T{817YY%L07fyTadGXl3|&o@G{V zNy1H(mWg@3TD8_aEl{WFG!X?Wv=+e)x}8R9C!CycaVU?qT39nGYePe&Mf#e=dbx{g z>Hdrpgsm#7zt+*JU!kNKXly)`&1V_IDO$B3^zk)$bD`qb#TS=UZ<(|{#|(uTwG_7Xs-0kRb$?Dp5HPMtDnE>cG4X4idjV? z-@owDtK;0ScNDK>Gj^+QzBR0*ZV6>bPIOj7&!Fl_UHt@(T1Thw4c0Oz%)ho1)VFAx z1L9jo@e2yJ>Gd-jVK3Wis{*9$oz=Oy@*S_&*BhkLdEr+uMCFdXy;CrD!i}=d(E6hb zS25$0KnE7(5*jz(Gc}|W1OLK)4A~{>*z-Adq9w&3qGGVyI|^9%B^T`1KRk=?wN#Lt zeJ^Q>wvF6;(8@gN!v;`W^po7nq1H(Q>iBHFcPQXtr{qXsg|kC zES{Vj{~xwag;-)0AA0Da!r_frf^Zb5_63Qx;S(=Bj+0W6YT7ja%mrK$W#SW_Cr?0< z?Kc_?CEx|=#xsuRD<=vUi)728bLGyG9|?xQ<>a{P?^?+0a#<>$>je=qDZ{g*&ZLvPsBSB z>L~`+MtTyPZzDnE;<6)mP~)?V5!9BJZD>N%$;n``MI< zFobb~8Eq)z;U-lv#FIiMWeK>7 zJrY%W9#&`~_a}!ln!W9I%cv5ksYy9z1Ri(5-Z`JRC>OanoxFSfx>e!E{2;I4RbAh!<&g6$<&Tp& z8pII^(--jov4xs*+S1Xuv|v2c__~d)RGN2c1UswOwtDT}wvuADr)l{LD1G6MJ_b!J zvD&%$i2pQ|{_Sr3Kh^B~#CU1X@R`*XH7|g5|AUhLN{J(i25}iN%zWTDH(YScO(e_B zP&0rNX>7IH^lz_~roshcm`;zMrUEsx`t7alc3+V&VNcU8p9WT&{wKhEaUz6*2%(+` zK?rJHB}#BhWl<|qhWf?iNnRFm_$5uP9G9H0N4giV>HLfjwjUGuQvZ);+6cyMuaas1|JDSTw-JdEV`HE}vS{oC>3QV3DcJZ$L8a#a5C z_~&>2XCB;-y!lmcv)9?_SkLIPN`DWAi>txas58G`c??kdySuyF_^-9Q-Btg^KmFd$ z?jNk)c7JypKHk~-1AL1g8Qm{I0N4VyZy0}=yS`UQsFLr+WTJn6BY&R!+p|UBKO4HU zXU^=CF{fHI8yioIX!&IsZF=8#CS)mwQ}Nl)FR=}k#D3|`@7e9H`Lbp7x>k1+{<8G7 zs*N8f-qlZIXXx6qj^|(fi9kp`#7ox1ci`&hO~PB-clM|8$a`? z+85TUbVGo`1$Ef!;@PI|OdvOL%yMW$w?=cmmtJNoBp0&rA3RMBd1oPLsA3CDv-I z7k&Ef9jH+II-+%E&g}q0r{Sjbe7oCjwT%Y0ZnSCa7_hD{$VnGV88ZOv);6N5iisp{ zfxL|1H(4tWevrvmYYw-2)^n$8ZCcOm;pW!!=Ubb@UCY_Dwx0KT+vCx;qW+cWfBl{99V@N>S@6-L{`b}NzbD4#cbj;2 zf(YI-7U5*`2mA!}!US)CZWt9`r*nqBxb`t-C_w8@p?dhAa1_7uhxY&bzaZ8@FT7n$ zN1q-4C-Lv2a`>nmJ}QS_UOCjOb@Buj${Z(<8O*&PyaEDeRZ4;qlaIeu^h((Q4a)Lo z)=}hd=Rob*)$wU{MN{gPZ$X2@*Q4`rF>G=oVWFTj8jS8??|!Kfq8OoL10#Q3R|9@_u3A&Go|qMr0Qy}lly6MOC{ z_+-0uly<4=tvC`rd8!I;vPt?|RN(0_0Bt~$zuLd>7fu@Btu5-~38i{jty*>NqgkCD z9b6n47e{a2o}QsO9QN+(BQ6kcWfI4@C`Ur$?b-1gZ2Om^Uy}A$fZo#JjTk7a9nFQV zGXu{jN-3mP7*J`jk>f}vTeo?eq$lgymb8~{?r&$u7e}Sz z;TWkgv*YQ~>ajOMRQk2qcsFzI@DOyO8U-w$0r;Nr)Q5{H;hahQA1&*E@~32663EA( zV7Ktjjax-KS(8gddDt7oo3lf^xTSA}jGKZhny0Ec(x+-Az_EWr17GuE`++{0@rOKqz0WvgR;s z=#9Lo>_FcC$>R1oJ)IeA{n$gtz4H4Y;~hs!K#50lDo(85Him=97f^YuHWB6eAJPI|ebH;d7* zB@utp>3Gc_+J=Z+Nf9}>*i9Lk6ArqK`PCqpI?f!VQM22z+D2=Q#Cs6hk@Jyo1~N=j z&w}Ke&Oa|hpq{=(c{K;2bx1EQtJO$|DY)veRFt(;*oQv)m@=o)KBXwNOby&MZD$32 z;6Sl)z7r)}X$B3|i-c~McxjPr^APw**np4_pa~rCV#maS`@8wcAr%ZSg=$^5E6*F3 z@uE&<y>rXu>)nvJ;<B->y;^5-l`2c_W>(Odc3&hlv8*Fq_6I&ep0Uz$Jg{wcBy3Q;d z$bsQ(cztkjd}1X%(g$wK78nWfGq`bH9E~R9qhUMv6J5A?WB|`9iXiG>wsITGek2 zC}@)sb~RC0xH1(k8@;+4vv_%W>iVp{$Xj27JemdWX+Pauecj{hSDB>IJgw=k$ec2U zCLFy?^HX%I@mmv7OE2jcT{}K2K!o7^!yXUpRgVlYQ{S1xS~fx3!G~dt!2hF>`f3<` zl@!Em-K2cU^d4L)3Z5j*+i_3nDHAw=_&8O&q1wCCuwi^Bu+*Qjiy`@(WQazNC~xl3 znWU+Et&FeBDK`d<|IRod|2lLT>1y)R6oc>N14}pWGIclL>ml~L~Zc~%k#JF#fr zZruPjPH4|Y4uNS4dgMLz>fY3u z4eD)7J#Q|azXOMB>mkFSp;b*6RqlI3&T2!nVS-k+jf@S-8T@~{n{qM1Yz_O^6xph` zCH_gdp)4?%H{mL#akI~Lq<*Ckr-XW9T%cE|8?Zy5O$>krrmLyT!or?K&m4Ow4z9^jOieTf z*WGLP3YXj_FNdi+Tios8-D3z;z6TZ<+0s$;qvOwk(mERFF3uTa3NpPZ>T$DAAOv;rrv#YqhTBhkZm@I9LyVtI~n#UJ5ZC`OFu zCO_!l56A_xF=r}PS%2(~F_ayyc2`$;=uAEI1eqDMc{-W<90|AidX9C$mdV#rgpF8| zhp$cEI0Dn8L6onrkucMF29^o&jHPYnh3@43VLgUK+n5SyuW)860%`NUjs0GndkD4myiU6*NK%@i>6*QX+5=XMNmm?d1ub#K79zaXGkUB?aYv zAlHm$x3is18wTBB6D^99*$2%yKUrqXR^q-^iBaG@Uy$y-&bCl>f*hA4exbhgz1dZcClq{YE$jE8!qD!1J(F6ic)$pC5hV#} z*0#*YL~>;&6KB%dvC=y@-w@-fhj|FF^BiX)m8g`w@DRPqWENq*nrdEZQEF-&n@Wr< zbzwf?_>P+P&f{4K=b{_lt1k(NnJ_gkf!ZI9hIU_8m{AX%&5EXku_d?8bgffktw9|r zVd$y3D7`8R%|S70jy1Wi1cf7obF+{o^hngow@KqVYR37Hb)~YjzS&L=>6Vh zbrR#9Cdb#=_|v}eyxZ?~_wsA_QUP~oZO>?W)Zsn{}Z1`b8CDuNZ<}H)mk&H+Y@uVTi91qbMejkr8Owm5H1BViuzV_|NH&N z`2Q~w|BsQFu+TEmE=BUw)`)Lfm>A%b4Tm0xRV90j7r<^JaRZXb!_c5lKqE3q^_WY85mbSmS39N;dN(& ze=Zqn@blTx(MdE40H;A8J(cwJH zjrkN#3Cf3UXsLz^VB^&YbU3;oNn=St_M^O)pCCPfX5u$y0B9Kc3nZ*@cz%Mzi-S$R zfDk*#V|s6693TV8Bm60qxZ+=MrNwr^nipP348X*|Uf)AE1HX=X;V;~a=9b?Jzm9t0 zFWif^OMWl>I_ibLh_P_H6pRI5!-aYrj|U%YJf@laCiDONy6{5h3*`T?wyf<;{zq$f z=kfgis`(!iJdnxr6Oi{J210pgEY_y^>F#oxpF?}*!T|%a+V}0xpD_dEm_O=#5+D6^ z1?uq>Ut}H={yZl9c})28RkA?__d#jyA6?F!8p$LxnyC0f4m6a>W&VrhN_j>|ztL!r zrX3_6g@jx}qDoPPtT?1}?b12A!|LC;i{-H~o4fG?MxDRqc=z-Fdd!>dxfz7_AX&LB4E*+IL+IbEx?-Or(Ilfu zz~OWi0W)>7J=H3r-2xMuIiFaV-s8uNDOEJ-kRgt%9ASqj(Flkh(g)f30Je%kShn#- zvW38*-OR_!0l&KAu-J3Avt|6ak5hxcf9Ujwz_%@0O$IEgCz*0p2Jxy4#EO`5yeNK+ zF901uj|lx~;ED7dM2?vkd7c2t*ob5_O(wShJ`gQ95m5Yi0|H*q`#KEgd(WQT-rja( zDurLCnB4B!*c%1U#H^p8?bjVWgYPzj`&nq;ZBCs#7j6`t>+oj!1gN%o{tL*4|K8-h z|L02p_c3?#jkC$d9r))4Zf7ng;lVLvhOBf}Rh(wV=8yFs_px>0f%vCiX+1uK#L)3u z6|eylj9#ePSaKej%cLdz@B!F3=IYS%I;x{*a=7ntyw2Y}ch_B zCTb1WO^iMB-^@XI{P`uqHlO+})`9yOcbi|GwxUk2t>i3UEKjm3jyi&dG9krrL)`Tnjb2$yA z(;C)xZx5l`w8YUVBuaSDQmJcRb;8UW0hd)vyY3ZCG>@k`p~rJqW(>GMa~vKM`3%wP zu!UOXSp3{#fmr;8)=j^msp;e};R_zE*+S(FqM0%Dy^o-}5SIyQicmXU3`ZNze+9xk zZ?qnILx3iNI-KSWw;o6Q`SfpM7Ew5B;t4PDjehGV-Y%2v{|(sx-NmaP8cWgp9nVpi zVxip}PMv_16hZhnNmBq^t#`3_n#M|58zDdzD@gCQ@nO;H+9ShR_#R+)HCsxaFH|vs zi;I%ty|ExQbrJiyS?!(e?f#C|jjelk_(Qjg+Q9<~dSzU~p5TxpI0C&ZstXKy z)JCPy=BD}X6Iqy*0m6Ta&vfV#Z(9YzNv!G#?ODg?&&l6`j2Q@qmAlRS9}Aa%wLi6WC}VsCHFwotPLF^1CiYbChjs0#2vW4fNSA^C zxTn6@p2`yZx3s5()d&?Tv>Z8Oj;_x)8^!K{a$lu3;jcNBJrdx}Yu7CB1NyZSr%KTX zt&)Ad2qyz|qyO5O`_3G6m`XlKiLoW9NAH)%Kb7DA*iT?Ec1NKo2EOcDVDbCkmbJUP zm3;r}Sv%JD4i;6ppDp9OdVqsa^Sx$`u?Np8C#6z#QyL4&^1>W(=`O(>haeQ)dngiso2e029 zof}PaXoH5DcC}B&awfDp0t8<(umk@p$iHjJ@b}WH5}H{36wh_!xFYqyQfZEof&B}( zhiOM42(1!lbmUCwGpNLBgS7G8aTRBI6PD3ziwLFMX`^yDzQ7G2(5iwJfnJgVnE`d{ zPv86vWZv5;D53o8E4-GRW+NkLbn;J4b!blQo8g$_9{18$n_8p3(WJksJuKzWvbtS< zW2ia$iD&y)>p`LR_y^fo_u3=NH%KGq~V#7>wl)Ztf~R1`Ipy7g}Hq@}@gQYT=W z3e(_mQrNzmgB-DV2)z_|NMGok|JJ?*SZwCMc0xHEH$hpSCR+g4%YuG+A;TtK%~ zeTje;CySe*HZi64fGUwjig?s4QgXypNgXZWIkAga%m=|vYi;??cy)IAMt?FkS}C?s zS-R?i)1g{r!IKS@El_bEo;mikw&2B1YZ1QD=(PlJ(eTR%;RF`-1aT=UOW{#RAQxd! zS12Q_uPm5pItk&tvK*7MTDL4ixNDYYH2d|+v^*@ord%sxM^Yc_D1=If$ZEGJ1*YgAi`u487^1gW~5HHD~YH+n7c zyRtf1ghf3uyqY?ghesW8yplSoLEtNku4vZG>Vd>_xkk8t5uLMU4g!aw6*}}IojKIQ2lPh`v z3Y`IF&H)~?+Wl6-x7>F|q5!tKvqSy9P9!7jT4~plQB=M<)Kq1SqFm6?1S7?7ZH`tZ zsl|_LHagp0O&#NEF`erT(>Tm~>+-!B20-vl8Wzhv@$WyzuT)KuDsUfA?QZAgM?*c_()LeH&WL_Rz<9o~=ObA3Mr;e$&?&#yx z!F{PQ(8_m4YV+`BK$+F6OCevF?-+j=s=FuaY!#oM=*C2tcE*dFImij6pA~YIivNLdJW9JUriXXMBF6H<` zuY9%h;qN_!FeEaUD|wN_(P!kt zjX9#?(x4;ReaYRS`l_Y<$=SS-Km8t8Qh;tnjxiiiS+;_rRfPq@mKMS5mA4AoTC-Zw zg7+SH!N1%t)UIdmaY5I(p!y0!UuZq;!s-!te*O+t6I=EOUcbCmAXSFy+|hp+?kFz8 zSc5?bLLx7>U=dD!;sT_nK`OZ`X8h)a->F33UxMwdnrzpv#&*1{mFb^TdG~>KCa!{; zV>~QkzOG_AL!HU(%s|s?uA~ZmAtk3K%DqyQA6}~0M7du9FV%VPmvM9e$Sx)=T2qfxY zL2kO^HA!p>jdvgd|5(v}r!k2^?_}vz?La-U659R>13~XRVJ4)=K`26!L{9iCC$!~M)1g1P{mgAM`;Z^I|QPF=Go zty|n_;Q20Q*-5wP3~ua?&R`Z-Cq-Q7sZfa~$2m_#nrYstgVZAs^+G3=@AnN$Cp;Jf z(KlY%Tzmk7Xv6}`ZZ(O#ta4W-pqKqlr#VXs7Ulw=qBja0Fcq1Rli~F*3t6?)+v9yX&*kWAXX7c(|AOhIg2B)Z+|i0v zAWHJTZ1t^fD*sEjztw%r|MGS7za-aRB!8it`UZW-4bWT_W$}K@`tn%);j#L|Z!_i2 z7?|wFo@T2-Oct|I=y`FG&x=_MEchZSY-|6#q2b6{SD_g>8$$ za_QS-h!e}cmy zyYQ@$scs!t5v}&LJmVrw@?F_LO`9}q(C4xAP@)b-rNvRPtGF20HX<7JUwSF1cM4Vw z@*mG8rQ}bNK$u=k;6QV4j|Oby*Bn2zL%Z_o07wB*w@9*t#;QC3qm=W&QY-+FE3*K$ zt-t~d=V2J3_WU;MOmMT_43p}Kwsun0%L7S)ma0?Uh2ZpYu(l>xSz>G^CwRCHEqIpEqA)8Ea zxeBfsJONl#+B=Kj(ak)(KiAet<3g%vh{1F?bE%U$&MRN<-E&G_qaz?z{?7VTC4W1Y>y(gdE<- z<{Vq`@e`K8AoM(HB$(riiHLe^nca}-Jp}-JwHO^(xw=g0ttwQ0Bhy8&xnk%5!OC7a@}9P*;a|Z-R(2+lCq5di2k=?>J_)arIqOlpsk*_ zk01GBCF(5i)goMVvNitk&xTGeA5nS23>%QQh>4Qy!w3Ak!9VgZA3ik9q$df!L_w$2 z-LKN>1lsdOGXuZ11oZd8WhMC7&hV8DUJ?1AeEowMaDwu0>?z)KmvN6*mggVz*FXQs zKO5g+j*IUN^Pl`r;aQKS$nFkxDyvv##g&vKqElq!%!1uMUPvZie6SkrPImD zVmb|0b!KlQ%X}uz!I^EOV@Yst*#?WI^yERx+xS=Zo1y1TZTj1>XZW=assyVCEFkB= zR)D`x)&pZ_n+nGhPL}X!DaRAbGQ6NAcFR&wOxxtU-s+$bN^Mw3#Wbk;lgoj!)mtY% zwP6txth{hJQ0VPvjTkAgl(X;R^zd|#6&rlDkA9fpE~kfMs#3R@qrwaK(0eCTeGJRl zNP`U%s4hS10L9FmfVL81%K#)%q2a39GtC7Qar*l3S_UACy)`UpE+B>N*N2%3P<#5J zdOu)yv1UJc?4ch9*=|51oWCHuO#1ZmF#8mnY?_6Y;^XOf*=xVJZ9EOA6s2bsn()ZX z?OAZ9^H06hwx&A@x<*CjH^wgq=Z8hC&~`>`>4)BWR!4i0T4sr`%X`ndTsLhnawZ}V z{!&UI?!iRj4uv{g1xk@+NK2z!1K6swzj1Cn|NfKf+^)#9(lGlaFk6wt1-zI~=e6^l zW`32q2+p0I)IDHq&qJJ@T{t=Zb_GVNZ^G8Rb4<{JmX$;r<8MuN&9ujK93;!=2X!#K z>y6N5zK0jS&+Z&22vjKZw8uW4KW>he-zU5XOYD`BdG=aSaK$&dLZv*ttKsQ45j-tZ z$HO(X{Jpe1`X>3iGMj11k}#_N*2xjQ$;3&tknek7YE4`cP*veytO~DIk$1Zcz>U7OkAu1pz z$4Xq>q;wF3Sq5>UKy)iWEQ9AN@TL{uy)FYdwNg|kKY4eg)j90E0nLBlBTpYK*l?HH zdVg8;nqjw%_tacDP;w!YB%mw0IfVbipG*0?P&S6_)G!;DOWP||a-h*tSB+t02b98! zOrxpu808RdIJ`RUNzbXq%pThfolg}|4;_8JQ({MlcHpSnQZdfXoLh=XYc_j*%p%q} zKDpRxv;{&6b;%%;4?{dj5hSbI-Hl+8-4_5N4vJXU!SS6d7e{3<1hE~Pa$66;L%sG^ zd*`w;<1dAcNlqH#`ERKUZ z$F>l{0fxu>Tx&0xNhm;J(71M{=G0T-1W;B}kD|0;Gz>QBTsa~7k~!lhaDe!@m-slH zyNc&`<6*=m24zj$(NeR7`?F*q`W=tpgWx#WNKOBs=?(u5i<+K4fBT|&p#S1!^M(9E zi7iPE*gODn$hBMSJsP~(up5aK3aJh+q7FmZVW@V{yL_h3zo8k?`X$geN$jG`7-MIu z-H8Ib;Qc{c`~C6xf4!#olFM4qUX((sYj(jP>>J<1fBx>>KP=mnvCHyYQMAbA$&AD- zUVMSYUcwfU6kmh>?{SUfM#LU+Bfj|38&RGxbUS!!`+!*C`O;`K-oaPw^oOPa45MY; z8{ePp5GaN~I`WY;H@Ux_Gy_y2qN2;Zn)F#S<0XC+$KW~zkWc~Ad<#I}OGhc%q7IhA z6=w~~(1^pV(JyB-axg&`+;3iTR3-%tM;&PYQCM++?C4E6&EcML>llB>SX%KW#eVAS zjw7IBs3S&EDbvLmT4&r*(MdaVapzb?chM=7KkSUg(`g5@7QE)*;#e#U#7~{UVB$_G zaY3A?i>L>HItT@S9lSU`IXL@;D3oZ|vHdGXe&2X62OZ#*Z!m91SPU==#2}15nBNch zNWDw~1AUlcK=(5ZGtrrd$cCy7i&#*;OD7lbB~Hi|U$Fqe|xGU8752i#8hIgKOt5Ysxrt#M`e;QTM~C z1MBRLD2!aXM*dKM(1#Cq%i%NuQbs7X4cPCFzt3@$dnw0w>ABo&Jni=G8pcz@W%p$_ z>Asw>G7-Q%0RbKN>4Rq4>7FKFe2>57&oUXXu(SyaX(8uQ@;p_+rbU!Zzcb`fdBC$z z^Oq7Zlw1^E4o&uy=WgkJni~DNBn$2u4(-+jDI<##~h$9i7TshWxxgfUE^z_Q}X8tWc9 zV{T%i{0xnr8qG*)1XYPN=E0yN^EqxRvWOfbC)iFzYb`*kcB;#|&WKa0W1p__J{#mP+NNdt$7g%!|Vqj?YhD zA6y)to(x_e{q^Ye;QZ+9_~7;N|6mEpwsC%OaPjVZ@Z#v_;4W9ENEo61QH^w!umPHgtg%~rQ)S_So?B-0Yn(d?x-faWhc<9 zFoATa3D11M4bxw~JUuzTI6F8#xex;k22uOLVDd4eiNnS_I{x_t2Qr#b)0S~|^y=vB z=;YChg1%v!JF z)OfNDo}?b;`n<+_U9dFY7U17Y;s3-qlY@u$M;Ln{GDXw2hifWDKY0f2d;Yb+B{<%r z&~OnXWr&Vw5p`NiKozn`PXpmTL@doK@Y1a#6!VeyNxpX2hByqkdq?T`H&UDoTO1_RCOT$d7_E$-^{fhbECv9p_STWfEr4 zdnK6wEH2V1=gA-Tq7M_!EkWqa(Hk=|9(0aAIkSXj1uc5o774%N&<;LY&6Gp2ww$J} zl4fo-%sPcIU!T7Gi{w4fK@VQOM7zt;f4_YF?)><#N5-4e!y`?ROdJomHB7I73`I+ zV6SWi)f?G@O_L0pa;?m5AFDr3I|iw74I+1glpgxI*C30ga(X{8oEatLi!MOnt*0t< zfq~b9sXdSNc)^YdA#p)JHACCKa>9L*4y{y&UP*^ux`Tzfs;`nm0LuB?;>YuBbMdh< z>7zTC-Si%ADULKYOELA)66kV&0>Jg+kHMqGhN z&x%a|mTCehF6x{uuDQnZ?A_Z#)W`%*c=bj^_e~<4S&F1qJ$^j&>K=MUtI+#;tB`+i zJsw(*ht_Z8&=O{(|5`Zy{Y!*Aoz^fRaVfQ5u`}9Dquxn_(bsyKtXEBxER|SDoa%de zi?IH^`H6Avps)PYyEP(kh5$$Y4l{#FdJ@^N-3-gr%t2T1#+?F#Zw5Ex;?%IZW+elu z!U@VUJL8DUF|`*yGqyOx0#FmbP< zyzs$njb3LW44#D0L-~KH8b|4iz}IlyD)j)O1VuuWYppBXnZK{A5$eJ6lPK45Ph6vC zunT-=hP>9K6dIZLwZcoW_QL%TYMo|H+lEZN5ovcj-B#){{Y0r$5~kk6$s>d!aP{|Z z&GVj)wImk0d%W&tJmvghwT*PClG2#xcu70<9AxIW>148{3r_UN8ZAbE=pefwBimeoIaq^qpPQM*5UGc0Q*mRNMXI?oY3Wl0k>x~z43i-+D5jOw&dj0tu$SvBVN^O6&)aI$ zCUAA>sb#H5)UTJzRHCO0(*-L?O~>Da>EZFuHy!_nb%cU-n14#_KifOIyZyBN$J&03 z|N92w|0EA&%sljk0s6#viq}JJ*xwJ*#B&2p|LmY|uRFeS4CBYY<3~Ty-`5>?+_4vr zMxI9_&!ds&s~CB1Y*_f>IKA+*w8p%`%p0eZN#KNdDfmp4BL3&->~#Is8}H`En;nW` zcBFN@aqrxjVz!a0os#PyW5Q6MgSdq@QA^fSJf+J~z6O$qY4wfDXGjYWKDIYaih1r@ z@SoX^;cNA?L6iFf-(lI9l0-+;wsY^;aB;vvN}B=+!)tPSFKIZ&45sPyxMJ3rpsC{2 zxpYYJl$BxiX`6Ud5D*^vE{A%uSE~9IW7alkRZ7>R2CU5T>SjTe7>meuar_22#_I3& zyL-Lo55g}XfdGB0U(PM=j0{@+ZfVoNf$PK=xbS%a&s3ZI!|;r5>>BHgn87+*{gpW; zf&?pE&M#5*&a$n>d=pC=<3U;IAw|x&%DwfL;^8FU(wtmiK}q1gx@@dDQk8>oorCfA z_zFW-+VaF~Si9K&l+F8=V7B9vi=(r@9=u+f*<|3Gs#P_0npvLqrE_6I6;$#mB~KsI zuhH$0T=FDM*X-O>UT9Pz9{xy|v*4ejC=j*#sp7c;k;Y@lVD;Yh0$ zJ&9L>BKDP1gvN`Pd~Gja{l6l&Xw;oau@IZF%dbdu{KFr=+lutyX4%X6~Q zL=exxjXUx^J~DzDx?IQV^|!Wn%o-ataWIu0cM(=_Jkn6bDn<2q6zUgWby`#)hF2y0 zEG~X~CDw$4RJH{lO_%(jOkmJR$PxE8roR@wIu)p} z*X?3e)Sa&JozdLEa^2Q;s|xvGzbx6YpBZtdTF33@bvteZUTsWjgjVBUVIp z`?;=TN@zyMzzTv>{$3zFqjMjR4v^sdUx_f)U1K*&&ZghJY(0#Kzec$#k^^`%`Dy_| z0OvjTK@6dD2ucK*{XatuY`L#90yklC8}P02xK0QSVBXM!k+XwHfP%xJ z*HqMOXb!!lrdV@~C8uA{KxJtaD&_HZ|!aGRJ}DO57~A#>okr;iMOiVL$U34 z@A*!hyJ%2+$DTP?HkLK5OQuapr_C=&sLic@4N6&7w_lS|KkV*oZ*ArA(Zrp(;eAB| z#HMUt(cXXsX$Vw{%~qD+{%&`V{xe%;Bd#*wbNB-*x!JdjULV9G{MUI-e~QLk*O;ch zUZKuTn5*6Ev5dkOgcD`+Y0%o+!}eUC)GYCte@{5XHv-kuJkMmUzM|_VrZX?*+I#9u z4BJ0W={h(8&O85x>QHAEdI9(F7q;IfbxE)@1CR5Lo z+rCKO5i+>Hv%A$TJmawZF6r(~@gTe@hs2t^7W*-_T6qT_uU2&M{l=DU^IKiF&HnZe z{q647gDl*Dt2$tLO9Bx3?pzpyJWE-#n)T;17;-sytEHJ^hQw2F0iNwHo;vRvW>o2VD8^#){tj ziWWP(DPC-VQ)RIMO!;C1ENWRoz`V<5#Ur%-$9n1NbiV z$41dsOR_%TfHEo889Yvbe9%{4A*vGhoP?v3x#`Q>^)_QrN;u~3CFa^ zt?lLxKfhS3W82MLM*{tA__jsmwcq@Axo4ZwxSC&E3VJoKHlPQ_YosbIbZN!9xYEpg9KkO3s?U zb4q@LF%e(R6*g@)6R5RH{6`b^JG7A{dK;TY9$eLG_6@tze!FBT^r{g~qLIs$e`8B; zQTJ*Fy1$aWleVF{QH552q27Wb@1%YDT#QG+L!9%J(hj8Tu5SDDI} z7^e0fSaCwt_Q#UGIo<8O?e1Q8`#~Z`Nt3DIlEbRZc4bXwySgT`UDIu#?BH3i=fK4m z_8h1p@*co>phR?bbnmCteF&rmrKd;1-Q$}e30xg2QRGSV%pR_j=*;cMZqkU zoz&Fa+Qd}o@>bdyTY;V_9?I)`h7>I3A$G!?WnawOATx60EK=FaAmvWLP70mhx0}ds zVGTFGy+!=p`i%T;Jw$RCy~5M%;o6);s+@kscw8*~0=ks`m5; z59v#@j(~Z%=C|~f*hsg!>z6xH&WEd5HW4qoS>Hp;l2_hKs_ z_&`UGA9+k=?)YY#dY#=6iMbC#k!(*X9;It8A9-<}7w+g|AYV|MiCncxoh4LwuZ+fp z)Rd#1%@!t>_HF|s&L&|rF$HS3V{Nq>qPOqh^nn_~d*eU7&jGCZ`Dc4-W4$acVba~+ z?CxZJ6=<{p2P#rx>H)0FVEg&t`ST^cQPkH|&3vrhZr_6cERHrPx^xE}QplWfQinkJ+50B)EDs{{>Ysh{Sx(${j3I?wXP-tLq9A;Te z(}LL~Cw4f;=EQwEBC;EePnc-3q%jr4gr>ScHXx7BSkAq`rR#`@$*zN~;OhMKz+nVF zpe#1Zyb&1%5ZSOcRGX1dZ{#B%-KCa5e)EB_->iYYomKw|aVDsZSEr|qwWBR@HUYYs zMOs!29E|MIHRim}5BD52OHfCqENRlJ4tSTBF%PKtx(2|_=hOvGa3Vz>;8e3313Zs0 zMjax*$r7-YHLL?aWl9IRJJq}_h449upC?v-JL7>&T@;tR&z6JOUYm+|6e9yH%0dTkp0vdw^7 zt&PGmF|tR`DsR|h6j~L@A$Q)y^USKGk$r}?Z~pel^i5P?$j|>j^@e}Plq0KG04UD? z-{0Qp@1*npZ|!y;^Z$SS{QofzWGVnmvCfgf-v{!p_*e+wu@JyxA%Nd#ApkFsKLyvA z#6PM6>D6#uurJr9;I5UG42Ar4E635=bQ=aZQfvy9`JC5j2S zlR-Ei4PfQ)9dw)nD7O{?biaaKKI5}legt>gsn?WR;ZHQ-<|GbMNwgcJHAr`oD8%i< zei}$g@uTrW*XnkYdWu??06`;;%|=q*dT7@ZLKm2brup_~vG6a9P2qPPum0&#QpKU3%88MZN~PX zl#QD?&e$23r+~k>pF5g-<+_LoF$<+&Vl*(Ea4;kc>)c`3#VpKTiC^3sL@RM92UM5Xv2Bzs0I!rre5fRlQbb3Kr5LP^#49Udk(7mU-UYlj zXi`?ulme46p_9g~J-Z?eOkOZLHy_9NvodS^n4Wa@;d;`Uqi+<|0!}Dd4HOBT@Gexg z(`1faVBa?-2%OO{(IQ8%C=E1QI+soS29Zq;SIjO{DjFXul#zA2b`@nL8cfQDSN1e; zv>a8Xw@$JwcUI^|(Jlq>A6_&H#6EQ!kjSWw210};#66AJ39bT~*h3&kKV~1h>?Jn1 zGrJ0}SzHw}rv9v{q-WeQd_r)m%-`)!`ns8Bk#F3cVBp8%MR2by1@f>`$n0 z;WHX4+c(aYJwjWVG@b$yfydDaBTVM*O$;)O=(P)`%svm8R9_lT{Z6N2{M)`kKQxS| z1~q@b2jshKa~J+4vpWLE`3SpXI(2i=`C=KZr&4nB+JlAUdob9qa}P*G!X+$SS%fh zUllRL0MD$nuPsRUuZtLBpcmBZ#_Ngkj^G-%p8pXa_@pfo_jAz6m-i`AxGG-t?@y1C zay^n#ESz_9uF%2JYCAz7nBt&jNcS^JsVQF#Im8|jxfUL0&QbgqD=rs^VUw${$e3N~vKiuLI+ z_no=zJKqXHBs!{_eE~1kBT*q|6)j9eJTijn-+IyO2CWWb53LT~Cs4Jg-Yxs0;=4S| z9Ul}YZWyvBN#I`1$n!ERnQHPW?(P-;IZ_5bEgFxyHf8K}7#99HR}v&QJ!o?SWPN(S6SDN{20%R$D~AJH3$DaB~+ zv@#~>#CQodAXXjA0Qk?24|||G3LoyeUHpF@Dzz}VnTPk)hR#@$BToFfrW1ih8Ft^g zLLX0~gDD03;hU-q~tW9_uJQ{TU0M=Fsz|ZQ~}mY8mzr^p1IGJgEg=vyu0d--#>g_07$VzFWPd*A3^4Yk5nzO$A;;&DrUGEKkER(Z)Skqd&H z%S(iIdePEqWkp_GnGx5{gn1lz;?-tCIy{%)y2w+MlT7Rz%x3^*K$*WiWV0=WwX(-X zLf|z|#eGH`9JvQ$^aafET*mLvcd2w8ku{7l(^rbOXDaM~4}jSZ@Nl#0@fLa_h} z0bv+rDTR3CbXcAUUPy~J8263+5u*n1+KBa;j5y4pBQ;>!vM9I!Xm|`WaBiHL6g@l! z$WU}v$GZgk-VLrmPTEuW2u*Gi_l}(O;(f8FlzO@W6b5&~=G8_FR7(xjDaewbBZrJy z7Bw=y2kD&Fhhd-&4vVF18&89$V{(M!tZ`}d+kgmO7Ey`8xbAEK&|TJO2Lq@_NAlFj z*y8SJstKeRiw68O#DN8qZg;|epc%QJqB7VR@=w(VDh89$TOxz`8rY3mM;j2gUU{G^PCrKC zPW4nYXEbK3QDSUI6!j16vGIK%ESY&v6c0eo63TIfI>BI>a&>WwI0^6h(d(m^ z7lzf)j}w`1Rv?xPf&LdDmnPbKHSYQy(<**Q`y!0@FH6bw@FdM;0RJh6y`1^g3Ty*sQV=OgftP(ln0bZZ#^$0_tCl&T{58DE)`WKfkX(`S~9) zyWBdge`Wa}d%IS@o3a0OcOLD3UqAn&;DJo?$CsyXe<{rQXmvT~xZ z{_GjXk7NF*^GSU4)71?~R}}h>xgQ^MKR)Ju{3^L0gZnu7Bg}htRhoiPmqRi8LYD(Z zd3$rcVVr+)=u9wO-rNhqD_BYHJvt|hj!$K8`8$8@!X`>2q#WIkrU20W?9RDGuowdO zkAOI`$y;>JZX0ip-yYS^T&bT8ZbHvxBo=43LnokBpG$pY{xfn-mB@JTBj!9lycWe>wUkeZ6N7Q`jqs&s#8X z_O=dtdcuX3YR*aTsjfi89&KahJELIV>h`u^AHdJ><9GZUw)}Xz|Bru`-OiABdBz4Y z7#6ayXU+ikk;XCKzb8)j0BQH?3ccZs#x192oO+{=jZ~J7wNL&#&HOcwHcSr_Ct>b^ zj!6yaueH!<0ce$Y*;+e*jj2siDg!G{^W+q!Kv{lFyS zAk349NT^Em38j?4?;6NB)5Xm!*ne-jWAjo0nb>Bs{NZBv8Cpfu$!H=!CzR@!o8jsDGGhwb`uD$%zJKb++RNRAaQ&X42JR zeqONOJNIuFa=)I%*23%CtMht?2(R}4Mw$Nw(&M+p`*5ej#BwPAxy`@gDL`PfhrrS@ z`P(@i>IiD72?{pK@?(u{rweuUohwYA?^EgCW@$qHcPGa$PY;h+c}^?s3i~!qvb~Gz zFPQ|4S7)bhjPr}b;}a8&4#f&T-F{=8|BpqAeyqq-nNISSB>AvW>mewI=$kb#9 zh6`etD!GiV9cV<|Z@Hd=jWS0u2ia3fOn?R?nt9@WLPjzg9mu#3l2; zLpQ~Blz;)3l7+g-hIYVn3#l~F%8_FHSN%=HL*e$Y_BMk7<6FZ@Z@R~KJ?G`SZ zGh5tXk_d-*r)>L7+lFp{_wJ=wy9}d=d$?pXYE#Nr2?Z-*%~lq#aQ$a231yUnoH)u+ zob@C*PkhI~=xX@36U?Uxhe)BlfO6TKwO|=?iJapqov2`)M?L}`(=ZK4%!Xnk3Ybn5 z2+PG#YbX)gB8qAddJ|^!wCRK_@qfDpHUSN;$qzIwT{aPQVWak~8Y)KRYCmbQ3u;oi z#-N!$Xws~<52mgrKp#y^fbn~yF?!nF?o#N9n>Gjby4{v>x%>qt$M%0?&+cjbCf;FS zV6**UCN$#&E#6~T46-OwCBQ4V%k=dE|*!*0gQ=!)!Plewd9$BjC4| z=7Rg4FSwUw1d#Z(jee1?pG7h^phk3Y;D$3cXvW7X4Q1&kas zx^muBg}R-4%4aPVVusRSVNNC!Q;nL*&`Ko_Kmn?N!VU}_V_Y549j!!^-*Yv;Wm#*5 zIhUbrRZDYn2%}VZWvIgW)p6Uj@}GeM=W1dvrkX-?ZV)US<4MnY9uGv06__2O(P(_g zIBy{7vAnmOtn|Nq+8hV7mfzYC>y%ugHLHtXxEgC3|Az25lMB#Rg60* z+q1Qi&Ow%T$z^z?EhLI;VSw&a;~$0z_?vs^GSdF1vd-w(0@ERfmgal3B{4RLJ1o=Y z$V~a7H2JrdBBKxnIbAPiZYohxW?8#!Zq9c?wASZG7$1i;Eqch969%T#|T5q6~4Z?cX-O%>d`2!X8EmuXK7{{n-I5&Z) zm4Km~V~@Nk+23#G-5Pd?HXY7v7*T_Clcdwc|IgmHHnwdei|%Lt3Rbzfl)8)}%61-3 zoo$*pt@osfH+HtC>-cCXk+NA!qDoS>)jhqx{mu+P5&*%MEGJHDw~=KM&zZqsFqp@^ zX4k&=v@BVGq;CJs-P0D2YGUbROjo3jne#60th_UEP-`*C1N^OlbDy2vM~`In_JKm1cfF1h=;S^p2bw}=K9 zt-y({=Lb^i|6xDw+mHIP|3|;K{dnun|Ks!df1owIf`8)yzePbU3VX_mpwN~0321#m zdQZ?7q-VVLfX(=$zRxpDa@Y>8cEdAQ!gIO9XJztR1R>th}tdq4T~pqF)1~G3eQUerkamh z9TYFjU_3VS=I|SNdxPXvY8x-3>DNwp8m(>$&#LF5KIJs1c^ep{MM(nx@L~T|E`~TK z=7kW0N}-g@iUCUr<6K~lPEbJXC?d)LLWE92yTi@)Q+$`R3 z^I7sV01R&)3($7$nId{lJ}=Q7pEM!65mi@HfwI4m{+TGs6 z{#L6gSMkdb>~|g44GGKitsbgz=ylPIWt(#s5u#c~^4Y<9?4Q&GENoae2-}8BNLEu} z1BpnYLO3T8;Q@&A?|pHQ2;vHmItmsNBS6P>=5gB>3UQU2W=@^MNUOrjDR}LRo#DBs0A+w zK!IjrA)U8&P8@Wyoz|9ut@Dy#g8eKpdkC^@&f9j@c$;6dmVD>!ed|b_yfk ztQfh=!O%j_3mVm5Nio9apck^l!=cHT_Qy6I06reK zkN@Z6$;n?kAAtgLk3M!xdA&>QVQN9k^RWG^DA%2zLxbH zK^ChEoa4NWPgNlo9-F{OMDKNc)N)$8&s#PHx5sb&78X(%kJ&f#)eL0GP}8t5Mmqjs zG^oA%90@|xD;vAMV#tU4ks`vwr!rvt3Lk}CwmzCv(NroDV}+06iYb6_)S5XGL(Yx$ z<40DPRrvUkRne4diRD^_#XgD!Luj$AXs)nOTB5-7pk3k`QjsGsXRx9nRN!uwsHq@6 z9kc<29qDfXwfuy`kWWMNs^BHO(?3;FX=?P|Y=cs>>2gIBvX~|dKds1H6;3$P3*D|d zT7;F?EIDKL*kv7O zrU>p4d=(8-lB|yhfW=zyPzhueQBdFx19*?a^kp}@7_3Asw~N^h|5Qt3L6})E)M&f( zBTN#EX^f~&_uN}X+!uvIty8lmGY8DoZAK6*v&>|94T`V|PeV;rRyhq}35g{GS7?j} zjh^+3gJ2iuW?6*&asm}g<|ws<9@F_Sy6o!+vkK=S;TaFGN?-+TfT9!*xlFp+;yO8< z8AUK#yzV@hx4G(2cA34021ID~L_SdtVhdLkDGfukQ$katX+nT2vw;%ehBX&^4wf*% z+Uo^pLXQ5|;GFA_BGgledIZtI?mjx#wOvc08`sVO4h=fWosHq>>hdG3Ypa9^N8xik z8oE2>RLu(6mT}&xcF=W?&yntJ_$8m0ltWRvDT>+_p@xGQTeZPUo^+&!aEY~1ec%ky zQ@_(uy5ZiQ@Mgyl{`g%z`!|T@Qa=<+(Hyk#fJ(!pTqmqhU4WEBwb{yBhwQR`(dE{! zN6WZitF4Q{is9ch7f!HXeKuL17xnkCbDf~0t#l#YT?s8*IC9{4J0uRwnJup1iFhqYMeaG=ecn(1K6$1XZ8dUa-lUKlUU#7LMsrhHo z7$ntRHnIUolTd!SoA0)PmQm(yg7ZwVQcxSBD5Gx_ldoD8B%(Ukm{+Dkh(#&#lx&1I z1*b|VXl`AiTM8%DrgIcbG3!cP)2uTsK4@mK^rWW6Qtn{fVojxfp7$fl@l6q_c#7|I zOw2d7m22aE;mA504UIUn`6qUqq~AwBw`x<)Z*>jj*p7!eG(+@BbepFQh}hl`b*I58 zYNrLqfoCAD9aFez+6>C#WewA6tUTJ_Jwua|!r){zdU2DX)f8h|*h;6BnTyCk8arg# z5})N`-JnLE9n#s|ORAS2#S2^?aLT?2&Y5>FEZxP#2?g7@4K>tYFgstSHfFkTgPJr% zP);>JPfBKnXKdgJm9^f!JJ|cGwb3NHRS^28gJhPwWH-+LijK)|h+Eu92IVKkoDR#S z%#63x78??QQNga#!LYib!JU;%R!yi{PQ6S*>s0hRlsr@tvMuM4mGc$>oy+5lAw>M& zoTehe%Y+5Iq}wBnoz+E^ot4r=mk$N~#Yi_PD&SgeT2059xz&kmJJhyXt&W+NFirLS znKzjPmSy+4{mm_l5>DDS{7;okdTUyVwvm-WML||D*P`8nK6$TDgBe8W3RzMaODPkw zLLWa$r9OVl6*H59rbXSFLUEG{SVQDZ_eU8_(Ci(r_zkMSsLhQlA$T8PFrl1$6`+WIRJkM+RnS`V$B zWm|n~)7rAOtw+{l>xuQ$+OeKl-&niWbL($PW8YdYtnaLs)+=kzdTo7g{b21|f4Bb2 zdSm@)y|vz12i8BV_tv3xWPPyyY5ipVxAn92FY6e|3nvRuov z#@4BIX8G1H*10vYrq;{~thx286AHd@ASji@# z=&5Y3c*_wEA|G*&s7K5r;t}tNcEtL}_~Q(*jmZ5NB3==#Ih6Gf#fV`hyYuy5tq0wQJsa4^_M^v7p6)#RX7~Bu zzJ2lC%U64^zyD$X@Bj7YN7z38@&54W!#{ue@1Os5i~v7Tpgs7vGaLacJw5Y(IiE~t z!Ti@SiWe7`SIgi2^S{6UKLlS(fnUn`v>6{#aO%`31@au}P%;@?*&Tu`3wfH-0ymu& zeh&OdjjVm#Hl3M2i;+#>CBmr}qRBZtWk+3nj;S{ILkzcpkLY(tJb1?%msG)OFd42e z4x^46VBE!ERX7M<&nzt*jn2HO1I5`5NqJ#X!brz{<)STG3`t;vve>=FEZ94xjXH6R zBaV>!rjQkY$v}8g)drnAppE{f)!&Bw@k#%rQ7#LV-FS2}zKLSLZOrD39II0i68L_! zvy(ua`^?Cec~I2P{yyofnBJw7J5kR{0v9ep$DN&O zB}}?_sG)YOo-e|R^`qwsuxBXZHyV(W`Mtay^T)ZT#bxP4B0o>P5Ol4W+QPh*M*G+d zzIm=TgOhgq%I#h)S_x>;&UY_7oWWB@fcP9KrIpi7Xj%^kZmek^7Xr3JzggpR#}BD# zKB#)Fk9Dn&CxJu5r!P-<2Q$iTE_FkrlXlz&yRCk+t=#~F%r%=BD@`=r%;501ZBcM- zfiGE1os{sl+S?iqr}n;9yu*a@k@$A(DA^v7Qc>4opSiuD?qW^x8qBzHO6@i46B}_C_U#<~w2|f#$;hvY>29kT654smtAEWt`f497s=q2~ z3ooYDieBi&E;cH!usJV{eNh9?*m?dY#pbs$cJZZDpBL#D7imB-D^tx1l(Pc$RNnvC zIcxa5oqS^wEOMc^#njjA+?!HhsntG~7E0W_glp%!d`!Wp*T4h5UqT_p7Z*B$?|)9M-307uk&|XWl-*^js##<{lk@(xT9T> zrepDJw!w7j=Oe!4IVj+t{UX+sJDpUs)rM?P21$MdHFbiinva9JLhNsESx-2Nk-BS` z;EI~5B-29E!mUmb8EXx6zfetXlVhD-TS-aYgm{f*n3q8~ah0N*P4t<^Cv@^V4q+1x z`zNa@HZz}*iw-5)s#Jaw3Dwho)=_~%sk&NFD5_J0R*%@OIbxfQxL>8TWg{j8wyKJ% zBi?MFTDlAaj6_XLqT#ZtFHm0RJ|4rnDDT?*hQl{4W}bS?baVYpTCcxg|_S@)?= zZ9Nhsjzs%e&QxohQ;Tz!$;)hgOqKE(QHG`H`Z9r>YYN-94S5S=S*MUDK<@LWPPjDA zy`{{UF{M0~lAlhTAqZp_PB=PqGQ#LQBRQdPL=J{dk_W^@S?HspYJM{P{A2)WzB4JF zi!^F=nizUDg9nJsAQu56iTFs{;!RuCM8%Xn3FL8A&;XL;difl|Hf?fH+U#gD2>1Eh zzRA0<-8+DadbW~j77u}Xz?Ez3hCpwJrEh6{7ru4rtpdF|+ckq?OI_QwtM*&^to9W$ zH0w4oc6Uxs+pM(?8mQ8@D6cYY>kffpYpji2DW-2_zu8@8_)kx} z9HF_k(rnaeouu0?k%CmAV_X>&OD(IQpeW3X7A1P+OwNqm(o4hoqWfYwafqWa7JA7`dd3jhjp^UmQ8~khq3$n%9Eb?jpH&X%N8usRj z>gJ0v&2IqT+XucHOD{Elxh*HtW((HJiQkGDHY14yhe~0MLH5)+Pg26L&A&KZVd@&m zaG2Tz@p{T>yO^RPPAI&k7lV$Z`JEhc`C+@_` ztH6wgtoy~4!-$GuYV3Oxw^_O&ea6rf&g_JMHb(a&j4L#9T<;lXuEh@PM}gldP&S6a zWHNL{=fyd)lcNV80xa70{is7jXw#%+wIINlSxX+bp!EF+%greW!knTR5P(k9P^w)D zrHaid1Le9xuARkSJlZW(Df6!8y4Ky)n6Oyz{V1nxXTAconxq%6-@p42^~eN>*!cUq z{kM`@*_cJfySE6Z>=BGO$~E-U4}0(Tl5$W4fjV;q9rXPur+v0Ktogh;nlKfmi%eE5 zEBp=zC_94v62S&M4cx^f^8)Y$kY=Kb;Ygi&}OMl)N65gP&FG|Gj}g>q&dI2dJvlhI*>_YssxzaSreG80xv1) zL94NUTs6#yg%(5XfT@cP|M7-_OtiLK0cf;UU01inw?15X$>kCai`^w<3){pl&4xEe zB`B#(K(PvP2qKB|;@{y(1HVN9yRz`fF%APBqyuhp?!$4Es3ZkDD~rmiE@i5iTsY9t zB8r2l{~Hc)K&dX*I&=orAD1*n{Ll!d?qWKRL^r{lSjy&(FOyYVB)PWE{8ouP$p@nI zzr#G*I=iDn$T3&G27tkq7`6mE*x@e}afaETwm|B-LPJBlzeyk6t!-JlU{Tf6kX6T| zWVd_0Gy(y9|J^ugBLAXfLXe#q-fS`TF!Lw6bw*XbcCuq4i+)1jMI>4sjSf(!$0rX= z_mEj!BZ#_;91Hj=UF^AnT-HdjwJ45H zP0P<#CNt4ul@u+j?yaS_qKVHo_P|K9%+k9Wo*7K}KGWa)z4`WlnAL3zLp+9>|7kfb z*0PDW59Lb1B7?Bh-Ji`|ar9R`)lv2SjiBye* zhde79&j}mQ@k#R`9T$x0q&9k#v(YN{_N63K5I3%&b;IXD={ljObws&_BOt-H%=G0; z2U?MReK2tgvbahC&)_W4w(YHsSkI|l@#)hNjrGjCwD7|zGd`4QzdUh4t^Ifn*u6f6 zuOGS&;FeiqcUG$J6g7akPbZov^wkz+P)*mAvtnD$de#C6@NVvCLPEfGKowc9eKlyKBRms7E=;4pAlCFJBrC7dSw( zvmOl7h4yS#BSq4HskPb3V1VgVs7XxDp@a%eB6R|QFeW0?SyfJ7tAatb5S{O=8C1XCKE&1Wks<}dVv2hF3pu=0I2OZvo zBJ^fdnu$z94>-Xv>%Co4`47#TKNznKf!yl>-~3(*wHs4qHU;Nx2i6)?n43>}{nZZL zQ1kJcm6!!bW*J>d1`$2>Zu;OnT&Lbs#`WE)x6!Hh3sh!)UJiaM4zohcm__Irmmcih z%sLii(Fu?vH%|?MzumfnJW)c;nbW8W`S+KkV;SCnl4bZu)v^q4xtgU^VX_AO$MD7# zAj4~DKrs6s+NBO)e;ptgqPBFBvkFY^JI!md!zG?P*@^KzhB{AAjEk8cV=G%;%-$21#3(7P7De zwNg@ojXP;)R9Y%&YowAtO?n;BrH1&`d(n(OEsSOOjBCN?Mqxb*hM0vlS_in%!Ll^M zP6|o8R|k#-ZPi&F>xJ~Sp?qB!qy0W>1GjoU6w65aL!-cBO*oEYOpd}%WUrkGa57!Y zj`oSkU$e6MLY=HoaZ|@9X@9Jx6UD$$p%shIs^ZY5rJMS+Qa_l^J zg#C4J=0s#p**0hgndnY49%ui^{L<;Az?N$-!?I24cB z{aMU<7YnJ`ky+6L43Xtucxjd7OH#b}prA}JZJ~^Vv6{I~OB&f=cS0Bq^UO06yBos| zM)2WbdV!%wDhhnfa*aQTd>6jQi}Bdv)hSvf-XZys5jvRn$8f@-4{!~aApR_3?v3)= zT@ADKJ`uCsZOUzTS7EoiP5JF^6NbCnh~qY-+UL!w_W5d5`+WBXIPLC@v06s8sx3Ur z!k*A;Y3x5Lstc8v*^DsZd;tH@eh;LQr@el!S0e~X?yj%Jnlh56?&EpDi)LnQL_i4? z?-<8Ju?(YDuKxYPQ8kY6$L1{?bFc`>Q#fIegkw>44_mc}*!z^`Jyjo@gqu$P9 ztp+)tL&-Ttp5islIBp&qCXLWs6F?*bvE)(-&eQp3i!4wyF!X2RTMfas)%ncut9zGU z?;c;e3)L>$>Cg)sDT^d6(MqT(WJ#Sm7_xg-zjtF;lGIz*Mw5C;Zm-eYW1VIk1tvia zObCi_)$Ieex{nZF$!^oirA29Ity+wx>)9L%W~|+cq$>%Y(keJfv-71`$P+_kLfNilrKVJahY4ta)?Wg$vQ!zG+ zj_SB1+rA%J2L2-(2@LNDy<6BrXH6uR0$^=q2P3RQYdD85iT$J`7XP*iksbX@F)5Ym z#J?rwU;9^{`))jrycnzfCI;eOl{5j^zX6DXT}|WdM?LYPsvhk&Xi!hw{A`wyH{ML% z6nS&d|1k-?nz%~{n}uU$LN!-)+?Zr7;Zv-tHOteH4W(|Gb3rok!Hu4e^nR~ii`Emg5ryU>hRf}SGK%HrxaK9H@*ilCcH?w=L7 z4a9R>C!cSZ%jeag*ML30@^MmkOFvO|g!bL?zgzx)mgSFPUh}n|9#oYBg!O4;-OSK0 zk#*UL)qvwU{1e=Z`|^AIw`t3AWjdF(3$@*T6>+VTq$&>lDm}S&EfRA3H?~+MY&T%t z>jqlokyXpAZ{gWU1S(%M=>e!7v%3ks;oE**)X zw4&Zn%w-u0MEpXw9W93VZWrHmM9twyO!UgwvY9r3HxEbf$9w(7r$Y0RtXb2u0@#U&|EuV zmQV0FwBWxJX_`^9X->RZJB&ae+LUjsLgoe&Rb&+_fKn4kHGo!Kh}|a*V|wO=-T87uOkIO{Y0^|R$*RbwtC3j= zaS$&WIrE0LN`Fk=A&ssj+mR%LrL;IyjS}PJja7Wt;90!^jUeELOXJ*I<{j9%#Y!^l z4#hG_OEC{U%;aY<$9m>D&s^hCfoNnaCN(EH7I+bm5qfSXzJABPao^ZdB6;B|@?nwk zvK={PALi@MjhYe*o)~{Mrp~-QI)jxGCU!-3|A{UYQ?4MDgBDm*`3jwmI<>9?D`@6s zd|9;TDk_q9n8F_~B=*zWP+$Y|E~Mt z==Fmqz$GRV2SZGDmHL-w{^$&P_ok5%Ely#$Xq99*Xf=hd52K|KjJcl$5Q%}|w%`vJ z+Y8mk4g(_!rXH^mr2rsDim~HQkbQxS1zfLdeCHt#n>(TBqPGRiL24}*DzIwxrL5Jt z@a6%mFXQT&wg4LduE0QCr5I+PEi;~T-r(B!j=mX|AR6gHu`^J!f`c6CXwreFr1n=a zDyw#;NxpCdpE$jiv|9iKk@(^u!0>2GgY5mHuP8wmZXv_q!sCSC;ggVsQ?noQk~>0M zur&dlW7U8>V|cX)W3XKYXjM1%ff}X(CKx+&X2xbuFAdNPzk%0E#`1KO$$;1xy2d{9 z>LHw52H`nSR!Kr z&87_qd|G5*E09#^*cxFrv=Qm_N!ZRx_jRTFRJxxp9Y)&n2(#iUn*~)ismf+fq}DmZ z%EayTy9m<}*+~mg{FPELT5Y*?|XQUgO9B*7kY_w^oKsXKxAu2E>bd zbKhdfW4|^})TF)Y;k4*%stK*Av9Gss=J<&x17n2?KTdOfs^^9}fN5LvMCr%$M;Qrc%FW6w!e3 zzP4S|Dol}tAB{eqgK^rfF`7-oR&)``3vSajny+;rFJ=->3d+75w z3XE62@jY<$AoK&n_+}iOe(QQe-Vd8FX6zpV=RM(F@iG} zoSc0O%MPb!II6`Mmf#_bWE!~s7>+zKv;sn{7xDvD2uFN=mjC|k2jh*0JCX6dH}gVg zVjL`n6Mtm9@kgkrKxt==Pogu=g?51BW4+fnkV8HY<2B06q*VY$?bA6ialhJ3dgAR_ za1?`P+D?q44~<}s)j9^A0P*;j*6h;c_h+yNxjt(ehT<3z?D@Vk;fHH_j?Ir!K%WH@ z7q_fa|H4D?!F2tI#sZtz#Gk?DcLt!GvyGNH$YBfb=HBe^@C_6hV&n&-4G_ea&;|k0 z_uOP`1iqv^oO)wp5qT`g1SZ&?WT4}PI@SgY79rpXhvH%Qh$)aB0T1NA*=VwGQSU;S zx(pZ;eg-^G7kG>vddr%4gFV-ws1*pXI6~6IF~B2^5KL>2<97MUo=)$4yxkn-WdnB; zJ;GTq_t@-x9wK8%4UQKR7B=Ij{i7e=eK>-aUcCL;`02&__b=Wa{rrre8o+z+!ecFg z*gHY+UShcHSxlOyANStB`~k|p_-_Br{?X5jY+mmlz1=%JG+w`ZZ@e%LUc5irfBE6f zi}%LChxZ5X4)?l-ap-yF5Q1hB7>#L>00FyR4DwUdg}t0f;C!_!e-7gLXoCcIT{n=ybzOgm@<*94P-X{Y0`)r%@V)D174QolXk+VUhypK zz^D2>e3b-?4t;cw%#s|?Q=WQe;Do2-YuJ&Vo?j*}{$oPN<_>oMI};h1N?^R0p`zWS zzf6!JUjt~PI6$2qthABmV%&b5hI$(HVjzY2B98pua>vn(1kK2hOLmYb9b*^FmS#5V8yZ^x?|Y0b5#f{RE=1nTW=wUNpX4@*fN1zPi*` zSN`j7Z$H|UFQoyH`jA>PIS)4(_LlDO!m%^*v@#!vd#{|C??J(T z;s*EIZ-McR%bs*E_>*r>VF^rNIZyATzB{S!PU`zCQeTkDU(qsRl2^1ClKc{-;@bfL zV75^y+esNAiKkfFERh8bPYgqb3ytHz;whpC1p>NuibK9P?Uc1DBtH>T2p6RZ$O*h= znH5_~O_ax{W>Nd3GFw1axPOwQn^3c+MziX%yF*IpHk>$T#?|h!!BkeNxt^Kv@Hw7a zA4x7hgzlQ-AZR{Ixl*om*mc5PGhw6+nx~4Idbu9(*oQOSH6w2Xr=SLXq*Ze@^SuC6 zcel4T`wd!8s+6@GMH7%=0QjNz>%tGc2BS}^W;N>~SzhZ3iYy}sQFv53{Xtu#hBP1y zA8Jt*8N+pJsW_`$FU3Z!8kwo8ShO2~I25-#9gL)wixM{@ceL6I4`8)x4xO+8%CQQo zA@|KU2DM9kKW?krgtDv4QG%-|$AIo})W4Zp5n{Xw|DZOp$=Zx^yb_nx&aagpN9)U* zTIL&tcy7q^C8RP!u|LgZOH$N`b8U`4QGU676OohE4YUaXOK=tiv!%qQ>vNC6AOae3loVd-0Bh_xz+Q>o^jU+xsaCSPY-(i^aNR?Ubdi}M2T?A(A zwVHPY6+g0?b-KYL_{SLjYBh&qTDL9?TOZ-1AEM#{jymQFb2C4REqv4v5}p?>vEm@Q zB=eLeCn|lS>*T~D$)FVfr%I5$UI%q#+3WQHz(O-Y#u0YSsfVPUChRz`MDDw%dMj420ScDRN!^zr>GMHXl?Zm zdUlb|6P6>(qcbLtJ4j!@T7QUaJ$EY{$TJot#4+9tz{ke&JQQrB7(EW(jD82b}el>fPy zjgm3)M-zX>O8hzjaL3v?(hI!FlqN~;NXcLn!@CQ>?kP+au)xuWUu7$Ae+SK(9vRrcP$fA`)j1JlGG=L9FN^F1BO zw#Ap8a~?t)sZH@%P6ZTC=k0u)&T??q^T(+KdlS$L_s`IYC8L2oficr$D%jN}*(#6Q zvPCkPoRZCK`sj4jMQ0QgXVkPp?Mr5PkgS1D2}u+Ygw(Y(Lb2m#b%r4f;oJP}KrtC% zF|CioVT_UJ_unN{ll+~P0w5+2Wxs$G7AlQ44%%aKVqj!qHea0yy01nI;VYs<3n_o* zdgv?&%yiAnX<|Af7?k0e#yl9oZ^Lxp*fjS-$Cxc<#wkd&-s!3DFE3xSrHnE zKLa5F$ZcsP^|Bh|YOI~0=sqcTnz&73bk$bLdJsU#0KWRp++btwZ*KQCO^IzPce3rL zX#jzgMxG8fMLPKuv;p(d_>8A?kqN@a=9ax}0 zj;`JiCepCA&b`S5&C8%{#4O@m4A5W+&7B38cn&qroC`{Y88d%BvLIuz95_M!vN%1Z z#*jRc)SIG3&^?1+8Z(nIPMZCmorQInpP#xu@|qy(&Yk!ScwLA@m$^X>NE3o4#MxD1 zSWt%=D?lu-g}1UxR!=BMrc-Edg!{2z_>~mxhTb%|@Y?sG_4FCr88P1#KIXL&H=zw^ z$+&OuZY@4hk*Lv_47wyEvi32y%J?U4N3iuh7@3MqSDXFS5w4Q44U(9E4o4V)q+|`i zIH@>0LbE0C**zd{zyIH0fHLu5unyzzYX86O?Y?UN{b+mh(VhMGXSM%M4PnXTn^ub6 zr|*PA$@-Sr7x)kshgz(bCIb zF-n8<1OwMaPJWt{g>e8!41c6~&Za~11&T_1sbU17;CQEhg1IT#$%@GtVgt0yy-5;k zEq#_4uouWcz@El}g_gnfABH=mxMdOAGx@OIkkp-Uvh0c-OD>htQEN1tiI(Yt*B+DI zG>TopGA2YFPYXkQ5OdKCZl?t`Kx(El3y3XQEK*Nx<^bcuVHi4?0ql1d4)9g;;PB^{ z?+(82503T@k6wNEwTW$CI1@in=5@2P2NPQTxXtxT8Ibu*yQ4`Ed5LnFzzdU?#L7bk z^Q=G@wggJ(nXRv`h@HZseBsqD3@fr;S+-PbmQ8U|xBPrrvm~wJdS!_n)GM0f6ZNVQ z1F2V(bC!CAxtCq7vWyqiE1QenP^%VkuX;rVwpO!3#_yU`VEEG1@W&Zz6YQSy?O*{- z{UmEGNw>}1b%BARRtme=HM5q@&X*P7rr7_NQTsYhfaT{uyJv4bQvHAJ&CR>>-{<%L zO=uwJ{!3dFNVo88if(lQB(A52=U)(hj`nV|V^<1)lJ)*(~WQ>^BhGg(G{y2SrI4QvuS+B{9|YG3v87lhzmhfQCmL?3WAknH;TNNV1GeFRI6P` z*N|)$nlU7Cyu*u*+GTi=!1Q}$;Ps4}i#?wQqoH_w6D(R!JrJ#66Bs0$KwIOGCzOwJ z2L90xp1908nzsdcTQB}fJl?+;~7RvH?K@+5c{w?6|tnLkb&Nk z)S#3Iq?5By&W6*aaHMS=86CWP^JehV`~9Q64qB}h8JvnSQIAk^fd6UJaELgN<(^J_ z7!KP(;eWc3-oah*jCfNdv;bnr8HgzcUZmk4AO$S0c2F7_I>X5l$YbOr!o;~3&H%P& z4(m{8Ww;oRQN{^9$6a<|D}(HYu5rNNaEC;bk?7lA|*W?dlrN7{y3T{r+3ILbi-VDxU?HsJBcl1bCndChKL%8@L#lo_m_H zY>7+T4H1+u}q*?T}^|<$dZS$q0i^Y?!?7)9><=_VP{KjWwkm@D8K5%p z#*||OptGPbat4`M7AKC9upvT0v`Vg`?P7a}{2pPU9ps(K!`)9){U06L)?)yI`mjf+ z*VD)U+v;!Hs{XHc7ys`Q>HiE7*{J7(uYSBtg8PXvoimx}PS$}tSeW|)Wc>5vp z(oMRLf}V2$FHwT&8t)KPmzd^ail-EZBJW{-HpUo;n9@U!CVJo;XdDB>=PXaipEn3H zT_Ec4O07~hQZoWYKiQYW4B>vgzrl?O_Nju9a7@*3iVgHry9fXUoIA-AIE!XzA_Vrw zCKsCs9>SGA{++(qAFHqS#~XqvhI)+5G)Pnw<#pFGrqQVqZHT=dw8x6q>bC^Mwvv-d zs4-9ldqH1-o$YATy2+d1H)$2mGW;v9vO`q(j=Z#8gLE8jvcaIXW*CHUpor4V z>VPibGAaeejJ`AQ57;vNbr#3-ore#Hi&NaMu`JqEKBQCs)2;p%5-=V#R3h$Xfiz8i zATc|}#|_{P`RVWiiK}l>0fcX2H#7wXG9D+{3yYiFEp4r!G9J4>%q9q?mFf#eq_P&M zK;;mqRAnpbrADTDF7%(EI}T!JBQ#Nh&HKWqeKI?9GKT~b(z}cnUx+8tM1ez%;GunT z=`5p+x8rX8@ARdeb3p(gEpKm>C(ViZSC7K{E|f&t!>i z0=HV17%&a>;-=`r;2zgc$tV7Zi4t5iNH>v0uT08}Bmy4mZbwznDmnm7D1kt=AXCHP zTgKO4v$#LPfc4I$Y!Is7(u*VlOX9b*qhuGutzRyb_rq-6kBqkKyCk2ds6)IV$_p=S zI)Cfr)0N&g#7F`a#JSX6C`03Q0|W`*Nhrej8v6KJUc$JHXbri3h(k~i(8aTQ z93gLNlg*V1cC1ewWdqX1X(1w|y!->2wmf2;QRC@T9({2{pBRL+$v9GS}3fp@|^suqqtNWYSEY}X>+<+ z5WZj?hdLlj5#L1F~r_wF3@e2k7b0vuTZJC~>P`Wu2b76ae z2Cg#|E}g(3e1Q(EBu;84)iqkWM&e>5Ae(${^ymU{kqJ<(+5?erv03?QPD^CY0}?Sc7Nhj6jcYPsq3v$gsLU~1HF!@M{Ny?30q6%PYnSj7 zKj>mk>HT-#Aw}>lE>j)V+SynqH6iW?381rnuL)>*4mbfydfiNih44cB((`tdBb65!EIRrCMX!c)t6GBn}lU z8x;jK?1F_&DW?o3mRB+gecO#00IOAq;+%hCLTM+!0pRz_2xYS@MrNzq>i!b=v-Z@P zx1%_;%Er>^teXLFuxymS7cfi_)*9fq$*R|NQXA1?omJ5MeD{xtX9+4BWp8uR6bSuZ zh>@);4rob~A&P>H((x?49OZgklCq4ny;@>cTKbwNwwzp6bQsp3ta9qboVNg$!h70C zCAK7h5gHh2ig)+l9)5WJdjIAA-rJ+W!TbGx?!Vdley<=dZ!zWZ^BD(iExJJsX^{+= z!CfW@GMQ_$7(}Agz4*HJT1_ix7iz(UY8Dk$05UzSxoG*|*R-;-IcyZZ+Stg)b>(+# z8BAOFnrs2cDGf9Cpn4$mX7OYxAHQ3j+$ufw;?Ns2Yw232Mxnx>N=v+qEW;EksQOAR zm`zTh7_^?4oH)de+2EL>r%-VMGB_^%nHyY2CHxA{?r65m3RW{BUQh?9#7v+IQ;fZ7 zyF)&=Kd}mCos-;KNxuri;+0$115q;O;TAs(i4bSBzJViG40x@f2A9(h>I374;Z41Ty6kNvCN zR(HN^Vbbl17kfNi5v$+j-W}9W*P}35iG%dGOI{pY6GskAOcy&QB?T`dsiW>0{W#df zZHpO<2WX%k$4hYnli>6eb_kwAo4$9+EBqyKtaj4TZV+`{?_#!?OnB?W+a~@H`ylJm zq)GgqfR?OITS+OHy%)jMkIe@UX2Ap3ACEB?m-*n5J~29c(%*?_OF;KvX-tZ?3Ft@d zSaNt7Q$UI&lIj>uNGPmX(pD!Q2P2`qeit1WQlKh2YIvOhGdl4wcb39;mcns1)@AkDM0 z(I8p?k^%fxok6@fPQXvl`88bHE1by{5448yzy*ITCTVAfaoSK@omEo+lwVojLrH4^ ztBnQFcLOg%r#y;5UTyqPJc%SWe-@UXI7Ax_T!6)+FRPHCp;J9Q5s8@te2PvHw`y2v zBDx^w3QGgZVm7edXSTCZn3^do>$9>IF4*j*0Em4Np)4GC5073PeK;Jv-+S@u=REKV z-4^rE&E*-Oxup3cwBW2WGV*vWizP1HfK<*a=ffyqRdg$@w`jCJjb9h9k`fn32Lofk zv94`fom~D;B9n`Z$??s`wgRT} z7?$(2E7PwRcVHitYh!2RWyq1o9C5#hqU2iil)ERS4@pw`afxzL8xfctx|JC+9|2v% zN(YH4yqvoy3!Dk(!#3;CqUm-7$*p+f)Z}z$jTG#t>lKrFMa;6%Zmk5(AZUGl$)=~- z$x>2EC3rQ07=L~(aw=*(*GY4ds+EB6`c!r!%-gn$xVLg}%W-Ta^APf!;#(?-8e6G$ zhi(^1+wZQO=2L{`ss59)dhvirUEcKJkjh9?q;doaJWTVDKyKr zQW~*NDkB-PNGPMGYi^*>Ln@Q0?jJIxCh%jw#LW^O6wqc-^70XN%c~Z~7}N1ExdhEL z7v?V6*9Org#c|byxm%nX_xg|eJL%Oli|5KRC^I-PwfmXxdMqDX+N=_m&TwW-xlhZ# zdjkvKB=-t4fpOvT&qwuo*eh7)1)goHdRR~dcopg^G1n+w!YVZ*6aGK34DlHy`!y?*DJW{eMCO`TKu%;qN420;0Q+ zV0Rb&cNhI%c=-R=pQee+c<$r|i2x+W0`bnD*BP#G>2GPh=?WUs`ng&Kw$EvVo>a*Y z>8%N5nU!SD0mz!rB}_1{$*l^3APBCd&r}J!Ac!xFBVGYOSRe zV?E70%LmYA@20?C2N(jyImPfMDf7%9@=5{`mnp#VmJ)yu(Od$$G}`Flg9rSM7>WSL z3a6XX<*7GQZ!DIuHM$fXy3w6bQG^5p1Ar-~X~4lHiiZ19r)3EP(i5i)i|^@7ELj*087Apz1avOyT_O4`N5|{TMF;HD^}#=;4#;j8+qk ze4o6nv>05p4)@;dy*x6^aS)i#%Creo!ZJ#NG~}ub+iLTyKA%RucTqpWTvd_x_`q=n zWTFq#YMUR9UOy3zZ_zBc1YBcqvew5%|50zVRSX`I0A|7LL2bC)k6>WvKg+r)yMJUQ z5@!N)5szVcZ$5EG9-?N?Y|-di@VnE|!3={-=@&k4 zpQm=~lPtcK3 z6L_EHaCp39BxMArE4FaiLCxrQw+ZZgtAxMdzlxX|y#GXKdd2=!G)p?Csg3Jxml~dE za-iD1?&h-wbjruvZec|Lc?#@r3uHYlA|{miU^bX8Cb5qZQJ}aNV#LlulsvI_jI@-2 z4PcZiOo=deKtl28B!@dH9v;$yuFwz(-gM{)unEG5V_+)MZhgVchu1uj#MO>*C4?ai zFn|!-pgNSaMvbe7(Rh+bJtuYI#UAxei%*!jFYT80Ua z;9LK975^hA(jC4EZjy>=Y^%?cs!)TN49eWH&0Guikz5?#=$&@1aq?30y$) zJH`bt{C;@~xzIbsLsiIHd}U=5shB{$IULoV!_oV_!Z~adu`S3q#q zdcUao%me|%2H4TGaXI+AWZl5m2Bdchud!hnAeg5PpQw_+>F62!>+-;JMVhC}b_Zn{ zb~!E21KqMo(N=en$T!^jOL}b2(st+1K(g}PMm-jp5ahKr&^o!c>ywJ2fp9lZItQOWU_P%HVRh`bCopP5VLr!KU%iXi*GBv%*kPac{n}J46bB5lWRQV^*?^$i99>n;Rbh}IF6pVYs_#^(OH_$FRMN3PGDQ?a zIVKy>OxkoaqLGZ8u)a1DdR-l>iXBU9pO9HXV28Wt#IH(Q1vF9ZYuEazk~WhzErW%$ zcqW4<1>~+AUZAQmn#Qxb%PQ@qbY1EF{8nCatMLv1sik7;4+NBzH-vJAqH|=_E;!UX z3_(7b733gTbs=09V{I*HC`lq{5eMru@;1?lZF)o1lEyG#y%0ipz#4CNO8Ahj-=p_0 z-X6Yqd9?rT?SPMA|1CZ2Y^+3!jiy^{IQa>u`|8bJskL|x;r%rt{1!q$Vwr!)S>_p& zvxoz|i%>n*RJB6rRo02R;eJZa_PJQwZC&es62A5)TGi1Ak1D#8)s0E`S(mDezv|hW zC$20_c}(U7)>b42&benK7GK=p6tfA9CTM)gt?86j*f1W>64JnS(0aY(+}&#F@PS*+ zRaY{Kko0r{(64eOFix>pVu{zctTmYXQr~R4i?R2umO>~*zp!J?fR>?oZ?>3vn6!y$ z`*x~{%E#PB8yf}m(|%xU`pZcF=~K&iVB^2eP8l8M+9?`KK393CvfcdP_4*H3l%JVL z@&KEE3MN^`>)5gc#5jvdoDPLD$=34j$_8I~WX1}kiU^L_DTu`Rp;}O~;4{$mH{v1*6OX69XJviCEhv*6r zhyENN`Jrgc=ucsE&UDUf#Zg=s;%&niRw9~)B(4Q>3P$dyasMxaaN>41iuNpy6QGdM z`5^71-C;O7CDU&>&H?0o02f}XN*f9qkRZU6tD+dKLE3(I1|n&@gFKn0fJrz*XLRnx z5svE|z<~2L92V+#xH!#PfT47wiRaDRy{@>{`fAJi>!vmod;sI7zR{8#*XLqJcbv@-VuUgzyFw z;=lX(=vhrg*JN{&#*TJTJ3HL$i7wH}NqX+f+}u3#U|pCyI}|<`3Y@70$f>Z`e_%g> zQfN4YrDnmUeBNxe%EU#?6GLMbX5FzwyAyJ8Oct?NtO6s{GBov=OpIQA_u^n5sA@i6 z=8jel-3^n&IEJA|Tb2QuBI6&fAI&Gua)2a;eEJ&>=w$g-B`_51-(0%nMjYncH;eq4y6J=w4mwrXtG$=|KfZX= zWoMScb|lzfipesux0?dVGVJn_1VNHA%K>560mNBjKpY;u-+%jkv&nx`fAUq9ILY({ zJDfrY^y@$XR_JwT;lJTxlm7G-OC(V?vV$ z_O0tKrt_#Rl(mvKKkR@1!`>lgPkMLs?&Z5TS!at`t{IHj00%hsxa^ii>M3ogsYD_P zBT?)*m{~q=n4dU<VTyX;(zE{3w`uEWiaSOhw$-mDsbh zy$_hyn-}l*m5AP4(y-)msjUV2gP!_&xr;KP3zI>3 zV3ZVg49Xmj*(gi=WNeFB-}VK?T*=a)NULakL7y0HNvutpsLk^FWDMGVM4yk9`efon&7aIBziUXF?{juhFp>etms@iQhEG*?Y!5`u9ZCBkF!Ax+Vw_ zq;JD0dTdD8Y()rYwnn6}uM`DZic*m%glzM=ZBaM}Su2vZt&41kK$wTY2&szPRM+4u znPzfhBTKq~X`)&)gmG;3?;^u}(edBXaLdk@&LpRXwR~= zIoQkM#3|<}-hea4i_nTVbA@5*p!;|}8UWSc5z4IyQ^y0kY!u{ccOzKj?vU~R}E^=&IhZ{hQbuj zD}%2zb%Nd?s|dEW?AoOk6ti8}kl{tbUxjU($2O;@G{&8psUPa0yI@F#dW@}3?&>;Q z%F>%;=_u6WIkUwaL;Ao;2gf+jhF?dcEHq{^?%7*Ut{2ltXF{0Mlgv*CD1G2|=MB)m z7^A(zL;iIDr_6Sz)2eT8n2YfZr=ldPxAE1kj@@=&y!vtf?cnf-4@a-w{q$Co&jrtQ zrQyYgz+Lp+-@|G9!6HI+0-9q01LRc3_Dw)AJVg~rs<1GmCY9!rt&&ZtTR2xgqEkNJ z%oWY3CO7I|iT|DqMg%h+oxyy92_f2;fRr#H84u-LXe=#EZxVt`D-7sy zK4hR$pxvvQl2XAE?@^hPJWWlu^SNa5j68ZHIwOM{5RW`;9|h6Kxj@Nl<~1D!{nD6u zgGjTUV4j%LK64H7LXdd}i8TLw*Ld37?Da~QIvQhAct%+01FnXPc3p3{IJH}~gNBYk zumnjE6Re_E6`&^OS1pZ7*?ReY@5Rxc0kY$pJr<0F`#AB@lx>0>lm!qTq|rFz0r@HX zkw8wLwgB?ZGozqXUn4f)UtVJ?Ut{y6hz=+I)Q>fn8n>DJ6#L8`-ZRmMYToxNvh|kH>Z1Qp`?!dX?z=LH z8261|sFPo^PJGMo{|Y^vbP6W`-IW<}Z1#!Q+~>hECXO>Z}2?1zHR#nlaI%ug}^VO+a8! zqhl*jlY>_YtG*<=q)tX>UJJRbZMxX(2`q9BI^;l+>Pxyu^sOB`s36&;$tW%nb<6g! zEc#a9hj;+7agPs02*myTBb)IQsgUwSS`tE6=oHa2zA+vveivvl#f;g9VF2eCzV;bf zN6UOjb{@4_8^23j*ZDZtt-TK~2Y)|kNj6ScI4OaoZbG5IADAeOHi)EJ9bisZ;=|kh zm+xNfk&IP-N6rFSk~#CUR_#k+ax7S|=y4mll|wnrXYe}+DUR^$;=&2@huoh$ragtj zBdo`%kphd=^M7-=>R!|ckls%dJwRCisBE60HE0k45-$8OAQ$+ydGP(qH~V{UkM`aI zfcD>hFI;wJMUV5vPM|H5;yar>POdY-QNw8=ntODKTYTuwQgs!wg|SZ#2DxK1pGfIJ zvU1?8ks5B-7>cjFwe^GwOe6fM5>iUc3548erimXY#e>um00k8kx2$VL5@f+C1_JxY zlk*We$%O$38dGcr51ixzq(?G;|Qp+H@vjMidr#oUn)` zq?hN>ocSZ@$C)5oCJ$~*(0u7EyYd>tn<(yzLN_evutqmG$)(Yy6Jinq!K|WCT;)QN zoNO?PgE@O5ZH;V*=)!C-ZT_kgZ(4+~zmt)oxU0e>bR}Qc`z)}HaR{`ptafldas#-pE z4jhRlk`{F#_r%*~pnB)wQX)$qAjPklHDivz(ez zsoH(zk78zc(`lZGC9#E}i_->suIZR38dYBT+)F~j$Q3m{>CH`&%jT3f%xUw;y5Wuy z((F2F&Jum3AZgr6L|+*@tAL?CuGa{h8VIid!rM}%<(G){0t!dTvN!=kU&ts>E^+18 ztFq`T{BB72M)_JFp@|y~ZrnVZS;_nGPno{1 zwy8wfFTY>qq-!}7u{4AvA#vKUBu*-qNqdRuioSWp1QQJ~rP;RFRroGiZFqh(3!=s7 z%;lFzQ&f~;3ztFY?!vi=DJ2SA#gc2AmT>T4C_uYWko)M|H1yd0s9V&K$@(!#*22?o zm#*wv$v8mrW5WU zPrcmQsEP`=fB5dr3yKN%X78VSZzwF?;N`m?f80Mh+Iv-`XjysO{7NWOuIQaIllM_x zpLENr0p1@>VVQz4(CMjtD+QvD-E&iojx)2;Qz~)yK$(w;4{f?XJ{n zS(|guVT%Bpuifau-V3@Tr1o>IvU>&pH*B|NlZSin_g}o({}(nYw09yM$Cx89TdF?4 zB91hRUq?OS?XO_PK`MaBG6`$tTmTOzZ~#A_haQ~9VaN7I#=-Zg38Sk2(Ov$0V?03< z-uyNN<cnMC=v7jiG-fGT@)-9=6rYEHnwXp^?@^lbAMyjUd-8ZKx+^p)yhM(C?;!xR3Rnp zNQ8OL+dwNSZkk^t)EpnUEpbGkRG;f4Q*(T?SC%%&`+wgW_dXbpOj)!eU@fd2lO5_Q)BPYV|R_n`_$c=-f*$gM%|C@@lx5 zUh7hdCWDzi2FzYsn{{g9IU#$01;>y`zOZq^SHY#;z*|$XWPEZ{Sr@rhl&)H>)_Z8__5_DB$V6bi}Hn(y;aq2Tq zMJQi#*O`naLonHl8EvR1#fH*dE~;eSh=;9+-PWu3?+%ztSn82*joaB8m$RZ5TG}Pg zTY_fLvOJ-^n$-c1_Lt%X$ebW>dGTQ3!8pSaBUDZw|C?OLZ8|Aw4rP!cM&S!a!fdoGYgxyM6Sa&CECLp05yt`nm=9!a-K?q$wOgwV zftLBr&s5Wm8a0u#+5wQNChrAjD~>VtE}3rmO7Q5o!3#7A*u-C-CASOG4WDU0z?dzC zk>Sd!_8*`xp=2^~k0mulO*&_ul;@OgxEfqM;N4Vu8Dbg1<;)AM^m0MYOnGxx6Tvym zAre*bl;BHw-;IJ$He{*bhUMgWm0bTJ-^6RaD|XFC&;2p}?q*Zj<>8ivt3fQt#&qs2 zce7B}ZIk$}DF<#y60@ZEV#pFQ&1o}+vZ;4iz%}f#BS(*GQ_QV)IUYM5oY-&voQeYv z=dD&`EJX;=R4k;EPIcjI0Lix+mH1fcSB>JyoP^matO80EJ37|iKq-z{NhWZy(b#D?+XWE#oMBX5aN zKqTcdW?>Myx?|LGwqjl=xXD$ry&`#6!=N&N;S2F*wQzZ3U@r&uVgTs47SBl-6#lAF zoUoK4ON$PTP@GcsVg{JPsPCoZ9W!{#1Z|qSeAbq68H5w}EA{1-36yF-eQM#}alpbQ z9{%Hv85tDkly1>Q`ym(Me;S{yOxQB5#&@*Zh*ssuA63K}Hz8Fe&vIQ#MIMZynd5LV z(uL4uTSs0ZPeL~Rx9?`1UZE{BJZV1$E=sWn;TOuJCA$X}y|ObPm2EVvMJTN-<9tc% zluC*#Sei6WY=Eg*^1FYtIrrI|yJCa-EwL;TGi+8@{d!PfVk4EWh6Da$WmR5wwW%BU z)2D;0tE<6sxhxwl3zTrRS#Q8Xn^dW4)M@L5$cuxupw3Y!fx$_CN9sAdJJ)Pp$n z(#Kw;@_EoKWVAj#MJh23d83nTg4@=M+cS3+59KQy&CmR1qM&5+Nfko+gud%N~h6$53Xm*<2ma1+As!=f0;jy;0cP9)l7)fs64xPC#BoeIT z`Jt2Y`}dwRp`dAL?J^)_eWbD4@(mP1%7tPNvL?*y&}^knY892#I%!v(?5f1Okx#_d zF7P4IXGqIjPmZ$X1TDlM^)}0JRvb}$b=RMQp#R7bp&E)N)-^+KU~XiHovtuK-zkKnaG(KfnL6f5p@lH$=$cq6wujB_vMdhGXfGX1<3%JLaJ9(3JtJ8gh;yO% zZ_C6g#+}axeX|1}kDCh}dOe~hCip1rXB9-N60#bCxqwI1 zY>W?IY$ttI6hm?S+qR0VPe#rv_DVAqKBZ_VI^y=iP#d#h4P2kb$lL#%+d#d}vax>l zP3K03Qh`AMWuKZoe_EW?+zi-yVusoEm(zf*w5r9%Yw0MBs@0aLpkJinL~otynMI(= zS_aHy!B2s;D>=YewmfF3YPf+H;f3LubKx0|ak_9qw@cX}oh9ZQpPhOvbDcjk#*26n zdO|yKKw)bzDN2?D+_?1PGb6xEECya#25$5WzBn_M4{f5{M2Z&NaXK7+$Jwn&>zGf{ zn@ybJ@H3>cMOYlyMh36kPnLNmMQpN)Wf3xfj}kAhzpgqxT1Jo$ja+Z@plaJ&&nVR zXhb@T!RYz+oe$Da)bE!J?_B0dEY z{>$CZ7x9yF+P(=iXNj7g6|d=+7Q{ zvkPOsjDeSIY}_+s8ZaKv3THtV&}i9-ma~yT@BI<+$7tgoRC^iBm!W@p78~uC9i!i~ zdk^5lHeNY1AGQ(WpH3J$zx@^%#y2i|)V<)3zC8urF~M-q ?|G|_)y9D1G+1>^YA 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

    tU1v)1bBW0{ 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 F7XZnqzV844 literal 0 HcmV?d00001 diff --git a/docs/licenses/suds-0.4.tar.gz b/docs/licenses/suds-0.4.tar.gz new file mode 100644 index 0000000000000000000000000000000000000000..168d3673e9af03aadb47a2ab037a7099bf897460 GIT binary patch literal 104013 zcmV(sK<&RDiwFoH#gI$_19Np`b1g6~G%j>uascdGX>S`zlJ#f(ii8_jl7@JSlG>7N zwA_|^jFpeE9j5pZs+{Bm5j6AIkqn)7Jm`^JF}pPN(DPWI7!^8I8xslY=Mb@X7zePw9#vH|EKo zSzg%q$Itz<@BfefIIsUt7w50vUHoPGKiblJt^cFr@%RAxpG-#6>G1@wN8`!Sc>KhS z{$Kxp`Ok;nFFyVL_TrDdz3Y`VPp@DOPtCoZ8E5mmXl|XE$B|776FC!@I9jfXdrQBK z%Yt=(7C0OFM;2Lb)|+CLrF#V?!-yC&r1V6YhBh~szkR$M?Crh5bD=GQD0chiE^<+E zvbSf!d4O=64j*Ims%;ru;W3VWCAaks3wvKH*2cD#r&EDRpi_44itBd~o57!r0Cwnjc z)t|k+JDWRf!i)w7gCo-&P5TGq{^)t{gtztUDoB^stb!c!%|ggNp9k7xui$4g-NV)!4fuf zzp^Rz5^oF{MsC-51@nkfQnzhv?#tV>uuIHBC;9Rw&Vqt>Dre4v)Wx(XIRj)8pC2OeCxcLeaF!xchGA>B0N%70AgSl-Ta~kJ^m8fMNq~CW>`cdKRkVAV@n<}d^uI$+3Bm(7D1`_3&4yKrpQhi1;R_3HiTkse&})nxpdrk-bMk!P_OO1(5} zq*|)dEmpmb=C`(h&;E2Y-8VmtC(rSFGCJhnNA!DqOur{%{ypK}Q~u4*On&CyJnCR% z+P-+mzBoRreG&V1Ek78T*D6TtusiOVFxcR;3U)cbm!}T6l|765^9fy1)*uJ7!;%%fr>D){#8+h<3pli2I*)~4UT ze-~7bZIJg1KoUgf+w>%$(w9we|ParlJ(IH;w^b1w`n2-XCQ*Z~&2x zGv^=Q_76C|W)6|C``_VM=j-U;qaV=|$@R_0xLhuS8DWnHgFX4?-|dF&SmVK8y} z^{XIqa{&W5DFOtXR3IoyYw0%T6l1Q!Ja!M`eSk{x1ls-2YOI)zaFmw0G{3;;GF3nV z&w`((U}NrawH=PJ-=B^~L}y#Nn6NI6YgJr*IR8k_{*J5`KuLb?&9l?#j-B{9aSg1H zAB;x5PUlfaP3^ts7DcdhCnE1>=8Py%I*-fH4qrAubP=idS43Qn`pvJFc~-95A62yQ zx9U6IgWcW5gEMFS{!33oID#Xvs~qZ`@y3eAJ2J|~+Xd0S#``cUVKy34kS|z-vD~d- zze*Gdsg<2B${Z#F6@oag!6k@qdP`6(vi``V!*cF%;%y3eiJAd zGNi@bJ`Hq+Ep;+@&Y}Sy18qcJXgpJ4UiKM5&a;ZRq@ieoL?W}n2SN;oxT_L{p%f4kGW#~2E2_W!dU0j`czgXf z^X~KI_1lk^7v|%KPuEu`9hv3PXd=h-nb%GV)-r43icM@4$6L$ug8kPYe*OIJ;{7!j z)NF!TE@c+p!K2G}Jzdy0J1n8cOk~g;Dj{hQ2d=nrc%{Xv=En%VHbT-V^{1Bd$>yN` z(Q{9r*m}XDw&g*(qE96KAZPNb8_0-rztN^Ew|EYH@#5)IVL`})$#uTGyX0Iuf?R=X zInr9rW5}{|rjo%!#Si*sT~Xb=z1AsyHr=25lbT7Tst-C;MAzNLgbLI%u zIS}fkzIH}=h|mT45nSI`00!KY$Waa!1%&qa$3c&@!RQdB>$2EqV5b7E0!L#NomLYl zs(_qd{&D^vSG#)~=oxp?Q$1Wq3DBhv%3OZ)akvj=H88pyyJ{p}DGW-3O_-%XFILWC zL+WnLC_Y&bMA?V6$48}IGBcK((Z26fB5xps##}5<%=tsqg8P4=5TFx#^xxi-LOGNb zW)dnQ&yDf(vVLV2d6qDuP)Tv%9%fuK(7L8pDH@OePwN)jYhTwQf(&L^nR5B!QQ1ap z01fG>%B8$frVXYZX4a*hLdqe5(X9;!-k`2l%oI2Z%q*fsu4OQ#*twRI=r!|IM2{qL zu3l7qN!t-zTSW?WdykA#LnK#geGPZ$`R7ocVdKh#plS@)t$8Z-7-8L7ym4Tx`2NE+ zvPKAr5QL|nafhQq8@1w`D!PP=-mSROJS5uMe$v+=5LTbf;LXpphzi7@V{xta#rrI^ zwPDnI6ZvgSmrH~;?{Pg}azy6G^~Hp{}z@MTX?t+rqpU6s8|_kOsO`1A&k!}Xc7UrR#4;mdt<2EikF zrLCXMS6M`#lFxGT5j=dL0-3Z)gb&s`SVbWI#NDlMwiY<(q1b+1vq0y#HxO{~k>YuZ zaSTZ|)QRWFkd)2@(xi07;1NI=JZkjd;TV=5%r9 zgY$?9E}zfORC`u?FN+vXX47_Mlc0+FCZtWpLS(J~E+GN*PM#b7;jW4eRUz!Si*(PhTd(qcAs z7o}<_z`T$|6IY{vdUHcL@y!i|1JDQXH7O+{DoaDIx!M>Z`!g5yYi5s>=f0}!!$cR+ z55D;7rPR--s;^q+3h7h>H{BHZXOmJS<8wHAxsZKHFspvuo=n$dVCF+==;C zx$$>;r7Wgx`F^#|H)RL27%Vjy%(G;ey6+!xLa?dc7HK^s`xv#*?t?1d3L))&xq4lf zkd>@aMX;*|*rS$Mo&_XVNSh0gQo3^z^s57Lu|2nO#Ppe-NZ|YA|MUS>DZpd){V+|| zeD4TowxA*}xoz#dw1)~TG^Xg2u&_AGZp*c_M(UP`e(a;5{>SI?hVS=4r6OQnPR@G` z{k+eLH%yrrB9U288#yIu0#dMH93w$O{no62zUHLgYcAsJO9U0yQ9>~drx(VvY|v?T zhn=u8yuc0CLWUI{i zqcPaYS^wn^O2wv&?WMPv?0rD5%)qGFw^X>1i^)nT3J^ob* zC(#zvSyh>py8>;p+a@XX;Hr`1>PHx5s_L7Y=aDqJsY-$f7g5wlPNLp9lzL_4MA=Md zTRJ#k9UQbA5ECZa%GlA_gr0va$&^Z}Pqb!MylviK`z*&A--_~vAH-K(h^LFhbK2eT-qJ}H@Y zV+Jj;ROvs{A*t~zORsK=2)j6yUDkIKI6iCoH-G|*D?d2Zl9*buBiAxoT@!%#d2!GjpH;4cl~^$(eCp$>LoA&!_S(~ z{DxZ%Tt1|mLsDVDo}=YJozy-6PdFrLEzkVDv_M3HGaNt97E!?*MC*?A^I!QnYAxCz zBZ?0A6(2^lBX=UT$9pb)@Di8ld-vKbA~2+f$0 z6OdNd$X`;bU6ai0p|UY8d1#HQUZ_^K-df@kl(vNH>Al*)C^H1PW-&{GVOJ9v&42O9 zFLbl<#nY$zzt9tS;dSOR37rfKY37?nQ3L)@q*_iXf0ux$CtC^DtiQ@Tn9%KB2Jiyq zJ47^fgHcn>2s;gzpuD%gAj?nhsiM;)tK);6oOiboBnd|(MUpUr2?m?$G4FR+w_}pc zjlAzl*Ot2TqkSV(k>0?}wMyMQTXP_d_$H&j@AHsvGW zX*U=&D^W~nU{RKe1n!ipUunk4155`A-lKXW&AB93nw zQF`#>;MbjuCi|1ow5QkWC~UW%u9POZ0Jog=1Qb!oV`anFxwW6<1o?JxhnD)W#Qfzr zjh&p9Xqw=K?rTup(AqUKZf0Aq$fza*TN3>7_d@FwUGRdTLPe-IaOT;1vy;&8gAZ|q zp6^c!=n*@Nr~(kNtP%7;Mow8aSK_g+Yrk&T>9%Pp1bZ)sv#v#15GF!!{a}rozQeDH z+P$FV>5g>Z3zF0^{Q1b#X8R}9aixjmx zy2^D)bbKj2-c$h*b8vVGEpnzR{g;b0-A1R8^Y(;;k)s`CdQqU6MfUY8L2C}5L<6ap zfRye|OJ+^m4xJFl!AF(OscA@xZ_)cslF+zTCPrU(nWpyYVl3C$T}@b}&7;Tl*}@+YQd9@|d&N^m2m0rJQ-7SEMUY?r}&N|MY)a7R4_qEfI8m=ueW%LNCx~-fBS&EFL8R0-v(~eh!et)s=AQ$yz~T(Mzjrb z_!PoHKel%^uB+F4?H+LDn-pZ*eEk-I#OCdT!&apMzSCQ&8=!PnIV})KDvkkP1@WUj zrR4^U;$^SVHmdLL!$zu`_8ud&k?ISM)%VryD`bu^e_4Z=X~c%8mq9ACb9-nA_He#WLCbu z%5;S81q@*$>$0f+6sNk^xmVT1G#u4`t%Er88p)&e|$4?=XA_#x;dVE+IGenqr}bx)%)T zqP11O4&6@je?G^fx~`lFpHnwdVj+;wtBydf+tL955W5WEaKX*Z;D*f-fcS#dz>d^y zf=eaAYCW!6bTJLT+-3IIjPQa5~NT0~W5R%T>mWbARJKK*xumU9wmfwu*EdzN7DLR%k+dg5dV{Oow- z?a&=!rtZ*?a*cLSlR7UWSbNM~jI6?cQxp&TxEaC^w;wuG-Vtu^jf{bRfvaOy*az3-wEnL;{mZvzisOS-t)l zYl-w}rvdp2BPSXILp{OMq6^0dyf?FQXdaqx{?%N}BOkT>vM@W#*dJvuBdeJQ88`WQz^rPeZgEP`0aOw1CeV0Nj@QXhY6Yi4Opqj z1qZ%ByTTCV1#6j%{gdrv)gIvnxbq-mxwilK2T-5;Ze4J;PYZDY3eMxmu<3=_o$gH0 zJvA(@X4v_k@l=s!k3_PIP(B{?4y;Iwb{I;L(-olP?F}9+b>6j0DksX)ic%vH@9G zT#Z{*>~?P5I%RzKvdI#L9g-Psb)|HS91KAFTgT89R;-{~WoPI&WMvNV(GHN&H$$zs zCd_0%Jp~$cYDfXCY4*V_S;)_azKxI>a0I4XLq8}NaRAr zCZZH*jEYMT4PRSV2jA3&mxJLo42qQ^E%awHV9#9$!=l$GcN{Yvi;(6_VGIIB+_Z)A zez3%D%L6}%miRFcGWb@fiKE(yr+*KkKkkvP-%#*=7s&A7N(omlMLq*$0*!K?JObEp z$K!#Wd$I`dWG;YH(s*CEyNfR^Hf-c{K<(WnFPh}#%C0$L!~#NqxeD-5+nbbUVAU5H z+mW#okQQX1St$pcbDL;6j(5+@>7I7&M6?y_JE-OFo6i^!m^t#seJI4?#Ku~HMin6$ zz)I*D@)z@I36^=oaEsH&hyu6S|8|SdZA40TDalAy{4!e zvU4Mu_N*?pqg6WWx(8+kiB>I|MDbuMZaDetjf4xrSx3EUmz5KuQo&3X3JBv7JNuWQ zJ~s!a?KylaXG$1SzN1FP0mZsu0J+P6^x()zNPukwK+3mC&TD%R)#E9UxfOy`t}bQp z!5%ngorarCw=;sP>I|*+sL4@=UJ#MYfxxS??E|pvTmnXkZU#x>8Je+a)d!i%je#f%Ae$8mq3wP!_}Kj4(`0^u{h(3LP&{EQyum^y&b8)=TRff}(WfHrXa0$GrKU z=nF&|{3%=+$kfnVnK|I$e=;%VH@W$@Nt$#eK9HDDT06g0JHS%8r`0$BZ~W_<=Ldu# z!=f`{`i81e)JS`A+`L4Er#jdI11NY=4O}Wq1t=6Wn&#*11u&sGkJJ9~`P1M2+Vlr- zzkp+QOwIlKt9*6+4|<-1i3qJ;Q;yzu7O@Z?dWBfCC)2)RaQdKpMTx4k+L*xJB;t6L zdjZbdAmf3V_z4>=Nf~Mukm2MtNREE_=~s2_Kd0OdGF@{}W>d5ApcDneBQnN9mO+!( z;aDhxGDa}SNgKnNRE#`113MLc>7>Va9|kjqGWgBb#7A+ClTD0h3|jd&(;p4~{tB{4wu?(iyl$k_7?S6dle& z9rHj0YM`eCPtcnSAwoE@!Yc? z(!G_VBx_h-u;%5M2m~UkTrvVrIl>-&_wJD?l%!D!pk)P6$v{K%U<>To;M#FQ$`$f8 zxxkp6V#Kl|+qe14{N4G~u(PMT?N{XSz*LF1z$p=68e7)3WfyngbThQT>@a(UuBQAG z{Z5gzQII&WT=?qX4Wx=`88N6VtQltxj-}*>=s8I#?>bGFz5hBTK>&|Zi`QYDzRd)E ztL~x3G3LeLiWRe%X?=JH(%Ia}(4)8~Y&|pVE&@zYzh73)&HoSg#%u&YAbW>f7{0aH4mk$)X>p&tUNqZPbAEFnxY&1o zaR$cM=HYB?*w+Jm+ghx+XgnQ%a}#tsk(Wh5N{6NmW%h`OazY90`5omI>JbC~G!>UX zyh}gdA_O8Bu8|y@TB5y4dL)R%B$JsM36r@PyFhGvq?4cZ$q60irl7WPh3QZfJf$YF{t4%O!a|6&5f38rTQ)QAURXoC zfhQqX?VkEtreWtwSuli$GdoS*ci?hwSS(^T4LFRJv=VauDO1iR&n7 z^+f*xKEj5jBHr5*;}svi1L3oV6W`XHIE5ZC@7VTlM3)}YoECG!tTP=4i{^%?fL$8z zJXD(F-83_onW2zBpAu-#wm{YD^n?#@e*q^__cIOH*@jb%NO!f2N;=KS&5$fJ@ePS#Oi8iOSd=oAeTm@vy@WS z?#-LOJvZ{=Pfvb(@g_TZo#k&{{r0>`c=Eb)X_XDJ2ceAtvN<};83pY%5Yf_!0+g)- z^S$2bUd%`D$~&ZF1AY1yncgLLnBj2Rn0B#GD`~}#kv*eJ(S8_sqpM_`Mz9SzzenD7kYFo-v73GuaMq z$^%KhmwVC|m2ALxm)UP`e!Bnf)?#F+88~Z>&-5(Xgc)EMWUH$*??`{~+czYg9T5KZ z=FLk_oyTF$Nj5IHqB(t%G zO=)9Got;Y3Y5K$wup`2_72*w-_yOWLEVqf5hI419I|&(%A#jv(A#AawY1vHxAE&rJ z+&VK5j@Sz@M@oBp)8Z-0uGK)wwg670B%p^Rh(Z1D_qz&S`}kRif;v}}q~ zw!aW$yx8s0o*^(JmXcb4LClBN)OejR6(<`+x?0Y5lc$U}f=>zUHJY+Vx z9Gyw?h10?v%zQG3(0;r>*z5Q8dUxDyDoZ!;Jj^Z>f&Uy*6o0wH>EQwPvq8O}+iQt}7&=GRx1ecZ} z-{|?*%3h;tx+PZ}^8gQNb!s`Go!73;Q{S$%eUF-m+%zI4s&o5qPBJQLY2%o+w2nbq z_l?n9qQ0<~?D_eWwLg%6O~f*RrZ%{g1;)$_`XkJvqI15o>v$|sy{s0`<#ny4?C zuRQPiSPA?APow#diImfYtp4pckVoA((nnLVsC{a!kZrlR$ znQ-1Nrm-aHszp~()20jcl8K5)iPLmS`(j!s?Xa2;Fa=Z0Bx@-e#bHapBewkoGDeX1 zi%5rNYX8^3+t8n1#>EB3d>Kx-Kc9}RXC*qkf)|f?(M`HhHc7ECkwJaNK0*+{HI_VR zqwHHWUv63TjiW+?MWp={6mvfKE z;pyYnAvvP5fA)WuMrcP`0{RU_msSKjx)ry2}me@fs;m{c*(s^Wauym$PT z^C{!K1fF>K^1E!824U`*Z9!7=>J{oc%tk)zNaP2{)hern#SZD!1|81T-wcszBjY^+ zNr&wuHkV)U3EPl$;(j<~vT@!-^9hMi#P^cfH6N9&S?AnoBF%2WF6@RUY?rp>-|e<= z*a@XdcLCNTo1I#d`(CdUHJA9v%empllF8B#B<0uD(oS9Q13xq>tqM%?pv$N7DK7he zKTLr(H^l_zoW*BXZJEKA^T7_)0HqY2vdR-HnxAn=76U)QU*@0K41OMo$Z~+`>_9e zyAO9B@9gZD{ojAQy}POZ`8odkmZ-hCdCnmfD{yyHs1Gncn?aP%e`Z(XIm%atx9pdq zog;-mBuO)TWB=@G>sxq4DTv9CHXW8ChvblxwVD0(m*27%V1u1zf5jXSgY4z}bkOf+ zFDQR2T=3s!6L?l$I8T`>a8qL2Kna29*=K{E;u*~-8V*6?~}6;n=O z-9&F1hzz$~+gsmm#ei_@wQ4O)*+~&0Gb?SI+xu)jXqgcp?g7d;{QBFQ?8z_xo&EjE zt5;8cdGp`@X?5Vmd$ucLwj7W{pn~NHg*G$5&(B{y`$mo1a|m%qM#&h;cf2K|;`+&{&#ZS}Cm1aIJE$%O~A z&dl`BwGHTeG)E&4r`IhX49+Km_Qh;CfBUe?eua~7U_&I}2Xhh(20+r> zthu#y=gu80oqKf6#B(9Cl=b=SP)e8wAliy)h_gDAW)}z9LNk+<0ZHODY~~9T{kCi^ z0C{!KJyNd5@|J^`wzk0e`p}J&i%&gd`6Xp1`*jodYi44@?j{24Iq@#K$)SX)qz2MFNTCP&+^)7#V}i+>h|K=wvoW} zMe>8_zAJ4F!2BRLy%5}HUIom;Ux8$&4?%UIogQJ5BQ91|4?Z-Cof&FmosOVi3xi$R z)5Z&EAj8a|zZ{AO#JPHH`)Ag^2J-VkT?J zJp{#A9xMa}utUM)ww0dDV0GUQy3rQ+ovf{b=Va5~*%m{1hf&fxlZJZTE-!hZGMIj8 zje5Kf@;kSAU~Fqc>M+*uFgt$h5+=7dQ<2R`C>hBwpC@!CMV@G>>Y*)<0S@5*;oY z4_0D_3(lIPyNOR1>4oKeAF2pQz+G^(=md=93;x1s#u37jyI*Zn9+fb>E0 z+twVq>eW_FlL^D0G0F9*M9J>p?nJcd8X(hzMi5$OpH$K@RcG>ut#mhNtu7h*5GY53 zU0;VZ)sQC(_9_x}V=`4qs#YggmK+7^45?B;j39RztJ-?nrCie+acxf!YxSXES;#3I zW{s1(Wh1+b{r!7X<2SwqpA?Rz$eY3bX-rBYQACv${0Riry8v(ibH#^?0!1_QiAU#1 z7$l(6louc%$M~>qBs2pBxiG*N*8|}tRf3_E)<+Af> zDT9}qc)d2-*Dp=~=bVpjQw3PB|J!@~aPRRqJ3D*3kN0=?c6J|rv%T|h|MB)l|F_Zq zZS;Q|{ohxh|8v={ogd{2D!mnSb5G{8@r(ZGoq5TD!&Xg)|2{?2HZ*NHeWOcY0=s;4 z-7$keF3j!%y$-j?XWUleknDz??8UWP$-jHln&s>%_E-)_c!5xeumqW0AOybK9f#dc@3r!Q9leuyczp9i|9uC_ z5%(tJK4dyHgo1o0gaYq2-CKDGqi}bWSXFoIY&u1|7$|X#2yt4k!0jBkY3ENU8;Jd` z`*!ERf%Iw-4sxmod0IKhX?hS3(of8Jd(I1$ML1S<@-%*Z+Vu5u4vvReK6zsB_i4}q zD||tjy^hzr(}qcx!X)c%r@^Zy&9r{Zj?AZszMkHI|1Y<7S+Hgw#@f4_<5LN-+ab&+ zPYx_3>UIv=y||W^(bi3#>S3z)4%#J$A?e`&A*-H3C+GpECB4<=-Y~lj>GGZubm21n zUBlJvHoSg9uLEr!YQAlWvsTu4!tQ+puZC^i1C%m@^u`coQYv}72iRo39>2jfHSqD? zlSq1{=TEDY@p?)>+I)ueiR{kZ@(!iH0$Ht>_})KI@4aJ~Ky-~-_B#eh@EB(I z4rcK#h6X)f6B~85M_Ac?Mrxl-ia$BEbvDd>}?=a7b&J^lq<6*8i#BaDwK(ML) z7{ryAimoHGp$_=bH6r#xxgEA|;b0Nf5v`^DeD%TeAu3PX6d3OjJLp<-DCMc``m~t@ zw_K%`k|(cISfPbpmUDsRroK_(YX=xJq9Pi?dy^Vzh*4*9lRuDzC9*5ty-lVHZWvx( zH5V^@v&9`1>fnwbcW~%9J^O+KR1y znK!~kr@Y`X;_mP=S0i{mIbn*OKwy~VAtbGe8iku$oN=|3Dwr=}Xn7`JN0SW(#>7kNNn)Q5OEqtnAr24N9s9IpDk(WWtjbmF1;1VoHU`Mf#%VDl9 znn5#Avq~)DVP@M093?AZJ+&*oa9#N?|FtaVQ05*}3Uqd$KVpI~dOu)9a9O1)_W2ol zc+XhM!sZK?L`)`vPU}b4FwP=kIkA&N60Dz^+z4){x4~X#nTAJB3`S?np zNB-!E*sq>Xr{n1X#dqtu^hY>o`^I413M|LdHlDGO^Cb5dIA`-DeE<&34e1v04Ncn@=Z&g&2Zs3ik`(4xR`{LU1K#N7d4dd`~ z@3KxT3RJRwgBV=x6d+Ky0~1ubnOV>}UfO)(Sh2#bcKdC(Qb@`C1go-ni`4lR)cT+` zwq3^U5Nul-DlIPhSI^z(eRCiWH?VpWeRgEcom_i2)z@fodQUy}?17{@!HVzU=cF^j zHmmlkRMRqa=6aD(OQ?y*?k4K(G1;Eq0!I^kgrI%Mu#Fj=GT~ziC#J|sPK&iE4F=WZF5&ZGA4zp`6_s@N=Eq;`XjaED_yD#2=VQ_L{mXEnJ$ z^a_l)=CBgjn9w08%v;7S{5rzx8uch?4xuL+2Ymn_|GMvOKpL$i6Os6E+Etv?2tWKTbi|p2+|9Jyy$%~7DGr=<=u$%oY0-%g zI+Nh7sTP#@0||Wmle>=SdBc;H-bvZU$UUzT|L3EX(Em4Rwrm@33ClkbL{JT}x}yC& zK>2&UvnAIqVeoQnza8lGkYZ_dh`Xn(!Xa+vsdD~83 z;+(sltTD@l>Sc_s-wt^0^J@7!)4K;K7P;LcXKT~S}3TSa`6{6zSI zaMF~Sr`@R0O;F_6L7d1fB-P9@jCO1su{>Pq|7a;)C zRuM-i6vXdgkFt_jpf$m87NrMx?Z#VS+X$h=x?7Sn99M%MXd_v&BT}YXdIgz-lEC!D zL;#Hy6mN;$!K`z|D31VS8JtpBQj{-_4}34*31;oouOpM=#IitTtcjXvGs{xyZ%>@2 zbnMk$r?>q{Xk21d4D8_XO+(pDWLfz)lsa;(rW0)&RcmWSoKVuiwfLmxpz;CD!LhtwoH|i z(3l3Ap`P8`BkXAEuON9c+0|Eo#ebWOc$k$u7_J3bnH=FwOyxM5%tf@aL#;(!4 zIl|ikf1i^=mZ^jBxzc8OdM2GqXuLOM-+1vG4ae zE(gm#8*#^USY(|klI%DzB92iwIhoALlM@oT$mOz^aEY|dyz$z%W5C6w^B2q+av#X+ z`lpCZneaM{>9EvFA_uNE#2e0_zSKqDI5}yM=L)_tSf!q8+~*+@H`2)oSba`TDyVG2 zdqyw6U8!bX+qcpi)+d-ZL+DizS^Pox+p05T^>3px!fU>diw|~H_h6S>wzOsZA$V%2 zw|po1%n@p^%(3@R&fm$e7}C!nysdf*6Sm7eWT+IW-MD82u5rMGC119f-Wl$=1d zPhw5JH7Ac-QR?ft#oN0|S2=keqHhugc5|6zBN|6!B=VUz!1lmFo> z%KvJKXPg1{AFqGRic2$S>57POaf&VI22T7`7vf>lm9K=cyi5{_^smeF#X{Ync6muI z>wb1vU?gAvLsG@o_OO1F)W`mGnJVN-uHH5)o$U=p0ib+m)1E!}Ug}*@6%j6Riv3hJ zHCwqO04EghDz&DeGXpaPfKXCALd~g;3f!a21JLY^7JndB?*YOd5}!J0tx8;@jIFI~ zItDZ~<1NXEuxwuI&MorVbKq~+Ox4pbm@g^q!|~fjGVR~&3KPs-9Ut7^t;;a!w~l2~ z$VXyJ1cqXL=MRu?^&%3@b!)5CGv8`NS~k-lFq0K!ciNv=KkPs|tUnwz^;-7+LZ56U z{D+Y`N*d*}`KU{zX*?QSQG#G~UbqyIY%0(~`>OBq0~^`^+XjS}knn7jU$!#AHZ(ou zRG|0{6LBtl)V>@JfXE;*$3)b3ntZHai>^>wZP*DkT4u1r5o^2%IbtgrFI9nyX0sKe z1UK~?(n%pey@C>S*>{)a0jykzLFXK0Qe0>=lgb39gQZw))6F!4ZQ!9BEo|T1GqyiLorhoXmu}LzY)hq0Zo^glf<~xa<`%!bc}8#H;SBsX_=Ws#W$?ef zVleA$ZP}!|*ah-(4Em?iW7vDRMfDQ77BWS6Vf$~hmsjQ-jI!PKK9+$tTXxzX^qEP- z;Y@!$)Yew7MBavCyYoh`Y_y2AXe8^^Z$H@nj|Yb1>6QKSZw)^PyW$N14-B8+kI@@< z%l6m^Jmr0J#7E33l`!D`gYBIM^a_4$@7y;p;Qx77@0&l2FmivVy$ymBesUgsaURb3 zW4Q8$E+NWBI({0~8{ZWl#>wtQrxTks)-PRukyzO*< z(`b5yw+VUlsX?fzbgwUi5+sw>QXE0w7vO?`Q%Fzn8(g^%lm`-tm(`kb+#rw>k*^M5 ziI)xziI?nJsUF+48Dy$+2m?c-X@YJfs0HAHvvf&BHUMq41IY*73{$SuOx`L?P0;gD zNMPO&>?J9Oh(ptBjW+Ry58Q@Jtq_2{*&d8PVE!A=@nvS+NEpw3i#&WrDno#Hmd9BP zpp8A0ctWBRY3`gSr)FM88d?M=t?gsp4>%0fKve;gAFwdWL83qh68$!`Xf7FLKI<+S z#k5#upz^9j^PfMM>1?*o+)s%h2(u&Rb#t`?R(+@h$iEo|1q`ADZ2aFE{T1hcIJ)+_ zErde$r*8`fbi)+Dw#ZoPrto)Ev7_y)`|7BLFRl~Fn zt~y6$C2;Ei9Hr{Ry{@CzG6{pv@@L@T!5@JviTr1f2MRVNtO`TJ!`FN(`v|GX%*<9UTzRyqMtl4!!1Bp!7upb7VgU4(kP%YvLJar_^YB>atr zaiA2Mx-s%*?WXr;F?mUBeXnZc{WC**gkN0-KLBVzm%rDk7r^hUV}-nnE6oqhQ|&97 z0^jt;U{%%0(M-?0={Z-}PrT%_l>WrT|3rN7^d}~f^DyInW!TtA&*T?qo1O-?^{0X( zH!FF(Q9KvHqt#~fj9SZl<~7qXOc8KP`XkNeN>fWRp5}BJK6f}-#t%`R2-|!KAM}xo z1m`=yob;!X6OsnuM_yWUX|)bFf?*McnLhlF?Rw@z8uBFi61UMEk9uVyc?37^k7hSy zBI=12rR1d*OAv$f_={8FUO#p_B+qu2c);aKOE;b;mqDH$#)nNWrJ6n_tEuluU;&y+nXQrMRzCodfw_hEjbck8M&qenq^wOel@-B)F7?R|(=nBlwI25iw>JH{T$AMrIo?aac43D$kbjW*w=JBC8mCY$J zsS({o3zZ})P*KHDk?U){SkcFFH3&Y-+%~{aL z4Q?zzbbosN$3k3Cv$H|x-0VjWO8}KV&6Z+YM`qmq0nBTm{5d()j(H}tz1FW4$QWiZ znHX;6cBziJtIqnD1!5V?%9c0R=#-q6B)lqmVZy6<3H~c^OUMU+gpMavxWQoW<#1r+ z@H=<1^2%J>m$$npL)p#vu%w@0H;6sx%*#SlQPa+c1ud@_y)OpHxckASa1EQY=I3?e z5ABhI@bA!c1 zF6oCYMp+9w@ME!B&}#E}GDg{ET9<02?v0n|{n-1yOG=VAkeO_>0?8w9Hd~clh~+bV zVAESj4r*H4YrCPiYs%o)a)M3W_xScR{d2SFElgSj+JMn{lk?A3_vH_--%;45hVHhs zm*OMft4;X-n&#~OCfD=Q;py@g9~mAiK5K$aAvwG5TN3j&SP%0QLIc{k_MJcfkLD zZ)f|__Rc=ke}`D$jsAC||J~?+H~QbNK>z!Uc&-w;KXf<3bz$)Fs!gnzRdWE`r~HIg{UTU(}2S!fQ^>6c$4zi{-cRUq^4kEucryZjo&2pgYF z;mI%(vG#xo_7OOsn+bjQ|A5%ShwJdpPJ8=~?RI$Qw>LlC|Mxrp&-Ysp@y9|w%8Cb< zMqI4$RX31*jZN=x+u6u9P6ax`9}ncC5AJZ$(_ciyUZ?N($~rDlibMy|WAP4{dZ`h< z9T|K@T;zW6P&Q0I&$0&eY#@0hI)ZXD;EDO}+)zQ#!t{+O&NaiJIoJ6`>1fO9I$5f> z(b4Re0d%Vq3<5+7nt;}i1{~X@D6XyKNFw2v)o|ZENG=5*2g}C21tM2KOsRsz6!}_0 zCg5@p@0f?cYZaZ5gEX|97&sS_AMx=AJ^S^SSI>XK zvEX(y{3K8(p7WMYH4C$Fnj%AEAw2kuD19&qaFOUtWhNEalSH57IqUcCpahF3bM&KN zL#ioEL^U=y{%^02ybhzQCte?>3g3QQz%h(=2P?k4?{}0E&R<=bVdMi9WPY>0mCQgK)~&wT{wYhcuzFA2YkDM#nimsBOpdszgu*L&d5l;}XTl z`gLWiEbQlEcv?(XU7r1L{lxjJ=jvmK%4+bk_+t(+OPWN(A@R<(d2lBi_D8>VyYs0z z(}ph@b}r@De1v+_qE~nN1<};!@WHvG1Ll`RVCuOl*wO=wWPFg-IS5y`&K1E^!-Zmv53&>4O{q0)j@?;avj^-H3jfvb79NfjxlAV+Zs`FjZXz^D(n=nXzn>AWplqj-v4;EfD{ zeLD^@v+uK=kZ}6=MeETB#!nu6pE^4H@=HBC@o9)A9N?O)e_do-A9J3Xo9EGf#Ijqi zIXgAP(g@#1811ly>=e6L`Ny)_F13qc#$NsOY{YkB!;+!jP(Jfjz8xGB!ja)kIu#*$i6)z{_5ek0>4rI7t z(;^OnI9ZDRgclEDGD&k~_L>qxcH=eqINqDnS2dQ~XEl`6wo&MgGh_VJIB#=GIS2*a zZ-!A8^X&)pX$WT%;a>$n%%uz-*d9RSSsg&6%?$zKcmI zXVdLMgF!v50fuUIGmu0Bd})A*V6qe(9|MUm5D2(AKl;Lndsqhy+vtV>3HpCYKndZo z3=|&$g)b8TF}+w$D?W-&{P{GZLb4LYw1R~^ssVL&rU=0gY=^50?tCgxzlnl3Rz!*y{iFE)b?gzsu<=A0vP6d@KhW4 zpiZ}e4Q{C1P<_83APhRA^Lgjoqa^lO4Jd4zn?WP!{sjRfB&*A)>PHaOFM*~e0Pyph zU;jVPeFZ2#ssjTzxgjLH-d_?ho<;cZY$--O`xu;f_C;gG>jYZ7UI8y&e;i`G{_+5F z^rHraxDus-VBX$r`L^R1weVNZfAZH34{DbW4Q>hn*Y^to!t-C=9KHE(4F!Hu0|st! zGdOsizcg%k9ihYPrTFmrV-Vu?7m5)_&tFG40ne6U1+@7Hyl~yWB$Y+c?HdWe(^>GN zI;90SxuMp=>-_}*16(xE3(r_2k7|G+O>PDZzxNjrh?4ESeM0ndFAi&K>P~M~Hy$Fb?_q+yJUb~xtDKW$s2%saM$m+){famDOL^mGc3k1&VkO=!P zRshiJk08paF}^?`Jq?Jo_k0BqJ-s>6P7Lt{0ccV!BTQBo5GJ=G9ZbG-(V#Q3Azm~N z`o@1xvE7`@@kb8Dc?~H#f<&BDetO<37cOHXrt)xQ=sFo>m%)ky01c@3EVYUtRvWw7 zj72|mvFOZnJR5h%1Ilgw+p8D$36(ekAAigjq6^X3KDKfUj)e_rpkZe+fpCHG8ICDQ zZ!q%NPn^WHy{K!i-<`!NKkbYTvjza5;a(8{4zp{!+l}S1-i_?QkJMQB=|!Pfn^dfs z4k~iP|2lz!zHTcd6&6K06g}t~70WQspa6~SWMC6jv6&8n0ya_@;z@SahoXaHP#a7o zOM;9QSBkKy0aDW!n6}*Ba4Pw7GU(58Sh!AT>h^$}StRhQ4sg{bXmQpb^>P`#uI2`J zN*A@kQD`&lSm_=4sn2n$ZV&9*B(b7HWwk5P>VOZK%V-H4&b z+{XOq+Pqw}^uWz%?=Zhp`k)yUf=p>Z4rq~$g9i^9t!&3TUjsvOuxS%c*lzNG;QQt0 zhzo=R6qEU%F3aA7+s`qC`JNs>tjPa_|3Uu${e7tWyuba;_Rik^$RrK6CvC z*#GhpYOT-uqg%@Zwxs^Uqup)D|F!%0;r655-N#V>;nB|arvAew|JNq}*Czkh*Hi!7 z63(~?xa9Ie)Uk8- zpdvU1utTA+>hxiji(?V?AH-(nGGtA4Rl};7sWeH{$6gP<$EtT;52yf#zQsKLlhM^$ zgBwDS8n!AKF6~bXg?7b-$`{*p&4WUohIC+_pF@?T*nZZ)@}zswABb=hd=Folp154% z@RMH>o)6n&eo_B39qt~N?!|1|qImenQ;J7g2eKT(lrd_f@+VQS0}})dM8wSPG_JG8 zPU8S((Q3@h|H|LnjROQ%t8oVZ@ULvqQaz#N0rhI_$RF75fP1yJmN(mM##Uj<~AbB z{*`VcE|<3v*6{^wqngsqxA8|#rF4T6S+kvA^l8*vDeL$`PUXjJsYh%Re9%uFsGV_j zK$|n`oR`_*@A$W~PJRmlnX^^0O&AQ4An3JJJA!+u?3(xho05p_S~tQ_&UCAzAJfkv zo+9-iBnSLcPi&e{qxP%SUYzl%*Vx2G2@4wB^sZ<|P_`L*ZuWQUMU-3%PQB}OIepCIuZ$%BJc99-nbJm@-LN}8i@XDb2r1mZ! zb|&W5$h!kb%-%USazmA?!_S>bmP?(@CN$0tzt4`Yanyx)-$Yh!(+>R-KxYhn{92^s z)qrh0OE~pCBM%hGXg{8kzB}v=&CW*u8@$tVH_L0o<#=rV=WTXqT5nZ@q&qEuw?U9p zXlC`;&#*Z#Qe4#!=wc62se?fQ3L&J{O$(&q4_r;kuu>a)Dsi(H*IXKda-2ra2Jj7X zC`mz?-X}zUe&1~V`{L~X=49Mv5wIoozaBkA`~Uvl?!%q^-5v1%c(}K>ssFXH|8MO7 z8~guPW&iI$4eikQe{@aHE1Up6qt#!$&iOUxboU#{OIss6_=3HN&;P0 zz&c^+g;D05_07ie8~z7S0ed1&aOV!}_oxv5@rOS6mILobyb^saGYNo<7biFq8SKfJBt-Bn*xYpRYXtmqzx4yD8DPEZ42{pG! zzUUbdqXjgeNpgUhx-WqETI8G?ihF<8H)OLsrL?kx(a{zg6# z*yh6pxb_>dZE(f4op>UVn9>s<`y+$`hG_wCF{WA&>Clnqa#~0=936kgI=U-ZH8%ph)` zeA7a=HmGw%-B7X6fCr7B(I4C@w_OCd?b)b2-gz6eA7Zh2H>NG}6AnBy%!}7hsuP6` z5mLG(JO~>>B}3iD{0^J=H?9R`@O%Z&Kl@hhNBv=b7R}FHa;Ew5TmLPTCCA{mMQq-6 z<^LG9S0i43Eevlq8jw)tO1W{wP<#2=A46NJnMFFcqBQGT{m83mHza=`T|jJ22@>9H z3dIP!V3WLxV{nf1kPArh1#g=z;SIvY(_DQ(1KDBUO8GKUAOq8g2w}T+zl4eAWHBW- z&KknR@L}qd2cK$2j-J#$8pbJ18C`C^>qpnU{uF=(g6U{Hy8k7h0pY+w76ItX!vfH# zehHWW4#sxt(oV)94&)GQX{Kv%z}xtRA_Y<-FRkx>5|lArL+|~BHu-?@<&U{pw;{N> z9Z&%y)`+jT>y@lU#qPEh9c@+|c)IEiX>C<51l5S^N9`TIZPssTjnDY%+eyf{Y%8hN zEp21C{?E6CmLyhfAo$2PGa2Fb_tWm5Ew#w|XJnE8P9VOg1 z8qOEO=~=jc(z4P3MNEznTd1OX>YK7_5P%D#Em}v{zr8wIq&H|(+DK)~25M`RVG6h3 zg2E^^Mq$^SKGMnp?vbI*gIP%P@=tt-$3YO55f-k@YQ*v&kiyo!3`YvL>%&EX8f)A( zVBcX?wzoNpIcS~+g8~hy&BUDtK3f12+o^>HH{vDZa}ye%^@NCB7S34%9Nr|sO6EOgYI)k-9jtCCgJnr1C z2Cy{I@LdnQeVaDH{OJL#KdJyPcG2K<0D)KL-F5^BpreK<>)i+t(zyl@(&WZ~uxkMB z2jOA&t{Fz&s8yBY!F$V_jM>%k5IwNc@ zE+$jr>`j@vnk^Dj>kU_?jkREV8;z;eGIVp@KEgX#YW-p4s+PDd99F6bF}YR;66Y0Dxb1t)UJ_4Yg=cG|RlFB`0rUb+ ziEc*;G1CXnay)4m-2%ML4=0<5)ap(N3IIF>l^dSLfS) zC<}bc^U0ePmQGR?LQD-$ED)?@ePTs9Il(6yVrFBE~b>_%|oJQsAZW{JDTe3R$Hk+pqmCdX-L13uGYgLhaEK6==cGeWjh%S z5^gl19(Do5qrTvsBm-9P{pMu8FQzk;_9Z4|5e%L8|Llq2~dq>@VvBvDFR|k6`BK8V7h`vX=TZUmG&I{KO z6o0+q5)VOo+=S{8BCXS2B+c42`$}8KoX%%sOYZ6x57;78H0*@wwor7^>CzE3)WrXb z+HhjNp}BWTHo5@fadSzK2d8sUivi|CPG_Hhk7xH!z~PvztE~(zsBe8>2py~e!!w?D zxZoB$6HFC3#)abTZM(BuUCUoEL5Xs4mcVn0PSoZuwAw+p;@5p(vWMV3`l0NB%cS|X zI13t97S*tWs{^=`M_xil^M{Iw0dj{dArKw;u>D?(vQZKn8LC)OUsx)evbx(G6w;K$ ze938A>-3sTn(gEE$Y64g-Ggh$8#1B1g+tnL_7V^CBURxU`50Q}yOnjK>tc%hdBtTR znwU5y6gE9K|KD7((;qY&!A`uvEZADKY=3Tp@wox#>HIuz+%?E1hwW~8h?z0XHr*{7 zE%Bi+OM`Tm%wqW?l|BekO&o^^K{AsH0LmYLs>K}}>B?s&Q*i5_ zW!aKoj$uPB^!+j1D(fN}yX;vXNxmc(E=PMdB|Be0jF z+2QsY=Z9kVT|7WX^bnEXxxz{M4q*)a9ip1FFl9*m3(dPbT$2*}3|7}AFt#{Qy;^vQL@Ix?xXo7?p1~F>eefQvQ`8_oB zwJU8u9cGo?+ux!G-!~%S(`dB+XWSp<)HV{R9YQXVr)L~?%*rv?xzc)~0TnWTs^Jo{ zAyg?KttW(;je#p4bly{;1M!IZI7NZCwv!XnlijdmFOB)A-!*&&y=`OZh9YmwXJ_~S zy-~q6pPX=~l?FxRYc|8gpa7}3e;K&qI_w}M62kJ&Kv&9@NJ?3O)x#?TK_K0X)@6k7 z*dn>3Y8wo>ig#gD5hwyKndYSp@X$^|QQ}v_3{>LB5irRKv--)20WyRU*r);2H|Zox z(bT$?-lBa_+Ts9}iqWo(z&o9YZv;`<7{?M;JJ2cweqrvv8_<8bCTq zu@xyMb9DW_Uwl|dgs1gHr-(8RA|9WKS-fHM z*6F?@rp5fBnfuvvJTO8m1ht&|C1bFMWtY9Avz(D>>bdZl7U0zwg6j-gwc{*lRWTx$ z!GY8rb%e-eO)d$wjLT|ELTYp(SLoGs8NZ--8+fNL=tMhIk!m!JmOUyiXDKcroRHi% zN7v9}VMB2+QVBrYC^b{>gFs6~(4BglP4TjTtzvaaO--yLwA$}1-$P((R`D&O?7~*Z zZiKf{do{X8aH?Ikw^qTbRJ_sU^2{WctN9Y~g$KthjwzYU%Zt3cOkC0Qrhc-Le}y(4 zPdjuAs`6CGJBcNt;B5x@_@&AX1theMbOBbGTIP6C$6dV~PZ-;0?)M_S4^BTaz$ z3Y!QX<1DoMC)Ub&ZN@#Cv0ntMnQ5~O#Vv-D*;Ttrc(dq@?VHt=nFu1V(prW!o==K( zo7Dr%k%y%KGY!62XdU0*d3z&RZPn4!B;PJ%u)V~&9vglFzxp(2pWrvm5lRD;4m=ai znTJ^v!HOx{x01w`_8j4pFa}_wO0JcNmiN8X9;OFZi6rSet&Dl3#NA-y3JlT28yFb7 zGt1T^mb|SD7m)GecmbdEYRPZOLRMvD(YEgr{j(#QMt~Jkk}_Ea|G9g&P)^~KN7Q<9 zCk484xNMLKOT(dE7Y>|^f`xx7V?VLNLQ*_iyoP~lgoYdqY@=Q@Qu zd^YM(2h;0N>#4({*~Pdlg32dhh7|f}XMp)VtWDMPaSAJf*vzZH7;FRwrBFITrzNsb z*hFw=gW?kRrwh4eru|M^YHOm;P%$+eEWvo#xx%pZ(Us*!Q1AhN#vz>!@-xau&5V)< zXo-f0!-RX>AEg>25y_`1L637)BHXqekFL$P7j5~58hg+m_8|lu{-L{IK0F1h-x>EV z&8oH!=Ob(=);}&=NPR_TEU-$PU7kpbx*TrTpWhp-cf~cUkKAnGm5WdEi#!)|fcY=~ zH4b53;=i@7b%1#-6i}-jlOQ=2$>%eWrU&EkJD_?NP(_)DW$2+h62=x81{vFBo)(XS z^srr}mzn^yoGmlWQJXrul!lw^o%woji=w@Y`EYz4-+=_&`=Kl)pJ3P zgF>aY+Eps;@>Zot;6GjdKRM~QmjSRo|KIk*M~@$Wv$M0e4J80~_Z~t1zejsJoBV&9 z{C}JLf1CV&Ur+u&k~5EsTdJ9>IJ&<-% zX79`)g5jqC|1I!+ognC`r|)Gt^G0 z=%B|!(X?c@ze6W-v0qvs=8#v1UB9)6=(K&3UO_pSN}4B%hfv@XPf*FN;3c|)*5a~Z zN8kx-CtfR9jhSGf1%;d9*rh+N9pl)D(JpgjTk=Y^-s*26WQe=x(B9Z{H4MdY?y5=~ zQ~*!LA};{VDu#nxf%vu9cNR2>qy&?k0P|_Txu9?3=-}81c2s(8$8}1y%19KeGNX)D z_M7+N6CMVjORP0gOj>ADL$c~4R*IBa~p^S0hS5@8~(qqnC3Q z@(D0S^K^ZUEKUS5XiMwhMmBrI7R3Of%WyK2XqbD zCCR;8RRLu|Owq!dtgP>M2VI9!^Z`L6B+RZI=)igXSav>m9Sw85{Wh)&RM&pTZ|{=H z{-j+05~>FbvM&vrL5itXb}uy9vFVMQWrwcIR?;Gh|EkZiim|kxy!6W?`Quk;u5;&f zz#m%f0mR+#out#{KRsCV;P({~qq|KYYmf-*?Ubq5KE`Y~;U<{I`++ zHuB$BmH)lpUAg)@=7op$pD6=;T-!Z-`^UTh2k%;`N-?r6l_cJ^#Rynz%01r5gXh!f zSWVq!L3zt(!X-i`9HG>!M6a7F;IkX?!~n; z6fKJ4B5EHZxc>|O&i%MLeBV}44A9%z?1T6|TBSLe2ie{7_Ynn=9{3@C6!?zg zdcg=HUC|ed%c3huI5~vUgMsak+z2hqnXeM$9|hCSlEV18Wzi;PJjdxi8a>SvAmz-Hp8L9U8Wp5JA%_GGt55;yxv; zeS^RQAC2|qQG6K$E2!szRa+Ty2XRgdnBSnRDH0F)EZZ6s`~tz_ zJSt$LE!%6Q(2J;GpW}ipiT+47|dqC^tw=scr3-v}S6e)#svEqi!pEtpUp!vD@^8n@m&= z5aP*493R}hFZkeSlxHj##7?;4)}>rA?*g(p?DsCU5?d?2m>gS{EDkysUJG}Cm@Vn) z6U+0}*dPhWuXgoZfe)(Sh0+rPh=@DNc{51T+Vi6$WIy0V3ws8Kw=PSA=VBN)tSk9I z2^w@L#|`KVWo2pkBFPhv)PBSf@@e*$e3taR6J9kQ0smB|D0zTjBbFYb&U&Y)^Cumn z&cEI{qKoY#&JVF1ih=X%maT@`ijzm=Mn(14*g8rX!0I)O270yRn8|U`>%eBQjgDek+M4o zezi&i7hbs7IR57P_ihc*2~Wwb-P4@N>5!cPayIpcv@Jksso5DeYsHtmB>YK=O3NvU zzU@`C$uk?wd_(G>vNWNOzWwrjo3md%B5_YWFk;|MSOoU&f^%CfR65?l>NSMVk!k{N z`D^kyE(?H@5VS#~s$PMIevP;BOJLYx6o2{e%^0aCnErZ^1;Rpn>4<50U1Pg_&9+-qA9l!%0{y|!4XfK%8AqPDhpr?HtOwgeJqy}!NW}$f zv>i{!y(=_cjK-Pxse|!0VL0`y;4Y6vZP8{Cc%*cfHHZEl!#A{;rkcPO8tDV_V5I1f zE|g5!n@3mhGfxIVel#24G+oGXI?JVHJ2$t(+H?BMQZ}P+ouFN;C1e+Wj;6Z!7f@7Z zVa;=0JPXfxOii;cr*Im9R|^ovHynh--Y=S5OB(S|RyL0lX&!LO!F)I&;(~NW1t2`PWZ~v)vn4IJ!5G}GhVSEOb#%s- zcxKdkXH;MWCM+D2a57}pc}sbnXpJ;OBKc1*K?uXxkQyV z?Tggs5B#7^HQaat1$=TUCEV1s+t3-|m7+#>Sr zbZM9{gUFzS2*Z}`T9+99DHT+6PzU!=*+Lm0%YS=y)NCu)n>Soo(dKog6>{7`Z#-(u zIH2~*4)?-?r_LmUXy5@fN+MGRRl+%KOx50n3xFv?*oqe?YVjk>a*ppk9F@%|?~MIO zO~!irr3&9^etVcH&ctj~+ivgis04p#`TZHMZYpd}wKJK}-Sx2)wsPl#W{w8_dqF zViVlHwft>uro$-ceNZ5(F8|_c7#6I;-V#hHB&z%V8E`NSJ?-W?K?Iaref(iG7OWR1VN3UZ(9fXv^)#?b#f0#u#4jw#cNWin{9Pc8H$bny)>urNL zW1hF*WtbJSL(cquOj*43xONO3f%kaM@_01L5!plOGLPT2OCYwUTO&D@Xa`(M2dpNB zONeGxV2*)QY5rYhd0vRM?|qCXU7tqqxZbas)BNNN$iDzXK`61|D5^OM zgb;8P^^C+a=3%v~m$qZYt9Ns2ebQTtYZ!GVlfjkYK60Nxe5QMi&nNF!;zl!H_|$h; zNM;mF2;l;13)nX7yfd?&PYWS2_G$)`VF`9@)8DTu^5&P&#n`mU_h zGWSk1sS}>fl5lCtO6Uaw*>&8x10{d_n$8s=#**fZYOJ%?$n{;hhM^`|4!pLyYy@J( zTM$!Nuj++;`!~#h@W;GACC`aJGjOOjW@x>Tp+6~N=wt1$H@AvfU((T4z7FL;Uy(G; zfMbK_RI+mTRS)>OcF5TsK-KN$R(xlhttX#}tC2YfC1m@|a`WjX(E&vuD2DD3m!bA2 zBs&5O4%CTC*2C28ar=bRcUDH_b7V=x%FD1_5=%+=2_@?xNGiHc*HtZ*ttWGdL@l0C z6Rb!^_Hj<@CpkB5d4ZWP`_TZ`=AVPJQETC247|(^$#3V{PL*Z-Ms~nvpq6??yav9b zKb7Is^QbW`*gIHtCyT0ig+^TUBCzh77JhiB{)+PAG403$RSktPXW0RU45`QBeQw^c z3rXtp-j`JaYg&dc^544uV1PXb1ND$C%K!-ctF={?1Hi$GpR~3r5(3x-#|`!6YnrJT zA`Jx)pmR1_0v0;S1QwEJ_-3oGZDvz?x-$>LJ8+a_t7oq=pGE!JtUavQlu%%Hw#v7Xczsmn~g#FH0AI0%ecv0die<8~DX` z44-i}TAJ(W%-rNj;$NxzMkcDpIy;9eIofEk{2%6xdxl}IGSot6@`vJ$_p^IfZ#Hj{ z?0MB*r&2FRr-TdGKS3O$UsXl!<08DeCb(B#?|j;sT%lTF1Zc>on`*FBv8;U-tEzcl95z)M zS1;Zcv4-FASGqhULPI^H7N=cuvR$IuH8t_w1iMk$dR^+XhUSe2155O*?~F=(%iaXu zZc0^Gr=Iqhw%|D>welVz-w}2{pN5aD5ABLMWpd_^gcoWie42Pcc88j))jf{BWx0}6 zWjG6o<8J#8K+?C~7OnRsCIN}>$UfZ0SCFkse1o>?Hoo9m>qY38SYOaJ|8p<9>eP~a{ z2Ee^I1+*)oj-Zdi$mKt(M=zNZ=ny2t)5s^tz8Fu^h3m{dFn`vJW+ zU@#XA89LHaraiU6XE-jvwz;}O4liCn9U7}5+TA~+lV&9iRjrfG1?rVOihvF)B$r1V z?{KmLgG^GR(cNRwQG{mDEk1^b>@9eyBG{@tBJdN(_t`bb&KtLo3va>ENl*W!X+=(z zF#qw0*|fwp98hpnhGQqw1-_Lc*)}0i`!gtzmBazzGqri+M{jns=rPzc|AeXZXUr zhAw`COKfln4fx3maQY-BgF*5F@uAzwj0kJ!@@XqG2e1Q`=%}dV)F5+qd}*MB#0^W$ zy+Fc~H{X7w{$~sh4Y#QNS)%{h+27p<{m=gX-v0jMZL0sh_h@^g|Jmq&Hu|59{^#q_ z{~+P4F8>A~KkHutLv%VFzcXLR%f68>w#aspLzMG6`k%F`vMEmj>BH7U)o3!9pIZx= z4MTW|Ph0jkIyha28P}p;f<}cDggj(@AR#JV&4CB(GzLV1Y)W`av}jKhi}J z{8p4-Oj>ywqUsQ_utF~P_od~8wx*|7k;|61KhhObBpk_Trl0 zx2RSn2vnH8=9zA-hD>lCdzR}LX!`ERZ5biyY6=hSuD=EpE%NNx>9o`mW{z^Z#*gh@(0SUqV#x1(zn zCexXiIW8)cexH7Yf5Etytz=C|@+YfY3f3V5CdXS3%xD1;4@ce^wxJ}J!@0+pTf2Y+ zjaHDuq#k{pUIoSJDR3LAUyo|LSpsj`^k=w~70Ba_$YKz-6va1r?tfP8HjCW85UiY_ z5@Vf4ZVT#s0A0TwB>-bBJQxaQhZ`6d*v@TVO6fS0eyMCc0f8U+d3G2#C&=*W>Nn`% zMw0eFUjLZRjl*s7No(E=66-v%8@YB?9UH}Jkm%^z59?i|BcA=CoYNuu;bGDlvr_SO zruA~D?`*7ch#Cwtm&1Gj<`5O@>N_gFxVGdp@Qg=*RHT-xqJpa?-qE>ls(`yj{+kt` zyiP_Nml#Ins|jPOqxeIV$hIW5n13)QBK27j z4(RV|6NE~dl?EKlLmY`*eZBS^EaaTP?A&Uz4y3)u-GD&~gUSeYFEZUot}`z73zIg3 z1%XY}B=_GWIGZ}0?4c)lcypxiG2H#z#gMOiv+e?O0GokUtR-8OrSkeAPA}cAXBS2H z9TBwxBd|Hr)$X0p1RBtRVN|`PzzpJH1U8K+1@O0vPqx>QGk&FewR5unH=A>&aj=?K zF5Ou$K$yiW8CgzTSu&cOc(a|5S=&zVWF$MX2;K^m8G%SnjVupy*1v=p_0p+dJn38< zh?PuXGwqG(3i6y)r1|lSYns|(McIveR$yRsJ0>0Uozx|x)jMX?ev*WJiio@|JM=*> z%bPiVEBl`LACBBjyag_UA5&$YtCqp=Kc>Z*->6+)auRrH&KWRPG4@fynPhgx*KV~} z=x3@U`Ii+%Ftc1iX=hroYbwh`wk*YI0pKJ^N5&@XhJZ*W3rwU<42u(icG*C_-%Gva z5)5j1d~7frlZM2s`n13pf;iJ5D{g4lT=txU+9YO}2W>b9=iUNW2`RT`2K%ROgk*Ai zmlSA8>VxOhlnyQJ@4O_#MV%ro$XTHF&7j4&+sC8>ObrT7Rg|e_K6lPJ&-ucjS)gd% znRYL%?{N8XsSwb;&Wh)_JQ}|Xlxf=Ud{nS}oG1+vA7erhV47)l<@^-SO(WhiPjSn+ z6Vp5P6YFEW{o#a-)&-nkm{^${HfRo#-DC{OPWpzV)3f+|QOhNuaFCwP3zb}&Zx@5T zWD-mHb?W4)33X>(n(A~tC8VNYACj&k|I`Lqu%Y?ER)vQ(4*}Fpsao8o{-L_va6{MFgdpo^l<+(9c&|`L3+W8E zm{XDRa=2CAtjc zeF_~1R|_UU>{_I+ygorENrNG>%h0haW?fn1WtRM0ayfve;SHv0FbpjYgsd*oJ|GT8 z8sN63(TrW1tx}fk(+AfQL!@RkHm!5) zytC#PJ}Z};H}v!{t;QqH1%+p8JQ6+e=1^#4ufXY5@HvgkE1(4CA^Aw0z%f=uiW~2H z2r|kt@@K%zAKgZxLK+n%Q1kp#|-d?zLFt@QE zoP!%CO{-Xk)&=sk9wfb%NDa^_`(052Jc)AcR$pgmOB8?%1{I4du;yd#n5*37c5MC` z7g?G`gGt>6ZSa$5es&^(DTw|I8sT02H-?@tn>QvBmb3lyX@oF%|6~+GVhKJSeUQ|! ze?E2iC%6Cc-h8(BzrDT3kGCQIZ}0KL?cJS+`xyVX`*>sj+t~j$_P>q&@2j!@5#fyE z|2n`=6oWzkoR}D$AsDvZ94>JGx7-VjHtl@Cq0E>2R7eAo1m zjKy3t5OgkakjCFicEg z_$k1DYi2NcVm3sxYQ0Rf#^b>pSB$gAI1uyFO_>uWqaAchq8fqQ7#0vvP}ZA2m4Wl# zGLvSafo5e`8)B$Y_7t9r1#~q-DR!ebl^wzU$-T7lJZQ*y7;Q8r(MqH9 z3U*&w!!sMySRd}_WtlETbxb3HOK?#jsukT16jb^9>mOf~#HWJFS{&?=av}2$MYX@9 zF}d`HcGdh)_6A_kfPcLl=48vD*DtOSQt+ewBUtVGs#F_|W8GrKmysu8g$^%9&$T|b zRok4)CkOD@@Uytwb~HGgymX9@8s*yDRtNTbi$befk+-y z10KcfpP_dBUMH2eY|S+Nx!uup3Li=wmagrEuIF&74@2Og^l7?!f~Rd>UA!^OYMx4- z9(+o&mIZeESn86`w>?L6aO~yPdCzOQj>-uVIkU|9q~|o+;oF4c!?H?(_U{)#H9;x% zBGsu-?ErYCoDSf>`{pzEl^%l+c+h5880?DPeV$U3`0bAsBt7t}8u z*HW8JPX{Qpqly_4iqkx(N(uI?7;eETh@YzfepU%0S~Gh&<>;fv14OHOfR- ze=^RvKE61o%c^Cj)2ztEN$c<&(`JHIB{k{nkJP<3@zh|!SPs6PdFOGscjDBc$XSBj-xqGpG~ zP_71(k{TU2nVd@_isA@Tir0S*2U+$dbXHLyBd?yWxdXiYaWpwUHT>b+C`X|%tN2)yB^fI9Yqk)%mtkZeZ z!CL9ebkv7YV1fr*exAjimOH(x1X)lf z&FK6y2+1_CCYCC_i+vmpy#j4aD#y5>t`{1-LcEEp_da|FRqBKH3_8<>{|Yp3GFuK> z#=loq&H=HFpC*dFEeTgo7nP$=R8*G3m#JEE)GID1r!*CujIJ^th2O3sBODx8uK+TN zT=5zAQ(j@OYIU1W1EP?in0ZY1%6WE%P}s)}KZ?O^eD!QXor`@@uTBXx8E7_1YeQUG zzobqj7)UkhRgdQjDR?C6gp|&^LaFtP6c=WTs}NC~Oc>esyz%^Mb-sK^1@04R+*t-R z)Un^JNwang`_>9kFj7vu)%#8w<7(W8_uFqh#0JM4vLfX(B?&5?9P7p8vy^Bb)LpIF z3aYKDGkWU6q)ioNX4z=l*S+KF+@TWI4IY#^rPt4>6edZl9)Fmm)rur)i(%WXvF)-e zsp{ZPeOpC_ZIhj9dTiV5RZw}`VE=6eakecUzD-kU z+u%_mEveHpEV1zT`UadnS~``rpydy+ziD*u_L~&YGhgla_7ZF%*7X)Zkq@iRo@C0~ zo;npzU2onTez5AqSxUR@nR8{@^`=fv(JNy;%7C|y@L1=zX5Lz(2p2^Vsam59_n5L( zOqxd{BTCJ?Wc_hET8{JVciWP>$=*GXKNg>P>TydTiKdxHSI!-X-J2{)CiWtit*$GCUSm ziQLpL+nhxskWPmEo?+9WIHDQwvQ2f=3aq0Rv_x8DBs0^TxMk=RxVB3nUcWL>0FmQM zARF*uf8IQe{>TnP#bFMj2?O5JSST=DMo5c|1Yy$%3dj%NJBGGzs}K?*1d&Yw?)+|< zeP<+67h_Gr1czB)Hu;ZU0F+C{)n4=Kv;R3!yZW>2rp z8WvzH$}bK2ve#!jnSSO8SXRJk8&a(#GtK0t!Tqar3{u}V-4hH7MKWiMDnfg$7kG#kA(k+Jy6X@rR5vdRnmY%p!_~@9JfuR z3PIdEZ>w^n<{1Tf1LYTm!mM*nNgYODM(r5h0i1gB4|~llBKDH-v6exhjF3)Godsny zi3ULv=W>io3XSXHil=g9I`xvdG(YUMvWA;-qnSoe{vH%~lmV$KOcD~!+QM=?sIO_Y zsNFZrO-C4@Dw|4G%3uty=b7P03@(p~555nfQ(ieCz@CJoYxv><$2ht+-&`p*u(C0K zq@m^snQ4A|^`g=ylgNnwi9Hq#2nUd>sOTukA@ZuNyu*Gl#H~26S{q2qVADyF$g@NT z$eYQ|!WAgtE-OjC)k3ywG&|f@_%iE2LWaiOdu8KpPVeu*8E7;UUKVe+(#{f%yQN{P zvb$MshO-$Nn$7Cw`Ly$)iMhc#r&Z0I1{hXAbNkCq?Wh7-QIt=%k>{0nufa&|7rej6aTr1|J=lXZsI?`g80wZ7?lVf?}PsN z#q2`?|C_!3^~uX@a%DDtly%K!k7k5AE--YcR$ zhVpLz$Ijjz8q21h#4*T)@@FHBjeEb0X9(ZiHsQ-9RcQ&5J{_p+pxmP!w7Ww?yV~;y zhUqCAcg)@D=Z%t*ie}xPWF9ZE#M6qi;Enkt6XCJz=b|#0eUeFFUbDmuC}k`T<4pwZ z=+CFq@idyoumsPv-_y}|qpW~V*|^)CgYxWy;Qj@KO3e(|MWO^NIi+|!R7sI2;=f|DN--?d8*-L|RFU`dc)UmhLe)C~R{qG0#_kTZr zCkcL$OkU6z*gOPLzqY!T($zyoZLhuab{^s<+5p2DCZVMJmg?MhCfr_!O@0_pA#(kE z?iYPs0`OI!OePhCZ*+7Geg6skz*af7=rGo@Nr?RHe;1t+%;h;ZYT&=*3>gLk)e{|a zD`WEE9(~Updi>c|;|4w`_y&rxb@Y*xVyaT>!`3{(TjmADnY$|nl>C(dxC~3yf==mj zMd1mAI+D{an@}7GKL6XSKj_b{;PWs5ku^HR<`95*o zkA$z64JojAggQN|Hj-~S&sBd{We&AkTN-4!-j=Bo%Z)O0vu0Xoi_$>HV2-?zHl$Op zgbLG+3oR=a>w>+MmAtt^W+vN#b`QG+CQYjkFy}%ct$o}~=m}U$P}YG5>}U~mj{n)9 z^Y(_&0hL|^o$FfYRJ&jJP&(dzyAGgC^BckndRBo8nCa%SiSDd7(VZJlbm#55`?^@V zubx37&_U6LQM*uYE*d6FOuZ{_G#C514#PUShUW{9h5C)HpkNQpe);VMMKf6^dq{wz zV(Miyti6ukL%$bvjW_?xuy?f3+&n5Um6FEzg!fTId^WlEHos$ZT&0M zf1;({uJ&)4{_oN5L#+R_zxQ}|=h5TG55L*o*?(wWZ}fi~{oh9ax6%K7E&1PeM?E7e z!1^$@EAy3mPV3i&0vxcC55=i8GFKYx;?ec1=TCn8`FVSGIa_$zKOoPkv}llT%*&A0 z9gpAji$VWXT+5%~ga6xEQb1~o60*xSW-~aw!WXI~qHOSlxg(B%`jet$zl@rs|RW~k6|t)9|P)c{jq#UNKLFrL_-$1`{o7gqJahb6cGUCe zhm>j|-5IDDX%1ebvhDxknvaPdor9q`GMP_+j7$C#sqkmp?Zq{p6K~2rf41(x>Us6l zl-%0&I734eJLeD;4x^bp1CO)O?18;gq=BBA>twEK32hR&;0N4!QVco=9uzpc1E{d# zAwyi)%n&Ws03Tgrw*^HIb%@q5i5Ski7Y2POZg5Nc_ZqpD)soqV@$?<0BR{$ZDLMAq z;klsWjvGA82`7zSTvyi5QrQDw3d)hc4`1gY7O`W@G30}5Q4C_!g|=6vg|Re}MflPa z{3^i@t6v5B=HwevI%8N1HHI`XowV!Ft%H#bcPcZZmk6VX+_~3)H4M5UbUP)2Y(?;z zpB=*ob=F02>6bw8PY2^S)_Bt>?F>>i^c*yP=2rD7i^fv5Q3gFZsVuUNPFnZwy)%sD zd0C(Qz@{p2X;z5LhaPNIesJ`WgUI-x1N_PY*IXNxBG>ex+|VkxKwRb=lXe)hSz%TH zHz5BN4M%Lqq2@sHUgxSj+zEy%i`fZx$}L#c4k43y81t98%}1eLHIoTLX%GsuF`#yh zh=qV<1nh$h&P+xbb!o#F@qhZ1J~@YP9onx(mX9vis^SYVuWBi`;-RpuuL}qo9Z$8X z2y>5u;~Cvnq3}J!1JhDQa$wIjGiWC|vwHKa16NP;={>60(07w@WR+Mc#BWi0^nHL*fPl&H<}3Pk?^T(wb5K zkGadV4P*5(%iBY)1Eh%&{dY{cH`5gCNX$<|juZjEjr287?E^Di#3m-pc-H7dBLi3t zgRz_b`*t1M)>XHX*IMNYUV3qL?ad|nm3%m9hSOj!%96I=wc~9xs}nS;W^3?$Jzv8^ z*tExGFL<>&r@@B-yKUXbt3DMDQ0Ylua&Ajy(?%5^tORse*2}VuflqnL3X6VYq-QS= z9y~ZJdgE!wT(=nBJv}EoT-Hola5FJjU~OVUulcLi-!s|iZpqV>UOE0En>zmG*^-gN zbRpGcn84c({QC$4%gulmqP=FFiCJ`U%ru8}A_Vi$O#qGR<|tu8dP*)s{$JJ>V{w<$ zYO?w@$jE4)dpS03+ZWebb?YVABxP-ss9#=qi8ZC|i)+^L-gfzg+FAipfZ;Z3FIdg? zp{LZ&6S9qHw+}_JoqHpMcM%ttO?lFJRGOpYNP$Y=r5Nof8X7Wc+U#4Dx)s|8h>{Y~ zsjtsAsyo{`l2*r&)m1#7^@j);w#>BOz;8tk@IA$1>ZdTXLw_Hr4xaCg40*dS3uuy+ zM3&F<5Ki`P7o+(wuPQC5j3R9UK_1uh#d3Zv^wy;zC6p^q`Mne~^jD-$w6dbjuBUB( z;MfBu3X}C_s!@?MZoymvw;JSt9V2W$8xIMY3eX`pzr#ofo{)wt^#?`oj`FuPhxlxK z2vNduf-?fY@{8tP@!pRoxh@1ih~iaPmY7DaL{B4O_o~wJf%FaM#OWF)by7DRl!-a; zu2(GFl{Vh8x+%$Zrlk=Pr#0yyX-!QmNiEYS^i-Q;fWrSmL@7DPoE~ex8`2~sc z=B61>XR?BY$`jTZlw+$=J}oXf@B8Dai1SC+JxUzu?8#7D;k1Clr4kq1#&zHla1hfM z5|Wu-eXxLAV-_0ev8#|sj0zuT{0%$wmKSzRV6gxwrSLbAsB_akyxyTS6;> zQ3!Qq_Lwb(Ho>LjWm|c_lrcVZrahM_Blr*zq`u7{aCD7jULE9U4s6Sd;F=@I?W&vF zt_QATASqa_x3&us(z_7?6iP~m9VZeQkaNX z@1vh926S^YTniPK@ID*@u{x*oBqB-)HYcE3N!SVba3zVgY}-Gx4U!xSTPe6J@;lpg z`~bJ-F~ggXw>*bdEggU1VFeiMR>6vw;;V!&p(rnPH~>RS;hRM59$sA&ae!@kkQQWvHd7J7Sr4dxmHR%luyhh2{## z=B@-+z&jdyEi_c6J`{PtVmCYMpq#=cXm|{3dwU~fPp3bsK;Zh%YP}y%If>l1ZgwqR za}um2NF3tspN=ZTczh(9IOUaB3!EGclNeO1RBvUCU&fBd;-lNxN(TuL6W@82z> z%2HY@1{xmK34#mhV2t`h_E67h2Fq@X3WRTkspMvjHa;}tsASpfJ zt4}OCMU`>Xy@l`m!MM2yw*^Sp-?ZtE4xx zF!X1|yIOInmhI38cyqa`8j(IysJiw2B4*^{_KGFiCGr#!_f>=`x()c)SX;MT25U-I zczZPNmLk67cA!=k+q9B$n6ECt*(D^fm8C14%&3*A1;sc?lW(&PJ(_xKkDDmTE0L@| z5W6NdVizxZvYN~#w603vs$6sR3K1oPW%3#Iu`-m+up?cX#Cb)6*3loeOFoFv17@skl7042{ zwT;4>ZlUI~$+Rsg$w;ezKx{uuDr?F$&>NXa`cx4z2s z+@E0~2?z@+E{iS}16I(pZ!cfp1i>(D9Ts6i^Ni%{>}y6rdpI9MtLZK)F<-Z)gY zj*Qbspu3ox_1;o{dGoV+gCX@RQP@?9YhwCqlUG{DwDVz6fuj8K=ip^riLj0kGKvZn z3{PseGZebTAX@>HKOHCK$ zm8x(gV;5q)9x1vyr`3lOQ%t_3@k=_ANnL`6+uNS!S0z`q%E#?a@!Dbr78BLcTXv$a z3>*kpMd}oPD%=1&tN6PR)gU`ZI~`bNU-yS}2HItRI3Hl_dL9j@^XW^603RzP(bWN(MOCL(P8qZgLnW)Pcp7P5IWRfYs91wq!M7gZjfqn=eM_95dgVm=32 zsI(F(rY3|dg<(1y1N^oe5krA9yoRu*t|@DSM0Y~9EF&{ek+1FTusIXSxW?g%QuR-xOp@?E~uN_aN7rJ&+2Y7zK3FM${b zTZ4+0KyWKdLj1thFv{K5YHGc<4J3^rRUh5R4&%=OEtL(b`R=c~-kzXMflZjC2}fmh9h03{R=uDT{PSQC&rhpyI-G!w&VS68t%b z`4V)_1ljUoXNqx|MK2c&JLHdI*mT~EvZh*CBz&GM36n9XX3Yv&Qlp-efmu_~H*S@x zt5daB-lu4xq4OXa?heK9oY(B1>d=<7=8QW0GY=cX;X8DgON5Wd@Y{B0kTN@5g$;Mc zp$_qX`nIq)_j>`1Wz;s2+9cXS8%27(0mBTTjI({<7 zi);R~v=`@7`gakR+%y9*W6=2^%mEa0j4E$p!^*Hr=D4`1TMaAGO6HY9-KJ<}4zgcI zD0b^Qx*EcIZ{cWINXwl|+q3ntS0;O<(`ecE+4ez9VOtJ8HRF!&e6~H9lz-p*biH2j zl%i?r+hRUaH@w^!A@=id@%NUo&TL+`c=b@U zoT}Ey?b+fo8U$dC6U3%a>$3@Fn9ZA&=Z}D2argj>a30{b@Nj!Oy3Om37|y1JiJ$c8 zLQKpP2de5&H7hl}0;5TDCCXIl-9haraM-gX$(J>#Ybx`EC z$EMv|;3X>ZBYF9Rs@F69^44SZ=c0YjohH5MtI}VL$CJ~J;nY|yYW*B|)CWWXoVvdq zC&lQG{)b@!>SD|Vxg^DAu-Z7^Ry9Pbzv)fuG(3L)}S3eZ}`Uk zvZ4kQ%G&U`%J9P2U5ofg<}|Bqn|(Get}`@UqWHhf`qXpu{r{z=Moc$oJj2p|=0uv+ zB8k*lk2;r_90F35YsD>XhvYJ6$J#^lxS1|^45|_P*01@@ymc!}LB=O2ykmu9;XG_w zN8v~-xS@VtF-=4+%|*^r>orlSn+2Lf4>I-h9M5NZq8=D4^e=JvDdK|yYaJjNZ`KBA zFwvD*rZxD#<-DI~;h(I+ZedH}wZ7o`KbS%4maG3PtN-)(;r`BJuK&Hay^r<3_jmU< z^}jdue>U}hHuZnLp87xRhdA!d2Zbv4Bef0<&))6mXfw)72Yn~g{tzn+AoFTgf8-Si zfegL!8B2E+Bk>uaaf76k$(Ols;tMoY?192Aw|IY`6j zG9_0AN3>ZhRH?CTr<1NUd-d{JD|?PsI$a^?60%fM3vwqnEZi^RbLzKibN)mrA%wqL z{O_~zfa3szPJhgc=~b|-|AJ>402Rf8T9D_giJcbZ%9K=)}Z>jS?YG^pdw z?%G{K&3_H5_u#)zvEnvu0Z=te--a1OwZAc(7Lqa{qxjJ^{9efM@p6M= z!xz`Q->W6^gibA0`lbvOJ_#o``Vgl$*M~W>nxtl=22!6zW1ah1;g#%lNYo+K7u=k>ya(S6IP`P{H5_`j%~YeRKFOV@BRXQ;`r8$4)&Y| z3ap0S0pu6S8g<96YxqH!#R)Pk=}$uVH2A=*_)R_BvFaUuR=Dl-N5$y8+Be-;$F6Jm z!DNBM1Wr|iOL%I!Qych_Tg&Q&g^;F{^f_*9xb!97;jAH&yXE*TWJ z2~yS1M%Gw5d}n^-iSJV70Iz};>9dKN1^zE&cok%idokrmyiwNM>xKWyoyEjUIW&n^ zD!py^HK;#jbFEwcyO~}`yBvEy^XuKD|{S>Fy2Gic+u0Rq2c2Lfy;MkfsF zuu`4y@2OG*Cp2oFs7Oa&*4`(6mcoh>Y65Ex%gvL9m^*v~DNq1zZT4ch!(^wT&IsYG zIx)VXrl1W|14YOr18QVI+D|n*{#BG`g(=*ybu1-Eh|#s?=P7icD;OG%sSTvxk?D z6aJ2dQ`v8@ff1YV*d)s@IQmsHD6T0rtK`>!rzopFMk<)w`V=!xRUfmCEZCf+8lW!t z^CLbhoKw|z9dW!`te|fC|Sblj%V&~#dblZ z8Fcv@GoX!lwjz zZST7cu}eJ|^k-n6gh&$+mLjH1hW(2Px3!6{m7CGxkaI?f{>w;v!P^E$*7v#E{-;M+7dvUE95DQ+!VzruJm<; zQ5S%UBJ zMMb!MnmQaYmgDFKuozSrZ+3DMn&}LTxIerwMC3tPBpY)41Gb-ZAju|F1KvrGTFak# zWXO$IJranD&I6#V@EKkC+nCS_&F+Vu#XYwlX;$`|0G49sHl^%hkIL|JOf6x>xhIP2 z(FcvNTKxg$?|OJT5-N4goc$`zmlJvnJ(QCgqrcn7E^qeZ^X_!h^C0njT3^y>IsTqgydCwzXZ%fdF4 zEh@|Vy~Dd@)8?J+yT}NVOjfg2k=2Qqr3c?@`>I@BqzOlI;<8Z7%Z1BPuC?Q?uW!B) z6HqXk)frU`7u$h^yQAUcS3*zk8Yaw`YdcN+i`#1zYvWXTHjpYb?v{~hH`MhhX&BGE zr|Q0`9aqMSb+;;ntkYZOV3ED>t(#y|0+oPh=fM1;K}se74@^m)c$^&!0=mf17-Gmt zDff?n#@$Q84ocb2bazF0@|&khP85vqO0?T_`xVhn-pXB3C`y zZ#w5xC^*tRs{K7tbI|iPJCJf*ulz7cr1VXzJ_cX7+K;oixW;#*;1KH>*qLQ_?v{5j zGw|r$X#8P>1*Qe^F2pKccZ6~<3m@y45~E;BrZau|gY5Ip2Lk2ZzkmS@|4cTrVRur3 z-9Bk1+dIvn>*1cI`&eGp_K+vlr@mKxP9TyC6lzV073rm7*}Oeo8OEaJ=#<%aqzm~z zV>M5h8Bp{t5y->zjch|h?UrcTljJnHfugbu;G3v7%-@MdIKIF0)+^Rr(%IpGdw~@$ z3GaWr{?UQkbeE;18dXNatOvYb|g#%(Q z)8yUPkL9EagZjnRhLS{X1Z96z7KXX<0m;jz1txCM4TG^7gP|wlp?4zlr)Xr;yt37F zdPXua>&ACSkPs!Q!q!7;yikflFG_t-F+g55got=q@+ygS3wAu4R+e?yS%OTia&DEi z1zT8iotH-cC8W4hE}S(-nQxfyzXKs1jdAsEDXUmz(n92;k=AYXa(z+Y(TzOIm`~Px8L!s0f zgrnApJ9N_KrK6j63t@g^kL_8+TF*kaAkjKmF~-m$gBy8+UxZEv)`k)HfTxWrUjy5W zMyx=hDPbG})szLa9QJoc2&LteHrWubyK0MW7e z+$jcmEyClgG)PmZG7m`p0(_xQBey(0x&~sWoCG%qbG;iK0qHx4S?z6nJwxk8z*NIC zinE{PlZsFIpA&W$e)w%Z@-ocnHWarKbxW(lpYU!)B%N?`A4{DQU!$s+NPFtN@5k+W z+58wAY+VmqJ;USmVgCoA5VQD=`}1=M!9W>!q`>@z|??nj|djmK zI;7?yghIE}smp&@TdwT&h2bx|^O+6UJIDHE2~N^4WT>brMZ7*yep6w)Wd+J4Kv#V& zPLpQYqcB&llspknQ;Oe>YlE0Q=Ay zWy4{?HP^v7PhS!VMVbX@MeQ|nw~;aot` z7Bz~qAJX0~PklHINsPDQo(ppTr=sYF&w({lps4|JOYCT~{KHU3Afnxatc|;xr0Ag{O*MHmbs?=yla+TRirs)a}S% zj)Krg%fRZiIyZx>LcryK4Lzej{2RAQhkizqq>-1n#xLe%$k}q+^bvGl_4r7JeLRw6LG`l;-(~xa2g-* zS-}Hf_!sl(S-*(tn^H7eY9l4g0O(iSSxZi#8?;%p1qQm#w!3DJUjkD*+HUwWa8@g2yX3lhv(d6&S~htBjck9BQ0y zH=6ZdvZ3rDNewDErBKvB4y&fFilj_CZ-S-)@?1#f5TPA^W5TP^3j{~z4&*$C^p$>p z?(OEUeu@ph2sb?Ot>l)Ig3K)`wk0@iSXu_*FQs)^Y{~TxdwkZHj?Ux2KYxnpA)`dR z{ShS;ae>LxaarCU^hfV7kLk!<&O_3f<&Yn%GT?eP4uV$mzYb7q%hS(D$T9jfoqjlwhwU% z7rHK9S+8k_Tc3Zsd=O6WJ%5J=^+)N$7clPWTmsXg^DZjGJ%V9X_Z0x}dvbUI3tbXW zX$>w4oDq9Ho96%|*ajokj+)D(&wU>9#wVB*c*z57*oX}m@pW<$o@!Pp4G+@ZFL-NI z`M*HjGkeHLp^7dS>FgNzUT!1nSdzGlY8ANVo92{2YycI(YGtCFJ6J87+A2^d0M$X< zolCdwmcohH3cYca`CP6tH}Z~I%QJ>T+hYG1NdlNThZyj^U(Fk)W0P-TiQ!c8=O;G9 z)e1SEy-d~6SF|*4|AQjRez=*RX+!2_lPzGTA-7_?+YLng*m}ElV!&g8{OcLV!x_`Np&R_S!FzjvrD8h@@mO8&2CFc`ATm) zogvUGT+f-;(Ii(_itE?+#dO;56>LbAO49*%;AIr$QnVFiBOrs&Ag)*KYDQp_5pQIGz zrS8%s?YK}(j%chv(v8n4EY*Xek=B|CKv1b%E`LrHrIS!#!bfVHOGA!gAcyllJPao;`OQJvn$Aa%W4TecY(zePwUuLXw}b3% zFUxswmo=T=x~N44g_xZ!XdDRt$KW71P#Xe0JneO|q2bZ<;qlJfRyI7|etU1nFbp~Y zW8VQd`z|bbFvP$Gc~5v>joX8)|4o)LG#V^%4Bv<%3VaV<5lx_+b_Q2mcxVZ-0M(XMcBp zANaq$z1@f3WDhs|-{_OleaJE zr{4zja8lX@m96SyZTKJ7PjU-ZE4MOI+o`scV;O2Rsll*HQ?2X(2m{G21V+WB0dk4y z$IbT7Ah`SuCjdbX33;uDP1_z0$`yNEe!KOI5|p>yD7Nyn8LQzOm!#+(!z3{GKgnMI z`s8IMpUdTYus3cCNu7!G!96sWDTqikY+l($s7xj9^&%POnE^csLACp@DIC#fS#yhhzuz$1+kW z9H<_hRj1ZwUj`Chvxb58@bLI;!=*n~!>G1oX(XBo^d0R1y#^ft8xoiR4}#I)4DV|@ z1y)bW!S=9zUG!G3vz6sweQnL=hHNyOp}=Encu6Nj#dI|oc2UsegK#toxQR9#if^EQ@K>&&(r*v`nkIwE?9-|jRZ4w-Ihs%>DX@^C=W8Ro`@ zKOP7jd!RkvkXju2=erGO)%n45MRShsw$5>8>P^29=TWakceG1q??SI!oXU+wRO~$-KBIy6;#+`;XT@66r}&oFg14rz@@L?ld>O z7XJ3HP<_(@N%JZUky;sxB`jbvNC_i5F)z?L6~byS#)F=eQ**VxLqo6a`r?{ds)T_T z6`HX{mszW{D@#P>j(2pC##L`qp;*k0wh2(Vt&iy&h_N-&Gv9+oN{U)eHTNz|@t;{* zIut8&p4ElH__aYjrx`$?ONEbgRwJ)C#hzRWOOhpd5`V?Q|6Z=>$`XCb^N01+o3Kxp zUfqsFn|66AxfP4EmFAh*vlE5y_Kd;pl8GT5-=i%+Emjy1Sv?p)d;YuuV0 zOoK+V;?lNwWB#VshywhyR}>TYy@Gei&rpdN{7XDNtpIjNZ*@dgcYsc<)H|+Gj<1id z@wIuoSejDZbf}M!s{G)Rk0w)mnU>`Fs^?SuVP|uh@b!Q`bw%NFkTbkum$ja+K6fo& za4K{b3}p{0c1B{mAuplGpysDlnD_ih4B9(R07#N6|FEY>@1kw^;#$6_!-J&@Zp_j3 ztaCaj7Fc~xUZ5X4-72^$J-F&EeV1a1GX&Hli))ARl7US@1^B6UT+DKKX^70UXg@Rm zQ-eVQwnKA<`=FC}UkHeDHOnA}yM@bPmU~E%^8w5;ZmJatGw?Vye$dnoGnx+uw=j&* zr^Hb5YMtR&*o_CH7wZhgG_l!=1wVeZ&S*eCQ$xY?b;bd`L28^A=J`6~kmlhQ212Pl zF%E>EEEy-EBxFH$nJvQ0LQ#MY46IZ3nnrUN{?KMGAX}{d4o@>Z#*j+<3pK>yQI68*{MG2Gg3oodaxZODvP9jL zkMzwda@$l~GiulHreWzo*<&sI?8J54buAfQg9I;&xBhbO1qB-LDYU=h!!&Xhk0ly+ z31;dE@6e&(Bp87OqtX?@wf*L$Xrhm(%(IbNo(#${fa{%+Hs?kVfv|TQ#L1DbU`N>U z)AAM^q*)kjnXak}2h9I)(eI-Du-i4V2+Rl4Q~^fS9XJkJign^ovQhCNJpN8K9v=M4 zoCR*+hS02pc`Bd$gX2wG;#(5!dUo3;W5c5yZ6H!l_AQosCP#SXYw-}&mZ`B%6M87qvU8Gbx3*n)c~3n<$PFtI{47|w*#GctdD^WuRMKj zZouz8ag41yI4`cb(?WDN=~gWCsN?IR98A+R7izYDN(gCtS@g#*j5} zA|os^N~ygSPHkOaYcG(_IeDO!pu)@>C!r@7cs6Nkcjx?g=fLNg#R4}Qm*5mu?a*Pq zTfvgE)B;{E@WIH-B~}56yARczi#U+Tdj`bNJT=4SR$?LyNbK!6d{6XWaT|}Wq1S@_ z1wVf8R#>;wtB@~%yWp^M+9OOl)zk8vLrg5H)ecj-cRX%>p?M)2s~dTW51u-aY#0=h`}N=XmQpg;Vv$ z*^2`dSGT!)y&G;ExHa}Z^KSJ%_gPDA7>h)IpF%gMZ}oSKpJpGZReL36O}sfgOgr6> zeRJd&fiX%_DXfy+=7bn9lX6de1CY_|a666+_D5?&7iz468v_0E%9p7~nIS9mDOsQ} z8B}B1`M}B}l$-m#tWzo%a73g=Gs5ct9V!^5+I!T~U02?rphACu`tQW)Uz_2uE|_)4 zAI`XInJV5>DM5ut*A0`-C>@+%FQ&kq;n;01eTenK)AfKn*~X?4&{mC=u@`#9tl)-y zUy*&UnOpMIY`o7tI@>gd{>uY|4KMQXd)oGQ5t7*bH52`5T_-@EtD z?DzQ+@4V{uRjg6Qe&$HGba(gB>M6_g^vp$EhSf zU;dxnU10VM|Mz(N(ZjvHon6fTv;Szr|84lc4ga^{|Gp;vPxA15?)*RC4k)j{D{zg> zKO9MI-~V;mnOtyb1#^x5H0=zFwPQl6vI*6Of7lE`7%T7R2ja+9V9bikNrAa+E=y`^ zUPI;qe%+W&=S9Ot>H}&)QHa^}$~M5{67sY@mk_pX*0q37*SC-_VNxQ|d%_ZP*s4hD zOdgWG#nSvk=2uw^`}YZ4z|Rx~XZB%9BRd_>F0k*>b#L6A!#2qUzd)PP(KRG5vX3xT ziGdBAahJ``21X!&Y6Vc+$1f&{mkzn>T$cR*k-W&=^1@=g_A%an1$p6;`D40$ZG+CKbZY>Pfd= zW1c82qI+qw0G#H4&!_aJLuU-HUpIzpePRyT2~~QKMFSTDzDSb)172EcrBZFF3?ms4 zE;}j-i01s$w+#bP4mzCPOAS$uF{Q6pa6-Oh#{6|OxQg;`ag3H41#foKwLf+ER`S^G z1PE0f7KAz~LD)C!_Yu~8sY|6q=~YtRGeMdfEjBA5wBC-RlMVgQ_zV0Q8FIXt90pi+ z*5|UDwJCR2T2DpN5VgKK%g?*f_`@hAOZ(|Ef(&PsIX+}Kf3^6u&R)bHq~4XQ4A6pE z0~W!`YEFE4T&O8H0d$bL&mDIRCl zV8#TyNZVf2N^vOE(lRH$x=0RsY~&-#36&yf+?K@=o$HxPWywa7RnqR@qG^q zfkK!B4ZH)Od&8;~$7g3AVQ=UG%<1dCGelBllAE=LR7ZBy^@r(3(pml6tN>vqL!rpqHfP7*9mT^;c zeo|X8Yn-#N{FAxfek9-EW@=BpM0&RLdYDKr%sU8|=80wX19l1KZM~)ZoS~!gFf0Lx zF-ba8BPVL~ocQ96t^P`IIdNXaitsFj(o#w6K7~XvO2gk#83cHEgFrd&p5Vx?1~hI! zT%4g?hRXHNsu**Lr6{c;5Y$!0bO>6bBs~vz4TA3=$v_NAaSpGNVpfe^ORbPXG>ImA z(P}O_B*tPZE+mF_{_)=G!l>hAPVtjYSuQ~^>$$`OMTnrkxq7HsxG%Otb2(FDW2r+P zE{>+I9Jgxhh*w%KIVma8a?s_dY}Sgy_AoqRN?F+k3h-iz+FTHMMXhBn%Ae*_(7RI( zUr|P|AnE6dPAeh2&s(Ao6eEydRWvZA>6oI4vDZJt=QB5?s_wc%YSuX2DwsIEET(q7 z%loDiSnA6YMm+c;QnEHi=vH>0`L#ew3L znzzbGfY=_L_9Yfa(;C%7g7U=rgZDvJbQ_8AJ{5_uK1KT{B+^byU**8Ok=80nLVcRy zmwsRhV42eZVlcW&DGY+mxKy_>+G9GS8A!c0BvRCXKw;HjXwjiK7%wX^;x+Kb^dp}5 z%16z9>?Y@}A}ul6R?@9TW;->;OyJvttVY_y!ytCD!9@~#G%Yq7@g`$P^{KXv;` z`Cuz`WWmzjhm&@gY}SdGUY$4geKKck%)*YRt0nh-4fZRA$XfYqHQM7T@F)iPLNTmA zTHzoqy9Ue*z5ulJu`Q{x=yk#~wOZfIDM8KNYaNM#?# zY9JKkW;MOAe2-yF+d43ABcdH}C)zjFH+)q#ZR*>n;v+Q%k`wZYtC$3>RIJ>79(G0_ zYNDd9(9E3UNl4hetr_}DvV6+~K}`Kui2p!mk=rc*zNG%&_BPi4-re5=C&0bO;QzP1 zzp4MX@&DWS|84yLzAFE}@)B-!754GTvORa~<6o>^&0K`Pyk3@?xz+>EIj05b7wrmN zvOiiUq#C1R2*rqiTk8VWl1_>JxVjj20;1vpT=XC?0cz04%#L1`8K*i#W2+a8LcO4i z@9ssC=V5lOSpFH*if)*H8!ZC}s8cv9RTfdiFlYgPq??=##vK|3|4KJ9Q~{d+b*LI> zKI(&}c4<4Mkh@Ip@x%+k$_b>0tqH4Qcy3=mVucYxL$LPUVdK9GJ9W z180<9mIsE`H;G@IRb}OKX1!>p**_|luFNN=x2sEMD&+a^wd&=Di zEj1dOQ0r`%*d69a$uJ-O;x>)v=tJIiRJs z=48J9oM#crgF<%qlI=!foCy-N=1}@rg(%k%9m_Btij4 zC5?lVa;B>@@Xt1V7E%6A(>|w_wzB!O-~8kU_;LoGw~d2F`+vs$QJ&+S&}YLvd#c#e-cE&kw)QteL_e zzWQOAKSNgUNRT|BZu07kj><{}81T8^M8ep=9P8nba(2>-Le7kmF?#KfI2R)tOZK^{8BMMPST}9FC@81ER+Wi{o}i=S9BL%67JQ_k(K#GR-wc z<=q}eWqPmXaxJm$jCXj_lG~psW_ZEOZAlFC{W%z~5E&|O85l4)5>W;tV5KqvPjPwC znU_XdY&4hP61&v`9*x60GqO&ha(67j#1$G|xn-@|KV=)kM(&{EG7`QRn|v?-%K2Xm z!_e=3PW|8Z-p=D4tN(lSc>9~}o&Cp;b~pOJjs9<=|J&&Qz9#)263;(B`ga8#-&2@r zRRAh3W0B=twz?S^3k~M7t1_MnCtjhK$*s-*e?hBMnRiA-&cI?&s5#S~X&lezykcX`i&H(c zW$%`zuu=BxOLInVRGP%4F4egqRZhr2d1KAp7%J*xLFDA^S%o*O*O$rvVP&CPW&f7h ze|Prw9|QmQ_~G`W$B*}r|9iB*ssFp-|2F*JhX4Dj_`iVj1NeS=_Rl6qwk)7muJtAb zeZ^%;TK&ksYjeEV3c{=KpTI9fX`YX+JE!K%b-=Azv7GDxMjhec&Ul^J>Ln4PWMWQYB|yJ6jFPFFjkGd!&Nnjq2d25{khWINL@AgI(`B`v za{=`IeH27%N2RZ#%ng{lCLICfk&((`T2YVcl3SJ8cJvxw72*YwDqN~tl11Tm3yuD1 zmF={MEf%*M7XPdam|ihuQGB}6)c|3TkFRzY53{sfq8}9p1sB;H-4*9chQk$|Q61cD z4AzY*Dn9v=>L%7!n6y#RHz|zxi@jp=Qyx`MUXXQ7Z1}n> z0z;sNnU5Ltc97?vs;DmmC(6@sGwQpnoNtU;|5PPS{r&x&{oVb2(Esi|+}Zsmd$`g6{t5d}IYxS)t^Uu>_Rc=$f8X2R+unb; z{|M{QGK@>3)P>fTtAB^Ny(+`8cZ;(U!uhY&c5~AqFQu-K@9F$^x@$#b@rg{u)zo8!=z&OBZ zGYws&bW1!K5bS9&0d=C8j!x|b0x`DqK9!g(;g-$cGrQ8-QFz%eF?&}WMjAm-c5#HEHl9Pc}5W+6V&vZPmMVDg`tNUK1*^1^6IKG((v4?=e9h}u6zj` z$|LmxVB$&=pdh=sXRn%wRQC;19pD<@2*Hsf>GC1O(w`TFi>1E=-`(BB+G3SV%PdjBh!WHEZylOHoQ?`*Jt{AmZH% ze>@Pf_CTd>^UsAu>E(XS#eYQ&NFVJ3?1DEeM4ZAj^%fzr32=U5 zi!HAtL~mTs&LRT_`R*>wHg(N8O9TTNBslK_2dYyIdgTH1^sCPqRAk1vbai>b6;BkG z#+Y4keBJA#0G3ga3TT@2bo`h@Ig8JuWrZjjE+{1)9Je^T4{Q_HPc}#K89XvS;yiU{ zHnC6o#PZ33hLw@9Qm1)IzTTjGbre{KVRLbFTP~W*P{VnsPYosa?27IQ&^F5rYXH1? z(@Vq+caif`IO|VKmHNwhCvf&qpV(7piM;M$N}+PLFsJGl^T7iW4nx9+eTD{^jVMRA zGi)do@T63wCzmSun8VH^8&uovfT$U*0_I>Yu=5dC=2$5c<;R??D8`P8Md~RX)Mt8x zxi!;yr0k+}rnibbazXp!w;MID{Q}_2;=lHH_sIWuXWNM9JD~r2w7b30|84Yt z8~xu#|M$;V|Jwv=>N(pfCbS3k%wyl=t9CQn1t6njc0F8$%L>S{FL&HlwCN=h* zsJH@oaXG6TCO6`5Q>Dk@XeaCfq6#HST3%kfswg05Xo*XSuTZa>i(Po^KfYj2$4lW( zC7U3>Q}E&=3VCmecW;V!e`@}3Mry@di~w5}|FymU2<*Q*h7WwS{Sf&-LzOrD--iF& z@P8Zr?`z`!$O8M>4Zk(zzr*t0zZl-7rn>i+RJi+A>T<7Ba2w(a^xoY<#cB=iMLKmt zvS{^j3X&sv?^BjsmJ3}$os3O_{nG9Z# zPi}n*wV5FaACn=Cj0cp=Or(-UZRS9>HXv*-K{RRWIs>Vw5w9>y!f;U+RupGu@Jr$a zRg1kGV9eRpk2sF7raCnkdCMCu%0}1K zd5+im>53`y1&}IBT3Ifc`@las2kQx&_L9ZY?E7>SsO#-P+#4k@Ys3Y6PW&vCUb!B` z&t&>OU8%=g(n@YUb!AxX0Q1o)phZzVOyCfL^v?AP3#oGb%9_z==fcvEw%AGd-8@|& z6Zl_W6_Cr&Z6F7;{wQy9kRU&{U7J}lZ1uz{4SZb%#pbRQ#cD{9UmxZH=TQdNDQlO* z9Z%d@rafIV{utrSh0OweS2~%I9j8%de(@kLdr|dRpU{0qLyu8Brm?6v@{bM_hpeR5 zKvoUk59v282(dme(IX=*+(#fK#xw9DuRQYQ0FHWLAqhETy_#z-`bj6zA9Ma$bj4!#ycKG?eKNe! zU{3&VtNvzNa+R=tHr#*xnv;oFl;l;N{M=^|1FYcg3g&59qAEFi+HXtI*b3U}r`#g) zs4BYoiM%R(1hL)5PX4c>{{_;9PAZ?v{{L|A@t)*=-QV7Y_^*eM25h7M-ROTe`rnQI z_bbx>o*9`03rRZ86iZ4bl)!7Mc~b?Sta1~~r!UNRLd|Bybcho>0;4n6RPPSv5ChVi zW0(TgL_{SV6=}bc%Im7=c76%2%cLSDlYLl>ofW5@5295we=d?UVYMl=v~@LQ5eW^c z^Tn*!lDc-FdW%YXmH|Jin^%_iB<8a70bSywfs_)B!{=+F=4C<#Fa;K+boFg10=~G! zZGrMwAmV~1H06e>)QivO76F`ibtkanzB0PIev{-T&As0`m}9;B;{UiAx5 z+NF8tDFg>BffAOHnGa75+TAX!x`t#_0V_-BX8Tq03CJAVRZuJ9g5sm>FNfJqRDmQ7 zqCtnt?XHAKa^7nJv;=cfV|)_q>4-iP0z(>R#|~hzjmml)okWFueuXY6PTdR`=}5&Y zi7Up~Da&c`_svb+46<2RV6;`$_<|ZddTK>EJ0w7D|zukwAc0>8k{IQY$HuB#_{@ciZ zUtj%?Ki~gng(@FxMMtZ;nP#ph-Sn$`Eb;cZH9wD|PwVILS==y|yIOqd_y6q|fLP-H z`{>aw)PLA}2)F*e;RVe7zrDA~|FpUPH~0VM{{PzUe_QbZL2PcU```2RcXaIqel0#J zOCVM}c`qvBpwI)_za?Xo`Fj;#;8r#)rsqX{nFqMyr(~YK&Kd}k#)0`45}r2=??lav5!0c6vSee;bt?I(Z^E;m- zpUp=xLCI{8_zK*M4eW>vJ_KMUkX z*R=NgR03_0&E`O%I;Acy*RnO*n+dh6KY(j6!UPwbsS903loyYgkGT*gsNYyZL9#Lg|yRPI#scnUhKIs+_Vui@3Gh!txAgqwcN=^%8K!dmq5NHyQL8*PD z)}BpNtvyv0M#H$T`@{bI5=-US(cK1t*mi&AkNL(MMk!!e0@A_X)t@w<+5Grkn2wP6L+v|ayT-FEkLk4x;8xELb*+# zmql##`>f8kX=32vZi*vAPHnqoJ=Zw$Dpg~>|NZ9$ zq?dG1AI~_sr&3j8k05;Py^Ft6Qk&n1_Q=~CN)bp0$Ne2e$U)EA9CVVH7f*!{K1eMLx1%zkaM{G(-qs3X8m+gh ztGZ->;6-;apYLb>xQZ9svINYG>(aII#UMf*_WYuW8vRjrt<@nlO zn9flt5+Zfc=T%spl9JEJd%u2+@vbU@GmQLPBfI))z+R=k+$TfVxX{zGpwPNHPpY~T z4+G-<%n0vDjsF~}n|BhJcDyoxp5AEDX|iA@h93e=dz8t1;sf!~L43_oH1{=u8+dU9H^O!zBR$hmI5qD5ha| z+Q;*`#rgdeR9raOhq5;SSpfdk!DICN#Wg;6^DK4RSssqK0hzIuXgF(@G<$(o<2DY- z5YWS6`6wMb0}t+_MfV`f;fE2VbF&8*lI#$<=1&DD9)Wa}J8KD`FeFQU|F(o)wIiOk+On?w9`Sg4CeKa_#|*Hl>y z(-8a5VV0>E2;x)+-ps_SPOpcb$(xC9;CRs+q`Apg=IqO-;$G!N@Xp!K^}CuVHOLJJ z7qDFplW~M^Ii?%c@b)7h5mQj|ydS?SGCDghypnViTqTCp5;Pzc-@pr*Q(dseVsO>2 zu8&dL_%wTHVsir?|LJ&KU2Mf^w`5CdK=EQcerF~-9na6H!igL}K`Fu=w(gM!0Snc5 zOo2pjk{4$NgOWkyN}|%d5J^1+DvJakhV0K8r5%gG3+^YbG!fG+diS;|1&Qc43@-$Z zDB3ZQG^7ZWcLt{d&vd=Gj_riV$;1#dq@;Ie)*oX2LB7D+Z{W8=OnlEyDZUX3S1P+I z_XiQ#tGGbL9^R9i`r$X_7R(N%nWT7fkR_h^@#49oT;vs1Z4zqm7dUt7$P(3j~FY{r-0zNTVDr#^Vq?sBVA?*_V z-Qn*wz%bLD7LelRAiG=MX=U<#+y;Lv{8l;k_CkIzs2k=9WP zZWHpuhWVaixN$C%5Uqmh(e*&Zf;0z|JeV*l(jP!~xJ>+E+|7O9xW4vF^E;`wbQ6r# zmEm!#q*W6~s$yg|EHdC4#L-R;1TvE?jqCEEx6Q;&CCD*}{HZ4C{nFRP60&bezF7ql z2W#)v#nX(ahY&A7D8n17U0J+~jpg2r2p}2&h;nt$w$$C)Jcy3=tcB+4L40^Ijy4@c ztNk)4oRn=fY15D2bfo5A-ys#gs-N}XVcM)yIjqXh!24ZMEDVx904_~y=7=Dg{b?Xt zx|Y5dl&_ixvPdXHJA*ZQh`naT5TOTMTQq{p zWY(;(TiVeDsxVBtv0_yn^IHdC(o3YF>o^N!3OS)Nk*hQ-fJbR1hnJ2cF8cF-=0wY+g|<6x2SZBi*41R*Vax z!$+41jqWZsL?b%#bGSY6LbBZ0$g7RJlJvRCK+!&#Q85)NY&R*18d-K%t|q%#mzV;Q zHmW97JM2}5L_J(>Q>D8!tS@+C$`%_?gku~`}AFank;Uz_QX-e z1+zZzrwz}m=Nt>Zt4|n+BF;7DaZ&^ARSxtsE6u#wPyFrkxbaDJK5@YQxsP{MGucmY z!KSm-=a}`>HfZFHW}2HvRzEqpUtoIvlqq7YC;dc>J)t;oGgL`z;tW8aI+wqXejhdB%RqqD z42?adEk77n5}1$rP=uY{wlPaskvHbEv-|(vNZcbQC)^<(FxpNX>!m zmPjFASgt8f-!U7TwVCJtYWcrh%=c|(09oSy^YGE$L&*QJ`|$D3BS`$Uz4LJ2JlgpG zZ2W&V{y!W4pRdOM#}dy47lPLAKi%`eQED^ePXZsekW zeqo;Vt_Rh9A~gvx z6vEwUWv2m9eufvQzE|O^VC0o*TZCsv*PR6rkfZBUA89(2n}cejFJb`2Wz4DHDfKhw zd)6Oy$l)*Qd>VF6VMXU43UNGb;ahYx!9TQ~=F}@CX3pekTw9Fcc}l=L8;@s(yo{<4 zOVqMQ*YEpN)TY=T3!&rMS57jGK!~rQO&ym{d#2-2ZRoSPlSbxXBZ2RL2si4V^$lM! zqf@g2#U>zGAu*vdMdy6%0A6NUpCH$~5i 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 Date: Mon, 21 Sep 2015 14:46:43 -0400 Subject: [PATCH 15/17] Update python-ldap license text. Change blurb to match what Fedora/RH ship for this package. --- docs/licenses/python-ldap.txt | 26 ++++++++++---------------- 1 file changed, 10 insertions(+), 16 deletions(-) diff --git a/docs/licenses/python-ldap.txt b/docs/licenses/python-ldap.txt index 54202bc170..0aa20b4ea0 100644 --- a/docs/licenses/python-ldap.txt +++ b/docs/licenses/python-ldap.txt @@ -1,19 +1,13 @@ -Mentioning a Python style license was my fault for two reasons: +The python-ldap package is distributed under Python-style license. -1. It is an obstacle to incorporate python-ldap into Python's standard lib. +Standard disclaimer: + This software is made available by the author(s) to the public for free + and "as is". All users of this free software are solely and entirely + responsible for their own choice and use of this software for their + own purposes. By using this software, each user agrees that the + author(s) shall not be liable for damages of any kind in relation to + its use or performance. The author(s) do not warrant that this software + is fit for any purpose. -2. It's not precise enough as you already said. - -Mainly the term "Python style" was used to express that you should be able to -do whatever you're allowed to do with Python. - -The two authors (David and me) writing most of the code could agree on a quite -liberal open source license. But since we did not insist on written statements -to agree upon a license for the few contributions made by others we would have -to ask all contributors. Most of them are not subscribed to the list anymore I -guess. - -Frankly I'm not sure what to do to clarify this unfortunate situation. - -Ciao, Michael. +$Id: LICENCE,v 1.1 2002/09/18 18:51:22 stroeder Exp $ From c2d1698a9bff3d7f3e3fabeb529d5f42a37ce674 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Mon, 21 Sep 2015 22:30:37 -0400 Subject: [PATCH 16/17] Fix another name typo. --- docs/licenses/{ansicon.txt => ansiconv.txt} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename docs/licenses/{ansicon.txt => ansiconv.txt} (100%) diff --git a/docs/licenses/ansicon.txt b/docs/licenses/ansiconv.txt similarity index 100% rename from docs/licenses/ansicon.txt rename to docs/licenses/ansiconv.txt From 618d69ecbca6c1eca14d8e70f61bc3a3717829a4 Mon Sep 17 00:00:00 2001 From: James Laska Date: Tue, 22 Sep 2015 15:30:57 -0400 Subject: [PATCH 17/17] Updated package changelogs --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 266c6cad2f..b16ea64a95 100644 --- a/README.md +++ b/README.md @@ -31,6 +31,10 @@ Release History * 2.1.2, March 25, 2015 * 2.1.3, April 15, 2015 * 2.1.4, June 12, 2015 +* 2.2.0, July 14, 2015 +* 2.2.1, August 12, 2015 +* 2.2.2, August 19, 2015 +* 2.3.0, September 22, 2015 Any fixes should be applied on the appropriate release branch and be cherry-picked to master.