summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README-el5_baseline3
-rw-r--r--doc/Makefile325
-rw-r--r--doc/book-enea-linux-eclipse-open-source/doc/about.xml10
-rw-r--r--doc/book-enea-linux-eclipse-open-source/doc/book.xml21
-rw-r--r--doc/book-enea-linux-eclipse-open-source/doc/licenses.xml10443
-rw-r--r--doc/book-enea-linux-eclipse-open-source/swcomp.mk11
-rw-r--r--doc/book-enea-linux-open-source/doc/README4
-rw-r--r--doc/book-enea-linux-open-source/doc/about.xml12
-rw-r--r--doc/book-enea-linux-open-source/doc/book.xml14
-rw-r--r--doc/book-enea-linux-open-source/doc/licenses.xml1847
-rw-r--r--doc/book-enea-linux-open-source/swcomp.mk10
-rw-r--r--doc/book-enea-linux-release-info/doc/about_release.xml579
-rw-r--r--doc/book-enea-linux-release-info/doc/book.xml18
-rw-r--r--doc/book-enea-linux-release-info/doc/build_boot_template.xml26
-rw-r--r--doc/book-enea-linux-release-info/doc/extracted_info.xml18
-rw-r--r--doc/book-enea-linux-release-info/doc/extracted_info_template.xml10
-rw-r--r--doc/book-enea-linux-release-info/doc/getting_enea_linux.xml132
-rw-r--r--doc/book-enea-linux-release-info/doc/known_bugs_and_limitations.xml453
-rw-r--r--doc/book-enea-linux-release-info/doc/main_changes.xml54
-rw-r--r--doc/book-enea-linux-release-info/doc/prerequisites.xml49
-rw-r--r--doc/book-enea-linux-release-info/doc/targetscontain.xml867
-rw-r--r--doc/book-enea-linux-release-info/doc/targetscontain_template.xml12
-rw-r--r--doc/book-enea-linux-release-info/swcomp.mk10
-rw-r--r--doc/docsrc_common/pardoc-distro.xml40
-rw-r--r--doc/gen_known_issues.py91
-rw-r--r--doc/gen_pkgdiff.py222
-rw-r--r--doc/init.mk98
-rw-r--r--doc/initbuildboot.sh111
28 files changed, 14741 insertions, 749 deletions
diff --git a/README-el5_baseline b/README-el5_baseline
deleted file mode 100644
index d6f0d23..0000000
--- a/README-el5_baseline
+++ /dev/null
@@ -1,3 +0,0 @@
1The branch el5_baseline is used to store information that is used as baseline
2when describing changes to previous version. E.g. modifications in the set of
3supported packages.
diff --git a/doc/Makefile b/doc/Makefile
new file mode 100644
index 0000000..ca334b1
--- /dev/null
+++ b/doc/Makefile
@@ -0,0 +1,325 @@
1#Path to this subsystem's root directory
2SUBSYSROOT := $(shell pwd)
3
4# NOTE: MANIFESTHASH needs to be changed to final hash value or tag before a release
5MANIFESTHASH := krogoth
6MANIFEST := el_manifests-standard
7# An alternative is to clone the manifest repository and extract the list of target manifest files from that
8# We need all to get all README, but only first in alphabetic list is used to extract info from poky/
9TARGETDEFAULTXMLS := ls1021aiot/default.xml p2041rdb/default.xml qemuarm/default.xml qemuppc/default.xml qemux86/default.xml
10
11# Extract URL for repo command to use. It also uses MANIFESTHASH
12MANIFESTURL := git@git.enea.com:linux/$(MANIFEST).git
13# Extract profile name as word-after-hyphen in MANIFEST
14PROFILE_NAME := $(word 2,$(subst -, ,$(MANIFEST)))
15
16
17# ***************** Generic docbuild.git auto-clone + s_docbuild symlink ***
18# This also defines TMPCLONEROOT which optionally can be nondefault using BOOK_GLOBALCLONEROOT=yes or a path
19include init.mk
20
21# ****************** SUPPORT FOR TARGETS ***************************
22PATH_TARGETS = $(SUBSYSROOT)/s_targets
23#Git repositories to be cloned
24NAME_TARGETS := targets
25#Path to the directory under which repos shall be cloned.
26DOCBASEDIR=$(shell pwd)
27REPODIR=$(DOCBASEDIR)/..
28TMPCLONEROOT_TARGETS := $(TMPCLONEROOT)/$(NAME_TARGETS)
29
30
31# ******************* AutoGenerated chapter from template and target READMEs *******
32BUILDBOOT_XML := book-enea-linux-release-info/doc/build_boot_generated.xml
33BUILDBOOT_TEMPLATE := book-enea-linux-release-info/doc/build_boot_template.xml
34
35PKGDIFF_GEN_XML := book-enea-linux-release-info/doc/pkgdiff_generated.xml
36JIRA_ISSUES_GEN_XML := book-enea-linux-release-info/doc/jiraissues_generated.xml
37
38
39# -----------------------------------------------------
40#Path to DocBook make files and templates
41DOCBOOKMAKE = $(SUBSYSROOT)/s_docbuild/docmake
42DOCBOOKTEMPLATE = $(SUBSYSROOT)/s_docbuild/template
43
44#Path to the OLINK database including leading part of file name (will add -$(FORMAT).db)
45DOCBOOKOLINKDB_BASE = $(SUBSYSROOT)/s_docbuild/olinkdb/olink-targetdb-master
46
47DOCBOOK_OLINKS ?= yes
48DOCBOOK_FO_USEFOP ?= yes
49DOCBOOK_TO_BOOKDIR ?= yes
50DOCBOOK_CLEANTMP ?= yes
51
52#Components (books) in this subsystem. Now use all books found here
53# COMPONENTS := book-enea-linux-release-info book-enea-linux-open-source
54# COMPONENTS += book-enea-linux-eclipse-open-source
55COMPONENTS := $(shell ls -d book-enea* )
56
57# --------------------------------------------------------------
58ifeq ($(VERBOSE),yes)
59VERB :=
60else
61VERB := @
62endif
63MAKEFLAGS += --no-print-directory
64MAKEFLAGS += --directory $(SUBSYSROOT)
65MAKEFLAGS += --no-builtin-rules --no-builting-variables
66
67# Skip xml validation to make it possible to include xml files with unresolved links
68VALIDATE = no
69
70# BL_LABEL is either given on make command line or using BOOK_VER which have defaults below or a timestamp
71
72# ******************************************************************
73
74# Export all parameters including those on the command line
75export
76
77.PHONY: doc books docusage init initbuild inittargets initpardoc initbuildboot dist
78
79
80docusage:
81 @echo 'make docusage #Shows this help text'
82 @echo ' DOCBOOK_TOOLS_VERSIONS=yes #Displays DocBook tools versions in this machine'
83 @echo 'make doc #Builds the userdoc, does autoinit if needed'
84 @echo 'make dist BOOK_DIST_DIR=xx/doc #Builds all and copies results to BOOK_DIST_DIR'
85 @echo ' #Does not work with DOCBOOK_TO_BOOKDIR or BOOK_BUILD_DIR'
86 @echo ' #Currently EclipseHelp formated doc will not be in BOOK_DIST_DIR'
87 @echo ' # unless BOOK_DIST_ECLIPSE is set to yes'
88 @echo 'make init #Init all needed init* below'
89 @echo 'make initbuild #Init s_docbuild Docbook build system and central files'
90 @echo 'make inittargets #Init s_targets using repo tool Targets in this distro with poky'
91 @echo 'make initpardoc #Init s_docsrc_common using info from poky/'
92 @echo 'make initbuildboot #Init build_boot chapter from READMEs and template in release info'
93 @echo ' DOCBOOK_CLEANTMP=no #Option to keep temp files in doc/ and tmp/'
94 @echo ' BOOK_GLOBALCLONEROOT=yes #Option for all init above to clone all outside the doc directory'
95 @echo ' BOOK_GLOBALCLONEROOT=otherpath #Option for all init above to clone all'
96 @echo 'make pullbuild #git pull in s_docbuild'
97 @echo 'make pulltargets #git pull in s_targets. You need also initpardoc initbuildboot'
98 @echo 'make clean #Clean. Also clean s_* but not any external clones'
99 @echo ''
100 @echo 'Optional parameters for make doc:'
101 @echo ' COMP=<book-directory> #Component (book) to build. Book component names are book-*'
102 @echo ' #Default component/s:'
103 @echo ' $(COMPONENTS)'
104 @echo ' FORMAT=<format> #One of: pdf, html, or eclipse (Default all are built)'
105 @echo ' BL_LABEL=<baseline> #Becomes footer in book (default: from poky enea.conf MAJORMINOR'
106 @echo ' # and with profile name taken from the manifest repo name)'
107 @echo ' DOCBOOK_TO_BOOKDIR=no #(default yes) Avoid moving result to book directory'
108 @echo ' # and avoid erasing common doc and tmp directories'
109 @echo ' BOOKFORCE=yes #Force rebuilding (ignore dependency on file times or BL_LABEL)'
110 @echo ' # Dependency only works if common doc directory is kept'
111 @echo ' BOOKCONDITION="xx;yy;.." #Include XML elements with condition any of xx or yy'
112 @echo ' # (if rebuilding, BOOKFORCE=yes may be needed)'
113 @echo ' # Empty=only default. none=none, all=everything.'
114 @echo ' BOOKDEFAULTCONDITION #Default conditions, if no BOOKCONDITION. Used in book-*/swcomp.mk'
115 @echo ' SHOW_COMMENTS=yes #For proofread. Unhide <remark>..</remark> comments Only PDF'
116 @echo ' BOOKVERBOSE=yes #Verbose info building books'
117 @echo ' DOCBOOK_OLINKS=no #Avoid the olink database in Makefile (in book not using it)'
118 @echo ' DOCBOOK_OLINK_TARGETDB=only #Build a target db for this book (for links into it)'
119 @echo ' DOCBOOK_OLINK_TARGETDB=yes #Build a target db AND build the book'
120 @echo ' #Master olinkdb defined in this Makefile, one per generated format, is:'
121 @echo ' $(DOCBOOKOLINKDB_BASE)_*.db'
122 @echo ' Typical examples:'
123 @echo ' make doc Creates all books, all formats'
124 @echo ' make doc COMP=book-xxxx FORMAT=html'
125 @echo ' make doc COMP=book-xxxx FORMAT=pdf'
126 @echo ' make doc BL_LABEL="Version 1.2.3" Creates all with version in footers and front'
127
128 @echo ' Requires docbook-xsl-1.76.1 or later, docbook-xml 4.2, svg1.1, fop-1.0 + fop-hyph.jar'
129 @echo ' fop + the separate fop-hyph can be found together in package "libfop-java"'
130 @echo ' otherwise fetch fop-hyph.jar and place in same place as fop.jar'
131 @echo ' Requires libxml2-2.7.8 or later, libxslt-1.1.26 or later'
132 @echo ' Requires java machine to run fop (creating PDF). jar for optional FORMAT=eclipse'
133 @echo ' Without jar, the optional EclipseHelp format can not be built'
134 @echo ' tools_book_standalone.mk => libxml2, libxslt, and fop (and to catalog-el.xml)'
135 @echo ' catalog-el.xml => svg, docbook-xml, docbook-xsl'
136ifeq ($(DOCBOOK_TOOLS_VERSIONS),yes)
137 $(VERB)$(MAKE) -f $(DOCBOOKMAKE)/tools_book_standalone.mk book_tools_versions
138endif
139
140# We rely on make doing these in order left to right
141init: initbuild inittargets initpardoc initbuildboot initpkgdiff initissues
142pullall: pullbuild pulltargets
143
144# If no COMP, iterate over books-* in COMPONENTS with make doc
145ifeq ($(COMP),)
146doc:
147ifneq ($(filter book-%, $(COMPONENTS)),)
148 $(VERB)for comp in $(filter book-%, $(COMPONENTS)); do \
149 $(MAKE) doc COMP=$$comp; \
150 done
151endif
152
153else
154include $(SUBSYSROOT)/$(COMP)/swcomp.mk
155
156doc: books
157 @#
158endif
159
160dist: doc
161 @echo "Copying resulting built documents to $(BOOK_DIST_DIR)"
162 $(VERB)if [ "$(BOOK_DIST_DIR)" = "" ]; then echo "ERROR: Missing BOOK_DIST_DIR parameter, typically shall be xxx/doc"; exit 10; fi
163 $(VERB)if [ ! -d "`dirname $(BOOK_DIST_DIR)`" ]; then echo "ERROR: Missing parent for BOOK_DIST_DIR"; exit 10; fi
164 $(VERB)if [ -f "$(BOOK_DIST_DIR)/Makefile" ]; then echo "ERROR: Wrong BOOK_DIST_DIR, contains a Makefile?"; exit 10; fi
165 $(VERB)if [ ! -d "$(BOOK_DIST_DIR)" ]; then mkdir -p "$(BOOK_DIST_DIR)" ; fi
166 $(VERB)for book in $(COMPONENTS); do \
167 if ls -d $$book/book*.pdf >/dev/null 2>&1; then cp --preserve=timestamps $$book/book*.pdf "$(BOOK_DIST_DIR)" ; fi ; \
168 if ls -d $$book/html >/dev/null 2>&1; then cp -r --preserve=timestamps $$book/html "$(BOOK_DIST_DIR)" ; fi ; \
169 if [ "$(BOOK_DIST_ECLIPSE)" = "yes" ]; then \
170 if ls -d $$book/eclipse >/dev/null 2>&1; then cp -r --preserve=timestamps $$book/eclipse "$(BOOK_DIST_DIR)" ; fi ; \
171 fi ; \
172 done
173
174# Default FORMATs
175ifeq ($(FORMAT),)
176FORMAT=html pdf eclipse
177endif
178
179
180books: init
181# BOOKPACKAGES is defined in all book-*/swcomp.mk
182 $(VERB)DISTRO_VERSION_MAJOR=`egrep '"EneaLinux_DISTRO_VERSION_MAJOR"' s_docsrc_common/pardoc-distro.xml | sed 's/.*<phrase>//;s/<\/phrase>.*//'` ; \
183 DISTRO_VERSION_MINOR=`egrep '"EneaLinux_DISTRO_VERSION_MINOR"' s_docsrc_common/pardoc-distro.xml | sed 's/.*<phrase>//;s/<\/phrase>.*//'` ; \
184 BOOKVER="Profile $(PROFILE_NAME)-$$DISTRO_VERSION_MAJOR$$DISTRO_VERSION_MINOR" ; \
185 for book in $(BOOKPACKAGES); do \
186 for format in $(FORMAT); do \
187 $(MAKE) -f $(DOCBOOKMAKE)/make_docbook_standalone.mk BOOK=$$book FORMAT=$$format BOOK_VER="$$BOOKVER" books || exit 10; \
188 done ; \
189 done
190ifeq ($(DOCBOOK_TO_BOOKDIR),yes)
191 $(VERB)rm -rf doc tmp
192else
193ifeq ($(DOCBOOK_CLEANTMP),yes)
194# keep only doc/pdf/book-*.pdf doc/eclipse/plugins/com.enea.doc.book-* but delete doc/eclipse/plugins/com.enea.doc.book-*/done*
195 $(VERB)rm -rf tmp 2>/dev/null ; rm -rf doc/pdf/book-*/ ; rm -rf doc/eclipse/plugins/com.enea.doc.book-*/done* 2>/dev/null
196endif
197endif
198
199# cleaninit cleans ALL tmpcommon and all s_* and generated build_boot chapter xml
200clean: cleaninit cleanbuildboot cleanpkgdiff cleanissues
201 $(VERB)rm -rf doc tmp 2>/dev/null
202ifneq ($(filter book-%, $(COMPONENTS)),)
203 $(VERB)for comp in $(filter book-%, $(COMPONENTS)); do \
204 rm -rf $$comp/book*.pdf $$comp/html $$comp/eclipse 2>/dev/null; \
205 done
206 $(VERB)rm -rf doc tmp 2>/dev/null
207endif
208
209
210# ******************************************************************
211# ****************** SUPPORT FOR TARGETS ***************************
212inittargets: s_targets
213pulltargets:
214 $(VERB)if [ ! -d s_targets ]; then echo "ERROR: No s_targets exists?" ; exit 10 ; fi
215 $(VERB)cd s_targets; for targ in *; do ( cd $targ ; git pull )
216
217
218# -----------------------------------------
219
220# Use repo to auto-clone each target separately - VERY LARGE if there are many targets (5 targets => about 1.3 Gytes)
221
222s_targets: $(TMPCLONEROOT_TARGETS)
223 $(VERB)rm s_targets 2>/dev/null; ln -s $(TMPCLONEROOT_TARGETS) s_targets
224
225
226$(TMPCLONEROOT_TARGETS):
227 $(VERB)if [ ! -d "$(TMPCLONEROOT)" ] ; then mkdir -p "$(TMPCLONEROOT)" ; fi
228 $(VERB)if [ ! -d $(TMPCLONEROOT_TARGETS) ]; then mkdir -p $(TMPCLONEROOT_TARGETS) ; fi
229 @echo "**** Cloning all targets using repo tool into $(TMPCLONEROOT_TARGETS)"
230 @echo "TARGETDEFAULTXMLS is <$(TARGETDEFAULTXMLS)>"
231 $(VERB)for target_default_xml in $(TARGETDEFAULTXMLS); \
232 do \
233 TARGDIR=$(TMPCLONEROOT_TARGETS)/`dirname $$target_default_xml` ; \
234 echo "TARGDIR=<$$TARGDIR>" ; \
235 if [ ! -d $$TARGDIR ]; then mkdir -p $$TARGDIR ; fi ; \
236 ( cd $$TARGDIR ; \
237 echo "*** Doing repo init -u $(MANIFESTURL) -b $(MANIFESTHASH) -m $$target_default_xml ; repo sync"; \
238 repo init -u $(MANIFESTURL) -b $(MANIFESTHASH) -m $$target_default_xml ; repo sync ; \
239 ) ; \
240 done
241
242# ****************************************************************************
243# ******************** SUPPORT FOR dynamic pardoc with added parameters ******
244# pardoc-distro can contain MAJOR.MINOR-xxxxx keeping -xxxx when replacing MINOR.MINOR from enea.conf
245
246PATH_DOCSRC_COMMON = $(SUBSYSROOT)/s_docsrc_common
247NAME_DOCSRC_COMMON = docsrc_common
248TMPCLONEROOT_DOCSRC_COMMON := $(TMPCLONEROOT)/$(NAME_DOCSRC_COMMON)
249TMPPARDOC := $(TMPCLONEROOT_DOCSRC_COMMON)/pardoc-distro.xml
250
251initpardoc: s_docsrc_common
252
253cleanpardoc:
254 $(VERB)rm -rf $(TMPCLONEROOT_DOCSRC_COMMON) ; rm s_docsrc_common
255
256s_docsrc_common: $(TMPCLONEROOT_DOCSRC_COMMON)
257 $(VERB)rm s_docsrc_common 2>/dev/null; ln -s $(TMPCLONEROOT_DOCSRC_COMMON) s_docsrc_common
258
259$(TMPCLONEROOT_DOCSRC_COMMON): s_targets
260 $(VERB)if [ ! -d "$(TMPCLONEROOT)" ] ; then mkdir -p "$(TMPCLONEROOT)" ; fi
261 $(VERB)if [ ! -d $(TMPCLONEROOT_DOCSRC_COMMON) ]; then mkdir -p $(TMPCLONEROOT_DOCSRC_COMMON) ; fi
262 @echo "**** Copy and patch docsrc_common/ files to $(TMPCLONEROOT_DOCSRC_COMMON)"
263 @echo "*** Add parameters from first target's enea.conf and add manifest parameters"
264 $(VERB)FIRSTTARGET=`ls -1 s_targets/ | head -1`; \
265 ENEACONF=s_targets/$$FIRSTTARGET/poky/meta-el-common/conf/distro/enea.conf ; \
266 DISTRO_VERSION_MAJOR=`egrep '^DISTRO_VERSION_MAJOR' $$ENEACONF | sed 's/^[^"]*"//;s/".*//'` ; \
267 DISTRO_VERSION_MINOR=`egrep '^DISTRO_VERSION_MINOR' $$ENEACONF | sed 's/^[^"]*"//;s/".*//'` ; \
268 cat docsrc_common/pardoc-distro.xml | sed '/<\/section>/d' | \
269 sed '/<!ENTITY ENEA_LINUX_REL_VER/s/MAJOR.MINOR/'"$$DISTRO_VERSION_MAJOR$$DISTRO_VERSION_MINOR"'/' | \
270 sed '/<!ENTITY . common_poky_entities SYSTEM/s/s_targets\/[^\/]*\/poky/s_targets\/'"$$FIRSTTARGET"'\/poky/' >$(TMPPARDOC) ; \
271 echo "<para id=\"EneaLinux_DISTRO_VERSION_MAJOR\"><phrase>$$DISTRO_VERSION_MAJOR</phrase></para>" >>$(TMPPARDOC) ; \
272 echo "<para id=\"EneaLinux_DISTRO_VERSION_MINOR\"><phrase>$$DISTRO_VERSION_MINOR</phrase></para>" >>$(TMPPARDOC) ; \
273 echo "<para id=\"EneaLinux_PROFILE_NAME\"><phrase>$(PROFILE_NAME)</phrase></para>" >>$(TMPPARDOC) ; \
274 echo "<para id=\"EneaLinux_MANIFESTURL\"><phrase>$(MANIFESTURL)</phrase></para>" >>$(TMPPARDOC) ; \
275 echo "<para id=\"EneaLinux_MANIFESTHASH\"><phrase>$(MANIFESTHASH)</phrase></para>" >>$(TMPPARDOC) ; \
276 echo "</section>" >>$(TMPPARDOC)
277
278# ****************************************************************************
279# ***** Create XML chapter with build/boot commands from all README files in s_targets
280
281initbuildboot: $(BUILDBOOT_XML)
282
283cleanbuildboot:
284 $(VERB)rm -f $(BUILDBOOT_XML) 2>/dev/null
285
286
287$(BUILDBOOT_XML): s_targets $(BUILDBOOT_TEMPLATE)
288 @echo "**** Creating $(BUILDBOOT_XML) from READMEs"
289 $(VERB)INITBB_CMD=initbuildboot.sh ; \
290 if [ -f "$$INITBB_CMD" ]; then \
291 sh "$$INITBB_CMD" -xml $(BUILDBOOT_XML) -template $(BUILDBOOT_TEMPLATE) ; \
292 else \
293 echo "ERROR: Missing $$INITBB_CMD, can not create $(BUILDBOOT_XML)"; exit 10; \
294 fi
295
296# ****************************************************************************
297# ***** Create Package DIFF XML section
298
299initpkgdiff: $(PKGDIFF_GEN_XML)
300
301cleanpkgdiff:
302 $(VERB)rm -f $(PKGDIFF_GEN_XML) 2>/dev/null
303
304$(PKGDIFF_GEN_XML):
305 $(VERB)PREVIOUS_BL=`egrep '"prev_baseline"' docsrc_common/pardoc-distro.xml | sed 's/^.*<phrase>//;s/<\/phrase>.*$$//'` ; \
306 echo "**** Generating $(PKGDIFF_GEN_XML) compared to $$PREVIOUS_BL, using gen_pkgdiff.py" ; \
307 python gen_pkgdiff.py >$(PKGDIFF_GEN_XML)
308
309
310# ****************************************************************************
311# ***** Create Jira Issues XML section for the known bugs chapter
312
313.PHONY: $(JIRA_ISSUES_GEN_XML)
314# We want new issue list to be generated also at build, not only at init
315
316initissues: $(JIRA_ISSUES_GEN_XML)
317
318cleanissues:
319 $(VERB)rm -f $(JIRA_ISSUES_GEN_XML) 2>/dev/null
320
321$(JIRA_ISSUES_GEN_XML):
322 @echo "**** Generating $(JIRA_ISSUES_GEN_XML), fetching from Jira using gen_known_issues.py"
323 $(VERB)python gen_known_issues.py >$(JIRA_ISSUES_GEN_XML)
324
325# ****************************************************************************
diff --git a/doc/book-enea-linux-eclipse-open-source/doc/about.xml b/doc/book-enea-linux-eclipse-open-source/doc/about.xml
new file mode 100644
index 0000000..1eecece
--- /dev/null
+++ b/doc/book-enea-linux-eclipse-open-source/doc/about.xml
@@ -0,0 +1,10 @@
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
3"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
4<chapter id="enea-linux-eclipse-open-source-packages-and-licenses">
5 <title>About this Report</title>
6
7 <para>This document contains the open source and license information
8 pertaining to the <emphasis role="bold">Eclipse package</emphasis> provided
9 with Enea Linux.</para>
10</chapter> \ No newline at end of file
diff --git a/doc/book-enea-linux-eclipse-open-source/doc/book.xml b/doc/book-enea-linux-eclipse-open-source/doc/book.xml
new file mode 100644
index 0000000..b76e105
--- /dev/null
+++ b/doc/book-enea-linux-eclipse-open-source/doc/book.xml
@@ -0,0 +1,21 @@
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
3"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd" [
4<!ENTITY % local.common.attrib "xml:base CDATA #IMPLIED">
5]>
6<book id="book_enea_linux_eclipse_open_source">
7 <title><trademark class="registered">Enea</trademark> Linux Eclipse Open
8 Source Report</title>
9
10 <subtitle>Release Version <xi:include
11 href="../../s_docsrc_common/pardoc-distro.xml"
12 xmlns:xi="http://www.w3.org/2001/XInclude"
13 xpointer="element(EneaLinux_REL_VER/1)" /></subtitle>
14
15 <xi:include href="../../s_docbuild/template/docsrc_common/bookinfo_userdoc.xml"
16 xmlns:xi="http://www.w3.org/2001/XInclude" />
17
18 <xi:include href="about.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
19
20 <xi:include href="licenses.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
21</book> \ No newline at end of file
diff --git a/doc/book-enea-linux-eclipse-open-source/doc/licenses.xml b/doc/book-enea-linux-eclipse-open-source/doc/licenses.xml
new file mode 100644
index 0000000..b8087c5
--- /dev/null
+++ b/doc/book-enea-linux-eclipse-open-source/doc/licenses.xml
@@ -0,0 +1,10443 @@
1<chapter id="enea-linux-eclipse-open-source-licenses">
2 <title>Licenses</title>
3 <section id="enea-linux-eclipse-open-source-licenses-1">
4 <title>License 1</title>
5 <section>
6 <title>Source File(s)</title>
7 <itemizedlist spacing="compact">
8 <listitem>
9 <para>
10 plugins/extracted_jars/org.yocto.doc.user_1.4.0.201605091601/about.html
11 </para>
12 </listitem>
13 </itemizedlist>
14 </section>
15 <section>
16 <title>License Text</title>
17 <simplelist>
18 <member>## About This Content</member>
19 <member>&#160;</member>
20 <member>_December, 2012_</member>
21 <member>&#160;</member>
22 <member>### License</member>
23 <member>&#160;</member>
24 <member>Copyright (c) 2010 Intel, Inc. and others. All rights reserved. This program</member>
25 <member>and the accompanying materials are made available under the terms of the</member>
26 <member>Eclipse Public License v1.0 which accompanies this distribution, and is</member>
27 <member>available at </member>
28 <member>[ http://www.eclipse.org/legal/epl-v10.html</member>
29 <member>](http://www.eclipse.org/legal/epl-v10.html)</member>
30 <member>&#160;</member>
31 <member>### Third Party Content</member>
32 <member>&#160;</member>
33 <member>The Content includes items that have been sourced from the Yocto project as</member>
34 <member>set out below. If you did not receive this Content directly from the Linux</member>
35 <member>Foundation, the following is provided for informational purposes only, and you</member>
36 <member>should look to the Redistributor's license for terms and conditions of use.</member>
37 <member>&#160;</member>
38 <member>** Yocto Project Quick Start ** </member>
39 <member> </member>
40 <member>This short document lets you get started with the Yocto Project quickly and</member>
41 <member>start building an image. </member>
42 <member> </member>
43 <member>_License:_ [ http://creativecommons.org/licenses/by-sa/2.0/uk/legalcode</member>
44 <member>](http://creativecommons.org/licenses/by-sa/2.0/uk/legalcode) </member>
45 <member>_Source Code Repository:_ [ git://git.yoctoproject.org/yocto-docs</member>
46 <member>](git://git.yoctoproject.org/yocto-docs) </member>
47 <member>_Commit:_ 0b9ee8da66ff81e0724465f18b0323f1216cb9fa </member>
48 <member> </member>
49 <member>** Yocto Project Application Developer's Guide: ** </member>
50 <member> </member>
51 <member>This manual shows you how to setup and use the Application Development Toolkit</member>
52 <member>(ADT) and stand-alone cross-development toolchains so you can develop user-</member>
53 <member>space applications. </member>
54 <member> </member>
55 <member>_License:_ [ http://creativecommons.org/licenses/by-sa/2.0/uk/legalcode</member>
56 <member>](http://creativecommons.org/licenses/by-sa/2.0/uk/legalcode) </member>
57 <member>_Source Code Repository:_ [ git://git.yoctoproject.org/yocto-docs</member>
58 <member>](git://git.yoctoproject.org/yocto-docs) </member>
59 <member>_Commit:_ 0b9ee8da66ff81e0724465f18b0323f1216cb9fa </member>
60 <member> </member>
61 <member>** Yocto Project Development Manual: ** </member>
62 <member> </member>
63 <member>This manual describes how to use the Yocto Project to develop embedded Linux</member>
64 <member>images and user-space applications to run on targeted devices. </member>
65 <member> </member>
66 <member>_License:_ [ http://creativecommons.org/licenses/by-sa/2.0/uk/legalcode</member>
67 <member>](http://creativecommons.org/licenses/by-sa/2.0/uk/legalcode) </member>
68 <member>_Source Code Repository:_ [ git://git.yoctoproject.org/yocto-docs</member>
69 <member>](git://git.yoctoproject.org/yocto-docs) </member>
70 <member>_Commit:_ 0b9ee8da66ff81e0724465f18b0323f1216cb9fa </member>
71 <member> </member>
72 <member>** Yocto Project Reference Manual: ** </member>
73 <member> </member>
74 <member>This manual is the complete reference guide to the Poky component. It also</member>
75 <member>contains a chapter on Board Support Package (BSP) development. </member>
76 <member> </member>
77 <member>_License:_ [ http://creativecommons.org/licenses/by-sa/2.0/uk/legalcode</member>
78 <member>](http://creativecommons.org/licenses/by-sa/2.0/uk/legalcode) </member>
79 <member>_Source Code Repository:_ [ git://git.yoctoproject.org/yocto-docs</member>
80 <member>](git://git.yoctoproject.org/yocto-docs) </member>
81 <member>_Commit:_ 0b9ee8da66ff81e0724465f18b0323f1216cb9fa </member>
82 <member> </member>
83 <member>** Yocto Project Board Support Package (BSP) Developer's Guide: ** </member>
84 <member> </member>
85 <member>This brief document defines a structure for BSP components. Having a commonly</member>
86 <member>understood layout encourages standardization. </member>
87 <member> </member>
88 <member>_License:_ [ http://creativecommons.org/licenses/by-sa/2.0/uk/legalcode</member>
89 <member>](http://creativecommons.org/licenses/by-sa/2.0/uk/legalcode) </member>
90 <member>_Source Code Repository:_ [ git://git.yoctoproject.org/yocto-docs</member>
91 <member>](git://git.yoctoproject.org/yocto-docs) </member>
92 <member>_Commit:_ 0b9ee8da66ff81e0724465f18b0323f1216cb9fa </member>
93 <member> </member>
94 <member>** Yocto Project Linux Kernel Development Manual: ** </member>
95 <member> </member>
96 <member>This document describes the architecture of the Yocto Project kernel and</member>
97 <member>provides some work flow examples. </member>
98 <member> </member>
99 <member>_License:_ [ http://creativecommons.org/licenses/by-sa/2.0/uk/legalcode</member>
100 <member>](http://creativecommons.org/licenses/by-sa/2.0/uk/legalcode) </member>
101 <member>_Source Code Repository:_ [ git://git.yoctoproject.org/yocto-docs</member>
102 <member>](git://git.yoctoproject.org/yocto-docs) </member>
103 <member>_Commit:_ 0b9ee8da66ff81e0724465f18b0323f1216cb9fa </member>
104 <member> </member>
105 <member>** Yocto Project Profiling and Tracing Manual: ** </member>
106 <member> </member>
107 <member>This manual presents a set of common and generally useful tracing and</member>
108 <member>profiling schemes along with their application (as appropriate) to each tool. </member>
109 <member> </member>
110 <member>_License:_ [ http://creativecommons.org/licenses/by-sa/2.0/uk/legalcode</member>
111 <member>](http://creativecommons.org/licenses/by-sa/2.0/uk/legalcode) </member>
112 <member>_Source Code Repository:_ [ git://git.yoctoproject.org/yocto-docs</member>
113 <member>](git://git.yoctoproject.org/yocto-docs) </member>
114 <member>_Commit:_ 0b9ee8da66ff81e0724465f18b0323f1216cb9fa</member>
115 </simplelist>
116 </section>
117 </section>
118 <section id="enea-linux-eclipse-open-source-licenses-2">
119 <title>License 2</title>
120 <section>
121 <title>Source File(s)</title>
122 <itemizedlist spacing="compact">
123 <listitem>
124 <para>
125 plugins/extracted_jars/org.w3c.dom.smil_1.0.1.v200903091627/about_files/LICENSE-W3C-20021231.html
126 </para>
127 </listitem>
128 <listitem>
129 <para>
130 plugins/extracted_jars/org.w3c.dom.smil.source_1.0.1.v200903091627/about_files/LICENSE-W3C-20021231.html
131 </para>
132 </listitem>
133 </itemizedlist>
134 </section>
135 <section>
136 <title>License Text</title>
137 <simplelist>
138 <member># W3C(R) SOFTWARE NOTICE AND LICENSE</member>
139 <member>&#160;</member>
140 <member>### &lt;http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231&gt;</member>
141 <member>&#160;</member>
142 <member>This work (and included software, documentation such as READMEs, or other</member>
143 <member>related items) is being provided by the copyright holders under the following</member>
144 <member>license. By obtaining, using and/or copying this work, you (the licensee)</member>
145 <member>agree that you have read, understood, and will comply with the following terms</member>
146 <member>and conditions.</member>
147 <member>&#160;</member>
148 <member>Permission to copy, modify, and distribute this software and its</member>
149 <member>documentation, with or without modification, for any purpose and without fee</member>
150 <member>or royalty is hereby granted, provided that you include the following on ALL</member>
151 <member>copies of the software and documentation or portions thereof, including</member>
152 <member>modifications:</member>
153 <member>&#160;</member>
154 <member> 1. The full text of this NOTICE in a location viewable to users of the redistributed or derivative work.</member>
155 <member> 2. Any pre-existing intellectual property disclaimers, notices, or terms and conditions. If none exist, the [W3C Software Short Notice](copyright-software-short-notice-20021231.html) should be included (hypertext is preferred, text is permitted) within the body of any redistributed or derivative code.</member>
156 <member> 3. Notice of any changes or modifications to the files, including the date changes were made. (We recommend you provide URIs to the location from which the code is derived.)</member>
157 <member>&#160;</member>
158 <member>THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS</member>
159 <member>MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT</member>
160 <member>LIMITED TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR</member>
161 <member>PURPOSE OR THAT THE USE OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE ANY</member>
162 <member>THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.</member>
163 <member>&#160;</member>
164 <member>COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR</member>
165 <member>CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENTATION.</member>
166 <member>&#160;</member>
167 <member>The name and trademarks of copyright holders may NOT be used in advertising or</member>
168 <member>publicity pertaining to the software without specific, written prior</member>
169 <member>permission. Title to copyright in this software and any associated</member>
170 <member>documentation will at all times remain with copyright holders.</member>
171 <member>&#160;</member>
172 <member>____________________________________</member>
173 <member>&#160;</member>
174 <member>This formulation of W3C's notice and license became active on December 31</member>
175 <member>2002\. This version removes the copyright ownership notice such that this</member>
176 <member>license can be used with materials other than those owned by the W3C, reflects</member>
177 <member>that ERCIM is now a host of the W3C, includes references to this specific</member>
178 <member>dated version of the license, and removes the ambiguous grant of "use".</member>
179 <member>Otherwise, this version is the same as the [previous</member>
180 <member>version](http://www.w3.org/Consortium/Legal/copyright-software-19980720) and</member>
181 <member>is written so as to preserve the [Free Software Foundation's assessment of GPL</member>
182 <member>compatibility](http://www.gnu.org/philosophy/license-</member>
183 <member>list.html#GPLCompatibleLicenses) and [OSI's</member>
184 <member>certification](http://www.opensource.org/licenses/W3C.php) under the [Open</member>
185 <member>Source Definition](http://www.opensource.org/docs/definition.php). Please see</member>
186 <member>our [Copyright FAQ](http://www.w3.org/Consortium/Legal/IPR-FAQ) for common</member>
187 <member>questions about using materials from our site, including specific terms and</member>
188 <member>conditions for packages like libwww, Amaya, and Jigsaw. Other questions about</member>
189 <member>this notice can be directed to [site-policy@w3.org](mailto:site-</member>
190 <member>policy@w3.org). </member>
191 <member>&#160;</member>
192 <member>&#160;</member>
193 <member>Joseph Reagle &lt;[site-policy@w3.org&gt;](mailto:site-policy@w3.org)</member>
194 <member>&#160;</member>
195 <member>Last revised $Id: LICENSE-W3C-20021231.html,v 1.2.2.2 2009/02/27 15:52:05</member>
196 <member>cdamus Exp $</member>
197 </simplelist>
198 </section>
199 </section>
200 <section id="enea-linux-eclipse-open-source-licenses-3">
201 <title>License 3</title>
202 <section>
203 <title>Source File(s)</title>
204 <itemizedlist spacing="compact">
205 <listitem>
206 <para>
207 plugins/extracted_jars/org.objectweb.asm.tree.source_5.0.1.v201404251740/about_files/LICENSE.txt
208 </para>
209 </listitem>
210 <listitem>
211 <para>
212 plugins/extracted_jars/org.objectweb.asm.source_5.0.1.v201404251740/about_files/LICENSE.txt
213 </para>
214 </listitem>
215 <listitem>
216 <para>
217 plugins/extracted_jars/org.objectweb.asm_5.0.1.v201404251740/about_files/LICENSE.txt
218 </para>
219 </listitem>
220 <listitem>
221 <para>
222 plugins/extracted_jars/org.objectweb.asm.tree_5.0.1.v201404251740/about_files/LICENSE.txt
223 </para>
224 </listitem>
225 </itemizedlist>
226 </section>
227 <section>
228 <title>License Text</title>
229 <simplelist>
230 <member>Copyright (c) 2000-2014 INRIA, France Telecom</member>
231 <member>All rights reserved.</member>
232 <member>&#160;</member>
233 <member>Redistribution and use in source and binary forms, with or without</member>
234 <member>modification, are permitted provided that the following conditions</member>
235 <member>are met:</member>
236 <member>&#160;</member>
237 <member>1. Redistributions of source code must retain the above copyright</member>
238 <member> notice, this list of conditions and the following disclaimer.</member>
239 <member>&#160;</member>
240 <member>2. Redistributions in binary form must reproduce the above copyright</member>
241 <member> notice, this list of conditions and the following disclaimer in the</member>
242 <member> documentation and/or other materials provided with the distribution.</member>
243 <member>&#160;</member>
244 <member>3. Neither the name of the copyright holders nor the names of its</member>
245 <member> contributors may be used to endorse or promote products derived from</member>
246 <member> this software without specific prior written permission.</member>
247 <member>&#160;</member>
248 <member>THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"</member>
249 <member>AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE</member>
250 <member>IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE</member>
251 <member>ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE</member>
252 <member>LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR</member>
253 <member>CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF</member>
254 <member>SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS</member>
255 <member>INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN</member>
256 <member>CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)</member>
257 <member>ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF</member>
258 <member>THE POSSIBILITY OF SUCH DAMAGE.</member>
259 </simplelist>
260 </section>
261 </section>
262 <section id="enea-linux-eclipse-open-source-licenses-4">
263 <title>License 4</title>
264 <section>
265 <title>Source File(s)</title>
266 <itemizedlist spacing="compact">
267 <listitem>
268 <para>
269 plugins/extracted_jars/com.jcraft.jsch.source_0.1.51.v201410302000/about_files/LICENSE.txt
270 </para>
271 </listitem>
272 <listitem>
273 <para>
274 plugins/extracted_jars/com.jcraft.jsch_0.1.51.v201410302000/about_files/LICENSE.txt
275 </para>
276 </listitem>
277 </itemizedlist>
278 </section>
279 <section>
280 <title>License Text</title>
281 <simplelist>
282 <member>JSch 0.0.* was released under the GNU LGPL license. Later, we have switched </member>
283 <member>over to a BSD-style license. </member>
284 <member>&#160;</member>
285 <member>------------------------------------------------------------------------------</member>
286 <member>Copyright (c) 2002-2012 Atsuhiko Yamanaka, JCraft,Inc. </member>
287 <member>All rights reserved.</member>
288 <member>&#160;</member>
289 <member>Redistribution and use in source and binary forms, with or without</member>
290 <member>modification, are permitted provided that the following conditions are met:</member>
291 <member>&#160;</member>
292 <member> 1. Redistributions of source code must retain the above copyright notice,</member>
293 <member> this list of conditions and the following disclaimer.</member>
294 <member>&#160;</member>
295 <member> 2. Redistributions in binary form must reproduce the above copyright </member>
296 <member> notice, this list of conditions and the following disclaimer in </member>
297 <member> the documentation and/or other materials provided with the distribution.</member>
298 <member>&#160;</member>
299 <member> 3. The names of the authors may not be used to endorse or promote products</member>
300 <member> derived from this software without specific prior written permission.</member>
301 <member>&#160;</member>
302 <member>THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,</member>
303 <member>INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND</member>
304 <member>FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JCRAFT,</member>
305 <member>INC. OR ANY CONTRIBUTORS TO THIS SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT,</member>
306 <member>INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT</member>
307 <member>LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,</member>
308 <member>OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF</member>
309 <member>LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING</member>
310 <member>NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,</member>
311 <member>EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</member>
312 </simplelist>
313 </section>
314 </section>
315 <section id="enea-linux-eclipse-open-source-licenses-5">
316 <title>License 5</title>
317 <section>
318 <title>Source File(s)</title>
319 <itemizedlist spacing="compact">
320 <listitem>
321 <para>
322 plugins/extracted_jars/org.w3c.css.sac_1.3.1.v200903091627/about_files/LICENSE.sax.txt
323 </para>
324 </listitem>
325 </itemizedlist>
326 </section>
327 <section>
328 <title>License Text</title>
329 <simplelist>
330 <member>xml-commons/java/external/LICENSE.sax.txt $Id: LICENSE.sax.txt,v 1.2.2.2 2009/02/27 15:48:32 cdamus Exp $</member>
331 <member>&#160;</member>
332 <member>&#160;</member>
333 <member>This license came from: http://www.megginson.com/SAX/copying.html</member>
334 <member> However please note future versions of SAX may be covered </member>
335 <member> under http://saxproject.org/?selected=pd</member>
336 <member>&#160;</member>
337 <member>&#160;</member>
338 <member>This page is now out of date -- see the new SAX site at </member>
339 <member>http://www.saxproject.org/ for more up-to-date</member>
340 <member>releases and other information. Please change your bookmarks.</member>
341 <member>&#160;</member>
342 <member>&#160;</member>
343 <member>SAX2 is Free!</member>
344 <member>&#160;</member>
345 <member>I hereby abandon any property rights to SAX 2.0 (the Simple API for</member>
346 <member>XML), and release all of the SAX 2.0 source code, compiled code, and</member>
347 <member>documentation contained in this distribution into the Public Domain.</member>
348 <member>SAX comes with NO WARRANTY or guarantee of fitness for any</member>
349 <member>purpose.</member>
350 <member>&#160;</member>
351 <member>David Megginson, david@megginson.com</member>
352 <member>2000-05-05</member>
353 </simplelist>
354 </section>
355 </section>
356 <section id="enea-linux-eclipse-open-source-licenses-6">
357 <title>License 6</title>
358 <section>
359 <title>Source File(s)</title>
360 <itemizedlist spacing="compact">
361 <listitem>
362 <para>
363 plugins/extracted_jars/org.apache.httpcomponents.httpclient_4.3.6.v201411290715/about_files/LICENSE.txt
364 </para>
365 </listitem>
366 </itemizedlist>
367 </section>
368 <section>
369 <title>License Text</title>
370 <simplelist>
371 <member> Apache License</member>
372 <member> Version 2.0, January 2004</member>
373 <member> http://www.apache.org/licenses/</member>
374 <member>&#160;</member>
375 <member> TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION</member>
376 <member>&#160;</member>
377 <member> 1. Definitions.</member>
378 <member>&#160;</member>
379 <member> "License" shall mean the terms and conditions for use, reproduction,</member>
380 <member> and distribution as defined by Sections 1 through 9 of this document.</member>
381 <member>&#160;</member>
382 <member> "Licensor" shall mean the copyright owner or entity authorized by</member>
383 <member> the copyright owner that is granting the License.</member>
384 <member>&#160;</member>
385 <member> "Legal Entity" shall mean the union of the acting entity and all</member>
386 <member> other entities that control, are controlled by, or are under common</member>
387 <member> control with that entity. For the purposes of this definition,</member>
388 <member> "control" means (i) the power, direct or indirect, to cause the</member>
389 <member> direction or management of such entity, whether by contract or</member>
390 <member> otherwise, or (ii) ownership of fifty percent (50%) or more of the</member>
391 <member> outstanding shares, or (iii) beneficial ownership of such entity.</member>
392 <member>&#160;</member>
393 <member> "You" (or "Your") shall mean an individual or Legal Entity</member>
394 <member> exercising permissions granted by this License.</member>
395 <member>&#160;</member>
396 <member> "Source" form shall mean the preferred form for making modifications,</member>
397 <member> including but not limited to software source code, documentation</member>
398 <member> source, and configuration files.</member>
399 <member>&#160;</member>
400 <member> "Object" form shall mean any form resulting from mechanical</member>
401 <member> transformation or translation of a Source form, including but</member>
402 <member> not limited to compiled object code, generated documentation,</member>
403 <member> and conversions to other media types.</member>
404 <member>&#160;</member>
405 <member> "Work" shall mean the work of authorship, whether in Source or</member>
406 <member> Object form, made available under the License, as indicated by a</member>
407 <member> copyright notice that is included in or attached to the work</member>
408 <member> (an example is provided in the Appendix below).</member>
409 <member>&#160;</member>
410 <member> "Derivative Works" shall mean any work, whether in Source or Object</member>
411 <member> form, that is based on (or derived from) the Work and for which the</member>
412 <member> editorial revisions, annotations, elaborations, or other modifications</member>
413 <member> represent, as a whole, an original work of authorship. For the purposes</member>
414 <member> of this License, Derivative Works shall not include works that remain</member>
415 <member> separable from, or merely link (or bind by name) to the interfaces of,</member>
416 <member> the Work and Derivative Works thereof.</member>
417 <member>&#160;</member>
418 <member> "Contribution" shall mean any work of authorship, including</member>
419 <member> the original version of the Work and any modifications or additions</member>
420 <member> to that Work or Derivative Works thereof, that is intentionally</member>
421 <member> submitted to Licensor for inclusion in the Work by the copyright owner</member>
422 <member> or by an individual or Legal Entity authorized to submit on behalf of</member>
423 <member> the copyright owner. For the purposes of this definition, "submitted"</member>
424 <member> means any form of electronic, verbal, or written communication sent</member>
425 <member> to the Licensor or its representatives, including but not limited to</member>
426 <member> communication on electronic mailing lists, source code control systems,</member>
427 <member> and issue tracking systems that are managed by, or on behalf of, the</member>
428 <member> Licensor for the purpose of discussing and improving the Work, but</member>
429 <member> excluding communication that is conspicuously marked or otherwise</member>
430 <member> designated in writing by the copyright owner as "Not a Contribution."</member>
431 <member>&#160;</member>
432 <member> "Contributor" shall mean Licensor and any individual or Legal Entity</member>
433 <member> on behalf of whom a Contribution has been received by Licensor and</member>
434 <member> subsequently incorporated within the Work.</member>
435 <member>&#160;</member>
436 <member> 2. Grant of Copyright License. Subject to the terms and conditions of</member>
437 <member> this License, each Contributor hereby grants to You a perpetual,</member>
438 <member> worldwide, non-exclusive, no-charge, royalty-free, irrevocable</member>
439 <member> copyright license to reproduce, prepare Derivative Works of,</member>
440 <member> publicly display, publicly perform, sublicense, and distribute the</member>
441 <member> Work and such Derivative Works in Source or Object form.</member>
442 <member>&#160;</member>
443 <member> 3. Grant of Patent License. Subject to the terms and conditions of</member>
444 <member> this License, each Contributor hereby grants to You a perpetual,</member>
445 <member> worldwide, non-exclusive, no-charge, royalty-free, irrevocable</member>
446 <member> (except as stated in this section) patent license to make, have made,</member>
447 <member> use, offer to sell, sell, import, and otherwise transfer the Work,</member>
448 <member> where such license applies only to those patent claims licensable</member>
449 <member> by such Contributor that are necessarily infringed by their</member>
450 <member> Contribution(s) alone or by combination of their Contribution(s)</member>
451 <member> with the Work to which such Contribution(s) was submitted. If You</member>
452 <member> institute patent litigation against any entity (including a</member>
453 <member> cross-claim or counterclaim in a lawsuit) alleging that the Work</member>
454 <member> or a Contribution incorporated within the Work constitutes direct</member>
455 <member> or contributory patent infringement, then any patent licenses</member>
456 <member> granted to You under this License for that Work shall terminate</member>
457 <member> as of the date such litigation is filed.</member>
458 <member>&#160;</member>
459 <member> 4. Redistribution. You may reproduce and distribute copies of the</member>
460 <member> Work or Derivative Works thereof in any medium, with or without</member>
461 <member> modifications, and in Source or Object form, provided that You</member>
462 <member> meet the following conditions:</member>
463 <member>&#160;</member>
464 <member> (a) You must give any other recipients of the Work or</member>
465 <member> Derivative Works a copy of this License; and</member>
466 <member>&#160;</member>
467 <member> (b) You must cause any modified files to carry prominent notices</member>
468 <member> stating that You changed the files; and</member>
469 <member>&#160;</member>
470 <member> (c) You must retain, in the Source form of any Derivative Works</member>
471 <member> that You distribute, all copyright, patent, trademark, and</member>
472 <member> attribution notices from the Source form of the Work,</member>
473 <member> excluding those notices that do not pertain to any part of</member>
474 <member> the Derivative Works; and</member>
475 <member>&#160;</member>
476 <member> (d) If the Work includes a "NOTICE" text file as part of its</member>
477 <member> distribution, then any Derivative Works that You distribute must</member>
478 <member> include a readable copy of the attribution notices contained</member>
479 <member> within such NOTICE file, excluding those notices that do not</member>
480 <member> pertain to any part of the Derivative Works, in at least one</member>
481 <member> of the following places: within a NOTICE text file distributed</member>
482 <member> as part of the Derivative Works; within the Source form or</member>
483 <member> documentation, if provided along with the Derivative Works; or,</member>
484 <member> within a display generated by the Derivative Works, if and</member>
485 <member> wherever such third-party notices normally appear. The contents</member>
486 <member> of the NOTICE file are for informational purposes only and</member>
487 <member> do not modify the License. You may add Your own attribution</member>
488 <member> notices within Derivative Works that You distribute, alongside</member>
489 <member> or as an addendum to the NOTICE text from the Work, provided</member>
490 <member> that such additional attribution notices cannot be construed</member>
491 <member> as modifying the License.</member>
492 <member>&#160;</member>
493 <member> You may add Your own copyright statement to Your modifications and</member>
494 <member> may provide additional or different license terms and conditions</member>
495 <member> for use, reproduction, or distribution of Your modifications, or</member>
496 <member> for any such Derivative Works as a whole, provided Your use,</member>
497 <member> reproduction, and distribution of the Work otherwise complies with</member>
498 <member> the conditions stated in this License.</member>
499 <member>&#160;</member>
500 <member> 5. Submission of Contributions. Unless You explicitly state otherwise,</member>
501 <member> any Contribution intentionally submitted for inclusion in the Work</member>
502 <member> by You to the Licensor shall be under the terms and conditions of</member>
503 <member> this License, without any additional terms or conditions.</member>
504 <member> Notwithstanding the above, nothing herein shall supersede or modify</member>
505 <member> the terms of any separate license agreement you may have executed</member>
506 <member> with Licensor regarding such Contributions.</member>
507 <member>&#160;</member>
508 <member> 6. Trademarks. This License does not grant permission to use the trade</member>
509 <member> names, trademarks, service marks, or product names of the Licensor,</member>
510 <member> except as required for reasonable and customary use in describing the</member>
511 <member> origin of the Work and reproducing the content of the NOTICE file.</member>
512 <member>&#160;</member>
513 <member> 7. Disclaimer of Warranty. Unless required by applicable law or</member>
514 <member> agreed to in writing, Licensor provides the Work (and each</member>
515 <member> Contributor provides its Contributions) on an "AS IS" BASIS,</member>
516 <member> WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or</member>
517 <member> implied, including, without limitation, any warranties or conditions</member>
518 <member> of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A</member>
519 <member> PARTICULAR PURPOSE. You are solely responsible for determining the</member>
520 <member> appropriateness of using or redistributing the Work and assume any</member>
521 <member> risks associated with Your exercise of permissions under this License.</member>
522 <member>&#160;</member>
523 <member> 8. Limitation of Liability. In no event and under no legal theory,</member>
524 <member> whether in tort (including negligence), contract, or otherwise,</member>
525 <member> unless required by applicable law (such as deliberate and grossly</member>
526 <member> negligent acts) or agreed to in writing, shall any Contributor be</member>
527 <member> liable to You for damages, including any direct, indirect, special,</member>
528 <member> incidental, or consequential damages of any character arising as a</member>
529 <member> result of this License or out of the use or inability to use the</member>
530 <member> Work (including but not limited to damages for loss of goodwill,</member>
531 <member> work stoppage, computer failure or malfunction, or any and all</member>
532 <member> other commercial damages or losses), even if such Contributor</member>
533 <member> has been advised of the possibility of such damages.</member>
534 <member>&#160;</member>
535 <member> 9. Accepting Warranty or Additional Liability. While redistributing</member>
536 <member> the Work or Derivative Works thereof, You may choose to offer,</member>
537 <member> and charge a fee for, acceptance of support, warranty, indemnity,</member>
538 <member> or other liability obligations and/or rights consistent with this</member>
539 <member> License. However, in accepting such obligations, You may act only</member>
540 <member> on Your own behalf and on Your sole responsibility, not on behalf</member>
541 <member> of any other Contributor, and only if You agree to indemnify,</member>
542 <member> defend, and hold each Contributor harmless for any liability</member>
543 <member> incurred by, or claims asserted against, such Contributor by reason</member>
544 <member> of your accepting any such warranty or additional liability.</member>
545 <member>&#160;</member>
546 <member> END OF TERMS AND CONDITIONS</member>
547 </simplelist>
548 </section>
549 </section>
550 <section id="enea-linux-eclipse-open-source-licenses-7">
551 <title>License 7</title>
552 <section>
553 <title>Source File(s)</title>
554 <itemizedlist spacing="compact">
555 <listitem>
556 <para>
557 plugins/extracted_jars/org.apache.ant.source_1.9.4.v201504302020/about_files/SAX-LICENSE.html
558 </para>
559 </listitem>
560 <listitem>
561 <para>
562 plugins/org.apache.ant_1.9.4.v201504302020/about_files/SAX-LICENSE.html
563 </para>
564 </listitem>
565 </itemizedlist>
566 </section>
567 <section>
568 <title>License Text</title>
569 <simplelist>
570 <member>## Origin</member>
571 <member>&#160;</member>
572 <member>This page was originally taken from: &lt;http://www.saxproject.org/copying.html&gt;</member>
573 <member>with the navigation links remove from the left-hand-side of the page.</member>
574 <member>&#160;</member>
575 <member>## Copyright Status</member>
576 <member>&#160;</member>
577 <member>_SAX is free!_</member>
578 <member>&#160;</member>
579 <member>In fact, it's not possible to own a license to SAX, since it's been placed in</member>
580 <member>the public domain.</member>
581 <member>&#160;</member>
582 <member>## No Warranty</member>
583 <member>&#160;</member>
584 <member>Because SAX is released to the public domain, there is no warranty for the</member>
585 <member>design or for the software implementation, to the extent permitted by</member>
586 <member>applicable law. Except when otherwise stated in writing the copyright holders</member>
587 <member>and/or other parties provide SAX "as is" without warranty of any kind, either</member>
588 <member>expressed or implied, including, but not limited to, the implied warranties of</member>
589 <member>merchantability and fitness for a particular purpose. The entire risk as to</member>
590 <member>the quality and performance of SAX is with you. Should SAX prove defective,</member>
591 <member>you assume the cost of all necessary servicing, repair or correction.</member>
592 <member>&#160;</member>
593 <member>In no event unless required by applicable law or agreed to in writing will any</member>
594 <member>copyright holder, or any other party who may modify and/or redistribute SAX,</member>
595 <member>be liable to you for damages, including any general, special, incidental or</member>
596 <member>consequential damages arising out of the use or inability to use SAX</member>
597 <member>(including but not limited to loss of data or data being rendered inaccurate</member>
598 <member>or losses sustained by you or third parties or a failure of the SAX to operate</member>
599 <member>with any other programs), even if such holder or other party has been advised</member>
600 <member>of the possibility of such damages.</member>
601 <member>&#160;</member>
602 <member>## Copyright Disclaimers</member>
603 <member>&#160;</member>
604 <member>This page includes statements to that effect by David Megginson, who would</member>
605 <member>have been able to claim copyright for the original work.</member>
606 <member>&#160;</member>
607 <member>### SAX 1.0</member>
608 <member>&#160;</member>
609 <member>Version 1.0 of the Simple API for XML (SAX), created collectively by the</member>
610 <member>membership of the XML-DEV mailing list, is hereby released into the public</member>
611 <member>domain.</member>
612 <member>&#160;</member>
613 <member>No one owns SAX: you may use it freely in both commercial and non-commercial</member>
614 <member>applications, bundle it with your software distribution, include it on a CD-</member>
615 <member>ROM, list the source code in a book, mirror the documentation at your own web</member>
616 <member>site, or use it in any other way you see fit.</member>
617 <member>&#160;</member>
618 <member>_David Megginson, [Megginson Technologies Ltd.](http://www.megginson.com/) </member>
619 <member>1998-05-11_</member>
620 <member>&#160;</member>
621 <member>### SAX 2.0</member>
622 <member>&#160;</member>
623 <member>I hereby abandon any property rights to SAX 2.0 (the Simple API for XML), and</member>
624 <member>release all of the SAX 2.0 source code, compiled code, and documentation</member>
625 <member>contained in this distribution into the Public Domain. SAX comes with NO</member>
626 <member>WARRANTY or guarantee of fitness for any purpose.</member>
627 <member>&#160;</member>
628 <member>_David Megginson, [Megginson Technologies Ltd.](http://www.megginson.com/) </member>
629 <member>2000-05-05_</member>
630 <member>&#160;</member>
631 <member> </member>
632 </simplelist>
633 </section>
634 </section>
635 <section id="enea-linux-eclipse-open-source-licenses-8">
636 <title>License 8</title>
637 <section>
638 <title>Source File(s)</title>
639 <itemizedlist spacing="compact">
640 <listitem>
641 <para>
642 plugins/extracted_jars/org.w3c.dom.events.source_3.0.0.draft20060413_v201105210656/about_files/LICENSE.sax.txt
643 </para>
644 </listitem>
645 </itemizedlist>
646 </section>
647 <section>
648 <title>License Text</title>
649 <simplelist>
650 <member>xml-commons/java/external/LICENSE.sax.txt $Id: LICENSE.sax.txt,v 1.1.2.1 2009/02/20 17:40:43 cdamus Exp $</member>
651 <member>&#160;</member>
652 <member>&#160;</member>
653 <member>This license came from: http://www.megginson.com/SAX/copying.html</member>
654 <member> However please note future versions of SAX may be covered </member>
655 <member> under http://saxproject.org/?selected=pd</member>
656 <member>&#160;</member>
657 <member>&#160;</member>
658 <member>This page is now out of date -- see the new SAX site at </member>
659 <member>http://www.saxproject.org/ for more up-to-date</member>
660 <member>releases and other information. Please change your bookmarks.</member>
661 <member>&#160;</member>
662 <member>&#160;</member>
663 <member>SAX2 is Free!</member>
664 <member>&#160;</member>
665 <member>I hereby abandon any property rights to SAX 2.0 (the Simple API for</member>
666 <member>XML), and release all of the SAX 2.0 source code, compiled code, and</member>
667 <member>documentation contained in this distribution into the Public Domain.</member>
668 <member>SAX comes with NO WARRANTY or guarantee of fitness for any</member>
669 <member>purpose.</member>
670 <member>&#160;</member>
671 <member>David Megginson, david@megginson.com</member>
672 <member>2000-05-05</member>
673 </simplelist>
674 </section>
675 </section>
676 <section id="enea-linux-eclipse-open-source-licenses-9">
677 <title>License 9</title>
678 <section>
679 <title>Source File(s)</title>
680 <itemizedlist spacing="compact">
681 <listitem>
682 <para>
683 plugins/extracted_jars/org.eclipse.pde.build.source_3.9.100.v20150521-1524/about.html
684 </para>
685 </listitem>
686 </itemizedlist>
687 </section>
688 <section>
689 <title>License Text</title>
690 <simplelist>
691 <member>## About This Content</member>
692 <member>&#160;</member>
693 <member>February 08, 2007</member>
694 <member>&#160;</member>
695 <member>### License</member>
696 <member>&#160;</member>
697 <member>The Eclipse Foundation makes available all content in this plug-in</member>
698 <member>("Content"). Unless otherwise indicated below, the Content is provided to you</member>
699 <member>under the terms and conditions of the Eclipse Public License Version 1.0</member>
700 <member>("EPL"). A copy of the EPL is available at</member>
701 <member>&lt;http://www.eclipse.org/legal/epl-v10.html&gt;. For purposes of the EPL,</member>
702 <member>"Program" will mean the Content.</member>
703 <member>&#160;</member>
704 <member>If you did not receive this Content directly from the Eclipse Foundation, the</member>
705 <member>Content is being redistributed by another party ("Redistributor") and</member>
706 <member>different terms and conditions may apply to your use of any object code in the</member>
707 <member>Content. Check the Redistributor's license that was provided with the Content.</member>
708 <member>If no such license exists, contact the Redistributor. Unless otherwise</member>
709 <member>indicated below, the terms and conditions of the EPL still apply to any source</member>
710 <member>code in the Content and such source code may be obtained at</member>
711 <member>&lt;http://www.eclipse.org&gt;.</member>
712 <member>&#160;</member>
713 <member>### Third Party Content</member>
714 <member>&#160;</member>
715 <member>The Content includes items that have been sourced from third parties as set</member>
716 <member>out below. If you did not receive this Content directly from the Eclipse</member>
717 <member>Foundation, the following is provided for informational purposes only, and you</member>
718 <member>should look to the Redistributor's license for terms and conditions of use.</member>
719 <member>&#160;</member>
720 <member>#### OSGi Materials</member>
721 <member>&#160;</member>
722 <member>The following file:</member>
723 <member>&#160;</member>
724 <member> * org/osgi/framework/Version</member>
725 <member>&#160;</member>
726 <member>shall be defined as a subset of the "OSGi Materials." The OSGi Materials are:</member>
727 <member>&#160;</member>
728 <member>&gt; Copyright (c) 2000, 2006 </member>
729 <member> </member>
730 <member>OSGi Alliance Bishop Ranch 6 </member>
731 <member>2400 Camino Ramon, Suite 375 </member>
732 <member>San Ramon, CA 94583 USA </member>
733 <member> </member>
734 <member>All Rights Reserved.</member>
735 <member>&#160;</member>
736 <member>The OSGi Materials are provided to you under the terms and conditions of the</member>
737 <member>Apache License, Version 2.0. A copy of the license is contained in the file</member>
738 <member>[LICENSE-2.0.txt](about_files/LICENSE-2.0.txt) and is also available at</member>
739 <member>&lt;http://www.apache.org/licenses/LICENSE-2.0.html&gt;.</member>
740 <member>&#160;</member>
741 <member>Implementation of certain elements of the OSGi Materials may be subject to</member>
742 <member>third party intellectual property rights, including without limitation, patent</member>
743 <member>rights (such a third party may or may not be a member of the OSGi Alliance).</member>
744 <member>The OSGi Alliance and its members are not responsible and shall not be held</member>
745 <member>responsible in any manner for identifying or failing to identify any or all</member>
746 <member>such third party intellectual property rights.</member>
747 <member>&#160;</member>
748 <member>OSGiâ„¢ is a trademark, registered trademark, or service mark of The OSGi</member>
749 <member>Alliance in the US and other countries. Java is a trademark, registered</member>
750 <member>trademark, or service mark of Sun Microsystems, Inc. in the US and other</member>
751 <member>countries. All other trademarks, registered trademarks, or service marks used</member>
752 <member>in the Content are the property of their respective owners and are hereby</member>
753 <member>recognized.</member>
754 </simplelist>
755 </section>
756 </section>
757 <section id="enea-linux-eclipse-open-source-licenses-10">
758 <title>License 10</title>
759 <section>
760 <title>Source File(s)</title>
761 <itemizedlist spacing="compact">
762 <listitem>
763 <para>
764 plugins/extracted_jars/org.eclipse.ant.ui.source_3.6.0.v20150428-1928/about_files/asl-v20.txt
765 </para>
766 </listitem>
767 <listitem>
768 <para>
769 plugins/extracted_jars/com.google.guava_15.0.0.v201403281430/about_files/LICENSE.txt
770 </para>
771 </listitem>
772 <listitem>
773 <para>
774 plugins/extracted_jars/org.apache.commons.codec_1.6.0.v201305230611/about_files/LICENSE.txt
775 </para>
776 </listitem>
777 <listitem>
778 <para>
779 plugins/extracted_jars/org.apache.ant.source_1.9.4.v201504302020/about_files/LICENSE-2.0.txt
780 </para>
781 </listitem>
782 <listitem>
783 <para>
784 plugins/extracted_jars/org.apache.felix.gogo.shell.source_0.10.0.v201212101605/about_files/LICENSE
785 </para>
786 </listitem>
787 <listitem>
788 <para>
789 plugins/extracted_jars/org.apache.felix.gogo.shell_0.10.0.v201212101605/about_files/LICENSE
790 </para>
791 </listitem>
792 <listitem>
793 <para>
794 plugins/extracted_jars/org.apache.commons.jxpath.source_1.3.0.v200911051830/about_files/LICENSE.txt
795 </para>
796 </listitem>
797 <listitem>
798 <para>
799 plugins/extracted_jars/org.eclipse.equinox.app_1.3.300.v20150423-1356/about_files/LICENSE-2.0.txt
800 </para>
801 </listitem>
802 <listitem>
803 <para>
804 plugins/extracted_jars/org.apache.felix.gogo.command_0.10.0.v201209301215/about_files/LICENSE
805 </para>
806 </listitem>
807 <listitem>
808 <para>
809 plugins/extracted_jars/org.eclipse.ant.ui_3.6.0.v20150428-1928/about_files/asl-v20.txt
810 </para>
811 </listitem>
812 <listitem>
813 <para>
814 plugins/extracted_jars/org.apache.felix.gogo.runtime_0.10.0.v201209301036/about_files/LICENSE
815 </para>
816 </listitem>
817 <listitem>
818 <para>
819 plugins/extracted_jars/org.eclipse.equinox.registry_3.6.0.v20150318-1503/about_files/LICENSE-2.0.txt
820 </para>
821 </listitem>
822 <listitem>
823 <para>
824 plugins/extracted_jars/org.apache.commons.logging_1.1.1.v201101211721/about_files/LICENSE.txt
825 </para>
826 </listitem>
827 <listitem>
828 <para>
829 plugins/extracted_jars/org.eclipse.osgi.util.source_3.3.100.v20150423-1351/about_files/LICENSE-2.0.txt
830 </para>
831 </listitem>
832 <listitem>
833 <para>
834 plugins/extracted_jars/org.eclipse.equinox.ds.source_1.4.300.v20150423-1356/about_files/LICENSE-2.0.txt
835 </para>
836 </listitem>
837 <listitem>
838 <para>
839 plugins/extracted_jars/org.eclipse.equinox.preferences.source_3.5.300.v20150408-1437/about_files/LICENSE-2.0.txt
840 </para>
841 </listitem>
842 <listitem>
843 <para>
844 plugins/extracted_jars/org.eclipse.osgi.services.source_3.5.0.v20150519-2006/about_files/LICENSE-2.0.txt
845 </para>
846 </listitem>
847 <listitem>
848 <para>
849 plugins/extracted_jars/org.eclipse.equinox.app.source_1.3.300.v20150423-1356/about_files/LICENSE-2.0.txt
850 </para>
851 </listitem>
852 <listitem>
853 <para>
854 plugins/extracted_jars/org.apache.commons.logging.source_1.1.1.v201101211721/about_files/LICENSE.txt
855 </para>
856 </listitem>
857 <listitem>
858 <para>
859 plugins/extracted_jars/org.eclipse.e4.emf.xpath.source_0.1.100.v20150513-0856/about_files/LICENSE.txt
860 </para>
861 </listitem>
862 <listitem>
863 <para>
864 plugins/extracted_jars/org.eclipse.team.cvs.core_3.3.700.v20150203-1452/about_files/asl-v20.txt
865 </para>
866 </listitem>
867 <listitem>
868 <para>
869 plugins/extracted_jars/javax.xml_1.3.4.v201005080400/about_files/LICENSE
870 </para>
871 </listitem>
872 <listitem>
873 <para>
874 plugins/extracted_jars/org.eclipse.osgi.services_3.5.0.v20150519-2006/about_files/LICENSE-2.0.txt
875 </para>
876 </listitem>
877 <listitem>
878 <para>
879 plugins/extracted_jars/org.apache.commons.net_3.2.0.v201305141515/about_files/LICENSE.txt
880 </para>
881 </listitem>
882 <listitem>
883 <para>
884 plugins/extracted_jars/org.eclipse.equinox.preferences_3.5.300.v20150408-1437/about_files/LICENSE-2.0.txt
885 </para>
886 </listitem>
887 <listitem>
888 <para>
889 plugins/extracted_jars/org.eclipse.osgi.util_3.3.100.v20150423-1351/about_files/LICENSE-2.0.txt
890 </para>
891 </listitem>
892 <listitem>
893 <para>
894 plugins/extracted_jars/org.apache.commons.jxpath_1.3.0.v200911051830/about_files/LICENSE.txt
895 </para>
896 </listitem>
897 <listitem>
898 <para>
899 plugins/extracted_jars/org.eclipse.ant.core.source_3.4.0.v20150428-1928/about_files/asl-v20.txt
900 </para>
901 </listitem>
902 <listitem>
903 <para>
904 plugins/extracted_jars/org.eclipse.equinox.registry.source_3.6.0.v20150318-1503/about_files/LICENSE-2.0.txt
905 </para>
906 </listitem>
907 <listitem>
908 <para>
909 plugins/extracted_jars/org.eclipse.osgi.source_3.10.100.v20150529-1857/about_files/LICENSE-2.0.txt
910 </para>
911 </listitem>
912 <listitem>
913 <para>
914 plugins/extracted_jars/org.apache.jasper.glassfish_2.2.2.v201501141630/about_files/LICENSE_ASL20.txt
915 </para>
916 </listitem>
917 <listitem>
918 <para>
919 plugins/extracted_jars/org.eclipse.equinox.ds_1.4.300.v20150423-1356/about_files/LICENSE-2.0.txt
920 </para>
921 </listitem>
922 <listitem>
923 <para>
924 plugins/extracted_jars/org.eclipse.ant.core_3.4.0.v20150428-1928/about_files/asl-v20.txt
925 </para>
926 </listitem>
927 <listitem>
928 <para>
929 plugins/extracted_jars/org.apache.felix.gogo.runtime.source_0.10.0.v201209301036/about_files/LICENSE
930 </para>
931 </listitem>
932 <listitem>
933 <para>
934 plugins/extracted_jars/org.apache.felix.gogo.command.source_0.10.0.v201209301215/about_files/LICENSE
935 </para>
936 </listitem>
937 <listitem>
938 <para>
939 plugins/extracted_jars/org.eclipse.osgi_3.10.100.v20150529-1857/about_files/LICENSE-2.0.txt
940 </para>
941 </listitem>
942 <listitem>
943 <para>
944 plugins/org.apache.ant_1.9.4.v201504302020/about_files/LICENSE-2.0.txt
945 </para>
946 </listitem>
947 <listitem>
948 <para>
949 plugins/org.eclipse.pde.build_3.9.100.v20150521-1524/about_files/LICENSE-2.0.txt
950 </para>
951 </listitem>
952 </itemizedlist>
953 </section>
954 <section>
955 <title>License Text</title>
956 <simplelist>
957 <member> Apache License</member>
958 <member> Version 2.0, January 2004</member>
959 <member> http://www.apache.org/licenses/</member>
960 <member>&#160;</member>
961 <member> TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION</member>
962 <member>&#160;</member>
963 <member> 1. Definitions.</member>
964 <member>&#160;</member>
965 <member> "License" shall mean the terms and conditions for use, reproduction,</member>
966 <member> and distribution as defined by Sections 1 through 9 of this document.</member>
967 <member>&#160;</member>
968 <member> "Licensor" shall mean the copyright owner or entity authorized by</member>
969 <member> the copyright owner that is granting the License.</member>
970 <member>&#160;</member>
971 <member> "Legal Entity" shall mean the union of the acting entity and all</member>
972 <member> other entities that control, are controlled by, or are under common</member>
973 <member> control with that entity. For the purposes of this definition,</member>
974 <member> "control" means (i) the power, direct or indirect, to cause the</member>
975 <member> direction or management of such entity, whether by contract or</member>
976 <member> otherwise, or (ii) ownership of fifty percent (50%) or more of the</member>
977 <member> outstanding shares, or (iii) beneficial ownership of such entity.</member>
978 <member>&#160;</member>
979 <member> "You" (or "Your") shall mean an individual or Legal Entity</member>
980 <member> exercising permissions granted by this License.</member>
981 <member>&#160;</member>
982 <member> "Source" form shall mean the preferred form for making modifications,</member>
983 <member> including but not limited to software source code, documentation</member>
984 <member> source, and configuration files.</member>
985 <member>&#160;</member>
986 <member> "Object" form shall mean any form resulting from mechanical</member>
987 <member> transformation or translation of a Source form, including but</member>
988 <member> not limited to compiled object code, generated documentation,</member>
989 <member> and conversions to other media types.</member>
990 <member>&#160;</member>
991 <member> "Work" shall mean the work of authorship, whether in Source or</member>
992 <member> Object form, made available under the License, as indicated by a</member>
993 <member> copyright notice that is included in or attached to the work</member>
994 <member> (an example is provided in the Appendix below).</member>
995 <member>&#160;</member>
996 <member> "Derivative Works" shall mean any work, whether in Source or Object</member>
997 <member> form, that is based on (or derived from) the Work and for which the</member>
998 <member> editorial revisions, annotations, elaborations, or other modifications</member>
999 <member> represent, as a whole, an original work of authorship. For the purposes</member>
1000 <member> of this License, Derivative Works shall not include works that remain</member>
1001 <member> separable from, or merely link (or bind by name) to the interfaces of,</member>
1002 <member> the Work and Derivative Works thereof.</member>
1003 <member>&#160;</member>
1004 <member> "Contribution" shall mean any work of authorship, including</member>
1005 <member> the original version of the Work and any modifications or additions</member>
1006 <member> to that Work or Derivative Works thereof, that is intentionally</member>
1007 <member> submitted to Licensor for inclusion in the Work by the copyright owner</member>
1008 <member> or by an individual or Legal Entity authorized to submit on behalf of</member>
1009 <member> the copyright owner. For the purposes of this definition, "submitted"</member>
1010 <member> means any form of electronic, verbal, or written communication sent</member>
1011 <member> to the Licensor or its representatives, including but not limited to</member>
1012 <member> communication on electronic mailing lists, source code control systems,</member>
1013 <member> and issue tracking systems that are managed by, or on behalf of, the</member>
1014 <member> Licensor for the purpose of discussing and improving the Work, but</member>
1015 <member> excluding communication that is conspicuously marked or otherwise</member>
1016 <member> designated in writing by the copyright owner as "Not a Contribution."</member>
1017 <member>&#160;</member>
1018 <member> "Contributor" shall mean Licensor and any individual or Legal Entity</member>
1019 <member> on behalf of whom a Contribution has been received by Licensor and</member>
1020 <member> subsequently incorporated within the Work.</member>
1021 <member>&#160;</member>
1022 <member> 2. Grant of Copyright License. Subject to the terms and conditions of</member>
1023 <member> this License, each Contributor hereby grants to You a perpetual,</member>
1024 <member> worldwide, non-exclusive, no-charge, royalty-free, irrevocable</member>
1025 <member> copyright license to reproduce, prepare Derivative Works of,</member>
1026 <member> publicly display, publicly perform, sublicense, and distribute the</member>
1027 <member> Work and such Derivative Works in Source or Object form.</member>
1028 <member>&#160;</member>
1029 <member> 3. Grant of Patent License. Subject to the terms and conditions of</member>
1030 <member> this License, each Contributor hereby grants to You a perpetual,</member>
1031 <member> worldwide, non-exclusive, no-charge, royalty-free, irrevocable</member>
1032 <member> (except as stated in this section) patent license to make, have made,</member>
1033 <member> use, offer to sell, sell, import, and otherwise transfer the Work,</member>
1034 <member> where such license applies only to those patent claims licensable</member>
1035 <member> by such Contributor that are necessarily infringed by their</member>
1036 <member> Contribution(s) alone or by combination of their Contribution(s)</member>
1037 <member> with the Work to which such Contribution(s) was submitted. If You</member>
1038 <member> institute patent litigation against any entity (including a</member>
1039 <member> cross-claim or counterclaim in a lawsuit) alleging that the Work</member>
1040 <member> or a Contribution incorporated within the Work constitutes direct</member>
1041 <member> or contributory patent infringement, then any patent licenses</member>
1042 <member> granted to You under this License for that Work shall terminate</member>
1043 <member> as of the date such litigation is filed.</member>
1044 <member>&#160;</member>
1045 <member> 4. Redistribution. You may reproduce and distribute copies of the</member>
1046 <member> Work or Derivative Works thereof in any medium, with or without</member>
1047 <member> modifications, and in Source or Object form, provided that You</member>
1048 <member> meet the following conditions:</member>
1049 <member>&#160;</member>
1050 <member> (a) You must give any other recipients of the Work or</member>
1051 <member> Derivative Works a copy of this License; and</member>
1052 <member>&#160;</member>
1053 <member> (b) You must cause any modified files to carry prominent notices</member>
1054 <member> stating that You changed the files; and</member>
1055 <member>&#160;</member>
1056 <member> (c) You must retain, in the Source form of any Derivative Works</member>
1057 <member> that You distribute, all copyright, patent, trademark, and</member>
1058 <member> attribution notices from the Source form of the Work,</member>
1059 <member> excluding those notices that do not pertain to any part of</member>
1060 <member> the Derivative Works; and</member>
1061 <member>&#160;</member>
1062 <member> (d) If the Work includes a "NOTICE" text file as part of its</member>
1063 <member> distribution, then any Derivative Works that You distribute must</member>
1064 <member> include a readable copy of the attribution notices contained</member>
1065 <member> within such NOTICE file, excluding those notices that do not</member>
1066 <member> pertain to any part of the Derivative Works, in at least one</member>
1067 <member> of the following places: within a NOTICE text file distributed</member>
1068 <member> as part of the Derivative Works; within the Source form or</member>
1069 <member> documentation, if provided along with the Derivative Works; or,</member>
1070 <member> within a display generated by the Derivative Works, if and</member>
1071 <member> wherever such third-party notices normally appear. The contents</member>
1072 <member> of the NOTICE file are for informational purposes only and</member>
1073 <member> do not modify the License. You may add Your own attribution</member>
1074 <member> notices within Derivative Works that You distribute, alongside</member>
1075 <member> or as an addendum to the NOTICE text from the Work, provided</member>
1076 <member> that such additional attribution notices cannot be construed</member>
1077 <member> as modifying the License.</member>
1078 <member>&#160;</member>
1079 <member> You may add Your own copyright statement to Your modifications and</member>
1080 <member> may provide additional or different license terms and conditions</member>
1081 <member> for use, reproduction, or distribution of Your modifications, or</member>
1082 <member> for any such Derivative Works as a whole, provided Your use,</member>
1083 <member> reproduction, and distribution of the Work otherwise complies with</member>
1084 <member> the conditions stated in this License.</member>
1085 <member>&#160;</member>
1086 <member> 5. Submission of Contributions. Unless You explicitly state otherwise,</member>
1087 <member> any Contribution intentionally submitted for inclusion in the Work</member>
1088 <member> by You to the Licensor shall be under the terms and conditions of</member>
1089 <member> this License, without any additional terms or conditions.</member>
1090 <member> Notwithstanding the above, nothing herein shall supersede or modify</member>
1091 <member> the terms of any separate license agreement you may have executed</member>
1092 <member> with Licensor regarding such Contributions.</member>
1093 <member>&#160;</member>
1094 <member> 6. Trademarks. This License does not grant permission to use the trade</member>
1095 <member> names, trademarks, service marks, or product names of the Licensor,</member>
1096 <member> except as required for reasonable and customary use in describing the</member>
1097 <member> origin of the Work and reproducing the content of the NOTICE file.</member>
1098 <member>&#160;</member>
1099 <member> 7. Disclaimer of Warranty. Unless required by applicable law or</member>
1100 <member> agreed to in writing, Licensor provides the Work (and each</member>
1101 <member> Contributor provides its Contributions) on an "AS IS" BASIS,</member>
1102 <member> WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or</member>
1103 <member> implied, including, without limitation, any warranties or conditions</member>
1104 <member> of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A</member>
1105 <member> PARTICULAR PURPOSE. You are solely responsible for determining the</member>
1106 <member> appropriateness of using or redistributing the Work and assume any</member>
1107 <member> risks associated with Your exercise of permissions under this License.</member>
1108 <member>&#160;</member>
1109 <member> 8. Limitation of Liability. In no event and under no legal theory,</member>
1110 <member> whether in tort (including negligence), contract, or otherwise,</member>
1111 <member> unless required by applicable law (such as deliberate and grossly</member>
1112 <member> negligent acts) or agreed to in writing, shall any Contributor be</member>
1113 <member> liable to You for damages, including any direct, indirect, special,</member>
1114 <member> incidental, or consequential damages of any character arising as a</member>
1115 <member> result of this License or out of the use or inability to use the</member>
1116 <member> Work (including but not limited to damages for loss of goodwill,</member>
1117 <member> work stoppage, computer failure or malfunction, or any and all</member>
1118 <member> other commercial damages or losses), even if such Contributor</member>
1119 <member> has been advised of the possibility of such damages.</member>
1120 <member>&#160;</member>
1121 <member> 9. Accepting Warranty or Additional Liability. While redistributing</member>
1122 <member> the Work or Derivative Works thereof, You may choose to offer,</member>
1123 <member> and charge a fee for, acceptance of support, warranty, indemnity,</member>
1124 <member> or other liability obligations and/or rights consistent with this</member>
1125 <member> License. However, in accepting such obligations, You may act only</member>
1126 <member> on Your own behalf and on Your sole responsibility, not on behalf</member>
1127 <member> of any other Contributor, and only if You agree to indemnify,</member>
1128 <member> defend, and hold each Contributor harmless for any liability</member>
1129 <member> incurred by, or claims asserted against, such Contributor by reason</member>
1130 <member> of your accepting any such warranty or additional liability.</member>
1131 <member>&#160;</member>
1132 <member> END OF TERMS AND CONDITIONS</member>
1133 <member>&#160;</member>
1134 <member> APPENDIX: How to apply the Apache License to your work.</member>
1135 <member>&#160;</member>
1136 <member> To apply the Apache License to your work, attach the following</member>
1137 <member> boilerplate notice, with the fields enclosed by brackets "[]"</member>
1138 <member> replaced with your own identifying information. (Don't include</member>
1139 <member> the brackets!) The text should be enclosed in the appropriate</member>
1140 <member> comment syntax for the file format. We also recommend that a</member>
1141 <member> file or class name and description of purpose be included on the</member>
1142 <member> same "printed page" as the copyright notice for easier</member>
1143 <member> identification within third-party archives.</member>
1144 <member>&#160;</member>
1145 <member> Copyright [yyyy] [name of copyright owner]</member>
1146 <member>&#160;</member>
1147 <member> Licensed under the Apache License, Version 2.0 (the "License");</member>
1148 <member> you may not use this file except in compliance with the License.</member>
1149 <member> You may obtain a copy of the License at</member>
1150 <member>&#160;</member>
1151 <member> http://www.apache.org/licenses/LICENSE-2.0</member>
1152 <member>&#160;</member>
1153 <member> Unless required by applicable law or agreed to in writing, software</member>
1154 <member> distributed under the License is distributed on an "AS IS" BASIS,</member>
1155 <member> WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</member>
1156 <member> See the License for the specific language governing permissions and</member>
1157 <member> limitations under the License.</member>
1158 </simplelist>
1159 </section>
1160 </section>
1161 <section id="enea-linux-eclipse-open-source-licenses-11">
1162 <title>License 11</title>
1163 <section>
1164 <title>Source File(s)</title>
1165 <itemizedlist spacing="compact">
1166 <listitem>
1167 <para>
1168 plugins/extracted_jars/org.eclipse.swt_3.104.0.v20150528-0211/about.html
1169 </para>
1170 </listitem>
1171 </itemizedlist>
1172 </section>
1173 <section>
1174 <title>License Text</title>
1175 <simplelist>
1176 <member>## About This Content</member>
1177 <member>&#160;</member>
1178 <member>August 17, 2006</member>
1179 <member>&#160;</member>
1180 <member>### License</member>
1181 <member>&#160;</member>
1182 <member>The Eclipse Foundation makes available all content in this plug-in</member>
1183 <member>("Content"). Unless otherwise indicated below, the Content is provided to you</member>
1184 <member>under the terms and conditions of the Eclipse Public License Version 1.0</member>
1185 <member>("EPL"). A copy of the EPL is available at</member>
1186 <member>&lt;http://www.eclipse.org/legal/epl-v10.html&gt;. For purposes of the EPL,</member>
1187 <member>"Program" will mean the Content.</member>
1188 <member>&#160;</member>
1189 <member>If you did not receive this Content directly from the Eclipse Foundation, the</member>
1190 <member>Content is being redistributed by another party ("Redistributor") and</member>
1191 <member>different terms and conditions may apply to your use of any object code in the</member>
1192 <member>Content. Check the Redistributor's license that was provided with the Content.</member>
1193 <member>If no such license exists, contact the Redistributor. Unless otherwise</member>
1194 <member>indicated below, the terms and conditions of the EPL still apply to any source</member>
1195 <member>code in the Content and such source code may be obtained at</member>
1196 <member>&lt;http://www.eclipse.org&gt;.</member>
1197 <member>&#160;</member>
1198 <member>### Third Party Content</member>
1199 <member>&#160;</member>
1200 <member>The Content includes items that have been sourced from third parties as set</member>
1201 <member>out below. If you did not receive this Content directly from the Eclipse</member>
1202 <member>Foundation, the following is provided for informational purposes only, and you</member>
1203 <member>should look to the Redistributor's license for terms and conditions of use.</member>
1204 <member>&#160;</member>
1205 <member>#### Independent JPEG Group's JPEG software release 6b</member>
1206 <member>&#160;</member>
1207 <member>This software is based in part on the work of the Independent JPEG Group's</member>
1208 <member>JPEG software release 6b ("LIBJPEG"). LIBJPEG was used to implement the</member>
1209 <member>decoding of JPEG format files in Java (TM). The Content does NOT include any</member>
1210 <member>portion of the LIBJPEG file ansi2knr.c.</member>
1211 <member>&#160;</member>
1212 <member>Your use of LIBJPEG is subject to the terms and conditions located in the</member>
1213 <member>[about_files/IJG_README](about_files/IJG_README) file which is included with</member>
1214 <member>the Content.</member>
1215 <member>&#160;</member>
1216 <member>The IJG's website is located at [http://ijg.org](http://ijg.org/).</member>
1217 <member>&#160;</member>
1218 <member>The class org.eclipse.swt.internal.image.JPEGFileFormat is based on following</member>
1219 <member>files from LIBJPEG:</member>
1220 <member>&#160;</member>
1221 <member> * cderror.h</member>
1222 <member> * cdjpeg.h</member>
1223 <member> * jchuff.h</member>
1224 <member> * jdcolor.c</member>
1225 <member> * jdct.h</member>
1226 <member> * jdhuff.h</member>
1227 <member> * jerror.h</member>
1228 <member> * jidctint.c</member>
1229 <member> * jinclude.h</member>
1230 <member> * jmemsys.h</member>
1231 <member> * jmorecfg.h</member>
1232 <member> * jpegint.h</member>
1233 <member> * jpeglib.h</member>
1234 <member> * jversion.h</member>
1235 <member> * transupp.h</member>
1236 <member>&#160;</member>
1237 <member>The class org.eclipse.swt.internal.image.JPEGDecoder is based on the following</member>
1238 <member>files from LIBJPEG:</member>
1239 <member>&#160;</member>
1240 <member> * jcapimin.c</member>
1241 <member> * jcapistd.c</member>
1242 <member> * jccoefct.c</member>
1243 <member> * jccolor.c</member>
1244 <member> * jcdctmgr.c</member>
1245 <member> * jchuff.c</member>
1246 <member> * jcinit.c</member>
1247 <member> * jcmainct.c</member>
1248 <member> * jcmarker.c</member>
1249 <member> * jcmaster.c</member>
1250 <member> * jcomapi.c</member>
1251 <member> * jcparam.c</member>
1252 <member> * jcphuff.c</member>
1253 <member> * jcprepct.c</member>
1254 <member> * jcsample.c</member>
1255 <member> * jctrans.c</member>
1256 <member> * jdapimin.c</member>
1257 <member> * jdapistd.c</member>
1258 <member> * jdatadst.c</member>
1259 <member> * jdatasrc.c</member>
1260 <member> * jdcoefct.c</member>
1261 <member> * jdcolor.c</member>
1262 <member> * jddctmgr.c</member>
1263 <member> * jdhuff.c</member>
1264 <member> * jdinput.c</member>
1265 <member> * jdmainct.c</member>
1266 <member> * jdmarker.c</member>
1267 <member> * jdmaster.c</member>
1268 <member> * jdmerge.c</member>
1269 <member> * jdphuff.c</member>
1270 <member> * jdpostct.c</member>
1271 <member> * jdsample.c</member>
1272 <member> * jdtrans.c</member>
1273 <member> * jerror.c</member>
1274 <member> * jfdctflt.c</member>
1275 <member> * jfdctfst.c</member>
1276 <member> * jfdctint.c</member>
1277 <member> * jidctflt.c</member>
1278 <member> * jidctfst.c</member>
1279 <member> * jidctint.c</member>
1280 <member> * jidctred.c</member>
1281 <member> * jpegtran.c</member>
1282 <member> * jquant1.c</member>
1283 <member> * jquant2.c</member>
1284 <member> * jutils.c</member>
1285 <member> * cderror.h</member>
1286 <member> * cdjpeg.h</member>
1287 <member> * jchuff.h</member>
1288 <member> * jconfig.h</member>
1289 <member> * jdct.h</member>
1290 <member> * jdhuff.h</member>
1291 <member> * jerror.h</member>
1292 <member> * jinclude.h</member>
1293 <member> * jmorecfg.h</member>
1294 <member> * jpegint.h</member>
1295 <member> * jpeglib.h</member>
1296 <member> * jversion.h</member>
1297 <member> * transupp.h</member>
1298 <member>&#160;</member>
1299 <member>The following changes were made to the LIBJPEG code in the Content:</member>
1300 <member>&#160;</member>
1301 <member> 1. In Java, pointer math is not allowed so indexing was used instead.</member>
1302 <member> 2. Function pointers were replaced with switch statements.</member>
1303 <member> 3. The virtual memory, tracing and progress monitoring were removed.</member>
1304 <member> 4. The error handling was simplified and now uses Java exceptions.</member>
1305 <member>&#160;</member>
1306 <member>#### PuTTY 0.58 (derivative work)</member>
1307 <member>&#160;</member>
1308 <member>Portions of the SWT class org/eclipse/swt/internal/image/PngDeflater are based</member>
1309 <member>on PuTTY's sshzlib.c. PuTTY is made available by Mozilla.org. Use of PuTTY is</member>
1310 <member>governed by the terms and conditions of the the following MIT-style license:</member>
1311 <member>&#160;</member>
1312 <member>&gt; _PuTTY is copyright 1997-2007 Simon Tatham._</member>
1313 <member>&#160;</member>
1314 <member>&gt;</member>
1315 <member>&#160;</member>
1316 <member>&gt; _Portions copyright Robert de Bath, Joris van Rantwijk, Delian Delchev,</member>
1317 <member>Andreas Schultz, Jeroen Massar, Wez Furlong, Nicolas Barry, Justin Bradford,</member>
1318 <member>Ben Harris, Malcolm Smith, Ahmad Khalifa, Markus Kuhn, and CORE SDI S.A._</member>
1319 <member>&#160;</member>
1320 <member>&gt;</member>
1321 <member>&#160;</member>
1322 <member>&gt; _Permission is hereby granted, free of charge, to any person obtaining a</member>
1323 <member>copy of this software and associated documentation files (the "Software"), to</member>
1324 <member>deal in the Software without restriction, including without limitation the</member>
1325 <member>rights to use, copy, modify, merge, publish, distribute, sublicense, and/or</member>
1326 <member>sell copies of the Software, and to permit persons to whom the Software is</member>
1327 <member>furnished to do so, subject to the following conditions:_</member>
1328 <member>&#160;</member>
1329 <member>&gt;</member>
1330 <member>&#160;</member>
1331 <member>&gt; _The above copyright notice and this permission notice shall be included in</member>
1332 <member>all copies or substantial portions of the Software._</member>
1333 <member>&#160;</member>
1334 <member>&gt;</member>
1335 <member>&#160;</member>
1336 <member>&gt; _THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR</member>
1337 <member>IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,</member>
1338 <member>FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL SIMON</member>
1339 <member>TATHAM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN</member>
1340 <member>ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION</member>
1341 <member>WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE._</member>
1342 <member>&#160;</member>
1343 <member>A copy of the license is also available at</member>
1344 <member>&lt;http://www.chiark.greenend.org.uk/~sgtatham/putty/licence.html&gt;.</member>
1345 <member>&#160;</member>
1346 <member>Java and all Java-based trademarks and logos are trademarks or registered</member>
1347 <member>trademarks of Sun Microsystems, Inc. in the United States and other countries.</member>
1348 </simplelist>
1349 </section>
1350 </section>
1351 <section id="enea-linux-eclipse-open-source-licenses-12">
1352 <title>License 12</title>
1353 <section>
1354 <title>Source File(s)</title>
1355 <itemizedlist spacing="compact">
1356 <listitem>
1357 <para>
1358 plugins/extracted_jars/org.eclipse.help_3.6.0.v20130326-1254/about.html
1359 </para>
1360 </listitem>
1361 <listitem>
1362 <para>
1363 plugins/extracted_jars/org.eclipse.help.source_3.6.0.v20130326-1254/about.html
1364 </para>
1365 </listitem>
1366 </itemizedlist>
1367 </section>
1368 <section>
1369 <title>License Text</title>
1370 <simplelist>
1371 <member>## About This Content</member>
1372 <member>&#160;</member>
1373 <member>April 14, 2008</member>
1374 <member>&#160;</member>
1375 <member>### License</member>
1376 <member>&#160;</member>
1377 <member>The Eclipse Foundation makes available all content in this plug-in</member>
1378 <member>("Content"). Unless otherwise indicated below, the Content is provided to you</member>
1379 <member>under the terms and conditions of the Eclipse Public License Version 1.0</member>
1380 <member>("EPL"). A copy of the EPL is available at</member>
1381 <member>&lt;http://www.eclipse.org/legal/epl-v10.html&gt;. For purposes of the EPL,</member>
1382 <member>"Program" will mean the Content.</member>
1383 <member>&#160;</member>
1384 <member>If you did not receive this Content directly from the Eclipse Foundation, the</member>
1385 <member>Content is being redistributed by another party ("Redistributor") and</member>
1386 <member>different terms and conditions may apply to your use of any object code in the</member>
1387 <member>Content. Check the Redistributor's license that was provided with the Content.</member>
1388 <member>If no such license exists, contact the Redistributor. Unless otherwise</member>
1389 <member>indicated below, the terms and conditions of the EPL still apply to any source</member>
1390 <member>code in the Content and such source code may be obtained at</member>
1391 <member>[http://www.eclipse.org](http://www.eclipse.org/).</member>
1392 <member>&#160;</member>
1393 <member>### Third Party Content</member>
1394 <member>&#160;</member>
1395 <member>The Content includes items that have been sourced from third parties as set</member>
1396 <member>out below. If you did not receive this Content directly from the Eclipse</member>
1397 <member>Foundation, the following is provided for informational purposes only, and you</member>
1398 <member>should look to the Redistributor's license for terms and conditions of use.</member>
1399 <member>&#160;</member>
1400 <member>#### W3C DTDs</member>
1401 <member>&#160;</member>
1402 <member>The plug-in is accompanied by document type definitions (" W3C DTDs") defined</member>
1403 <member>by the the W3C Extensible HyperText Markup Language (XHTML) 1.1. XHTML is</member>
1404 <member>described at &lt;http://www.w3.org/TR/xhtml11/&gt;.</member>
1405 <member>&#160;</member>
1406 <member>The W3C DTDs are the following files located in the plug-in:</member>
1407 <member>&#160;</member>
1408 <member> * **xhtml11.dtd** obtained from &lt;http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd&gt;</member>
1409 <member> * **xhtml11-flat.dtd** obtained from &lt;http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd&gt;</member>
1410 <member> * **xhtml1-frameset.dtd** obtained from &lt;http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd&gt;</member>
1411 <member> * **xhtml1-strict** obtained from &lt;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&gt;</member>
1412 <member> * **xhtml1-transitional.dtd** obtained from &lt;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&gt;</member>
1413 <member> * **xhtml-lat1.ent** obtained from &lt;http://www.w3.org/TR/xhtml1/DTD/xhtml-lat1.ent&gt;</member>
1414 <member> * **xhtml-special.ent** obtained from &lt;http://www.w3.org/TR/xhtml1/DTD/xhtml-special.ent&gt;</member>
1415 <member> * **xhtml-symbol.ent** obtained from &lt;http://www.w3.org/TR/xhtml1/DTD/xhtml-symbol.ent&gt;</member>
1416 <member>&#160;</member>
1417 <member>As described in section 5.10 of the FAQ located at</member>
1418 <member>&lt;http://www.w3.org/Consortium/Legal/IPR-FAQ-20000620.html#DTD&gt;, your use of</member>
1419 <member>the W3C DTDs is governed by the terms and conditions of the W3C Software</member>
1420 <member>License a copy of which is included in the file [about_files/copyright-</member>
1421 <member>software-19980720.htm](about_files/copyright-software-19980720.htm) and is</member>
1422 <member>also available at &lt;http://www.w3.org/Consortium/Legal/copyright-</member>
1423 <member>software-19980720&gt;.</member>
1424 </simplelist>
1425 </section>
1426 </section>
1427 <section id="enea-linux-eclipse-open-source-licenses-13">
1428 <title>License 13</title>
1429 <section>
1430 <title>Source File(s)</title>
1431 <itemizedlist spacing="compact">
1432 <listitem>
1433 <para>
1434 plugins/extracted_jars/org.eclipse.emf.ecore_2.11.2.v20160208-0816/about.html
1435 </para>
1436 </listitem>
1437 <listitem>
1438 <para>
1439 plugins/extracted_jars/org.eclipse.emf.ecore.source_2.11.0.v20150512-0501/about.html
1440 </para>
1441 </listitem>
1442 </itemizedlist>
1443 </section>
1444 <section>
1445 <title>License Text</title>
1446 <simplelist>
1447 <member>## About This Content</member>
1448 <member>&#160;</member>
1449 <member>June 5, 2007</member>
1450 <member>&#160;</member>
1451 <member>### License</member>
1452 <member>&#160;</member>
1453 <member>The Eclipse Foundation makes available all content in this plug-in</member>
1454 <member>("Content"). Unless otherwise indicated below, the Content is provided to you</member>
1455 <member>under the terms and conditions of the Eclipse Public License Version 1.0</member>
1456 <member>("EPL"). A copy of the EPL is available at</member>
1457 <member>&lt;http://www.eclipse.org/legal/epl-v10.html&gt;. For purposes of the EPL,</member>
1458 <member>"Program" will mean the Content.</member>
1459 <member>&#160;</member>
1460 <member>If you did not receive this Content directly from the Eclipse Foundation, the</member>
1461 <member>Content is being redistributed by another party ("Redistributor") and</member>
1462 <member>different terms and conditions may apply to your use of any object code in the</member>
1463 <member>Content. Check the Redistributor's license that was provided with the Content.</member>
1464 <member>If no such license exists, contact the Redistributor. Unless otherwise</member>
1465 <member>indicated below, the terms and conditions of the EPL still apply to any source</member>
1466 <member>code in the Content and such source code may be obtained at</member>
1467 <member>&lt;http://www.eclipse.org&gt;.</member>
1468 <member>&#160;</member>
1469 <member>### Third Party Content</member>
1470 <member>&#160;</member>
1471 <member>The Content includes items that have been sourced from third parties as set</member>
1472 <member>out below. If you did not receive this Content directly from the Eclipse</member>
1473 <member>Foundation, the following is provided for informational purposes only, and you</member>
1474 <member>should look to the Redistributor's license for terms and conditions of use.</member>
1475 <member>&#160;</member>
1476 <member>#### XML4J 4.3</member>
1477 <member>&#160;</member>
1478 <member>The plug-in is based on XML4J which is based on Xerces developed by The Apache</member>
1479 <member>Software Foundation as part of the Apache XML project. Therefore:</member>
1480 <member>&#160;</member>
1481 <member>&gt; This product includes software developed by the Apache Software Foundation </member>
1482 <member>(&lt;http://www.apache.org/&gt;).</member>
1483 <member>&#160;</member>
1484 <member>The following classes in the plug-in JAR:</member>
1485 <member>&#160;</member>
1486 <member> * org.eclipse.emf.ecore.xml.type.internal.DataValue</member>
1487 <member> * org.eclipse.emf.ecore.xml.type.internal.RegEx</member>
1488 <member> * org.eclipse.emf.ecore.xml.type.internal.XMLCalendar</member>
1489 <member> * org.eclipse.emf.ecore.xml.type.internal.XMLDuration</member>
1490 <member>&#160;</member>
1491 <member>are based on code from the following packages in XML4J:</member>
1492 <member>&#160;</member>
1493 <member> * org.apache.xerces.impl.xpath.regex</member>
1494 <member> * org.apache.xerces.util</member>
1495 <member> * org.apache.xerces.impl.dv</member>
1496 <member> * org.apache.xerces.impl.dv.util</member>
1497 <member> * org.apache.xerces.impl.dv.xs</member>
1498 <member>&#160;</member>
1499 <member>and shall be defined as the "XML4J Derivative Work."</member>
1500 <member>&#160;</member>
1501 <member>The XMLJ Derivative Work binary code can be found in the plug-in JAR in the</member>
1502 <member>following files:</member>
1503 <member>&#160;</member>
1504 <member> * org\eclipse\emf\ecore\xml\type\internal\DataValue.class</member>
1505 <member> * org\eclipse\emf\ecore\xml\type\internal\RegEx.class</member>
1506 <member> * org\eclipse\emf\ecore\xml\type\internal\XMLCalendar.class</member>
1507 <member> * org\eclipse\emf\ecore\xml\type\internal\XMLDuration.class</member>
1508 <member>&#160;</member>
1509 <member>The XMLJ Derivative Work source code can be found in src.zip in the following</member>
1510 <member>files:</member>
1511 <member>&#160;</member>
1512 <member> * org\eclipse\emf\ecore\xml\type\internal\DataValue.java</member>
1513 <member> * org\eclipse\emf\ecore\xml\type\internal\RegEx.java</member>
1514 <member> * org\eclipse\emf\ecore\xml\type\internal\XMLCalendar.java</member>
1515 <member> * org\eclipse\emf\ecore\xml\type\internal\XMLDuration.java</member>
1516 <member>&#160;</member>
1517 <member>The XML4J Derivative Work is:</member>
1518 <member>&#160;</member>
1519 <member>&gt; Copyright (c) 1999-2004 The Apache Software Foundation. All rights reserved.</member>
1520 <member>&#160;</member>
1521 <member>Your use of the XML4J Derivative Work is subject to the terms and conditions</member>
1522 <member>of the Apache Software License which is available at</member>
1523 <member>&lt;http://xml.apache.org/dist/LICENSE.txt&gt;. More specifically:</member>
1524 <member>&#160;</member>
1525 <member>&gt; 1\. Redistributions of source code must retain the above copyright </member>
1526 <member>notice, this list of conditions and the following disclaimer. </member>
1527 <member> </member>
1528 <member>2\. Redistributions in binary form must reproduce the above copyright </member>
1529 <member>notice, this list of conditions and the following disclaimer in </member>
1530 <member>the documentation and/or other materials provided with the </member>
1531 <member>distribution. </member>
1532 <member> </member>
1533 <member>3\. The end-user documentation included with the redistribution, </member>
1534 <member>if any, must include the following acknowledgment: </member>
1535 <member>&#160;</member>
1536 <member>&gt;</member>
1537 <member>&#160;</member>
1538 <member>&gt;&gt; "This product includes software developed by the </member>
1539 <member>Apache Software Foundation (&lt;http://www.apache.org/&gt;)." </member>
1540 <member>&#160;</member>
1541 <member>&gt;</member>
1542 <member>&#160;</member>
1543 <member>&gt; Alternately, this acknowledgment may appear in the software itself, </member>
1544 <member>if and wherever such third-party acknowledgments normally appear. </member>
1545 <member> </member>
1546 <member>4\. The names "Xerces" and "Apache Software Foundation" must </member>
1547 <member>not be used to endorse or promote products derived from this </member>
1548 <member>software without prior written permission. For written </member>
1549 <member>permission, please contact [apache@apache.org](mailto:apache@apache.org). </member>
1550 <member> </member>
1551 <member>5\. Products derived from this software may not be called "Apache", </member>
1552 <member>nor may "Apache" appear in their name, without prior written </member>
1553 <member>permission of the Apache Software Foundation. </member>
1554 <member> </member>
1555 <member>THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED </member>
1556 <member>WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES </member>
1557 <member>OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE </member>
1558 <member>DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR </member>
1559 <member>ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, </member>
1560 <member>SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT </member>
1561 <member>LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF </member>
1562 <member>USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND </member>
1563 <member>ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, </member>
1564 <member>OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT </member>
1565 <member>OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF </member>
1566 <member>SUCH DAMAGE.</member>
1567 </simplelist>
1568 </section>
1569 </section>
1570 <section id="enea-linux-eclipse-open-source-licenses-14">
1571 <title>License 14</title>
1572 <section>
1573 <title>Source File(s)</title>
1574 <itemizedlist spacing="compact">
1575 <listitem>
1576 <para>
1577 plugins/extracted_jars/org.swtchart_0.7.0.v201201201914/about_files/epl-v10.html
1578 </para>
1579 </listitem>
1580 </itemizedlist>
1581 </section>
1582 <section>
1583 <title>License Text</title>
1584 <simplelist>
1585 <member>**Eclipse Public License - v 1.0**</member>
1586 <member>&#160;</member>
1587 <member>THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC</member>
1588 <member>LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM</member>
1589 <member>CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.</member>
1590 <member>&#160;</member>
1591 <member>**1\. DEFINITIONS**</member>
1592 <member>&#160;</member>
1593 <member>"Contribution" means:</member>
1594 <member>&#160;</member>
1595 <member>a) in the case of the initial Contributor, the initial code and documentation</member>
1596 <member>distributed under this Agreement, and</member>
1597 <member>&#160;</member>
1598 <member>b) in the case of each subsequent Contributor:</member>
1599 <member>&#160;</member>
1600 <member>i) changes to the Program, and</member>
1601 <member>&#160;</member>
1602 <member>ii) additions to the Program;</member>
1603 <member>&#160;</member>
1604 <member>where such changes and/or additions to the Program originate from and are</member>
1605 <member>distributed by that particular Contributor. A Contribution 'originates' from a</member>
1606 <member>Contributor if it was added to the Program by such Contributor itself or</member>
1607 <member>anyone acting on such Contributor's behalf. Contributions do not include</member>
1608 <member>additions to the Program which: (i) are separate modules of software</member>
1609 <member>distributed in conjunction with the Program under their own license agreement,</member>
1610 <member>and (ii) are not derivative works of the Program.</member>
1611 <member>&#160;</member>
1612 <member>"Contributor" means any person or entity that distributes the Program.</member>
1613 <member>&#160;</member>
1614 <member>"Licensed Patents" mean patent claims licensable by a Contributor which are</member>
1615 <member>necessarily infringed by the use or sale of its Contribution alone or when</member>
1616 <member>combined with the Program.</member>
1617 <member>&#160;</member>
1618 <member>"Program" means the Contributions distributed in accordance with this</member>
1619 <member>Agreement.</member>
1620 <member>&#160;</member>
1621 <member>"Recipient" means anyone who receives the Program under this Agreement,</member>
1622 <member>including all Contributors.</member>
1623 <member>&#160;</member>
1624 <member>**2\. GRANT OF RIGHTS**</member>
1625 <member>&#160;</member>
1626 <member>a) Subject to the terms of this Agreement, each Contributor hereby grants</member>
1627 <member>Recipient a non-exclusive, worldwide, royalty-free copyright license to</member>
1628 <member>reproduce, prepare derivative works of, publicly display, publicly perform,</member>
1629 <member>distribute and sublicense the Contribution of such Contributor, if any, and</member>
1630 <member>such derivative works, in source code and object code form.</member>
1631 <member>&#160;</member>
1632 <member>b) Subject to the terms of this Agreement, each Contributor hereby grants</member>
1633 <member>Recipient a non-exclusive, worldwide, royalty-free patent license under</member>
1634 <member>Licensed Patents to make, use, sell, offer to sell, import and otherwise</member>
1635 <member>transfer the Contribution of such Contributor, if any, in source code and</member>
1636 <member>object code form. This patent license shall apply to the combination of the</member>
1637 <member>Contribution and the Program if, at the time the Contribution is added by the</member>
1638 <member>Contributor, such addition of the Contribution causes such combination to be</member>
1639 <member>covered by the Licensed Patents. The patent license shall not apply to any</member>
1640 <member>other combinations which include the Contribution. No hardware per se is</member>
1641 <member>licensed hereunder.</member>
1642 <member>&#160;</member>
1643 <member>c) Recipient understands that although each Contributor grants the licenses to</member>
1644 <member>its Contributions set forth herein, no assurances are provided by any</member>
1645 <member>Contributor that the Program does not infringe the patent or other</member>
1646 <member>intellectual property rights of any other entity. Each Contributor disclaims</member>
1647 <member>any liability to Recipient for claims brought by any other entity based on</member>
1648 <member>infringement of intellectual property rights or otherwise. As a condition to</member>
1649 <member>exercising the rights and licenses granted hereunder, each Recipient hereby</member>
1650 <member>assumes sole responsibility to secure any other intellectual property rights</member>
1651 <member>needed, if any. For example, if a third party patent license is required to</member>
1652 <member>allow Recipient to distribute the Program, it is Recipient's responsibility to</member>
1653 <member>acquire that license before distributing the Program.</member>
1654 <member>&#160;</member>
1655 <member>d) Each Contributor represents that to its knowledge it has sufficient</member>
1656 <member>copyright rights in its Contribution, if any, to grant the copyright license</member>
1657 <member>set forth in this Agreement.</member>
1658 <member>&#160;</member>
1659 <member>**3\. REQUIREMENTS**</member>
1660 <member>&#160;</member>
1661 <member>A Contributor may choose to distribute the Program in object code form under</member>
1662 <member>its own license agreement, provided that:</member>
1663 <member>&#160;</member>
1664 <member>a) it complies with the terms and conditions of this Agreement; and</member>
1665 <member>&#160;</member>
1666 <member>b) its license agreement:</member>
1667 <member>&#160;</member>
1668 <member>i) effectively disclaims on behalf of all Contributors all warranties and</member>
1669 <member>conditions, express and implied, including warranties or conditions of title</member>
1670 <member>and non-infringement, and implied warranties or conditions of merchantability</member>
1671 <member>and fitness for a particular purpose;</member>
1672 <member>&#160;</member>
1673 <member>ii) effectively excludes on behalf of all Contributors all liability for</member>
1674 <member>damages, including direct, indirect, special, incidental and consequential</member>
1675 <member>damages, such as lost profits;</member>
1676 <member>&#160;</member>
1677 <member>iii) states that any provisions which differ from this Agreement are offered</member>
1678 <member>by that Contributor alone and not by any other party; and</member>
1679 <member>&#160;</member>
1680 <member>iv) states that source code for the Program is available from such</member>
1681 <member>Contributor, and informs licensees how to obtain it in a reasonable manner on</member>
1682 <member>or through a medium customarily used for software exchange.</member>
1683 <member>&#160;</member>
1684 <member>When the Program is made available in source code form:</member>
1685 <member>&#160;</member>
1686 <member>a) it must be made available under this Agreement; and</member>
1687 <member>&#160;</member>
1688 <member>b) a copy of this Agreement must be included with each copy of the Program.</member>
1689 <member>&#160;</member>
1690 <member>Contributors may not remove or alter any copyright notices contained within</member>
1691 <member>the Program.</member>
1692 <member>&#160;</member>
1693 <member>Each Contributor must identify itself as the originator of its Contribution,</member>
1694 <member>if any, in a manner that reasonably allows subsequent Recipients to identify</member>
1695 <member>the originator of the Contribution.</member>
1696 <member>&#160;</member>
1697 <member>**4\. COMMERCIAL DISTRIBUTION**</member>
1698 <member>&#160;</member>
1699 <member>Commercial distributors of software may accept certain responsibilities with</member>
1700 <member>respect to end users, business partners and the like. While this license is</member>
1701 <member>intended to facilitate the commercial use of the Program, the Contributor who</member>
1702 <member>includes the Program in a commercial product offering should do so in a manner</member>
1703 <member>which does not create potential liability for other Contributors. Therefore,</member>
1704 <member>if a Contributor includes the Program in a commercial product offering, such</member>
1705 <member>Contributor ("Commercial Contributor") hereby agrees to defend and indemnify</member>
1706 <member>every other Contributor ("Indemnified Contributor") against any losses,</member>
1707 <member>damages and costs (collectively "Losses") arising from claims, lawsuits and</member>
1708 <member>other legal actions brought by a third party against the Indemnified</member>
1709 <member>Contributor to the extent caused by the acts or omissions of such Commercial</member>
1710 <member>Contributor in connection with its distribution of the Program in a commercial</member>
1711 <member>product offering. The obligations in this section do not apply to any claims</member>
1712 <member>or Losses relating to any actual or alleged intellectual property</member>
1713 <member>infringement. In order to qualify, an Indemnified Contributor must: a)</member>
1714 <member>promptly notify the Commercial Contributor in writing of such claim, and b)</member>
1715 <member>allow the Commercial Contributor to control, and cooperate with the Commercial</member>
1716 <member>Contributor in, the defense and any related settlement negotiations. The</member>
1717 <member>Indemnified Contributor may participate in any such claim at its own expense.</member>
1718 <member>&#160;</member>
1719 <member>For example, a Contributor might include the Program in a commercial product</member>
1720 <member>offering, Product X. That Contributor is then a Commercial Contributor. If</member>
1721 <member>that Commercial Contributor then makes performance claims, or offers</member>
1722 <member>warranties related to Product X, those performance claims and warranties are</member>
1723 <member>such Commercial Contributor's responsibility alone. Under this section, the</member>
1724 <member>Commercial Contributor would have to defend claims against the other</member>
1725 <member>Contributors related to those performance claims and warranties, and if a</member>
1726 <member>court requires any other Contributor to pay any damages as a result, the</member>
1727 <member>Commercial Contributor must pay those damages.</member>
1728 <member>&#160;</member>
1729 <member>**5\. NO WARRANTY**</member>
1730 <member>&#160;</member>
1731 <member>EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN</member>
1732 <member>"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR</member>
1733 <member>IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE,</member>
1734 <member>NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each</member>
1735 <member>Recipient is solely responsible for determining the appropriateness of using</member>
1736 <member>and distributing the Program and assumes all risks associated with its</member>
1737 <member>exercise of rights under this Agreement , including but not limited to the</member>
1738 <member>risks and costs of program errors, compliance with applicable laws, damage to</member>
1739 <member>or loss of data, programs or equipment, and unavailability or interruption of</member>
1740 <member>operations.</member>
1741 <member>&#160;</member>
1742 <member>**6\. DISCLAIMER OF LIABILITY**</member>
1743 <member>&#160;</member>
1744 <member>EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY</member>
1745 <member>CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL,</member>
1746 <member>SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION</member>
1747 <member>LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN</member>
1748 <member>CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)</member>
1749 <member>ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE</member>
1750 <member>EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY</member>
1751 <member>OF SUCH DAMAGES.</member>
1752 <member>&#160;</member>
1753 <member>**7\. GENERAL**</member>
1754 <member>&#160;</member>
1755 <member>If any provision of this Agreement is invalid or unenforceable under</member>
1756 <member>applicable law, it shall not affect the validity or enforceability of the</member>
1757 <member>remainder of the terms of this Agreement, and without further action by the</member>
1758 <member>parties hereto, such provision shall be reformed to the minimum extent</member>
1759 <member>necessary to make such provision valid and enforceable.</member>
1760 <member>&#160;</member>
1761 <member>If Recipient institutes patent litigation against any entity (including a</member>
1762 <member>cross-claim or counterclaim in a lawsuit) alleging that the Program itself</member>
1763 <member>(excluding combinations of the Program with other software or hardware)</member>
1764 <member>infringes such Recipient's patent(s), then such Recipient's rights granted</member>
1765 <member>under Section 2(b) shall terminate as of the date such litigation is filed.</member>
1766 <member>&#160;</member>
1767 <member>All Recipient's rights under this Agreement shall terminate if it fails to</member>
1768 <member>comply with any of the material terms or conditions of this Agreement and does</member>
1769 <member>not cure such failure in a reasonable period of time after becoming aware of</member>
1770 <member>such noncompliance. If all Recipient's rights under this Agreement terminate,</member>
1771 <member>Recipient agrees to cease use and distribution of the Program as soon as</member>
1772 <member>reasonably practicable. However, Recipient's obligations under this Agreement</member>
1773 <member>and any licenses granted by Recipient relating to the Program shall continue</member>
1774 <member>and survive.</member>
1775 <member>&#160;</member>
1776 <member>Everyone is permitted to copy and distribute copies of this Agreement, but in</member>
1777 <member>order to avoid inconsistency the Agreement is copyrighted and may only be</member>
1778 <member>modified in the following manner. The Agreement Steward reserves the right to</member>
1779 <member>publish new versions (including revisions) of this Agreement from time to</member>
1780 <member>time. No one other than the Agreement Steward has the right to modify this</member>
1781 <member>Agreement. The Eclipse Foundation is the initial Agreement Steward. The</member>
1782 <member>Eclipse Foundation may assign the responsibility to serve as the Agreement</member>
1783 <member>Steward to a suitable separate entity. Each new version of the Agreement will</member>
1784 <member>be given a distinguishing version number. The Program (including</member>
1785 <member>Contributions) may always be distributed subject to the version of the</member>
1786 <member>Agreement under which it was received. In addition, after a new version of the</member>
1787 <member>Agreement is published, Contributor may elect to distribute the Program</member>
1788 <member>(including its Contributions) under the new version. Except as expressly</member>
1789 <member>stated in Sections 2(a) and 2(b) above, Recipient receives no rights or</member>
1790 <member>licenses to the intellectual property of any Contributor under this Agreement,</member>
1791 <member>whether expressly, by implication, estoppel or otherwise. All rights in the</member>
1792 <member>Program not expressly granted under this Agreement are reserved.</member>
1793 <member>&#160;</member>
1794 <member>This Agreement is governed by the laws of the State of New York and the</member>
1795 <member>intellectual property laws of the United States of America. No party to this</member>
1796 <member>Agreement will bring a legal action under this Agreement more than one year</member>
1797 <member>after the cause of action arose. Each party waives its rights to a jury trial</member>
1798 <member>in any resulting litigation.</member>
1799 </simplelist>
1800 </section>
1801 </section>
1802 <section id="enea-linux-eclipse-open-source-licenses-15">
1803 <title>License 15</title>
1804 <section>
1805 <title>Source File(s)</title>
1806 <itemizedlist spacing="compact">
1807 <listitem>
1808 <para>
1809 plugins/extracted_jars/org.apache.batik.css_1.7.0.v201011041433/about_files/LICENSE.dom-software.txt
1810 </para>
1811 </listitem>
1812 </itemizedlist>
1813 </section>
1814 <section>
1815 <title>License Text</title>
1816 <simplelist>
1817 <member>xml-commons/java/external/LICENSE.dom-software.txt $Id: LICENSE.dom-software.txt,v 1.1.4.2 2009/02/20 18:01:09 cdamus Exp $</member>
1818 <member>&#160;</member>
1819 <member>&#160;</member>
1820 <member>This license came from: http://www.w3.org/Consortium/Legal/copyright-software-19980720</member>
1821 <member>&#160;</member>
1822 <member>&#160;</member>
1823 <member>W3C(R) SOFTWARE NOTICE AND LICENSE</member>
1824 <member>Copyright (C) 1994-2001 World</member>
1825 <member>Wide Web Consortium, &lt;a href="http://www.w3.org/"&gt;World</member>
1826 <member>Wide Web Consortium&lt;/a&gt;, (&lt;a href=</member>
1827 <member>"http://www.lcs.mit.edu/"&gt;Massachusetts Institute of</member>
1828 <member>Technology&lt;/a&gt;, &lt;a href="http://www.inria.fr/"&gt;Institut National de</member>
1829 <member>Recherche en Informatique et en Automatique&lt;/a&gt;, &lt;a href=</member>
1830 <member>"http://www.keio.ac.jp/"&gt;Keio University&lt;/a&gt;). All Rights Reserved.</member>
1831 <member>http://www.w3.org/Consortium/Legal/</member>
1832 <member>&#160;</member>
1833 <member>This W3C work (including software, documents, or other related</member>
1834 <member>items) is being provided by the copyright holders under the</member>
1835 <member>following license. By obtaining, using and/or copying this work,</member>
1836 <member>you (the licensee) agree that you have read, understood, and will</member>
1837 <member>comply with the following terms and conditions:</member>
1838 <member>Permission to use, copy, modify, and distribute this software</member>
1839 <member>and its documentation, with or without modification, for any</member>
1840 <member>purpose and without fee or royalty is hereby granted, provided that</member>
1841 <member>you include the following on ALL copies of the software and</member>
1842 <member>documentation or portions thereof, including modifications, that</member>
1843 <member>you make:</member>
1844 <member>&#160;</member>
1845 <member>The full text of this NOTICE in a location viewable to users of</member>
1846 <member>the redistributed or derivative work.</member>
1847 <member>&#160;</member>
1848 <member>Any pre-existing intellectual property disclaimers, notices, or</member>
1849 <member>terms and conditions. If none exist, a short notice of the</member>
1850 <member>following form (hypertext is preferred, text is permitted) should</member>
1851 <member>be used within the body of any redistributed or derivative code:</member>
1852 <member>"Copyright (C) [$date-of-software] World Wide Web Consortium, (Massachusetts Institute of</member>
1853 <member>Technology, Institut National de</member>
1854 <member>Recherche en Informatique et en Automatique, Keio University). All Rights Reserved.</member>
1855 <member>http://www.w3.org/Consortium/Legal/"</member>
1856 <member>&#160;</member>
1857 <member>Notice of any changes or modifications to the W3C files,</member>
1858 <member>including the date changes were made. (We recommend you provide </member>
1859 <member>URIs to the location from which the code is derived.)</member>
1860 <member>&#160;</member>
1861 <member>THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND</member>
1862 <member>COPYRIGHT HOLDERS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR</member>
1863 <member>IMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES OF</member>
1864 <member>MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE</member>
1865 <member>USE OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE ANY THIRD</member>
1866 <member>PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.</member>
1867 <member>COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT,</member>
1868 <member>SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE</member>
1869 <member>SOFTWARE OR DOCUMENTATION.</member>
1870 <member>&#160;</member>
1871 <member>The name and trademarks of copyright holders may NOT be used in</member>
1872 <member>advertising or publicity pertaining to the software without</member>
1873 <member>specific, written prior permission. Title to copyright in this</member>
1874 <member>software and any associated documentation will at all times remain</member>
1875 <member>with copyright holders.</member>
1876 <member>____________________________________</member>
1877 <member>This formulation of W3C's notice and license became active on</member>
1878 <member>August 14 1998 so as to improve compatibility with GPL. This</member>
1879 <member>version ensures that W3C software licensing terms are no more</member>
1880 <member>restrictive than GPL and consequently W3C software may be</member>
1881 <member>distributed in GPL packages. See the older formulation for the</member>
1882 <member>policy prior to this date. Please see our Copyright FAQ for common </member>
1883 <member>questions about using materials from</member>
1884 <member>our site, including specific terms and conditions for packages like</member>
1885 <member>libwww, Amaya, and Jigsaw. </member>
1886 <member>Other questions about this notice can be</member>
1887 <member>directed to site-policy@w3.org.</member>
1888 <member>&#160;</member>
1889 <member>webmaster</member>
1890 <member>(last updated $Date: 2009/02/20 18:01:09 $)</member>
1891 </simplelist>
1892 </section>
1893 </section>
1894 <section id="enea-linux-eclipse-open-source-licenses-16">
1895 <title>License 16</title>
1896 <section>
1897 <title>Source File(s)</title>
1898 <itemizedlist spacing="compact">
1899 <listitem>
1900 <para>
1901 plugins/extracted_jars/javax.xml_1.3.4.v201005080400/about_files/LICENSE.DOM-software.html
1902 </para>
1903 </listitem>
1904 </itemizedlist>
1905 </section>
1906 <section>
1907 <title>License Text</title>
1908 <simplelist>
1909 <member># W3C(R) SOFTWARE NOTICE AND LICENSE</member>
1910 <member>&#160;</member>
1911 <member>### &lt;http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231&gt;</member>
1912 <member>&#160;</member>
1913 <member>This work (and included software, documentation such as READMEs, or other</member>
1914 <member>related items) is being provided by the copyright holders under the following</member>
1915 <member>license. By obtaining, using and/or copying this work, you (the licensee)</member>
1916 <member>agree that you have read, understood, and will comply with the following terms</member>
1917 <member>and conditions.</member>
1918 <member>&#160;</member>
1919 <member>Permission to copy, modify, and distribute this software and its</member>
1920 <member>documentation, with or without modification, for any purpose and without fee</member>
1921 <member>or royalty is hereby granted, provided that you include the following on ALL</member>
1922 <member>copies of the software and documentation or portions thereof, including</member>
1923 <member>modifications:</member>
1924 <member>&#160;</member>
1925 <member> 1. The full text of this NOTICE in a location viewable to users of the redistributed or derivative work. </member>
1926 <member> 2. Any pre-existing intellectual property disclaimers, notices, or terms and conditions. If none exist, the [W3C Software Short Notice](http://www.w3.org/Consortium/Legal/2002/copyright-software-short-notice-20021231.html) should be included (hypertext is preferred, text is permitted) within the body of any redistributed or derivative code. </member>
1927 <member> 3. Notice of any changes or modifications to the files, including the date changes were made. (We recommend you provide URIs to the location from which the code is derived.) </member>
1928 <member>&#160;</member>
1929 <member>THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS</member>
1930 <member>MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT</member>
1931 <member>LIMITED TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR</member>
1932 <member>PURPOSE OR THAT THE USE OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE ANY</member>
1933 <member>THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.</member>
1934 <member>&#160;</member>
1935 <member>COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR</member>
1936 <member>CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENTATION.</member>
1937 <member>&#160;</member>
1938 <member>The name and trademarks of copyright holders may NOT be used in advertising or</member>
1939 <member>publicity pertaining to the software without specific, written prior</member>
1940 <member>permission. Title to copyright in this software and any associated</member>
1941 <member>documentation will at all times remain with copyright holders.</member>
1942 <member>&#160;</member>
1943 <member>____________________________________</member>
1944 <member>&#160;</member>
1945 <member>This formulation of W3C's notice and license became active on December 31</member>
1946 <member>2002\. This version removes the copyright ownership notice such that this</member>
1947 <member>license can be used with materials other than those owned by the W3C, reflects</member>
1948 <member>that ERCIM is now a host of the W3C, includes references to this specific</member>
1949 <member>dated version of the license, and removes the ambiguous grant of "use".</member>
1950 <member>Otherwise, this version is the same as the [previous</member>
1951 <member>version](http://www.w3.org/Consortium/Legal/copyright-software-19980720) and</member>
1952 <member>is written so as to preserve the [Free Software Foundation's assessment of GPL</member>
1953 <member>compatibility](http://www.gnu.org/philosophy/license-</member>
1954 <member>list.html#GPLCompatibleLicenses) and [OSI's</member>
1955 <member>certification](http://www.opensource.org/licenses/W3C.php) under the [Open</member>
1956 <member>Source Definition](http://www.opensource.org/docs/definition.php). Please see</member>
1957 <member>our [Copyright FAQ](http://www.w3.org/Consortium/Legal/IPR-FAQ) for common</member>
1958 <member>questions about using materials from our site, including specific terms and</member>
1959 <member>conditions for packages like libwww, Amaya, and Jigsaw. Other questions about</member>
1960 <member>this notice can be directed to [site-policy@w3.org](mailto:site-</member>
1961 <member>policy@w3.org). </member>
1962 <member>&#160;</member>
1963 <member>&#160;</member>
1964 <member>Joseph Reagle &lt;[mailto:site-policy@w3.org](mailto:site-policy@w3.org)</member>
1965 <member>&#160;</member>
1966 <member>Last revised by Reagle $Date: 2007/12/03 05:48:34 $</member>
1967 </simplelist>
1968 </section>
1969 </section>
1970 <section id="enea-linux-eclipse-open-source-licenses-17">
1971 <title>License 17</title>
1972 <section>
1973 <title>Source File(s)</title>
1974 <itemizedlist spacing="compact">
1975 <listitem>
1976 <para>
1977 plugins/extracted_jars/org.eclipse.e4.emf.xpath_0.1.100.v20150513-0856/about.html
1978 </para>
1979 </listitem>
1980 </itemizedlist>
1981 </section>
1982 <section>
1983 <title>License Text</title>
1984 <simplelist>
1985 <member>## About This Content</member>
1986 <member>&#160;</member>
1987 <member>November 20, 2008</member>
1988 <member>&#160;</member>
1989 <member>### License</member>
1990 <member>&#160;</member>
1991 <member>The Eclipse Foundation makes available all content in this plug-in</member>
1992 <member>("Content"). Unless otherwise indicated below, the Content is provided to you</member>
1993 <member>under the terms and conditions of the Eclipse Public License Version 1.0</member>
1994 <member>("EPL"). A copy of the EPL is available at</member>
1995 <member>&lt;http://www.eclipse.org/legal/epl-v10.html&gt;. For purposes of the EPL,</member>
1996 <member>"Program" will mean the Content.</member>
1997 <member>&#160;</member>
1998 <member>If you did not receive this Content directly from the Eclipse Foundation, the</member>
1999 <member>Content is being redistributed by another party ("Redistributor") and</member>
2000 <member>different terms and conditions may apply to your use of any object code in the</member>
2001 <member>Content. Check the Redistributor's license that was provided with the Content.</member>
2002 <member>If no such license exists, contact the Redistributor. Unless otherwise</member>
2003 <member>indicated below, the terms and conditions of the EPL still apply to any source</member>
2004 <member>code in the Content and such source code may be obtained at</member>
2005 <member>&lt;http://www.eclipse.org&gt;.</member>
2006 <member>&#160;</member>
2007 <member>### Third Party Content</member>
2008 <member>&#160;</member>
2009 <member>The Content includes items from third parties as set out below. If you did not</member>
2010 <member>receive this Content directly from the Eclipse Foundation, the following is</member>
2011 <member>provided for informational purposes only, and you should look to the</member>
2012 <member>Redistributor's license for terms and conditions of use.</member>
2013 <member>&#160;</member>
2014 <member>#### Apache Commons JXPath 1.2.0</member>
2015 <member>&#160;</member>
2016 <member>The plug-in includes Apache Commons JXPath 1.2.0 ("Commons JXPath") developed</member>
2017 <member>by the Apache Software Foundation as part of the Jakarta project. Therefore:</member>
2018 <member>&#160;</member>
2019 <member>&gt; This product includes software developed by the Apache Software Foundation</member>
2020 <member>(&lt;http://www.apache.org/&gt;).</member>
2021 <member>&#160;</member>
2022 <member>Commons JXPath is:</member>
2023 <member>&#160;</member>
2024 <member>&gt; Copyright (c) 1997-2007 The Apache Software Foundation. All rights reserved.</member>
2025 <member>&#160;</member>
2026 <member>Your use of the Commons JXPath code is subject to the terms and conditions of</member>
2027 <member>the Apache Software License 2.0. A copy of the license is contained in the</member>
2028 <member>file [LICENSE.txt](about_files/LICENSE.txt) and is also available at</member>
2029 <member>&lt;http://www.apache.org/licenses/LICENSE-2.0.html&gt;.</member>
2030 <member>&#160;</member>
2031 <member>The Apache attribution [NOTICE.txt](about_files/NOTICE.txt) file is included</member>
2032 <member>with the Content in accordance with 4d of the Apache License, Version 2.0.</member>
2033 <member>&#160;</member>
2034 <member>Examples and documentation as well as updated source code for Commons JXPath</member>
2035 <member>is available at &lt;http://commons.apache.org/jxpath/&gt;.</member>
2036 </simplelist>
2037 </section>
2038 </section>
2039 <section id="enea-linux-eclipse-open-source-licenses-18">
2040 <title>License 18</title>
2041 <section>
2042 <title>Source File(s)</title>
2043 <itemizedlist spacing="compact">
2044 <listitem>
2045 <para>
2046 plugins/extracted_jars/org.eclipse.ant.ui.source_3.6.0.v20150428-1928/about_files/NOTICE
2047 </para>
2048 </listitem>
2049 <listitem>
2050 <para>
2051 plugins/extracted_jars/org.eclipse.ant.ui_3.6.0.v20150428-1928/about_files/NOTICE
2052 </para>
2053 </listitem>
2054 <listitem>
2055 <para>
2056 plugins/extracted_jars/org.eclipse.team.cvs.core_3.3.700.v20150203-1452/about_files/NOTICE
2057 </para>
2058 </listitem>
2059 <listitem>
2060 <para>
2061 plugins/extracted_jars/org.eclipse.ant.core.source_3.4.0.v20150428-1928/about_files/NOTICE
2062 </para>
2063 </listitem>
2064 <listitem>
2065 <para>
2066 plugins/extracted_jars/org.eclipse.ant.core_3.4.0.v20150428-1928/about_files/NOTICE
2067 </para>
2068 </listitem>
2069 </itemizedlist>
2070 </section>
2071 <section>
2072 <title>License Text</title>
2073 <simplelist>
2074 <member> =========================================================================</member>
2075 <member> == NOTICE file corresponding to the section 4 d of ==</member>
2076 <member> == the Apache License, Version 2.0, ==</member>
2077 <member> == in this case for the Apache Ant distribution. ==</member>
2078 <member> =========================================================================</member>
2079 <member>&#160;</member>
2080 <member> This product includes software developed by</member>
2081 <member> The Apache Software Foundation (http://www.apache.org/).</member>
2082 <member>&#160;</member>
2083 <member> This product includes also software developed by :</member>
2084 <member> - the W3C consortium (http://www.w3c.org) ,</member>
2085 <member> - the SAX project (http://www.saxproject.org)</member>
2086 <member>&#160;</member>
2087 <member> Please read the different LICENSE files present in the root directory of</member>
2088 <member> this distribution.</member>
2089 </simplelist>
2090 </section>
2091 </section>
2092 <section id="enea-linux-eclipse-open-source-licenses-19">
2093 <title>License 19</title>
2094 <section>
2095 <title>Source File(s)</title>
2096 <itemizedlist spacing="compact">
2097 <listitem>
2098 <para>
2099 plugins/extracted_jars/org.hamcrest.core_1.3.0.v201303031735/about_files/LICENSE.txt
2100 </para>
2101 </listitem>
2102 <listitem>
2103 <para>
2104 plugins/extracted_jars/org.hamcrest.core.source_1.3.0.v201303031735/about_files/LICENSE.txt
2105 </para>
2106 </listitem>
2107 </itemizedlist>
2108 </section>
2109 <section>
2110 <title>License Text</title>
2111 <simplelist>
2112 <member>BSD License</member>
2113 <member>&#160;</member>
2114 <member>Copyright (c) 2000-2006, www.hamcrest.org</member>
2115 <member>All rights reserved.</member>
2116 <member>&#160;</member>
2117 <member>Redistribution and use in source and binary forms, with or without</member>
2118 <member>modification, are permitted provided that the following conditions are met:</member>
2119 <member>&#160;</member>
2120 <member>Redistributions of source code must retain the above copyright notice, this list of</member>
2121 <member>conditions and the following disclaimer. Redistributions in binary form must reproduce</member>
2122 <member>the above copyright notice, this list of conditions and the following disclaimer in</member>
2123 <member>the documentation and/or other materials provided with the distribution.</member>
2124 <member>&#160;</member>
2125 <member>Neither the name of Hamcrest nor the names of its contributors may be used to endorse</member>
2126 <member>or promote products derived from this software without specific prior written</member>
2127 <member>permission.</member>
2128 <member>&#160;</member>
2129 <member>THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY</member>
2130 <member>EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES</member>
2131 <member>OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT</member>
2132 <member>SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,</member>
2133 <member>INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED</member>
2134 <member>TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR</member>
2135 <member>BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN</member>
2136 <member>CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY</member>
2137 <member>WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH</member>
2138 <member>DAMAGE.</member>
2139 </simplelist>
2140 </section>
2141 </section>
2142 <section id="enea-linux-eclipse-open-source-licenses-20">
2143 <title>License 20</title>
2144 <section>
2145 <title>Source File(s)</title>
2146 <itemizedlist spacing="compact">
2147 <listitem>
2148 <para>
2149 plugins/extracted_jars/org.apache.batik.util.gui.source_1.7.0.v200903091627/about_files/LICENSE.sax.txt
2150 </para>
2151 </listitem>
2152 </itemizedlist>
2153 </section>
2154 <section>
2155 <title>License Text</title>
2156 <simplelist>
2157 <member>xml-commons/java/external/LICENSE.sax.txt $Id: LICENSE.sax.txt,v 1.2.2.2 2009/02/27 15:41:22 cdamus Exp $</member>
2158 <member>&#160;</member>
2159 <member>&#160;</member>
2160 <member>This license came from: http://www.megginson.com/SAX/copying.html</member>
2161 <member> However please note future versions of SAX may be covered </member>
2162 <member> under http://saxproject.org/?selected=pd</member>
2163 <member>&#160;</member>
2164 <member>&#160;</member>
2165 <member>This page is now out of date -- see the new SAX site at </member>
2166 <member>http://www.saxproject.org/ for more up-to-date</member>
2167 <member>releases and other information. Please change your bookmarks.</member>
2168 <member>&#160;</member>
2169 <member>&#160;</member>
2170 <member>SAX2 is Free!</member>
2171 <member>&#160;</member>
2172 <member>I hereby abandon any property rights to SAX 2.0 (the Simple API for</member>
2173 <member>XML), and release all of the SAX 2.0 source code, compiled code, and</member>
2174 <member>documentation contained in this distribution into the Public Domain.</member>
2175 <member>SAX comes with NO WARRANTY or guarantee of fitness for any</member>
2176 <member>purpose.</member>
2177 <member>&#160;</member>
2178 <member>David Megginson, david@megginson.com</member>
2179 <member>2000-05-05</member>
2180 </simplelist>
2181 </section>
2182 </section>
2183 <section id="enea-linux-eclipse-open-source-licenses-21">
2184 <title>License 21</title>
2185 <section>
2186 <title>Source File(s)</title>
2187 <itemizedlist spacing="compact">
2188 <listitem>
2189 <para>
2190 plugins/extracted_jars/org.apache.batik.util.source_1.7.0.v201011041433/about_files/LICENSE-2.0.txt
2191 </para>
2192 </listitem>
2193 <listitem>
2194 <para>
2195 plugins/extracted_jars/org.w3c.dom.smil_1.0.1.v200903091627/about_files/LICENSE-2.0.txt
2196 </para>
2197 </listitem>
2198 <listitem>
2199 <para>
2200 plugins/extracted_jars/org.w3c.css.sac_1.3.1.v200903091627/about_files/LICENSE-2.0.txt
2201 </para>
2202 </listitem>
2203 <listitem>
2204 <para>
2205 plugins/extracted_jars/org.w3c.dom.events.source_3.0.0.draft20060413_v201105210656/about_files/LICENSE-2.0.txt
2206 </para>
2207 </listitem>
2208 <listitem>
2209 <para>
2210 plugins/extracted_jars/org.w3c.dom.svg.source_1.1.0.v201011041433/about_files/LICENSE-2.0.txt
2211 </para>
2212 </listitem>
2213 <listitem>
2214 <para>
2215 plugins/extracted_jars/org.w3c.dom.smil.source_1.0.1.v200903091627/about_files/LICENSE-2.0.txt
2216 </para>
2217 </listitem>
2218 <listitem>
2219 <para>
2220 plugins/extracted_jars/org.apache.batik.css_1.7.0.v201011041433/about_files/LICENSE-2.0.txt
2221 </para>
2222 </listitem>
2223 <listitem>
2224 <para>
2225 plugins/extracted_jars/org.apache.batik.util.gui_1.7.0.v200903091627/about_files/LICENSE-2.0.txt
2226 </para>
2227 </listitem>
2228 <listitem>
2229 <para>
2230 plugins/extracted_jars/org.apache.batik.util_1.7.0.v201011041433/about_files/LICENSE-2.0.txt
2231 </para>
2232 </listitem>
2233 <listitem>
2234 <para>
2235 plugins/extracted_jars/org.w3c.dom.svg_1.1.0.v201011041433/about_files/LICENSE-2.0.txt
2236 </para>
2237 </listitem>
2238 <listitem>
2239 <para>
2240 plugins/extracted_jars/org.w3c.css.sac.source_1.3.1.v200903091627/about_files/LICENSE-2.0.txt
2241 </para>
2242 </listitem>
2243 <listitem>
2244 <para>
2245 plugins/extracted_jars/org.apache.batik.util.gui.source_1.7.0.v200903091627/about_files/LICENSE-2.0.txt
2246 </para>
2247 </listitem>
2248 <listitem>
2249 <para>
2250 plugins/extracted_jars/org.apache.batik.css.source_1.7.0.v201011041433/about_files/LICENSE-2.0.txt
2251 </para>
2252 </listitem>
2253 </itemizedlist>
2254 </section>
2255 <section>
2256 <title>License Text</title>
2257 <simplelist>
2258 <member> Apache License</member>
2259 <member> Version 2.0, January 2004</member>
2260 <member> http://www.apache.org/licenses/</member>
2261 <member>&#160;</member>
2262 <member> TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION</member>
2263 <member>&#160;</member>
2264 <member> 1. Definitions.</member>
2265 <member>&#160;</member>
2266 <member> "License" shall mean the terms and conditions for use, reproduction,</member>
2267 <member> and distribution as defined by Sections 1 through 9 of this document.</member>
2268 <member>&#160;</member>
2269 <member> "Licensor" shall mean the copyright owner or entity authorized by</member>
2270 <member> the copyright owner that is granting the License.</member>
2271 <member>&#160;</member>
2272 <member> "Legal Entity" shall mean the union of the acting entity and all</member>
2273 <member> other entities that control, are controlled by, or are under common</member>
2274 <member> control with that entity. For the purposes of this definition,</member>
2275 <member> "control" means (i) the power, direct or indirect, to cause the</member>
2276 <member> direction or management of such entity, whether by contract or</member>
2277 <member> otherwise, or (ii) ownership of fifty percent (50%) or more of the</member>
2278 <member> outstanding shares, or (iii) beneficial ownership of such entity.</member>
2279 <member>&#160;</member>
2280 <member> "You" (or "Your") shall mean an individual or Legal Entity</member>
2281 <member> exercising permissions granted by this License.</member>
2282 <member>&#160;</member>
2283 <member> "Source" form shall mean the preferred form for making modifications,</member>
2284 <member> including but not limited to software source code, documentation</member>
2285 <member> source, and configuration files.</member>
2286 <member>&#160;</member>
2287 <member> "Object" form shall mean any form resulting from mechanical</member>
2288 <member> transformation or translation of a Source form, including but</member>
2289 <member> not limited to compiled object code, generated documentation,</member>
2290 <member> and conversions to other media types.</member>
2291 <member>&#160;</member>
2292 <member> "Work" shall mean the work of authorship, whether in Source or</member>
2293 <member> Object form, made available under the License, as indicated by a</member>
2294 <member> copyright notice that is included in or attached to the work</member>
2295 <member> (an example is provided in the Appendix below).</member>
2296 <member>&#160;</member>
2297 <member> "Derivative Works" shall mean any work, whether in Source or Object</member>
2298 <member> form, that is based on (or derived from) the Work and for which the</member>
2299 <member> editorial revisions, annotations, elaborations, or other modifications</member>
2300 <member> represent, as a whole, an original work of authorship. For the purposes</member>
2301 <member> of this License, Derivative Works shall not include works that remain</member>
2302 <member> separable from, or merely link (or bind by name) to the interfaces of,</member>
2303 <member> the Work and Derivative Works thereof.</member>
2304 <member>&#160;</member>
2305 <member> "Contribution" shall mean any work of authorship, including</member>
2306 <member> the original version of the Work and any modifications or additions</member>
2307 <member> to that Work or Derivative Works thereof, that is intentionally</member>
2308 <member> submitted to Licensor for inclusion in the Work by the copyright owner</member>
2309 <member> or by an individual or Legal Entity authorized to submit on behalf of</member>
2310 <member> the copyright owner. For the purposes of this definition, "submitted"</member>
2311 <member> means any form of electronic, verbal, or written communication sent</member>
2312 <member> to the Licensor or its representatives, including but not limited to</member>
2313 <member> communication on electronic mailing lists, source code control systems,</member>
2314 <member> and issue tracking systems that are managed by, or on behalf of, the</member>
2315 <member> Licensor for the purpose of discussing and improving the Work, but</member>
2316 <member> excluding communication that is conspicuously marked or otherwise</member>
2317 <member> designated in writing by the copyright owner as "Not a Contribution."</member>
2318 <member>&#160;</member>
2319 <member> "Contributor" shall mean Licensor and any individual or Legal Entity</member>
2320 <member> on behalf of whom a Contribution has been received by Licensor and</member>
2321 <member> subsequently incorporated within the Work.</member>
2322 <member>&#160;</member>
2323 <member> 2. Grant of Copyright License. Subject to the terms and conditions of</member>
2324 <member> this License, each Contributor hereby grants to You a perpetual,</member>
2325 <member> worldwide, non-exclusive, no-charge, royalty-free, irrevocable</member>
2326 <member> copyright license to reproduce, prepare Derivative Works of,</member>
2327 <member> publicly display, publicly perform, sublicense, and distribute the</member>
2328 <member> Work and such Derivative Works in Source or Object form.</member>
2329 <member>&#160;</member>
2330 <member> 3. Grant of Patent License. Subject to the terms and conditions of</member>
2331 <member> this License, each Contributor hereby grants to You a perpetual,</member>
2332 <member> worldwide, non-exclusive, no-charge, royalty-free, irrevocable</member>
2333 <member> (except as stated in this section) patent license to make, have made,</member>
2334 <member> use, offer to sell, sell, import, and otherwise transfer the Work,</member>
2335 <member> where such license applies only to those patent claims licensable</member>
2336 <member> by such Contributor that are necessarily infringed by their</member>
2337 <member> Contribution(s) alone or by combination of their Contribution(s)</member>
2338 <member> with the Work to which such Contribution(s) was submitted. If You</member>
2339 <member> institute patent litigation against any entity (including a</member>
2340 <member> cross-claim or counterclaim in a lawsuit) alleging that the Work</member>
2341 <member> or a Contribution incorporated within the Work constitutes direct</member>
2342 <member> or contributory patent infringement, then any patent licenses</member>
2343 <member> granted to You under this License for that Work shall terminate</member>
2344 <member> as of the date such litigation is filed.</member>
2345 <member>&#160;</member>
2346 <member> 4. Redistribution. You may reproduce and distribute copies of the</member>
2347 <member> Work or Derivative Works thereof in any medium, with or without</member>
2348 <member> modifications, and in Source or Object form, provided that You</member>
2349 <member> meet the following conditions:</member>
2350 <member>&#160;</member>
2351 <member> (a) You must give any other recipients of the Work or</member>
2352 <member> Derivative Works a copy of this License; and</member>
2353 <member>&#160;</member>
2354 <member> (b) You must cause any modified files to carry prominent notices</member>
2355 <member> stating that You changed the files; and</member>
2356 <member>&#160;</member>
2357 <member> (c) You must retain, in the Source form of any Derivative Works</member>
2358 <member> that You distribute, all copyright, patent, trademark, and</member>
2359 <member> attribution notices from the Source form of the Work,</member>
2360 <member> excluding those notices that do not pertain to any part of</member>
2361 <member> the Derivative Works; and</member>
2362 <member>&#160;</member>
2363 <member> (d) If the Work includes a "NOTICE" text file as part of its</member>
2364 <member> distribution, then any Derivative Works that You distribute must</member>
2365 <member> include a readable copy of the attribution notices contained</member>
2366 <member> within such NOTICE file, excluding those notices that do not</member>
2367 <member> pertain to any part of the Derivative Works, in at least one</member>
2368 <member> of the following places: within a NOTICE text file distributed</member>
2369 <member> as part of the Derivative Works; within the Source form or</member>
2370 <member> documentation, if provided along with the Derivative Works; or,</member>
2371 <member> within a display generated by the Derivative Works, if and</member>
2372 <member> wherever such third-party notices normally appear. The contents</member>
2373 <member> of the NOTICE file are for informational purposes only and</member>
2374 <member> do not modify the License. You may add Your own attribution</member>
2375 <member> notices within Derivative Works that You distribute, alongside</member>
2376 <member> or as an addendum to the NOTICE text from the Work, provided</member>
2377 <member> that such additional attribution notices cannot be construed</member>
2378 <member> as modifying the License.</member>
2379 <member>&#160;</member>
2380 <member> You may add Your own copyright statement to Your modifications and</member>
2381 <member> may provide additional or different license terms and conditions</member>
2382 <member> for use, reproduction, or distribution of Your modifications, or</member>
2383 <member> for any such Derivative Works as a whole, provided Your use,</member>
2384 <member> reproduction, and distribution of the Work otherwise complies with</member>
2385 <member> the conditions stated in this License.</member>
2386 <member>&#160;</member>
2387 <member> 5. Submission of Contributions. Unless You explicitly state otherwise,</member>
2388 <member> any Contribution intentionally submitted for inclusion in the Work</member>
2389 <member> by You to the Licensor shall be under the terms and conditions of</member>
2390 <member> this License, without any additional terms or conditions.</member>
2391 <member> Notwithstanding the above, nothing herein shall supersede or modify</member>
2392 <member> the terms of any separate license agreement you may have executed</member>
2393 <member> with Licensor regarding such Contributions.</member>
2394 <member>&#160;</member>
2395 <member> 6. Trademarks. This License does not grant permission to use the trade</member>
2396 <member> names, trademarks, service marks, or product names of the Licensor,</member>
2397 <member> except as required for reasonable and customary use in describing the</member>
2398 <member> origin of the Work and reproducing the content of the NOTICE file.</member>
2399 <member>&#160;</member>
2400 <member> 7. Disclaimer of Warranty. Unless required by applicable law or</member>
2401 <member> agreed to in writing, Licensor provides the Work (and each</member>
2402 <member> Contributor provides its Contributions) on an "AS IS" BASIS,</member>
2403 <member> WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or</member>
2404 <member> implied, including, without limitation, any warranties or conditions</member>
2405 <member> of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A</member>
2406 <member> PARTICULAR PURPOSE. You are solely responsible for determining the</member>
2407 <member> appropriateness of using or redistributing the Work and assume any</member>
2408 <member> risks associated with Your exercise of permissions under this License.</member>
2409 <member>&#160;</member>
2410 <member> 8. Limitation of Liability. In no event and under no legal theory,</member>
2411 <member> whether in tort (including negligence), contract, or otherwise,</member>
2412 <member> unless required by applicable law (such as deliberate and grossly</member>
2413 <member> negligent acts) or agreed to in writing, shall any Contributor be</member>
2414 <member> liable to You for damages, including any direct, indirect, special,</member>
2415 <member> incidental, or consequential damages of any character arising as a</member>
2416 <member> result of this License or out of the use or inability to use the</member>
2417 <member> Work (including but not limited to damages for loss of goodwill,</member>
2418 <member> work stoppage, computer failure or malfunction, or any and all</member>
2419 <member> other commercial damages or losses), even if such Contributor</member>
2420 <member> has been advised of the possibility of such damages.</member>
2421 <member>&#160;</member>
2422 <member> 9. Accepting Warranty or Additional Liability. While redistributing</member>
2423 <member> the Work or Derivative Works thereof, You may choose to offer,</member>
2424 <member> and charge a fee for, acceptance of support, warranty, indemnity,</member>
2425 <member> or other liability obligations and/or rights consistent with this</member>
2426 <member> License. However, in accepting such obligations, You may act only</member>
2427 <member> on Your own behalf and on Your sole responsibility, not on behalf</member>
2428 <member> of any other Contributor, and only if You agree to indemnify,</member>
2429 <member> defend, and hold each Contributor harmless for any liability</member>
2430 <member> incurred by, or claims asserted against, such Contributor by reason</member>
2431 <member> of your accepting any such warranty or additional liability.</member>
2432 <member>&#160;</member>
2433 <member> END OF TERMS AND CONDITIONS</member>
2434 <member>&#160;</member>
2435 <member> APPENDIX: How to apply the Apache License to your work.</member>
2436 <member>&#160;</member>
2437 <member> To apply the Apache License to your work, attach the following</member>
2438 <member> boilerplate notice, with the fields enclosed by brackets "[]"</member>
2439 <member> replaced with your own identifying information. (Don't include</member>
2440 <member> the brackets!) The text should be enclosed in the appropriate</member>
2441 <member> comment syntax for the file format. We also recommend that a</member>
2442 <member> file or class name and description of purpose be included on the</member>
2443 <member> same "printed page" as the copyright notice for easier</member>
2444 <member> identification within third-party archives.</member>
2445 <member>&#160;</member>
2446 <member> Copyright [yyyy] [name of copyright owner]</member>
2447 <member>&#160;</member>
2448 <member> Licensed under the Apache License, Version 2.0 (the "License");</member>
2449 <member> you may not use this file except in compliance with the License.</member>
2450 <member> You may obtain a copy of the License at</member>
2451 <member>&#160;</member>
2452 <member> http://www.apache.org/licenses/LICENSE-2.0</member>
2453 <member>&#160;</member>
2454 <member> Unless required by applicable law or agreed to in writing, software</member>
2455 <member> distributed under the License is distributed on an "AS IS" BASIS,</member>
2456 <member> WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</member>
2457 <member> See the License for the specific language governing permissions and</member>
2458 <member> limitations under the License.</member>
2459 </simplelist>
2460 </section>
2461 </section>
2462 <section id="enea-linux-eclipse-open-source-licenses-22">
2463 <title>License 22</title>
2464 <section>
2465 <title>Source File(s)</title>
2466 <itemizedlist spacing="compact">
2467 <listitem>
2468 <para>
2469 features/org.eclipse.ecf.filetransfer.feature_3.10.0.v20150512-1727/about.html
2470 </para>
2471 </listitem>
2472 <listitem>
2473 <para>
2474 features/org.eclipse.ecf.filetransfer.ssl.feature_1.0.0.v20150512-1727/about.html
2475 </para>
2476 </listitem>
2477 <listitem>
2478 <para>
2479 features/org.eclipse.ecf.filetransfer.source.feature_3.10.0.v20150512-1727/about.html
2480 </para>
2481 </listitem>
2482 <listitem>
2483 <para>
2484 features/org.eclipse.ecf.filetransfer.ssl.source.feature_1.0.0.v20150512-1727/about.html
2485 </para>
2486 </listitem>
2487 </itemizedlist>
2488 </section>
2489 <section>
2490 <title>License Text</title>
2491 <simplelist>
2492 <member>## About This Content</member>
2493 <member>&#160;</member>
2494 <member>June 25, 2008</member>
2495 <member>&#160;</member>
2496 <member>### License</member>
2497 <member>&#160;</member>
2498 <member>The Eclipse Foundation makes available all content in this plug-in</member>
2499 <member>("Content"). Unless otherwise indicated below, the Content is provided to you</member>
2500 <member>under the terms and conditions of the Eclipse Public License Version 1.0</member>
2501 <member>("EPL"). A copy of the EPL is available at</member>
2502 <member>&lt;http://www.eclipse.org/legal/epl-v10.html&gt;. For purposes of the EPL,</member>
2503 <member>"Program" will mean the Content.</member>
2504 <member>&#160;</member>
2505 <member>If you did not receive this Content directly from the Eclipse Foundation, the</member>
2506 <member>Content is being redistributed by another party ("Redistributor") and</member>
2507 <member>different terms and conditions may apply to your use of any object code in the</member>
2508 <member>Content. Check the Redistributor's license that was provided with the Content.</member>
2509 <member>If no such license exists, contact the Redistributor. Unless otherwise</member>
2510 <member>indicated below, the terms and conditions of the EPL still apply to any source</member>
2511 <member>code in the Content and such source code may be obtained at</member>
2512 <member>&lt;http://www.eclipse.org&gt;.</member>
2513 <member>&#160;</member>
2514 <member>### Third Party Content</member>
2515 <member>&#160;</member>
2516 <member>The Content includes items that have been sourced from third parties as set</member>
2517 <member>out below. If you did not receive this Content directly from the Eclipse</member>
2518 <member>Foundation, the following is provided for informational purposes only, and you</member>
2519 <member>should look to the Redistributor's license for terms and conditions of use.</member>
2520 <member>&#160;</member>
2521 <member>### Apache HttpClient v3.0.1</member>
2522 <member>&#160;</member>
2523 <member>This plugin is based on software developed by the Apache Httpclient project at</member>
2524 <member>&lt;http://jakarta.apache.org/commons/httpclient/&gt;. A copy of this library is</member>
2525 <member>distributed within this plugin and therefore this plugin is subject to the</member>
2526 <member>Apache License version 2.0, a copy of the license is contained in the file</member>
2527 <member>[asl-v20.txt](asl-v20.txt) and at</member>
2528 <member>&lt;http://www.apache.org/licenses/LICENSE-2.0&gt;.</member>
2529 <member>&#160;</member>
2530 <member>### Apache Commons Codec v1.3</member>
2531 <member>&#160;</member>
2532 <member>This plugin is based on software developed by the Apache Commons Codec project</member>
2533 <member>at &lt;http://jakarta.apache.org/commons/codec/&gt;. A copy of this library is</member>
2534 <member>distributed within this plugin and therefore this plugin is subject to the</member>
2535 <member>Apache License version 2.0, a copy of the license is contained in the file</member>
2536 <member>[asl-v20.txt](asl-v20.txt) and at</member>
2537 <member>&lt;http://www.apache.org/licenses/LICENSE-2.0&gt;.</member>
2538 <member>&#160;</member>
2539 <member>### Apache Commons Logging v1.1</member>
2540 <member>&#160;</member>
2541 <member>This plugin is based on software developed by the Apache Commons Codec project</member>
2542 <member>at &lt;http://jakarta.apache.org/commons/logging/&gt;. A copy of this library is</member>
2543 <member>distributed within this plugin and therefore this plugin is subject to the</member>
2544 <member>Apache License version 2.0, a copy of the license is contained in the file</member>
2545 <member>[asl-v20.txt](asl-v20.txt) and at</member>
2546 <member>&lt;http://www.apache.org/licenses/LICENSE-2.0&gt;.</member>
2547 <member>&#160;</member>
2548 <member>### IRCLib API v1.10</member>
2549 <member>&#160;</member>
2550 <member>This plugin is based on software developed by [Christoph</member>
2551 <member>Schwering](http://schwering.org) at &lt;http://moepii.sourceforge.net/&gt;. A copy</member>
2552 <member>of this library is distributed within this plugin and therefore this plugin is</member>
2553 <member>subject to the Apache License version 2.0, a copy of the license is contained</member>
2554 <member>in the file [asl-v20.txt](asl-v20.txt) and at</member>
2555 <member>&lt;http://www.apache.org/licenses/LICENSE-2.0&gt;.</member>
2556 <member>&#160;</member>
2557 <member>### JmDNS API v2.0</member>
2558 <member>&#160;</member>
2559 <member>This plugin is based on software developed by JmDNS project team at</member>
2560 <member>&lt;http://jmdns.sourceforge.net&gt;. A copy of this library is distributed within</member>
2561 <member>this plugin and therefore this plugin is subject to the Apache License version</member>
2562 <member>2.0, a copy of the license is contained in the file [asl-v20.txt](asl-v20.txt)</member>
2563 <member>and at &lt;http://www.apache.org/licenses/LICENSE-2.0&gt;.</member>
2564 <member>&#160;</member>
2565 <member>### Jive Software Smack API v2.1.1</member>
2566 <member>&#160;</member>
2567 <member>This plugin is based on software developed by [Jive</member>
2568 <member>Software](http://www.jivesoftware.org) project team at</member>
2569 <member>&lt;http://www.igniterealtime.org/&gt;. A copy of this library is distributed within</member>
2570 <member>this plugin and therefore this plugin is subject to the Apache License version</member>
2571 <member>2.0, a copy of the license is contained in the file [asl-v20.txt](asl-v20.txt)</member>
2572 <member>and at &lt;http://www.apache.org/licenses/LICENSE-2.0&gt;.</member>
2573 <member>&#160;</member>
2574 <member>Your use of the this plugin and the components listed above is subject to the</member>
2575 <member>terms and conditions of the Apache License v2.0 which is available at</member>
2576 <member>&lt;http://www.apache.org/licenses/LICENSE-2.0&gt;.</member>
2577 <member>&#160;</member>
2578 <member>More specifically:</member>
2579 <member>&#160;</member>
2580 <member>Apache License </member>
2581 <member>Version 2.0, January 2004 </member>
2582 <member>&lt;http://www.apache.org/licenses/&gt;</member>
2583 <member>&#160;</member>
2584 <member>TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION</member>
2585 <member>&#160;</member>
2586 <member>**1\. Definitions**.</member>
2587 <member>&#160;</member>
2588 <member>"License" shall mean the terms and conditions for use, reproduction, and</member>
2589 <member>distribution as defined by Sections 1 through 9 of this document.</member>
2590 <member>&#160;</member>
2591 <member>"Licensor" shall mean the copyright owner or entity authorized by the</member>
2592 <member>copyright owner that is granting the License.</member>
2593 <member>&#160;</member>
2594 <member>"Legal Entity" shall mean the union of the acting entity and all other</member>
2595 <member>entities that control, are controlled by, or are under common control with</member>
2596 <member>that entity. For the purposes of this definition, "control" means (i) the</member>
2597 <member>power, direct or indirect, to cause the direction or management of such</member>
2598 <member>entity, whether by contract or otherwise, or (ii) ownership of fifty percent</member>
2599 <member>(50%) or more of the outstanding shares, or (iii) beneficial ownership of such</member>
2600 <member>entity.</member>
2601 <member>&#160;</member>
2602 <member>"You" (or "Your") shall mean an individual or Legal Entity exercising</member>
2603 <member>permissions granted by this License.</member>
2604 <member>&#160;</member>
2605 <member>"Source" form shall mean the preferred form for making modifications,</member>
2606 <member>including but not limited to software source code, documentation source, and</member>
2607 <member>configuration files.</member>
2608 <member>&#160;</member>
2609 <member>"Object" form shall mean any form resulting from mechanical transformation or</member>
2610 <member>translation of a Source form, including but not limited to compiled object</member>
2611 <member>code, generated documentation, and conversions to other media types.</member>
2612 <member>&#160;</member>
2613 <member>"Work" shall mean the work of authorship, whether in Source or Object form,</member>
2614 <member>made available under the License, as indicated by a copyright notice that is</member>
2615 <member>included in or attached to the work (an example is provided in the Appendix</member>
2616 <member>below).</member>
2617 <member>&#160;</member>
2618 <member>"Derivative Works" shall mean any work, whether in Source or Object form, that</member>
2619 <member>is based on (or derived from) the Work and for which the editorial revisions,</member>
2620 <member>annotations, elaborations, or other modifications represent, as a whole, an</member>
2621 <member>original work of authorship. For the purposes of this License, Derivative</member>
2622 <member>Works shall not include works that remain separable from, or merely link (or</member>
2623 <member>bind by name) to the interfaces of, the Work and Derivative Works thereof.</member>
2624 <member>&#160;</member>
2625 <member>"Contribution" shall mean any work of authorship, including the original</member>
2626 <member>version of the Work and any modifications or additions to that Work or</member>
2627 <member>Derivative Works thereof, that is intentionally submitted to Licensor for</member>
2628 <member>inclusion in the Work by the copyright owner or by an individual or Legal</member>
2629 <member>Entity authorized to submit on behalf of the copyright owner. For the purposes</member>
2630 <member>of this definition, "submitted" means any form of electronic, verbal, or</member>
2631 <member>written communication sent to the Licensor or its representatives, including</member>
2632 <member>but not limited to communication on electronic mailing lists, source code</member>
2633 <member>control systems, and issue tracking systems that are managed by, or on behalf</member>
2634 <member>of, the Licensor for the purpose of discussing and improving the Work, but</member>
2635 <member>excluding communication that is conspicuously marked or otherwise designated</member>
2636 <member>in writing by the copyright owner as "Not a Contribution."</member>
2637 <member>&#160;</member>
2638 <member>"Contributor" shall mean Licensor and any individual or Legal Entity on behalf</member>
2639 <member>of whom a Contribution has been received by Licensor and subsequently</member>
2640 <member>incorporated within the Work.</member>
2641 <member>&#160;</member>
2642 <member>**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. </member>
2643 <member>&#160;</member>
2644 <member>**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. </member>
2645 <member>&#160;</member>
2646 <member>**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: </member>
2647 <member>&#160;</member>
2648 <member> 1. You must give any other recipients of the Work or Derivative Works a copy of this License; and </member>
2649 <member> </member>
2650 <member>&#160;</member>
2651 <member> 2. You must cause any modified files to carry prominent notices stating that You changed the files; and </member>
2652 <member> </member>
2653 <member>&#160;</member>
2654 <member> 3. 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 </member>
2655 <member> </member>
2656 <member>&#160;</member>
2657 <member> 4. 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.</member>
2658 <member>You may add Your own copyright statement to Your modifications and may provide</member>
2659 <member>additional or different license terms and conditions for use, reproduction, or</member>
2660 <member>distribution of Your modifications, or for any such Derivative Works as a</member>
2661 <member>whole, provided Your use, reproduction, and distribution of the Work otherwise</member>
2662 <member>complies with the conditions stated in this License.</member>
2663 <member>&#160;</member>
2664 <member>**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. </member>
2665 <member>&#160;</member>
2666 <member>**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. </member>
2667 <member>&#160;</member>
2668 <member>**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. </member>
2669 <member>&#160;</member>
2670 <member>**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. </member>
2671 <member>&#160;</member>
2672 <member>**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. </member>
2673 <member>&#160;</member>
2674 <member>END OF TERMS AND CONDITIONS</member>
2675 </simplelist>
2676 </section>
2677 </section>
2678 <section id="enea-linux-eclipse-open-source-licenses-23">
2679 <title>License 23</title>
2680 <section>
2681 <title>Source File(s)</title>
2682 <itemizedlist spacing="compact">
2683 <listitem>
2684 <para>
2685 plugins/extracted_jars/org.eclipse.ui.ide.source_3.11.0.v20150510-1749/about.html
2686 </para>
2687 </listitem>
2688 <listitem>
2689 <para>
2690 plugins/extracted_jars/org.eclipse.ui.ide_3.11.0.v20150510-1749/about.html
2691 </para>
2692 </listitem>
2693 </itemizedlist>
2694 </section>
2695 <section>
2696 <title>License Text</title>
2697 <simplelist>
2698 <member>## About This Content</member>
2699 <member>&#160;</member>
2700 <member>August 13, 2009</member>
2701 <member>&#160;</member>
2702 <member>### License</member>
2703 <member>&#160;</member>
2704 <member>The Eclipse Foundation makes available all content in this plug-in</member>
2705 <member>("Content"). Unless otherwise indicated below, the Content is provided to you</member>
2706 <member>under the terms and conditions of the Eclipse Public License Version 1.0</member>
2707 <member>("EPL"). A copy of the EPL is available at</member>
2708 <member>&lt;http://www.eclipse.org/legal/epl-v10.html&gt;. For purposes of the EPL,</member>
2709 <member>"Program" will mean the Content.</member>
2710 <member>&#160;</member>
2711 <member>If you did not receive this Content directly from the Eclipse Foundation, the</member>
2712 <member>Content is being redistributed by another party ("Redistributor") and</member>
2713 <member>different terms and conditions may apply to your use of any object code in the</member>
2714 <member>Content. Check the Redistributor's license that was provided with the Content.</member>
2715 <member>If no such license exists, contact the Redistributor. Unless otherwise</member>
2716 <member>indicated below, the terms and conditions of the EPL still apply to any source</member>
2717 <member>code in the Content and such source code may be obtained at</member>
2718 <member>&lt;http://www.eclipse.org&gt;.</member>
2719 <member>&#160;</member>
2720 <member>### Third Party Content</member>
2721 <member>&#160;</member>
2722 <member>The Content includes items that have been sourced from third parties as set</member>
2723 <member>out below. If you did not receive this Content directly from the Eclipse</member>
2724 <member>Foundation, the following is provided for informational purposes only, and you</member>
2725 <member>should look to the Redistributor's license for terms and conditions of use.</member>
2726 <member>&#160;</member>
2727 <member>#### C++ Standard Template Library</member>
2728 <member>&#160;</member>
2729 <member>This plugin contains a Java port of the code for the STL heap sorting</member>
2730 <member>algorithm. The original code can be found at:</member>
2731 <member>&#160;</member>
2732 <member>&lt;http://www.sgi.com/tech/stl/stl_heap.h&gt;</member>
2733 <member>&#160;</member>
2734 <member>The java implementation of the code can be found in src.zip in the following</member>
2735 <member>files:</member>
2736 <member>&#160;</member>
2737 <member> * org\eclipse\ui\internal\views\markers\MarkerSortUtil.java</member>
2738 <member>&#160;</member>
2739 <member>#### Copyright info</member>
2740 <member>&#160;</member>
2741 <member> </member>
2742 <member> </member>
2743 <member> /*</member>
2744 <member> *</member>
2745 <member> * Copyright (c) 1994</member>
2746 <member> * Hewlett-Packard Company</member>
2747 <member> *</member>
2748 <member> * Permission to use, copy, modify, distribute and sell this software</member>
2749 <member> * and its documentation for any purpose is hereby granted without fee,</member>
2750 <member> * provided that the above copyright notice appear in all copies and</member>
2751 <member> * that both that copyright notice and this permission notice appear</member>
2752 <member> * in supporting documentation. Hewlett-Packard Company makes no</member>
2753 <member> * representations about the suitability of this software for any</member>
2754 <member> * purpose. It is provided "as is" without express or implied warranty.</member>
2755 <member> *</member>
2756 <member> * Copyright (c) 1997</member>
2757 <member> * Silicon Graphics Computer Systems, Inc.</member>
2758 <member> *</member>
2759 <member> * Permission to use, copy, modify, distribute and sell this software</member>
2760 <member> * and its documentation for any purpose is hereby granted without fee,</member>
2761 <member> * provided that the above copyright notice appear in all copies and</member>
2762 <member> * that both that copyright notice and this permission notice appear</member>
2763 <member> * in supporting documentation. Silicon Graphics makes no</member>
2764 <member> * representations about the suitability of this software for any</member>
2765 <member> * purpose. It is provided "as is" without express or implied warranty.</member>
2766 <member> * </member>
2767 <member> */</member>
2768 <member> </member>
2769 </simplelist>
2770 </section>
2771 </section>
2772 <section id="enea-linux-eclipse-open-source-licenses-24">
2773 <title>License 24</title>
2774 <section>
2775 <title>Source File(s)</title>
2776 <itemizedlist spacing="compact">
2777 <listitem>
2778 <para>
2779 plugins/extracted_jars/org.apache.batik.css.source_1.7.0.v201011041433/about_files/LICENSE.dom-software.txt
2780 </para>
2781 </listitem>
2782 </itemizedlist>
2783 </section>
2784 <section>
2785 <title>License Text</title>
2786 <simplelist>
2787 <member>xml-commons/java/external/LICENSE.dom-software.txt $Id: LICENSE.dom-software.txt,v 1.1.4.2 2009/02/20 18:00:57 cdamus Exp $</member>
2788 <member>&#160;</member>
2789 <member>&#160;</member>
2790 <member>This license came from: http://www.w3.org/Consortium/Legal/copyright-software-19980720</member>
2791 <member>&#160;</member>
2792 <member>&#160;</member>
2793 <member>W3C(R) SOFTWARE NOTICE AND LICENSE</member>
2794 <member>Copyright (C) 1994-2001 World</member>
2795 <member>Wide Web Consortium, &lt;a href="http://www.w3.org/"&gt;World</member>
2796 <member>Wide Web Consortium&lt;/a&gt;, (&lt;a href=</member>
2797 <member>"http://www.lcs.mit.edu/"&gt;Massachusetts Institute of</member>
2798 <member>Technology&lt;/a&gt;, &lt;a href="http://www.inria.fr/"&gt;Institut National de</member>
2799 <member>Recherche en Informatique et en Automatique&lt;/a&gt;, &lt;a href=</member>
2800 <member>"http://www.keio.ac.jp/"&gt;Keio University&lt;/a&gt;). All Rights Reserved.</member>
2801 <member>http://www.w3.org/Consortium/Legal/</member>
2802 <member>&#160;</member>
2803 <member>This W3C work (including software, documents, or other related</member>
2804 <member>items) is being provided by the copyright holders under the</member>
2805 <member>following license. By obtaining, using and/or copying this work,</member>
2806 <member>you (the licensee) agree that you have read, understood, and will</member>
2807 <member>comply with the following terms and conditions:</member>
2808 <member>Permission to use, copy, modify, and distribute this software</member>
2809 <member>and its documentation, with or without modification, for any</member>
2810 <member>purpose and without fee or royalty is hereby granted, provided that</member>
2811 <member>you include the following on ALL copies of the software and</member>
2812 <member>documentation or portions thereof, including modifications, that</member>
2813 <member>you make:</member>
2814 <member>&#160;</member>
2815 <member>The full text of this NOTICE in a location viewable to users of</member>
2816 <member>the redistributed or derivative work.</member>
2817 <member>&#160;</member>
2818 <member>Any pre-existing intellectual property disclaimers, notices, or</member>
2819 <member>terms and conditions. If none exist, a short notice of the</member>
2820 <member>following form (hypertext is preferred, text is permitted) should</member>
2821 <member>be used within the body of any redistributed or derivative code:</member>
2822 <member>"Copyright (C) [$date-of-software] World Wide Web Consortium, (Massachusetts Institute of</member>
2823 <member>Technology, Institut National de</member>
2824 <member>Recherche en Informatique et en Automatique, Keio University). All Rights Reserved.</member>
2825 <member>http://www.w3.org/Consortium/Legal/"</member>
2826 <member>&#160;</member>
2827 <member>Notice of any changes or modifications to the W3C files,</member>
2828 <member>including the date changes were made. (We recommend you provide </member>
2829 <member>URIs to the location from which the code is derived.)</member>
2830 <member>&#160;</member>
2831 <member>THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND</member>
2832 <member>COPYRIGHT HOLDERS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR</member>
2833 <member>IMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES OF</member>
2834 <member>MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE</member>
2835 <member>USE OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE ANY THIRD</member>
2836 <member>PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.</member>
2837 <member>COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT,</member>
2838 <member>SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE</member>
2839 <member>SOFTWARE OR DOCUMENTATION.</member>
2840 <member>&#160;</member>
2841 <member>The name and trademarks of copyright holders may NOT be used in</member>
2842 <member>advertising or publicity pertaining to the software without</member>
2843 <member>specific, written prior permission. Title to copyright in this</member>
2844 <member>software and any associated documentation will at all times remain</member>
2845 <member>with copyright holders.</member>
2846 <member>____________________________________</member>
2847 <member>This formulation of W3C's notice and license became active on</member>
2848 <member>August 14 1998 so as to improve compatibility with GPL. This</member>
2849 <member>version ensures that W3C software licensing terms are no more</member>
2850 <member>restrictive than GPL and consequently W3C software may be</member>
2851 <member>distributed in GPL packages. See the older formulation for the</member>
2852 <member>policy prior to this date. Please see our Copyright FAQ for common </member>
2853 <member>questions about using materials from</member>
2854 <member>our site, including specific terms and conditions for packages like</member>
2855 <member>libwww, Amaya, and Jigsaw. </member>
2856 <member>Other questions about this notice can be</member>
2857 <member>directed to site-policy@w3.org.</member>
2858 <member>&#160;</member>
2859 <member>webmaster</member>
2860 <member>(last updated $Date: 2009/02/20 18:00:57 $)</member>
2861 </simplelist>
2862 </section>
2863 </section>
2864 <section id="enea-linux-eclipse-open-source-licenses-25">
2865 <title>License 25</title>
2866 <section>
2867 <title>Source File(s)</title>
2868 <itemizedlist spacing="compact">
2869 <listitem>
2870 <para>
2871 plugins/extracted_jars/org.apache.batik.util.gui.source_1.7.0.v200903091627/about_files/LICENSE.dom-software.txt
2872 </para>
2873 </listitem>
2874 </itemizedlist>
2875 </section>
2876 <section>
2877 <title>License Text</title>
2878 <simplelist>
2879 <member>xml-commons/java/external/LICENSE.dom-software.txt $Id: LICENSE.dom-software.txt,v 1.2.2.2 2009/02/27 15:41:22 cdamus Exp $</member>
2880 <member>&#160;</member>
2881 <member>&#160;</member>
2882 <member>This license came from: http://www.w3.org/Consortium/Legal/copyright-software-19980720</member>
2883 <member>&#160;</member>
2884 <member>&#160;</member>
2885 <member>W3C(R) SOFTWARE NOTICE AND LICENSE</member>
2886 <member>Copyright (C) 1994-2001 World</member>
2887 <member>Wide Web Consortium, &lt;a href="http://www.w3.org/"&gt;World</member>
2888 <member>Wide Web Consortium&lt;/a&gt;, (&lt;a href=</member>
2889 <member>"http://www.lcs.mit.edu/"&gt;Massachusetts Institute of</member>
2890 <member>Technology&lt;/a&gt;, &lt;a href="http://www.inria.fr/"&gt;Institut National de</member>
2891 <member>Recherche en Informatique et en Automatique&lt;/a&gt;, &lt;a href=</member>
2892 <member>"http://www.keio.ac.jp/"&gt;Keio University&lt;/a&gt;). All Rights Reserved.</member>
2893 <member>http://www.w3.org/Consortium/Legal/</member>
2894 <member>&#160;</member>
2895 <member>This W3C work (including software, documents, or other related</member>
2896 <member>items) is being provided by the copyright holders under the</member>
2897 <member>following license. By obtaining, using and/or copying this work,</member>
2898 <member>you (the licensee) agree that you have read, understood, and will</member>
2899 <member>comply with the following terms and conditions:</member>
2900 <member>Permission to use, copy, modify, and distribute this software</member>
2901 <member>and its documentation, with or without modification, for any</member>
2902 <member>purpose and without fee or royalty is hereby granted, provided that</member>
2903 <member>you include the following on ALL copies of the software and</member>
2904 <member>documentation or portions thereof, including modifications, that</member>
2905 <member>you make:</member>
2906 <member>&#160;</member>
2907 <member>The full text of this NOTICE in a location viewable to users of</member>
2908 <member>the redistributed or derivative work.</member>
2909 <member>&#160;</member>
2910 <member>Any pre-existing intellectual property disclaimers, notices, or</member>
2911 <member>terms and conditions. If none exist, a short notice of the</member>
2912 <member>following form (hypertext is preferred, text is permitted) should</member>
2913 <member>be used within the body of any redistributed or derivative code:</member>
2914 <member>"Copyright (C) [$date-of-software] World Wide Web Consortium, (Massachusetts Institute of</member>
2915 <member>Technology, Institut National de</member>
2916 <member>Recherche en Informatique et en Automatique, Keio University). All Rights Reserved.</member>
2917 <member>http://www.w3.org/Consortium/Legal/"</member>
2918 <member>&#160;</member>
2919 <member>Notice of any changes or modifications to the W3C files,</member>
2920 <member>including the date changes were made. (We recommend you provide </member>
2921 <member>URIs to the location from which the code is derived.)</member>
2922 <member>&#160;</member>
2923 <member>THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND</member>
2924 <member>COPYRIGHT HOLDERS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR</member>
2925 <member>IMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES OF</member>
2926 <member>MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE</member>
2927 <member>USE OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE ANY THIRD</member>
2928 <member>PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.</member>
2929 <member>COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT,</member>
2930 <member>SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE</member>
2931 <member>SOFTWARE OR DOCUMENTATION.</member>
2932 <member>&#160;</member>
2933 <member>The name and trademarks of copyright holders may NOT be used in</member>
2934 <member>advertising or publicity pertaining to the software without</member>
2935 <member>specific, written prior permission. Title to copyright in this</member>
2936 <member>software and any associated documentation will at all times remain</member>
2937 <member>with copyright holders.</member>
2938 <member>____________________________________</member>
2939 <member>This formulation of W3C's notice and license became active on</member>
2940 <member>August 14 1998 so as to improve compatibility with GPL. This</member>
2941 <member>version ensures that W3C software licensing terms are no more</member>
2942 <member>restrictive than GPL and consequently W3C software may be</member>
2943 <member>distributed in GPL packages. See the older formulation for the</member>
2944 <member>policy prior to this date. Please see our Copyright FAQ for common </member>
2945 <member>questions about using materials from</member>
2946 <member>our site, including specific terms and conditions for packages like</member>
2947 <member>libwww, Amaya, and Jigsaw. </member>
2948 <member>Other questions about this notice can be</member>
2949 <member>directed to site-policy@w3.org.</member>
2950 <member>&#160;</member>
2951 <member>webmaster</member>
2952 <member>(last updated $Date: 2009/02/27 15:41:22 $)</member>
2953 </simplelist>
2954 </section>
2955 </section>
2956 <section id="enea-linux-eclipse-open-source-licenses-26">
2957 <title>License 26</title>
2958 <section>
2959 <title>Source File(s)</title>
2960 <itemizedlist spacing="compact">
2961 <listitem>
2962 <para>
2963 plugins/extracted_jars/org.eclipse.equinox.p2.updatesite_1.0.500.v20150423-1455/about.html
2964 </para>
2965 </listitem>
2966 <listitem>
2967 <para>
2968 plugins/extracted_jars/org.eclipse.equinox.p2.updatechecker.source_1.1.200.v20131119-0908/about.html
2969 </para>
2970 </listitem>
2971 <listitem>
2972 <para>
2973 plugins/extracted_jars/org.eclipse.equinox.p2.updatechecker_1.1.200.v20131119-0908/about.html
2974 </para>
2975 </listitem>
2976 <listitem>
2977 <para>
2978 plugins/extracted_jars/org.eclipse.equinox.p2.directorywatcher_1.1.100.v20150423-1455/about.html
2979 </para>
2980 </listitem>
2981 <listitem>
2982 <para>
2983 plugins/extracted_jars/org.eclipse.equinox.p2.directorywatcher.source_1.1.100.v20150423-1455/about.html
2984 </para>
2985 </listitem>
2986 <listitem>
2987 <para>
2988 plugins/extracted_jars/org.eclipse.equinox.p2.updatesite.source_1.0.500.v20150423-1455/about.html
2989 </para>
2990 </listitem>
2991 </itemizedlist>
2992 </section>
2993 <section>
2994 <title>License Text</title>
2995 <simplelist>
2996 <member>## About This Content</member>
2997 <member>&#160;</member>
2998 <member>June 2, 2006</member>
2999 <member>&#160;</member>
3000 <member>### License</member>
3001 <member>&#160;</member>
3002 <member>The Eclipse Foundation makes available all content in this plug-in</member>
3003 <member>("Content"). Unless otherwise indicated below, the Content is provided to you</member>
3004 <member>under the terms and conditions of the Eclipse Public License Version 1.0</member>
3005 <member>("EPL"). A copy of the EPL is available at</member>
3006 <member>&lt;http://www.eclipse.org/legal/epl-v10.html&gt;. For purposes of the EPL,</member>
3007 <member>"Program" will mean the Content.</member>
3008 <member>&#160;</member>
3009 <member>If you did not receive this Content directly from the Eclipse Foundation, the</member>
3010 <member>Content is being redistributed by another party ("Redistributor") and</member>
3011 <member>different terms and conditions may apply to your use of any object code in the</member>
3012 <member>Content. Check the Redistributor's license that was provided with the Content.</member>
3013 <member>If no such license exists, contact the Redistributor. Unless otherwise</member>
3014 <member>indicated below, the terms and conditions of the EPL still apply to any source</member>
3015 <member>code in the Content and such source code may be obtained at</member>
3016 <member>&lt;http://www.eclipse.org&gt;.</member>
3017 <member>&#160;</member>
3018 <member>### Third Party Content</member>
3019 <member>&#160;</member>
3020 <member>The Content includes items that have been sourced from third parties as set</member>
3021 <member>out below. If you did not receive this Content directly from the Eclipse</member>
3022 <member>Foundation, the following is provided for informational purposes only, and you</member>
3023 <member>should look to the Redistributor's license for terms and conditions of use.</member>
3024 <member>&#160;</member>
3025 <member>#### FileInstall 1.0</member>
3026 <member>&#160;</member>
3027 <member>The bundle includes derivative works of software originally developed by Peter</member>
3028 <member>Kriens (aQute). That original work was licensed under the EPL v1.0 and this</member>
3029 <member>derivative work is similarly licensed.</member>
3030 </simplelist>
3031 </section>
3032 </section>
3033 <section id="enea-linux-eclipse-open-source-licenses-27">
3034 <title>License 27</title>
3035 <section>
3036 <title>Source File(s)</title>
3037 <itemizedlist spacing="compact">
3038 <listitem>
3039 <para>
3040 plugins/extracted_jars/org.w3c.dom.svg.source_1.1.0.v201011041433/about_files/LICENSE-W3C-20021231.html
3041 </para>
3042 </listitem>
3043 <listitem>
3044 <para>
3045 plugins/extracted_jars/org.w3c.css.sac.source_1.3.1.v200903091627/about_files/LICENSE-W3C-20021231.html
3046 </para>
3047 </listitem>
3048 </itemizedlist>
3049 </section>
3050 <section>
3051 <title>License Text</title>
3052 <simplelist>
3053 <member># W3C(R) SOFTWARE NOTICE AND LICENSE</member>
3054 <member>&#160;</member>
3055 <member>### &lt;http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231&gt;</member>
3056 <member>&#160;</member>
3057 <member>This work (and included software, documentation such as READMEs, or other</member>
3058 <member>related items) is being provided by the copyright holders under the following</member>
3059 <member>license. By obtaining, using and/or copying this work, you (the licensee)</member>
3060 <member>agree that you have read, understood, and will comply with the following terms</member>
3061 <member>and conditions.</member>
3062 <member>&#160;</member>
3063 <member>Permission to copy, modify, and distribute this software and its</member>
3064 <member>documentation, with or without modification, for any purpose and without fee</member>
3065 <member>or royalty is hereby granted, provided that you include the following on ALL</member>
3066 <member>copies of the software and documentation or portions thereof, including</member>
3067 <member>modifications:</member>
3068 <member>&#160;</member>
3069 <member> 1. The full text of this NOTICE in a location viewable to users of the redistributed or derivative work.</member>
3070 <member> 2. Any pre-existing intellectual property disclaimers, notices, or terms and conditions. If none exist, the [W3C Software Short Notice](copyright-software-short-notice-20021231.html) should be included (hypertext is preferred, text is permitted) within the body of any redistributed or derivative code.</member>
3071 <member> 3. Notice of any changes or modifications to the files, including the date changes were made. (We recommend you provide URIs to the location from which the code is derived.)</member>
3072 <member>&#160;</member>
3073 <member>THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS</member>
3074 <member>MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT</member>
3075 <member>LIMITED TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR</member>
3076 <member>PURPOSE OR THAT THE USE OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE ANY</member>
3077 <member>THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.</member>
3078 <member>&#160;</member>
3079 <member>COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR</member>
3080 <member>CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENTATION.</member>
3081 <member>&#160;</member>
3082 <member>The name and trademarks of copyright holders may NOT be used in advertising or</member>
3083 <member>publicity pertaining to the software without specific, written prior</member>
3084 <member>permission. Title to copyright in this software and any associated</member>
3085 <member>documentation will at all times remain with copyright holders.</member>
3086 <member>&#160;</member>
3087 <member>____________________________________</member>
3088 <member>&#160;</member>
3089 <member>This formulation of W3C's notice and license became active on December 31</member>
3090 <member>2002\. This version removes the copyright ownership notice such that this</member>
3091 <member>license can be used with materials other than those owned by the W3C, reflects</member>
3092 <member>that ERCIM is now a host of the W3C, includes references to this specific</member>
3093 <member>dated version of the license, and removes the ambiguous grant of "use".</member>
3094 <member>Otherwise, this version is the same as the [previous</member>
3095 <member>version](http://www.w3.org/Consortium/Legal/copyright-software-19980720) and</member>
3096 <member>is written so as to preserve the [Free Software Foundation's assessment of GPL</member>
3097 <member>compatibility](http://www.gnu.org/philosophy/license-</member>
3098 <member>list.html#GPLCompatibleLicenses) and [OSI's</member>
3099 <member>certification](http://www.opensource.org/licenses/W3C.php) under the [Open</member>
3100 <member>Source Definition](http://www.opensource.org/docs/definition.php). Please see</member>
3101 <member>our [Copyright FAQ](http://www.w3.org/Consortium/Legal/IPR-FAQ) for common</member>
3102 <member>questions about using materials from our site, including specific terms and</member>
3103 <member>conditions for packages like libwww, Amaya, and Jigsaw. Other questions about</member>
3104 <member>this notice can be directed to [site-policy@w3.org](mailto:site-</member>
3105 <member>policy@w3.org). </member>
3106 <member>&#160;</member>
3107 <member>&#160;</member>
3108 <member>Joseph Reagle &lt;[site-policy@w3.org&gt;](mailto:site-policy@w3.org)</member>
3109 <member>&#160;</member>
3110 <member>Last revised $Id$</member>
3111 </simplelist>
3112 </section>
3113 </section>
3114 <section id="enea-linux-eclipse-open-source-licenses-28">
3115 <title>License 28</title>
3116 <section>
3117 <title>Source File(s)</title>
3118 <itemizedlist spacing="compact">
3119 <listitem>
3120 <para>
3121 plugins/extracted_jars/javax.xml_1.3.4.v201005080400/about_files/LICENSE.sax.txt
3122 </para>
3123 </listitem>
3124 </itemizedlist>
3125 </section>
3126 <section>
3127 <title>License Text</title>
3128 <simplelist>
3129 <member>xml-commons/java/external/LICENSE.sax.txt $Id: LICENSE.sax.txt,v 1.1.2.1 2007/12/03 05:48:36 david_williams Exp $</member>
3130 <member>&#160;</member>
3131 <member>&#160;</member>
3132 <member>This license came from: http://www.megginson.com/SAX/copying.html</member>
3133 <member> However please note future versions of SAX may be covered </member>
3134 <member> under http://saxproject.org/?selected=pd</member>
3135 <member>&#160;</member>
3136 <member>&#160;</member>
3137 <member>This page is now out of date -- see the new SAX site at </member>
3138 <member>http://www.saxproject.org/ for more up-to-date</member>
3139 <member>releases and other information. Please change your bookmarks.</member>
3140 <member>&#160;</member>
3141 <member>&#160;</member>
3142 <member>SAX2 is Free!</member>
3143 <member>&#160;</member>
3144 <member>I hereby abandon any property rights to SAX 2.0 (the Simple API for</member>
3145 <member>XML), and release all of the SAX 2.0 source code, compiled code, and</member>
3146 <member>documentation contained in this distribution into the Public Domain.</member>
3147 <member>SAX comes with NO WARRANTY or guarantee of fitness for any</member>
3148 <member>purpose.</member>
3149 <member>&#160;</member>
3150 <member>David Megginson, david@megginson.com</member>
3151 <member>2000-05-05</member>
3152 </simplelist>
3153 </section>
3154 </section>
3155 <section id="enea-linux-eclipse-open-source-licenses-29">
3156 <title>License 29</title>
3157 <section>
3158 <title>Source File(s)</title>
3159 <itemizedlist spacing="compact">
3160 <listitem>
3161 <para>
3162 plugins/extracted_jars/org.eclipse.swt.gtk.linux.x86_64.source_3.104.0.v20150528-0211/about_files/IJG_README
3163 </para>
3164 </listitem>
3165 <listitem>
3166 <para>
3167 plugins/extracted_jars/org.eclipse.swt.gtk.linux.x86_64_3.104.0.v20150528-0211/about_files/IJG_README
3168 </para>
3169 </listitem>
3170 <listitem>
3171 <para>
3172 plugins/extracted_jars/org.eclipse.swt_3.104.0.v20150528-0211/about_files/IJG_README
3173 </para>
3174 </listitem>
3175 </itemizedlist>
3176 </section>
3177 <section>
3178 <title>License Text</title>
3179 <simplelist>
3180 <member>The Independent JPEG Group's JPEG software</member>
3181 <member>==========================================</member>
3182 <member>&#160;</member>
3183 <member>README for release 6b of 27-Mar-1998</member>
3184 <member>====================================</member>
3185 <member>&#160;</member>
3186 <member>This distribution contains the sixth public release of the Independent JPEG</member>
3187 <member>Group's free JPEG software. You are welcome to redistribute this software and</member>
3188 <member>to use it for any purpose, subject to the conditions under LEGAL ISSUES, below.</member>
3189 <member>&#160;</member>
3190 <member>Serious users of this software (particularly those incorporating it into</member>
3191 <member>larger programs) should contact IJG at jpeg-info@uunet.uu.net to be added to</member>
3192 <member>our electronic mailing list. Mailing list members are notified of updates</member>
3193 <member>and have a chance to participate in technical discussions, etc.</member>
3194 <member>&#160;</member>
3195 <member>This software is the work of Tom Lane, Philip Gladstone, Jim Boucher,</member>
3196 <member>Lee Crocker, Julian Minguillon, Luis Ortiz, George Phillips, Davide Rossi,</member>
3197 <member>Guido Vollbeding, Ge' Weijers, and other members of the Independent JPEG</member>
3198 <member>Group.</member>
3199 <member>&#160;</member>
3200 <member>IJG is not affiliated with the official ISO JPEG standards committee.</member>
3201 <member>&#160;</member>
3202 <member>&#160;</member>
3203 <member>DOCUMENTATION ROADMAP</member>
3204 <member>=====================</member>
3205 <member>&#160;</member>
3206 <member>This file contains the following sections:</member>
3207 <member>&#160;</member>
3208 <member>OVERVIEW General description of JPEG and the IJG software.</member>
3209 <member>LEGAL ISSUES Copyright, lack of warranty, terms of distribution.</member>
3210 <member>REFERENCES Where to learn more about JPEG.</member>
3211 <member>ARCHIVE LOCATIONS Where to find newer versions of this software.</member>
3212 <member>RELATED SOFTWARE Other stuff you should get.</member>
3213 <member>FILE FORMAT WARS Software *not* to get.</member>
3214 <member>TO DO Plans for future IJG releases.</member>
3215 <member>&#160;</member>
3216 <member>Other documentation files in the distribution are:</member>
3217 <member>&#160;</member>
3218 <member>User documentation:</member>
3219 <member> install.doc How to configure and install the IJG software.</member>
3220 <member> usage.doc Usage instructions for cjpeg, djpeg, jpegtran,</member>
3221 <member> rdjpgcom, and wrjpgcom.</member>
3222 <member> *.1 Unix-style man pages for programs (same info as usage.doc).</member>
3223 <member> wizard.doc Advanced usage instructions for JPEG wizards only.</member>
3224 <member> change.log Version-to-version change highlights.</member>
3225 <member>Programmer and internal documentation:</member>
3226 <member> libjpeg.doc How to use the JPEG library in your own programs.</member>
3227 <member> example.c Sample code for calling the JPEG library.</member>
3228 <member> structure.doc Overview of the JPEG library's internal structure.</member>
3229 <member> filelist.doc Road map of IJG files.</member>
3230 <member> coderules.doc Coding style rules --- please read if you contribute code.</member>
3231 <member>&#160;</member>
3232 <member>Please read at least the files install.doc and usage.doc. Useful information</member>
3233 <member>can also be found in the JPEG FAQ (Frequently Asked Questions) article. See</member>
3234 <member>ARCHIVE LOCATIONS below to find out where to obtain the FAQ article.</member>
3235 <member>&#160;</member>
3236 <member>If you want to understand how the JPEG code works, we suggest reading one or</member>
3237 <member>more of the REFERENCES, then looking at the documentation files (in roughly</member>
3238 <member>the order listed) before diving into the code.</member>
3239 <member>&#160;</member>
3240 <member>&#160;</member>
3241 <member>OVERVIEW</member>
3242 <member>========</member>
3243 <member>&#160;</member>
3244 <member>This package contains C software to implement JPEG image compression and</member>
3245 <member>decompression. JPEG (pronounced "jay-peg") is a standardized compression</member>
3246 <member>method for full-color and gray-scale images. JPEG is intended for compressing</member>
3247 <member>"real-world" scenes; line drawings, cartoons and other non-realistic images</member>
3248 <member>are not its strong suit. JPEG is lossy, meaning that the output image is not</member>
3249 <member>exactly identical to the input image. Hence you must not use JPEG if you</member>
3250 <member>have to have identical output bits. However, on typical photographic images,</member>
3251 <member>very good compression levels can be obtained with no visible change, and</member>
3252 <member>remarkably high compression levels are possible if you can tolerate a</member>
3253 <member>low-quality image. For more details, see the references, or just experiment</member>
3254 <member>with various compression settings.</member>
3255 <member>&#160;</member>
3256 <member>This software implements JPEG baseline, extended-sequential, and progressive</member>
3257 <member>compression processes. Provision is made for supporting all variants of these</member>
3258 <member>processes, although some uncommon parameter settings aren't implemented yet.</member>
3259 <member>For legal reasons, we are not distributing code for the arithmetic-coding</member>
3260 <member>variants of JPEG; see LEGAL ISSUES. We have made no provision for supporting</member>
3261 <member>the hierarchical or lossless processes defined in the standard.</member>
3262 <member>&#160;</member>
3263 <member>We provide a set of library routines for reading and writing JPEG image files,</member>
3264 <member>plus two sample applications "cjpeg" and "djpeg", which use the library to</member>
3265 <member>perform conversion between JPEG and some other popular image file formats.</member>
3266 <member>The library is intended to be reused in other applications.</member>
3267 <member>&#160;</member>
3268 <member>In order to support file conversion and viewing software, we have included</member>
3269 <member>considerable functionality beyond the bare JPEG coding/decoding capability;</member>
3270 <member>for example, the color quantization modules are not strictly part of JPEG</member>
3271 <member>decoding, but they are essential for output to colormapped file formats or</member>
3272 <member>colormapped displays. These extra functions can be compiled out of the</member>
3273 <member>library if not required for a particular application. We have also included</member>
3274 <member>"jpegtran", a utility for lossless transcoding between different JPEG</member>
3275 <member>processes, and "rdjpgcom" and "wrjpgcom", two simple applications for</member>
3276 <member>inserting and extracting textual comments in JFIF files.</member>
3277 <member>&#160;</member>
3278 <member>The emphasis in designing this software has been on achieving portability and</member>
3279 <member>flexibility, while also making it fast enough to be useful. In particular,</member>
3280 <member>the software is not intended to be read as a tutorial on JPEG. (See the</member>
3281 <member>REFERENCES section for introductory material.) Rather, it is intended to</member>
3282 <member>be reliable, portable, industrial-strength code. We do not claim to have</member>
3283 <member>achieved that goal in every aspect of the software, but we strive for it.</member>
3284 <member>&#160;</member>
3285 <member>We welcome the use of this software as a component of commercial products.</member>
3286 <member>No royalty is required, but we do ask for an acknowledgement in product</member>
3287 <member>documentation, as described under LEGAL ISSUES.</member>
3288 <member>&#160;</member>
3289 <member>&#160;</member>
3290 <member>LEGAL ISSUES</member>
3291 <member>============</member>
3292 <member>&#160;</member>
3293 <member>In plain English:</member>
3294 <member>&#160;</member>
3295 <member>1. We don't promise that this software works. (But if you find any bugs,</member>
3296 <member> please let us know!)</member>
3297 <member>2. You can use this software for whatever you want. You don't have to pay us.</member>
3298 <member>3. You may not pretend that you wrote this software. If you use it in a</member>
3299 <member> program, you must acknowledge somewhere in your documentation that</member>
3300 <member> you've used the IJG code.</member>
3301 <member>&#160;</member>
3302 <member>In legalese:</member>
3303 <member>&#160;</member>
3304 <member>The authors make NO WARRANTY or representation, either express or implied,</member>
3305 <member>with respect to this software, its quality, accuracy, merchantability, or</member>
3306 <member>fitness for a particular purpose. This software is provided "AS IS", and you,</member>
3307 <member>its user, assume the entire risk as to its quality and accuracy.</member>
3308 <member>&#160;</member>
3309 <member>This software is copyright (C) 1991-1998, Thomas G. Lane.</member>
3310 <member>All Rights Reserved except as specified below.</member>
3311 <member>&#160;</member>
3312 <member>Permission is hereby granted to use, copy, modify, and distribute this</member>
3313 <member>software (or portions thereof) for any purpose, without fee, subject to these</member>
3314 <member>conditions:</member>
3315 <member>(1) If any part of the source code for this software is distributed, then this</member>
3316 <member>README file must be included, with this copyright and no-warranty notice</member>
3317 <member>unaltered; and any additions, deletions, or changes to the original files</member>
3318 <member>must be clearly indicated in accompanying documentation.</member>
3319 <member>(2) If only executable code is distributed, then the accompanying</member>
3320 <member>documentation must state that "this software is based in part on the work of</member>
3321 <member>the Independent JPEG Group".</member>
3322 <member>(3) Permission for use of this software is granted only if the user accepts</member>
3323 <member>full responsibility for any undesirable consequences; the authors accept</member>
3324 <member>NO LIABILITY for damages of any kind.</member>
3325 <member>&#160;</member>
3326 <member>These conditions apply to any software derived from or based on the IJG code,</member>
3327 <member>not just to the unmodified library. If you use our work, you ought to</member>
3328 <member>acknowledge us.</member>
3329 <member>&#160;</member>
3330 <member>Permission is NOT granted for the use of any IJG author's name or company name</member>
3331 <member>in advertising or publicity relating to this software or products derived from</member>
3332 <member>it. This software may be referred to only as "the Independent JPEG Group's</member>
3333 <member>software".</member>
3334 <member>&#160;</member>
3335 <member>We specifically permit and encourage the use of this software as the basis of</member>
3336 <member>commercial products, provided that all warranty or liability claims are</member>
3337 <member>assumed by the product vendor.</member>
3338 <member>&#160;</member>
3339 <member>&#160;</member>
3340 <member>ansi2knr.c is included in this distribution by permission of L. Peter Deutsch,</member>
3341 <member>sole proprietor of its copyright holder, Aladdin Enterprises of Menlo Park, CA.</member>
3342 <member>ansi2knr.c is NOT covered by the above copyright and conditions, but instead</member>
3343 <member>by the usual distribution terms of the Free Software Foundation; principally,</member>
3344 <member>that you must include source code if you redistribute it. (See the file</member>
3345 <member>ansi2knr.c for full details.) However, since ansi2knr.c is not needed as part</member>
3346 <member>of any program generated from the IJG code, this does not limit you more than</member>
3347 <member>the foregoing paragraphs do.</member>
3348 <member>&#160;</member>
3349 <member>The Unix configuration script "configure" was produced with GNU Autoconf.</member>
3350 <member>It is copyright by the Free Software Foundation but is freely distributable.</member>
3351 <member>The same holds for its supporting scripts (config.guess, config.sub,</member>
3352 <member>ltconfig, ltmain.sh). Another support script, install-sh, is copyright</member>
3353 <member>by M.I.T. but is also freely distributable.</member>
3354 <member>&#160;</member>
3355 <member>It appears that the arithmetic coding option of the JPEG spec is covered by</member>
3356 <member>patents owned by IBM, AT&amp;T, and Mitsubishi. Hence arithmetic coding cannot</member>
3357 <member>legally be used without obtaining one or more licenses. For this reason,</member>
3358 <member>support for arithmetic coding has been removed from the free JPEG software.</member>
3359 <member>(Since arithmetic coding provides only a marginal gain over the unpatented</member>
3360 <member>Huffman mode, it is unlikely that very many implementations will support it.)</member>
3361 <member>So far as we are aware, there are no patent restrictions on the remaining</member>
3362 <member>code.</member>
3363 <member>&#160;</member>
3364 <member>The IJG distribution formerly included code to read and write GIF files.</member>
3365 <member>To avoid entanglement with the Unisys LZW patent, GIF reading support has</member>
3366 <member>been removed altogether, and the GIF writer has been simplified to produce</member>
3367 <member>"uncompressed GIFs". This technique does not use the LZW algorithm; the</member>
3368 <member>resulting GIF files are larger than usual, but are readable by all standard</member>
3369 <member>GIF decoders.</member>
3370 <member>&#160;</member>
3371 <member>We are required to state that</member>
3372 <member> "The Graphics Interchange Format(c) is the Copyright property of</member>
3373 <member> CompuServe Incorporated. GIF(sm) is a Service Mark property of</member>
3374 <member> CompuServe Incorporated."</member>
3375 <member>&#160;</member>
3376 <member>&#160;</member>
3377 <member>REFERENCES</member>
3378 <member>==========</member>
3379 <member>&#160;</member>
3380 <member>We highly recommend reading one or more of these references before trying to</member>
3381 <member>understand the innards of the JPEG software.</member>
3382 <member>&#160;</member>
3383 <member>The best short technical introduction to the JPEG compression algorithm is</member>
3384 <member> Wallace, Gregory K. "The JPEG Still Picture Compression Standard",</member>
3385 <member> Communications of the ACM, April 1991 (vol. 34 no. 4), pp. 30-44.</member>
3386 <member>(Adjacent articles in that issue discuss MPEG motion picture compression,</member>
3387 <member>applications of JPEG, and related topics.) If you don't have the CACM issue</member>
3388 <member>handy, a PostScript file containing a revised version of Wallace's article is</member>
3389 <member>available at ftp://ftp.uu.net/graphics/jpeg/wallace.ps.gz. The file (actually</member>
3390 <member>a preprint for an article that appeared in IEEE Trans. Consumer Electronics)</member>
3391 <member>omits the sample images that appeared in CACM, but it includes corrections</member>
3392 <member>and some added material. Note: the Wallace article is copyright ACM and IEEE,</member>
3393 <member>and it may not be used for commercial purposes.</member>
3394 <member>&#160;</member>
3395 <member>A somewhat less technical, more leisurely introduction to JPEG can be found in</member>
3396 <member>"The Data Compression Book" by Mark Nelson and Jean-loup Gailly, published by</member>
3397 <member>M&amp;T Books (New York), 2nd ed. 1996, ISBN 1-55851-434-1. This book provides</member>
3398 <member>good explanations and example C code for a multitude of compression methods</member>
3399 <member>including JPEG. It is an excellent source if you are comfortable reading C</member>
3400 <member>code but don't know much about data compression in general. The book's JPEG</member>
3401 <member>sample code is far from industrial-strength, but when you are ready to look</member>
3402 <member>at a full implementation, you've got one here...</member>
3403 <member>&#160;</member>
3404 <member>The best full description of JPEG is the textbook "JPEG Still Image Data</member>
3405 <member>Compression Standard" by William B. Pennebaker and Joan L. Mitchell, published</member>
3406 <member>by Van Nostrand Reinhold, 1993, ISBN 0-442-01272-1. Price US$59.95, 638 pp.</member>
3407 <member>The book includes the complete text of the ISO JPEG standards (DIS 10918-1</member>
3408 <member>and draft DIS 10918-2). This is by far the most complete exposition of JPEG</member>
3409 <member>in existence, and we highly recommend it.</member>
3410 <member>&#160;</member>
3411 <member>The JPEG standard itself is not available electronically; you must order a</member>
3412 <member>paper copy through ISO or ITU. (Unless you feel a need to own a certified</member>
3413 <member>official copy, we recommend buying the Pennebaker and Mitchell book instead;</member>
3414 <member>it's much cheaper and includes a great deal of useful explanatory material.)</member>
3415 <member>In the USA, copies of the standard may be ordered from ANSI Sales at (212)</member>
3416 <member>642-4900, or from Global Engineering Documents at (800) 854-7179. (ANSI</member>
3417 <member>doesn't take credit card orders, but Global does.) It's not cheap: as of</member>
3418 <member>1992, ANSI was charging $95 for Part 1 and $47 for Part 2, plus 7%</member>
3419 <member>shipping/handling. The standard is divided into two parts, Part 1 being the</member>
3420 <member>actual specification, while Part 2 covers compliance testing methods. Part 1</member>
3421 <member>is titled "Digital Compression and Coding of Continuous-tone Still Images,</member>
3422 <member>Part 1: Requirements and guidelines" and has document numbers ISO/IEC IS</member>
3423 <member>10918-1, ITU-T T.81. Part 2 is titled "Digital Compression and Coding of</member>
3424 <member>Continuous-tone Still Images, Part 2: Compliance testing" and has document</member>
3425 <member>numbers ISO/IEC IS 10918-2, ITU-T T.83.</member>
3426 <member>&#160;</member>
3427 <member>Some extensions to the original JPEG standard are defined in JPEG Part 3,</member>
3428 <member>a newer ISO standard numbered ISO/IEC IS 10918-3 and ITU-T T.84. IJG</member>
3429 <member>currently does not support any Part 3 extensions.</member>
3430 <member>&#160;</member>
3431 <member>The JPEG standard does not specify all details of an interchangeable file</member>
3432 <member>format. For the omitted details we follow the "JFIF" conventions, revision</member>
3433 <member>1.02. A copy of the JFIF spec is available from:</member>
3434 <member> Literature Department</member>
3435 <member> C-Cube Microsystems, Inc.</member>
3436 <member> 1778 McCarthy Blvd.</member>
3437 <member> Milpitas, CA 95035</member>
3438 <member> phone (408) 944-6300, fax (408) 944-6314</member>
3439 <member>A PostScript version of this document is available by FTP at</member>
3440 <member>ftp://ftp.uu.net/graphics/jpeg/jfif.ps.gz. There is also a plain text</member>
3441 <member>version at ftp://ftp.uu.net/graphics/jpeg/jfif.txt.gz, but it is missing</member>
3442 <member>the figures.</member>
3443 <member>&#160;</member>
3444 <member>The TIFF 6.0 file format specification can be obtained by FTP from</member>
3445 <member>ftp://ftp.sgi.com/graphics/tiff/TIFF6.ps.gz. The JPEG incorporation scheme</member>
3446 <member>found in the TIFF 6.0 spec of 3-June-92 has a number of serious problems.</member>
3447 <member>IJG does not recommend use of the TIFF 6.0 design (TIFF Compression tag 6).</member>
3448 <member>Instead, we recommend the JPEG design proposed by TIFF Technical Note #2</member>
3449 <member>(Compression tag 7). Copies of this Note can be obtained from ftp.sgi.com or</member>
3450 <member>from ftp://ftp.uu.net/graphics/jpeg/. It is expected that the next revision</member>
3451 <member>of the TIFF spec will replace the 6.0 JPEG design with the Note's design.</member>
3452 <member>Although IJG's own code does not support TIFF/JPEG, the free libtiff library</member>
3453 <member>uses our library to implement TIFF/JPEG per the Note. libtiff is available</member>
3454 <member>from ftp://ftp.sgi.com/graphics/tiff/.</member>
3455 <member>&#160;</member>
3456 <member>&#160;</member>
3457 <member>ARCHIVE LOCATIONS</member>
3458 <member>=================</member>
3459 <member>&#160;</member>
3460 <member>The "official" archive site for this software is ftp.uu.net (Internet</member>
3461 <member>address 192.48.96.9). The most recent released version can always be found</member>
3462 <member>there in directory graphics/jpeg. This particular version will be archived</member>
3463 <member>as ftp://ftp.uu.net/graphics/jpeg/jpegsrc.v6b.tar.gz. If you don't have</member>
3464 <member>direct Internet access, UUNET's archives are also available via UUCP; contact</member>
3465 <member>help@uunet.uu.net for information on retrieving files that way.</member>
3466 <member>&#160;</member>
3467 <member>Numerous Internet sites maintain copies of the UUNET files. However, only</member>
3468 <member>ftp.uu.net is guaranteed to have the latest official version.</member>
3469 <member>&#160;</member>
3470 <member>You can also obtain this software in DOS-compatible "zip" archive format from</member>
3471 <member>the SimTel archives (ftp://ftp.simtel.net/pub/simtelnet/msdos/graphics/), or</member>
3472 <member>on CompuServe in the Graphics Support forum (GO CIS:GRAPHSUP), library 12</member>
3473 <member>"JPEG Tools". Again, these versions may sometimes lag behind the ftp.uu.net</member>
3474 <member>release.</member>
3475 <member>&#160;</member>
3476 <member>The JPEG FAQ (Frequently Asked Questions) article is a useful source of</member>
3477 <member>general information about JPEG. It is updated constantly and therefore is</member>
3478 <member>not included in this distribution. The FAQ is posted every two weeks to</member>
3479 <member>Usenet newsgroups comp.graphics.misc, news.answers, and other groups.</member>
3480 <member>It is available on the World Wide Web at http://www.faqs.org/faqs/jpeg-faq/</member>
3481 <member>and other news.answers archive sites, including the official news.answers</member>
3482 <member>archive at rtfm.mit.edu: ftp://rtfm.mit.edu/pub/usenet/news.answers/jpeg-faq/.</member>
3483 <member>If you don't have Web or FTP access, send e-mail to mail-server@rtfm.mit.edu</member>
3484 <member>with body</member>
3485 <member> send usenet/news.answers/jpeg-faq/part1</member>
3486 <member> send usenet/news.answers/jpeg-faq/part2</member>
3487 <member>&#160;</member>
3488 <member>&#160;</member>
3489 <member>RELATED SOFTWARE</member>
3490 <member>================</member>
3491 <member>&#160;</member>
3492 <member>Numerous viewing and image manipulation programs now support JPEG. (Quite a</member>
3493 <member>few of them use this library to do so.) The JPEG FAQ described above lists</member>
3494 <member>some of the more popular free and shareware viewers, and tells where to</member>
3495 <member>obtain them on Internet.</member>
3496 <member>&#160;</member>
3497 <member>If you are on a Unix machine, we highly recommend Jef Poskanzer's free</member>
3498 <member>PBMPLUS software, which provides many useful operations on PPM-format image</member>
3499 <member>files. In particular, it can convert PPM images to and from a wide range of</member>
3500 <member>other formats, thus making cjpeg/djpeg considerably more useful. The latest</member>
3501 <member>version is distributed by the NetPBM group, and is available from numerous</member>
3502 <member>sites, notably ftp://wuarchive.wustl.edu/graphics/graphics/packages/NetPBM/.</member>
3503 <member>Unfortunately PBMPLUS/NETPBM is not nearly as portable as the IJG software is;</member>
3504 <member>you are likely to have difficulty making it work on any non-Unix machine.</member>
3505 <member>&#160;</member>
3506 <member>A different free JPEG implementation, written by the PVRG group at Stanford,</member>
3507 <member>is available from ftp://havefun.stanford.edu/pub/jpeg/. This program</member>
3508 <member>is designed for research and experimentation rather than production use;</member>
3509 <member>it is slower, harder to use, and less portable than the IJG code, but it</member>
3510 <member>is easier to read and modify. Also, the PVRG code supports lossless JPEG,</member>
3511 <member>which we do not. (On the other hand, it doesn't do progressive JPEG.)</member>
3512 <member>&#160;</member>
3513 <member>&#160;</member>
3514 <member>FILE FORMAT WARS</member>
3515 <member>================</member>
3516 <member>&#160;</member>
3517 <member>Some JPEG programs produce files that are not compatible with our library.</member>
3518 <member>The root of the problem is that the ISO JPEG committee failed to specify a</member>
3519 <member>concrete file format. Some vendors "filled in the blanks" on their own,</member>
3520 <member>creating proprietary formats that no one else could read. (For example, none</member>
3521 <member>of the early commercial JPEG implementations for the Macintosh were able to</member>
3522 <member>exchange compressed files.)</member>
3523 <member>&#160;</member>
3524 <member>The file format we have adopted is called JFIF (see REFERENCES). This format</member>
3525 <member>has been agreed to by a number of major commercial JPEG vendors, and it has</member>
3526 <member>become the de facto standard. JFIF is a minimal or "low end" representation.</member>
3527 <member>We recommend the use of TIFF/JPEG (TIFF revision 6.0 as modified by TIFF</member>
3528 <member>Technical Note #2) for "high end" applications that need to record a lot of</member>
3529 <member>additional data about an image. TIFF/JPEG is fairly new and not yet widely</member>
3530 <member>supported, unfortunately.</member>
3531 <member>&#160;</member>
3532 <member>The upcoming JPEG Part 3 standard defines a file format called SPIFF.</member>
3533 <member>SPIFF is interoperable with JFIF, in the sense that most JFIF decoders should</member>
3534 <member>be able to read the most common variant of SPIFF. SPIFF has some technical</member>
3535 <member>advantages over JFIF, but its major claim to fame is simply that it is an</member>
3536 <member>official standard rather than an informal one. At this point it is unclear</member>
3537 <member>whether SPIFF will supersede JFIF or whether JFIF will remain the de-facto</member>
3538 <member>standard. IJG intends to support SPIFF once the standard is frozen, but we</member>
3539 <member>have not decided whether it should become our default output format or not.</member>
3540 <member>(In any case, our decoder will remain capable of reading JFIF indefinitely.)</member>
3541 <member>&#160;</member>
3542 <member>Various proprietary file formats incorporating JPEG compression also exist.</member>
3543 <member>We have little or no sympathy for the existence of these formats. Indeed,</member>
3544 <member>one of the original reasons for developing this free software was to help</member>
3545 <member>force convergence on common, open format standards for JPEG files. Don't</member>
3546 <member>use a proprietary file format!</member>
3547 <member>&#160;</member>
3548 <member>&#160;</member>
3549 <member>TO DO</member>
3550 <member>=====</member>
3551 <member>&#160;</member>
3552 <member>The major thrust for v7 will probably be improvement of visual quality.</member>
3553 <member>The current method for scaling the quantization tables is known not to be</member>
3554 <member>very good at low Q values. We also intend to investigate block boundary</member>
3555 <member>smoothing, "poor man's variable quantization", and other means of improving</member>
3556 <member>quality-vs-file-size performance without sacrificing compatibility.</member>
3557 <member>&#160;</member>
3558 <member>In future versions, we are considering supporting some of the upcoming JPEG</member>
3559 <member>Part 3 extensions --- principally, variable quantization and the SPIFF file</member>
3560 <member>format.</member>
3561 <member>&#160;</member>
3562 <member>As always, speeding things up is of great interest.</member>
3563 <member>&#160;</member>
3564 <member>Please send bug reports, offers of help, etc. to jpeg-info@uunet.uu.net.</member>
3565 </simplelist>
3566 </section>
3567 </section>
3568 <section id="enea-linux-eclipse-open-source-licenses-30">
3569 <title>License 30</title>
3570 <section>
3571 <title>Source File(s)</title>
3572 <itemizedlist spacing="compact">
3573 <listitem>
3574 <para>
3575 plugins/extracted_jars/org.apache.ant.source_1.9.4.v201504302020/about_files/LICENSE
3576 </para>
3577 </listitem>
3578 <listitem>
3579 <para>
3580 plugins/org.apache.ant_1.9.4.v201504302020/about_files/LICENSE
3581 </para>
3582 </listitem>
3583 </itemizedlist>
3584 </section>
3585 <section>
3586 <title>License Text</title>
3587 <simplelist>
3588 <member>/*</member>
3589 <member> * Apache License</member>
3590 <member> * Version 2.0, January 2004</member>
3591 <member> * http://www.apache.org/licenses/</member>
3592 <member> *</member>
3593 <member> * TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION</member>
3594 <member> *</member>
3595 <member> * 1. Definitions.</member>
3596 <member> *</member>
3597 <member> * "License" shall mean the terms and conditions for use, reproduction,</member>
3598 <member> * and distribution as defined by Sections 1 through 9 of this document.</member>
3599 <member> *</member>
3600 <member> * "Licensor" shall mean the copyright owner or entity authorized by</member>
3601 <member> * the copyright owner that is granting the License.</member>
3602 <member> *</member>
3603 <member> * "Legal Entity" shall mean the union of the acting entity and all</member>
3604 <member> * other entities that control, are controlled by, or are under common</member>
3605 <member> * control with that entity. For the purposes of this definition,</member>
3606 <member> * "control" means (i) the power, direct or indirect, to cause the</member>
3607 <member> * direction or management of such entity, whether by contract or</member>
3608 <member> * otherwise, or (ii) ownership of fifty percent (50%) or more of the</member>
3609 <member> * outstanding shares, or (iii) beneficial ownership of such entity.</member>
3610 <member> *</member>
3611 <member> * "You" (or "Your") shall mean an individual or Legal Entity</member>
3612 <member> * exercising permissions granted by this License.</member>
3613 <member> *</member>
3614 <member> * "Source" form shall mean the preferred form for making modifications,</member>
3615 <member> * including but not limited to software source code, documentation</member>
3616 <member> * source, and configuration files.</member>
3617 <member> *</member>
3618 <member> * "Object" form shall mean any form resulting from mechanical</member>
3619 <member> * transformation or translation of a Source form, including but</member>
3620 <member> * not limited to compiled object code, generated documentation,</member>
3621 <member> * and conversions to other media types.</member>
3622 <member> *</member>
3623 <member> * "Work" shall mean the work of authorship, whether in Source or</member>
3624 <member> * Object form, made available under the License, as indicated by a</member>
3625 <member> * copyright notice that is included in or attached to the work</member>
3626 <member> * (an example is provided in the Appendix below).</member>
3627 <member> *</member>
3628 <member> * "Derivative Works" shall mean any work, whether in Source or Object</member>
3629 <member> * form, that is based on (or derived from) the Work and for which the</member>
3630 <member> * editorial revisions, annotations, elaborations, or other modifications</member>
3631 <member> * represent, as a whole, an original work of authorship. For the purposes</member>
3632 <member> * of this License, Derivative Works shall not include works that remain</member>
3633 <member> * separable from, or merely link (or bind by name) to the interfaces of,</member>
3634 <member> * the Work and Derivative Works thereof.</member>
3635 <member> *</member>
3636 <member> * "Contribution" shall mean any work of authorship, including</member>
3637 <member> * the original version of the Work and any modifications or additions</member>
3638 <member> * to that Work or Derivative Works thereof, that is intentionally</member>
3639 <member> * submitted to Licensor for inclusion in the Work by the copyright owner</member>
3640 <member> * or by an individual or Legal Entity authorized to submit on behalf of</member>
3641 <member> * the copyright owner. For the purposes of this definition, "submitted"</member>
3642 <member> * means any form of electronic, verbal, or written communication sent</member>
3643 <member> * to the Licensor or its representatives, including but not limited to</member>
3644 <member> * communication on electronic mailing lists, source code control systems,</member>
3645 <member> * and issue tracking systems that are managed by, or on behalf of, the</member>
3646 <member> * Licensor for the purpose of discussing and improving the Work, but</member>
3647 <member> * excluding communication that is conspicuously marked or otherwise</member>
3648 <member> * designated in writing by the copyright owner as "Not a Contribution."</member>
3649 <member> *</member>
3650 <member> * "Contributor" shall mean Licensor and any individual or Legal Entity</member>
3651 <member> * on behalf of whom a Contribution has been received by Licensor and</member>
3652 <member> * subsequently incorporated within the Work.</member>
3653 <member> *</member>
3654 <member> * 2. Grant of Copyright License. Subject to the terms and conditions of</member>
3655 <member> * this License, each Contributor hereby grants to You a perpetual,</member>
3656 <member> * worldwide, non-exclusive, no-charge, royalty-free, irrevocable</member>
3657 <member> * copyright license to reproduce, prepare Derivative Works of,</member>
3658 <member> * publicly display, publicly perform, sublicense, and distribute the</member>
3659 <member> * Work and such Derivative Works in Source or Object form.</member>
3660 <member> *</member>
3661 <member> * 3. Grant of Patent License. Subject to the terms and conditions of</member>
3662 <member> * this License, each Contributor hereby grants to You a perpetual,</member>
3663 <member> * worldwide, non-exclusive, no-charge, royalty-free, irrevocable</member>
3664 <member> * (except as stated in this section) patent license to make, have made,</member>
3665 <member> * use, offer to sell, sell, import, and otherwise transfer the Work,</member>
3666 <member> * where such license applies only to those patent claims licensable</member>
3667 <member> * by such Contributor that are necessarily infringed by their</member>
3668 <member> * Contribution(s) alone or by combination of their Contribution(s)</member>
3669 <member> * with the Work to which such Contribution(s) was submitted. If You</member>
3670 <member> * institute patent litigation against any entity (including a</member>
3671 <member> * cross-claim or counterclaim in a lawsuit) alleging that the Work</member>
3672 <member> * or a Contribution incorporated within the Work constitutes direct</member>
3673 <member> * or contributory patent infringement, then any patent licenses</member>
3674 <member> * granted to You under this License for that Work shall terminate</member>
3675 <member> * as of the date such litigation is filed.</member>
3676 <member> *</member>
3677 <member> * 4. Redistribution. You may reproduce and distribute copies of the</member>
3678 <member> * Work or Derivative Works thereof in any medium, with or without</member>
3679 <member> * modifications, and in Source or Object form, provided that You</member>
3680 <member> * meet the following conditions:</member>
3681 <member> *</member>
3682 <member> * (a) You must give any other recipients of the Work or</member>
3683 <member> * Derivative Works a copy of this License; and</member>
3684 <member> *</member>
3685 <member> * (b) You must cause any modified files to carry prominent notices</member>
3686 <member> * stating that You changed the files; and</member>
3687 <member> *</member>
3688 <member> * (c) You must retain, in the Source form of any Derivative Works</member>
3689 <member> * that You distribute, all copyright, patent, trademark, and</member>
3690 <member> * attribution notices from the Source form of the Work,</member>
3691 <member> * excluding those notices that do not pertain to any part of</member>
3692 <member> * the Derivative Works; and</member>
3693 <member> *</member>
3694 <member> * (d) If the Work includes a "NOTICE" text file as part of its</member>
3695 <member> * distribution, then any Derivative Works that You distribute must</member>
3696 <member> * include a readable copy of the attribution notices contained</member>
3697 <member> * within such NOTICE file, excluding those notices that do not</member>
3698 <member> * pertain to any part of the Derivative Works, in at least one</member>
3699 <member> * of the following places: within a NOTICE text file distributed</member>
3700 <member> * as part of the Derivative Works; within the Source form or</member>
3701 <member> * documentation, if provided along with the Derivative Works; or,</member>
3702 <member> * within a display generated by the Derivative Works, if and</member>
3703 <member> * wherever such third-party notices normally appear. The contents</member>
3704 <member> * of the NOTICE file are for informational purposes only and</member>
3705 <member> * do not modify the License. You may add Your own attribution</member>
3706 <member> * notices within Derivative Works that You distribute, alongside</member>
3707 <member> * or as an addendum to the NOTICE text from the Work, provided</member>
3708 <member> * that such additional attribution notices cannot be construed</member>
3709 <member> * as modifying the License.</member>
3710 <member> *</member>
3711 <member> * You may add Your own copyright statement to Your modifications and</member>
3712 <member> * may provide additional or different license terms and conditions</member>
3713 <member> * for use, reproduction, or distribution of Your modifications, or</member>
3714 <member> * for any such Derivative Works as a whole, provided Your use,</member>
3715 <member> * reproduction, and distribution of the Work otherwise complies with</member>
3716 <member> * the conditions stated in this License.</member>
3717 <member> *</member>
3718 <member> * 5. Submission of Contributions. Unless You explicitly state otherwise,</member>
3719 <member> * any Contribution intentionally submitted for inclusion in the Work</member>
3720 <member> * by You to the Licensor shall be under the terms and conditions of</member>
3721 <member> * this License, without any additional terms or conditions.</member>
3722 <member> * Notwithstanding the above, nothing herein shall supersede or modify</member>
3723 <member> * the terms of any separate license agreement you may have executed</member>
3724 <member> * with Licensor regarding such Contributions.</member>
3725 <member> *</member>
3726 <member> * 6. Trademarks. This License does not grant permission to use the trade</member>
3727 <member> * names, trademarks, service marks, or product names of the Licensor,</member>
3728 <member> * except as required for reasonable and customary use in describing the</member>
3729 <member> * origin of the Work and reproducing the content of the NOTICE file.</member>
3730 <member> *</member>
3731 <member> * 7. Disclaimer of Warranty. Unless required by applicable law or</member>
3732 <member> * agreed to in writing, Licensor provides the Work (and each</member>
3733 <member> * Contributor provides its Contributions) on an "AS IS" BASIS,</member>
3734 <member> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or</member>
3735 <member> * implied, including, without limitation, any warranties or conditions</member>
3736 <member> * of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A</member>
3737 <member> * PARTICULAR PURPOSE. You are solely responsible for determining the</member>
3738 <member> * appropriateness of using or redistributing the Work and assume any</member>
3739 <member> * risks associated with Your exercise of permissions under this License.</member>
3740 <member> *</member>
3741 <member> * 8. Limitation of Liability. In no event and under no legal theory,</member>
3742 <member> * whether in tort (including negligence), contract, or otherwise,</member>
3743 <member> * unless required by applicable law (such as deliberate and grossly</member>
3744 <member> * negligent acts) or agreed to in writing, shall any Contributor be</member>
3745 <member> * liable to You for damages, including any direct, indirect, special,</member>
3746 <member> * incidental, or consequential damages of any character arising as a</member>
3747 <member> * result of this License or out of the use or inability to use the</member>
3748 <member> * Work (including but not limited to damages for loss of goodwill,</member>
3749 <member> * work stoppage, computer failure or malfunction, or any and all</member>
3750 <member> * other commercial damages or losses), even if such Contributor</member>
3751 <member> * has been advised of the possibility of such damages.</member>
3752 <member> *</member>
3753 <member> * 9. Accepting Warranty or Additional Liability. While redistributing</member>
3754 <member> * the Work or Derivative Works thereof, You may choose to offer,</member>
3755 <member> * and charge a fee for, acceptance of support, warranty, indemnity,</member>
3756 <member> * or other liability obligations and/or rights consistent with this</member>
3757 <member> * License. However, in accepting such obligations, You may act only</member>
3758 <member> * on Your own behalf and on Your sole responsibility, not on behalf</member>
3759 <member> * of any other Contributor, and only if You agree to indemnify,</member>
3760 <member> * defend, and hold each Contributor harmless for any liability</member>
3761 <member> * incurred by, or claims asserted against, such Contributor by reason</member>
3762 <member> * of your accepting any such warranty or additional liability.</member>
3763 <member> *</member>
3764 <member> * END OF TERMS AND CONDITIONS</member>
3765 <member> *</member>
3766 <member> * APPENDIX: How to apply the Apache License to your work.</member>
3767 <member> *</member>
3768 <member> * To apply the Apache License to your work, attach the following</member>
3769 <member> * boilerplate notice, with the fields enclosed by brackets "[]"</member>
3770 <member> * replaced with your own identifying information. (Don't include</member>
3771 <member> * the brackets!) The text should be enclosed in the appropriate</member>
3772 <member> * comment syntax for the file format. We also recommend that a</member>
3773 <member> * file or class name and description of purpose be included on the</member>
3774 <member> * same "printed page" as the copyright notice for easier</member>
3775 <member> * identification within third-party archives.</member>
3776 <member> *</member>
3777 <member> * Copyright [yyyy] [name of copyright owner]</member>
3778 <member> *</member>
3779 <member> * Licensed under the Apache License, Version 2.0 (the "License");</member>
3780 <member> * you may not use this file except in compliance with the License.</member>
3781 <member> * You may obtain a copy of the License at</member>
3782 <member> *</member>
3783 <member> * http://www.apache.org/licenses/LICENSE-2.0</member>
3784 <member> *</member>
3785 <member> * Unless required by applicable law or agreed to in writing, software</member>
3786 <member> * distributed under the License is distributed on an "AS IS" BASIS,</member>
3787 <member> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</member>
3788 <member> * See the License for the specific language governing permissions and</member>
3789 <member> * limitations under the License.</member>
3790 <member> */</member>
3791 <member>&#160;</member>
3792 <member>W3C(R) SOFTWARE NOTICE AND LICENSE</member>
3793 <member>http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231</member>
3794 <member>&#160;</member>
3795 <member>This work (and included software, documentation such as READMEs, or other</member>
3796 <member>related items) is being provided by the copyright holders under the following</member>
3797 <member>license. By obtaining, using and/or copying this work, you (the licensee) agree</member>
3798 <member>that you have read, understood, and will comply with the following terms and</member>
3799 <member>conditions.</member>
3800 <member>&#160;</member>
3801 <member>Permission to copy, modify, and distribute this software and its documentation,</member>
3802 <member>with or without modification, for any purpose and without fee or royalty is</member>
3803 <member>hereby granted, provided that you include the following on ALL copies of the</member>
3804 <member>software and documentation or portions thereof, including modifications:</member>
3805 <member>&#160;</member>
3806 <member> 1. The full text of this NOTICE in a location viewable to users of the</member>
3807 <member> redistributed or derivative work. </member>
3808 <member> 2. Any pre-existing intellectual property disclaimers, notices, or terms</member>
3809 <member> and conditions. If none exist, the W3C Software Short Notice should be</member>
3810 <member> included (hypertext is preferred, text is permitted) within the body</member>
3811 <member> of any redistributed or derivative code.</member>
3812 <member> 3. Notice of any changes or modifications to the files, including the date</member>
3813 <member> changes were made. (We recommend you provide URIs to the location from</member>
3814 <member> which the code is derived.)</member>
3815 <member> </member>
3816 <member>THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS MAKE</member>
3817 <member>NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED</member>
3818 <member>TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT</member>
3819 <member>THE USE OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE ANY THIRD PARTY</member>
3820 <member>PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.</member>
3821 <member>&#160;</member>
3822 <member>COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR</member>
3823 <member>CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENTATION.</member>
3824 <member>&#160;</member>
3825 <member>The name and trademarks of copyright holders may NOT be used in advertising or</member>
3826 <member>publicity pertaining to the software without specific, written prior permission.</member>
3827 <member>Title to copyright in this software and any associated documentation will at</member>
3828 <member>all times remain with copyright holders.</member>
3829 <member>&#160;</member>
3830 <member>____________________________________</member>
3831 <member>&#160;</member>
3832 <member>This formulation of W3C's notice and license became active on December 31 2002.</member>
3833 <member>This version removes the copyright ownership notice such that this license can</member>
3834 <member>be used with materials other than those owned by the W3C, reflects that ERCIM</member>
3835 <member>is now a host of the W3C, includes references to this specific dated version of</member>
3836 <member>the license, and removes the ambiguous grant of "use". Otherwise, this version</member>
3837 <member>is the same as the previous version and is written so as to preserve the Free</member>
3838 <member>Software Foundation's assessment of GPL compatibility and OSI's certification</member>
3839 <member>under the Open Source Definition. Please see our Copyright FAQ for common</member>
3840 <member>questions about using materials from our site, including specific terms and</member>
3841 <member>conditions for packages like libwww, Amaya, and Jigsaw. Other questions about</member>
3842 <member>this notice can be directed to site-policy@w3.org.</member>
3843 <member> </member>
3844 <member>Joseph Reagle &lt;site-policy@w3.org&gt; </member>
3845 <member>&#160;</member>
3846 <member>This license came from: http://www.megginson.com/SAX/copying.html</member>
3847 <member> However please note future versions of SAX may be covered </member>
3848 <member> under http://saxproject.org/?selected=pd</member>
3849 <member>&#160;</member>
3850 <member>SAX2 is Free!</member>
3851 <member>&#160;</member>
3852 <member>I hereby abandon any property rights to SAX 2.0 (the Simple API for</member>
3853 <member>XML), and release all of the SAX 2.0 source code, compiled code, and</member>
3854 <member>documentation contained in this distribution into the Public Domain.</member>
3855 <member>SAX comes with NO WARRANTY or guarantee of fitness for any</member>
3856 <member>purpose.</member>
3857 <member>&#160;</member>
3858 <member>David Megginson, david@megginson.com</member>
3859 <member>2000-05-05</member>
3860 </simplelist>
3861 </section>
3862 </section>
3863 <section id="enea-linux-eclipse-open-source-licenses-31">
3864 <title>License 31</title>
3865 <section>
3866 <title>Source File(s)</title>
3867 <itemizedlist spacing="compact">
3868 <listitem>
3869 <para>
3870 plugins/extracted_jars/org.eclipse.ant.core.source_3.4.0.v20150428-1928/about.html
3871 </para>
3872 </listitem>
3873 <listitem>
3874 <para>
3875 plugins/extracted_jars/org.eclipse.ant.core_3.4.0.v20150428-1928/about.html
3876 </para>
3877 </listitem>
3878 </itemizedlist>
3879 </section>
3880 <section>
3881 <title>License Text</title>
3882 <simplelist>
3883 <member>## About This Content</member>
3884 <member>&#160;</member>
3885 <member>October 8, 2009</member>
3886 <member>&#160;</member>
3887 <member>### License</member>
3888 <member>&#160;</member>
3889 <member>The Eclipse Foundation makes available all content in this plug-in</member>
3890 <member>("Content"). Unless otherwise indicated below, the Content is provided to you</member>
3891 <member>under the terms and conditions of the Eclipse Public License Version 1.0</member>
3892 <member>("EPL"). A copy of the EPL is available at</member>
3893 <member>&lt;http://www.eclipse.org/legal/epl-v10.html&gt;. For purposes of the EPL,</member>
3894 <member>"Program" will mean the Content.</member>
3895 <member>&#160;</member>
3896 <member>If you did not receive this Content directly from the Eclipse Foundation, the</member>
3897 <member>Content is being redistributed by another party ("Redistributor") and</member>
3898 <member>different terms and conditions may apply to your use of any object code in the</member>
3899 <member>Content. Check the Redistributor's license that was provided with the Content.</member>
3900 <member>If no such license exists, contact the Redistributor. Unless otherwise</member>
3901 <member>indicated below, the terms and conditions of the EPL still apply to any source</member>
3902 <member>code in the Content and such source code may be obtained at</member>
3903 <member>&lt;http://www.eclipse.org&gt;.</member>
3904 <member>&#160;</member>
3905 <member>### Third Party Content</member>
3906 <member>&#160;</member>
3907 <member>The Content includes items that have been sourced from third parties as set</member>
3908 <member>out below. If you did not receive this Content directly from the Eclipse</member>
3909 <member>Foundation, the following is provided for informational purposes only, and you</member>
3910 <member>should look to the Redistributor's license for terms and conditions of use.</member>
3911 <member>&#160;</member>
3912 <member>#### Ant 1.7.1</member>
3913 <member>&#160;</member>
3914 <member>The following classes in the plug-in JAR are based on Ant code developed by</member>
3915 <member>The Apache Software Foundation and shall be defined as the "Ant-Derived Work":</member>
3916 <member>&#160;</member>
3917 <member> * org.eclipse.ant.internal.core.ant.InternalAntRunner</member>
3918 <member> * org.eclipse.ant.internal.core.ant.InternalProject</member>
3919 <member>&#160;</member>
3920 <member>The binary code for the Ant-Derived Work is located in lib/antsupportlib.jar</member>
3921 <member>and the source code is located in lib/antsupportlibsrc.zip.</member>
3922 <member>&#160;</member>
3923 <member>Your use of the Ant-Derived Work is subject to the terms and conditions of the</member>
3924 <member>Apache Software License 2.0. A copy of the license is contained in the file</member>
3925 <member>[about_files/asl-v20.txt](about_files/asl-v20.txt) and is also available at</member>
3926 <member>&lt;http://www.apache.org/licenses/LICENSE-2.0.html&gt;.</member>
3927 <member>&#160;</member>
3928 <member>The names "Ant" and "Apache Software Foundation" must not be used to endorse</member>
3929 <member>or promote products derived from this software without prior written</member>
3930 <member>permission. For written permission, please contact</member>
3931 <member>[apache@apache.org](mailto:apache@apache.org).</member>
3932 <member>&#160;</member>
3933 <member>The Apache attribution [NOTICE](about_files/NOTICE) file is included with the</member>
3934 <member>Content in accordance with 4d of the Apache License, Version 2.0.</member>
3935 </simplelist>
3936 </section>
3937 </section>
3938 <section id="enea-linux-eclipse-open-source-licenses-32">
3939 <title>License 32</title>
3940 <section>
3941 <title>Source File(s)</title>
3942 <itemizedlist spacing="compact">
3943 <listitem>
3944 <para>
3945 plugins/extracted_jars/org.apache.batik.css.source_1.7.0.v201011041433/about_files/LICENSE.sax.txt
3946 </para>
3947 </listitem>
3948 </itemizedlist>
3949 </section>
3950 <section>
3951 <title>License Text</title>
3952 <simplelist>
3953 <member>xml-commons/java/external/LICENSE.sax.txt $Id: LICENSE.sax.txt,v 1.1.4.2 2009/02/20 18:00:57 cdamus Exp $</member>
3954 <member>&#160;</member>
3955 <member>&#160;</member>
3956 <member>This license came from: http://www.megginson.com/SAX/copying.html</member>
3957 <member> However please note future versions of SAX may be covered </member>
3958 <member> under http://saxproject.org/?selected=pd</member>
3959 <member>&#160;</member>
3960 <member>&#160;</member>
3961 <member>This page is now out of date -- see the new SAX site at </member>
3962 <member>http://www.saxproject.org/ for more up-to-date</member>
3963 <member>releases and other information. Please change your bookmarks.</member>
3964 <member>&#160;</member>
3965 <member>&#160;</member>
3966 <member>SAX2 is Free!</member>
3967 <member>&#160;</member>
3968 <member>I hereby abandon any property rights to SAX 2.0 (the Simple API for</member>
3969 <member>XML), and release all of the SAX 2.0 source code, compiled code, and</member>
3970 <member>documentation contained in this distribution into the Public Domain.</member>
3971 <member>SAX comes with NO WARRANTY or guarantee of fitness for any</member>
3972 <member>purpose.</member>
3973 <member>&#160;</member>
3974 <member>David Megginson, david@megginson.com</member>
3975 <member>2000-05-05</member>
3976 </simplelist>
3977 </section>
3978 </section>
3979 <section id="enea-linux-eclipse-open-source-licenses-33">
3980 <title>License 33</title>
3981 <section>
3982 <title>Source File(s)</title>
3983 <itemizedlist spacing="compact">
3984 <listitem>
3985 <para>
3986 plugins/extracted_jars/org.apache.ant.source_1.9.4.v201504302020/about_files/DOM-LICENSE.html
3987 </para>
3988 </listitem>
3989 <listitem>
3990 <para>
3991 plugins/org.apache.ant_1.9.4.v201504302020/about_files/DOM-LICENSE.html
3992 </para>
3993 </listitem>
3994 </itemizedlist>
3995 </section>
3996 <section>
3997 <title>License Text</title>
3998 <simplelist>
3999 <member># W3C Software Notice and License</member>
4000 <member>&#160;</member>
4001 <member>This work (and included software, documentation such as READMEs, or other</member>
4002 <member>related items) is being provided by the copyright holders under the following</member>
4003 <member>license.</member>
4004 <member>&#160;</member>
4005 <member>## License</member>
4006 <member>&#160;</member>
4007 <member>By obtaining, using and/or copying this work, you (the licensee) agree that</member>
4008 <member>you have read, understood, and will comply with the following terms and</member>
4009 <member>conditions.</member>
4010 <member>&#160;</member>
4011 <member>Permission to copy, modify, and distribute this software and its</member>
4012 <member>documentation, with or without modification, for any purpose and without fee</member>
4013 <member>or royalty is hereby granted, provided that you include the following on ALL</member>
4014 <member>copies of the software and documentation or portions thereof, including</member>
4015 <member>modifications:</member>
4016 <member>&#160;</member>
4017 <member> * The full text of this NOTICE in a location viewable to users of the redistributed or derivative work.</member>
4018 <member> * Any pre-existing intellectual property disclaimers, notices, or terms and conditions. If none exist, the [ W3C Software Short Notice](http://www.w3.org/Consortium/Legal/2002/copyright-software-short-notice-20021231.html) should be included (hypertext is preferred, text is permitted) within the body of any redistributed or derivative code.</member>
4019 <member> * Notice of any changes or modifications to the files, including the date changes were made. (We recommend you provide URIs to the location from which the code is derived.)</member>
4020 <member>&#160;</member>
4021 <member>## Disclaimers</member>
4022 <member>&#160;</member>
4023 <member>THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS</member>
4024 <member>MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT</member>
4025 <member>LIMITED TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR</member>
4026 <member>PURPOSE OR THAT THE USE OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE ANY</member>
4027 <member>THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.</member>
4028 <member>&#160;</member>
4029 <member>COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR</member>
4030 <member>CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENTATION.</member>
4031 <member>&#160;</member>
4032 <member>The name and trademarks of copyright holders may NOT be used in advertising or</member>
4033 <member>publicity pertaining to the software without specific, written prior</member>
4034 <member>permission. Title to copyright in this software and any associated</member>
4035 <member>documentation will at all times remain with copyright holders.</member>
4036 <member>&#160;</member>
4037 <member>## Notes</member>
4038 <member>&#160;</member>
4039 <member>This version: http://www.w3.org/Consortium/Legal/2002/copyright-</member>
4040 <member>software-20021231</member>
4041 <member>&#160;</member>
4042 <member>This formulation of W3C's notice and license became active on December 31</member>
4043 <member>2002. This version removes the copyright ownership notice such that this</member>
4044 <member>license can be used with materials other than those owned by the W3C, reflects</member>
4045 <member>that ERCIM is now a host of the W3C, includes references to this specific</member>
4046 <member>dated version of the license, and removes the ambiguous grant of "use".</member>
4047 <member>Otherwise, this version is the same as the [previous</member>
4048 <member>version](http://www.w3.org/Consortium/Legal/copyright-software-19980720) and</member>
4049 <member>is written so as to preserve the [ Free Software Foundation's assessment of</member>
4050 <member>GPL compatibility](http://www.gnu.org/philosophy/license-</member>
4051 <member>list.html#GPLCompatibleLicenses) and [OSI's</member>
4052 <member>certification](http://www.opensource.org/licenses/W3C.php) under the [Open</member>
4053 <member>Source Definition](http://www.opensource.org/docs/definition.php).</member>
4054 <member>&#160;</member>
4055 <member>Copyright Â(C) 2009 W3C Â(R) ( [MIT](http://www.csail.mit.edu/) ,</member>
4056 <member>[ERCIM](http://www.ercim.org/) , [Keio](http://www.keio.ac.jp/)) [Usage</member>
4057 <member>policies apply](http://www.w3.org/Consortium/Legal/2002/ipr-notice-20021231).</member>
4058 </simplelist>
4059 </section>
4060 </section>
4061 <section id="enea-linux-eclipse-open-source-licenses-34">
4062 <title>License 34</title>
4063 <section>
4064 <title>Source File(s)</title>
4065 <itemizedlist spacing="compact">
4066 <listitem>
4067 <para>
4068 plugins/extracted_jars/org.tukaani.xz_1.3.0.v201308270617/about_files/LICENSE.txt
4069 </para>
4070 </listitem>
4071 <listitem>
4072 <para>
4073 plugins/extracted_jars/org.tukaani.xz.source_1.3.0.v201308270617/about_files/LICENSE.txt
4074 </para>
4075 </listitem>
4076 </itemizedlist>
4077 </section>
4078 <section>
4079 <title>License Text</title>
4080 <simplelist>
4081 <member>Licensing of XZ for Java</member>
4082 <member>========================</member>
4083 <member>&#160;</member>
4084 <member> All the files in this package have been written by Lasse Collin</member>
4085 <member> and/or Igor Pavlov. All these files have been put into the</member>
4086 <member> public domain. You can do whatever you want with these files.</member>
4087 <member>&#160;</member>
4088 <member> This software is provided "as is", without any warranty.</member>
4089 </simplelist>
4090 </section>
4091 </section>
4092 <section id="enea-linux-eclipse-open-source-licenses-35">
4093 <title>License 35</title>
4094 <section>
4095 <title>Source File(s)</title>
4096 <itemizedlist spacing="compact">
4097 <listitem>
4098 <para>
4099 plugins/extracted_jars/javax.xml_1.3.4.v201005080400/about_files/LICENSE.DOM-documentation.html
4100 </para>
4101 </listitem>
4102 </itemizedlist>
4103 </section>
4104 <section>
4105 <title>License Text</title>
4106 <simplelist>
4107 <member># W3C(R) DOCUMENT LICENSE</member>
4108 <member>&#160;</member>
4109 <member>### &lt;http://www.w3.org/Consortium/Legal/2002/copyright-documents-20021231&gt;</member>
4110 <member>&#160;</member>
4111 <member>Public documents on the W3C site are provided by the copyright holders under</member>
4112 <member>the following license. By using and/or copying this document, or the W3C</member>
4113 <member>document from which this statement is linked, you (the licensee) agree that</member>
4114 <member>you have read, understood, and will comply with the following terms and</member>
4115 <member>conditions:</member>
4116 <member>&#160;</member>
4117 <member>Permission to copy, and distribute the contents of this document, or the W3C</member>
4118 <member>document from which this statement is linked, in any medium for any purpose</member>
4119 <member>and without fee or royalty is hereby granted, provided that you include the</member>
4120 <member>following on _ALL_ copies of the document, or portions thereof, that you use:</member>
4121 <member>&#160;</member>
4122 <member> 1. A link or URL to the original W3C document. </member>
4123 <member> 2. The pre-existing copyright notice of the original author, or if it doesn't exist, a notice (hypertext is preferred, but a textual representation is permitted) of the form: "Copyright (C) [$date-of-document] [World Wide Web Consortium](http://www.w3.org/), ([Massachusetts Institute of Technology](http://www.lcs.mit.edu/), [European Research Consortium for Informatics and Mathematics](http://www.ercim.org/), [Keio University](http://www.keio.ac.jp/)). All Rights Reserved. &lt;http://www.w3.org/Consortium/Legal/2002/copyright-documents-20021231&gt;" </member>
4124 <member> 3. _If it exists_, the STATUS of the W3C document. </member>
4125 <member>&#160;</member>
4126 <member>When space permits, inclusion of the full text of this **NOTICE** should be</member>
4127 <member>provided. We request that authorship attribution be provided in any software,</member>
4128 <member>documents, or other items or products that you create pursuant to the</member>
4129 <member>implementation of the contents of this document, or any portion thereof.</member>
4130 <member>&#160;</member>
4131 <member>No right to create modifications or derivatives of W3C documents is granted</member>
4132 <member>pursuant to this license. However, if additional requirements (documented in</member>
4133 <member>the [Copyright FAQ](http://www.w3.org/Consortium/Legal/IPR-FAQ)) are</member>
4134 <member>satisfied, the right to create modifications or derivatives is sometimes</member>
4135 <member>granted by the W3C to individuals complying with those requirements.</member>
4136 <member>&#160;</member>
4137 <member>THIS DOCUMENT IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS MAKE NO</member>
4138 <member>REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED</member>
4139 <member>TO, WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-</member>
4140 <member>INFRINGEMENT, OR TITLE; THAT THE CONTENTS OF THE DOCUMENT ARE SUITABLE FOR ANY</member>
4141 <member>PURPOSE; NOR THAT THE IMPLEMENTATION OF SUCH CONTENTS WILL NOT INFRINGE ANY</member>
4142 <member>THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.</member>
4143 <member>&#160;</member>
4144 <member>COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR</member>
4145 <member>CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE DOCUMENT OR THE</member>
4146 <member>PERFORMANCE OR IMPLEMENTATION OF THE CONTENTS THEREOF.</member>
4147 <member>&#160;</member>
4148 <member>The name and trademarks of copyright holders may NOT be used in advertising or</member>
4149 <member>publicity pertaining to this document or its contents without specific,</member>
4150 <member>written prior permission. Title to copyright in this document will at all</member>
4151 <member>times remain with copyright holders.</member>
4152 <member>&#160;</member>
4153 <member>\----------------------------------------------------------------------------</member>
4154 <member>&#160;</member>
4155 <member>This formulation of W3C's notice and license became active on December 31</member>
4156 <member>2002\. This version removes the copyright ownership notice such that this</member>
4157 <member>license can be used with materials other than those owned by the W3C, moves</member>
4158 <member>information on style sheets, DTDs, and schemas to the [Copyright</member>
4159 <member>FAQ](http://www.w3.org/Consortium/Legal/IPR-FAQ), reflects that ERCIM is now a</member>
4160 <member>host of the W3C, includes references to this specific dated version of the</member>
4161 <member>license, and removes the ambiguous grant of "use". See the [older</member>
4162 <member>formulation](http://www.w3.org/Consortium/Legal/copyright-documents-19990405)</member>
4163 <member>for the policy prior to this date. Please see our [Copyright</member>
4164 <member>FAQ](http://www.w3.org/Consortium/Legal/IPR-FAQ) for common questions about</member>
4165 <member>using materials from our site, such as the translating or annotating</member>
4166 <member>specifications. Other questions about this notice can be directed to [site-</member>
4167 <member>policy@w3.org](mailto:site-policy@w3.org).</member>
4168 <member>&#160;</member>
4169 <member>Joseph Reagle &lt;[mailto:site-policy@w3.org](mailto:site-policy@w3.org)</member>
4170 <member>&#160;</member>
4171 <member>Last revised by Reagle $Date: 2007/12/03 05:48:39 $</member>
4172 </simplelist>
4173 </section>
4174 </section>
4175 <section id="enea-linux-eclipse-open-source-licenses-36">
4176 <title>License 36</title>
4177 <section>
4178 <title>Source File(s)</title>
4179 <itemizedlist spacing="compact">
4180 <listitem>
4181 <para>
4182 plugins/extracted_jars/org.eclipse.ant.launching.source_1.1.0.v20150428-1928/about.html
4183 </para>
4184 </listitem>
4185 <listitem>
4186 <para>
4187 plugins/extracted_jars/org.eclipse.ant.launching_1.1.0.v20150428-1928/about.html
4188 </para>
4189 </listitem>
4190 </itemizedlist>
4191 </section>
4192 <section>
4193 <title>License Text</title>
4194 <simplelist>
4195 <member>## About This Content</member>
4196 <member>&#160;</member>
4197 <member>October 8, 2009</member>
4198 <member>&#160;</member>
4199 <member>### License</member>
4200 <member>&#160;</member>
4201 <member>The Eclipse Foundation makes available all content in this plug-in</member>
4202 <member>("Content"). Unless otherwise indicated below, the Content is provided to you</member>
4203 <member>under the terms and conditions of the Eclipse Public License Version 1.0</member>
4204 <member>("EPL"). A copy of the EPL is available at</member>
4205 <member>&lt;http://www.eclipse.org/legal/epl-v10.html&gt;. For purposes of the EPL,</member>
4206 <member>"Program" will mean the Content.</member>
4207 <member>&#160;</member>
4208 <member>If you did not receive this Content directly from the Eclipse Foundation, the</member>
4209 <member>Content is being redistributed by another party ("Redistributor") and</member>
4210 <member>different terms and conditions may apply to your use of any object code in the</member>
4211 <member>Content. Check the Redistributor's license that was provided with the Content.</member>
4212 <member>If no such license exists, contact the Redistributor. Unless otherwise</member>
4213 <member>indicated below, the terms and conditions of the EPL still apply to any source</member>
4214 <member>code in the Content and such source code may be obtained at</member>
4215 <member>&lt;http://www.eclipse.org&gt;.</member>
4216 <member>&#160;</member>
4217 <member>### Third Party Content</member>
4218 <member>&#160;</member>
4219 <member>The Content includes items that have been sourced from third parties as set</member>
4220 <member>out below. If you did not receive this Content directly from the Eclipse</member>
4221 <member>Foundation, the following is provided for informational purposes only, and you</member>
4222 <member>should look to the Redistributor's license for terms and conditions of use.</member>
4223 <member>&#160;</member>
4224 <member>#### Ant 1.7.1</member>
4225 <member>&#160;</member>
4226 <member>The following classes in the plug-in JAR are based on Ant code developed by</member>
4227 <member>The Apache Software Foundation and shall be defined as the "Ant-Derived Work":</member>
4228 <member>&#160;</member>
4229 <member> * org.eclipse.ant.internal.launching.remote.InternalAntRunner</member>
4230 <member>&#160;</member>
4231 <member>The object code for InternalAntRunner is located in lib/remote.jar and the</member>
4232 <member>source code is located in lib/remotesrc.zip.</member>
4233 <member>&#160;</member>
4234 <member>Your use of the Ant-Derived Work is subject to the terms and conditions of the</member>
4235 <member>Apache Software License 2.0. A copy of the license is contained in the file</member>
4236 <member>[about_files/asl-v20.txt](about_files/asl-v20.txt) and is also available at</member>
4237 <member>&lt;http://www.apache.org/licenses/LICENSE-2.0.html&gt;.</member>
4238 <member>&#160;</member>
4239 <member>The names "Ant" and "Apache Software Foundation" must not be used to endorse</member>
4240 <member>or promote products derived from this software without prior written</member>
4241 <member>permission. For written permission, please contact</member>
4242 <member>[apache@apache.org](mailto:apache@apache.org).</member>
4243 <member>&#160;</member>
4244 <member>The Apache attribution [NOTICE](about_files/NOTICE) file is included with the</member>
4245 <member>Content in accordance with 4d of the Apache License, Version 2.0.</member>
4246 </simplelist>
4247 </section>
4248 </section>
4249 <section id="enea-linux-eclipse-open-source-licenses-37">
4250 <title>License 37</title>
4251 <section>
4252 <title>Source File(s)</title>
4253 <itemizedlist spacing="compact">
4254 <listitem>
4255 <para>
4256 plugins/extracted_jars/org.apache.batik.util_1.7.0.v201011041433/about_files/LICENSE.dom-software.txt
4257 </para>
4258 </listitem>
4259 </itemizedlist>
4260 </section>
4261 <section>
4262 <title>License Text</title>
4263 <simplelist>
4264 <member>xml-commons/java/external/LICENSE.dom-software.txt $Id: LICENSE.dom-software.txt,v 1.2.2.2 2009/02/27 15:39:49 cdamus Exp $</member>
4265 <member>&#160;</member>
4266 <member>&#160;</member>
4267 <member>This license came from: http://www.w3.org/Consortium/Legal/copyright-software-19980720</member>
4268 <member>&#160;</member>
4269 <member>&#160;</member>
4270 <member>W3C(R) SOFTWARE NOTICE AND LICENSE</member>
4271 <member>Copyright (C) 1994-2001 World</member>
4272 <member>Wide Web Consortium, &lt;a href="http://www.w3.org/"&gt;World</member>
4273 <member>Wide Web Consortium&lt;/a&gt;, (&lt;a href=</member>
4274 <member>"http://www.lcs.mit.edu/"&gt;Massachusetts Institute of</member>
4275 <member>Technology&lt;/a&gt;, &lt;a href="http://www.inria.fr/"&gt;Institut National de</member>
4276 <member>Recherche en Informatique et en Automatique&lt;/a&gt;, &lt;a href=</member>
4277 <member>"http://www.keio.ac.jp/"&gt;Keio University&lt;/a&gt;). All Rights Reserved.</member>
4278 <member>http://www.w3.org/Consortium/Legal/</member>
4279 <member>&#160;</member>
4280 <member>This W3C work (including software, documents, or other related</member>
4281 <member>items) is being provided by the copyright holders under the</member>
4282 <member>following license. By obtaining, using and/or copying this work,</member>
4283 <member>you (the licensee) agree that you have read, understood, and will</member>
4284 <member>comply with the following terms and conditions:</member>
4285 <member>Permission to use, copy, modify, and distribute this software</member>
4286 <member>and its documentation, with or without modification, for any</member>
4287 <member>purpose and without fee or royalty is hereby granted, provided that</member>
4288 <member>you include the following on ALL copies of the software and</member>
4289 <member>documentation or portions thereof, including modifications, that</member>
4290 <member>you make:</member>
4291 <member>&#160;</member>
4292 <member>The full text of this NOTICE in a location viewable to users of</member>
4293 <member>the redistributed or derivative work.</member>
4294 <member>&#160;</member>
4295 <member>Any pre-existing intellectual property disclaimers, notices, or</member>
4296 <member>terms and conditions. If none exist, a short notice of the</member>
4297 <member>following form (hypertext is preferred, text is permitted) should</member>
4298 <member>be used within the body of any redistributed or derivative code:</member>
4299 <member>"Copyright (C) [$date-of-software] World Wide Web Consortium, (Massachusetts Institute of</member>
4300 <member>Technology, Institut National de</member>
4301 <member>Recherche en Informatique et en Automatique, Keio University). All Rights Reserved.</member>
4302 <member>http://www.w3.org/Consortium/Legal/"</member>
4303 <member>&#160;</member>
4304 <member>Notice of any changes or modifications to the W3C files,</member>
4305 <member>including the date changes were made. (We recommend you provide </member>
4306 <member>URIs to the location from which the code is derived.)</member>
4307 <member>&#160;</member>
4308 <member>THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND</member>
4309 <member>COPYRIGHT HOLDERS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR</member>
4310 <member>IMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES OF</member>
4311 <member>MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE</member>
4312 <member>USE OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE ANY THIRD</member>
4313 <member>PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.</member>
4314 <member>COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT,</member>
4315 <member>SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE</member>
4316 <member>SOFTWARE OR DOCUMENTATION.</member>
4317 <member>&#160;</member>
4318 <member>The name and trademarks of copyright holders may NOT be used in</member>
4319 <member>advertising or publicity pertaining to the software without</member>
4320 <member>specific, written prior permission. Title to copyright in this</member>
4321 <member>software and any associated documentation will at all times remain</member>
4322 <member>with copyright holders.</member>
4323 <member>____________________________________</member>
4324 <member>This formulation of W3C's notice and license became active on</member>
4325 <member>August 14 1998 so as to improve compatibility with GPL. This</member>
4326 <member>version ensures that W3C software licensing terms are no more</member>
4327 <member>restrictive than GPL and consequently W3C software may be</member>
4328 <member>distributed in GPL packages. See the older formulation for the</member>
4329 <member>policy prior to this date. Please see our Copyright FAQ for common </member>
4330 <member>questions about using materials from</member>
4331 <member>our site, including specific terms and conditions for packages like</member>
4332 <member>libwww, Amaya, and Jigsaw. </member>
4333 <member>Other questions about this notice can be</member>
4334 <member>directed to site-policy@w3.org.</member>
4335 <member>&#160;</member>
4336 <member>webmaster</member>
4337 <member>(last updated $Date: 2009/02/27 15:39:49 $)</member>
4338 </simplelist>
4339 </section>
4340 </section>
4341 <section id="enea-linux-eclipse-open-source-licenses-38">
4342 <title>License 38</title>
4343 <section>
4344 <title>Source File(s)</title>
4345 <itemizedlist spacing="compact">
4346 <listitem>
4347 <para>
4348 plugins/extracted_jars/javax.xml_1.3.4.v201005080400/about_files/LICENSE.dom-documentation.txt
4349 </para>
4350 </listitem>
4351 </itemizedlist>
4352 </section>
4353 <section>
4354 <title>License Text</title>
4355 <simplelist>
4356 <member>xml-commons/java/external/LICENSE.dom-documentation.txt $Id: LICENSE.dom-documentation.txt,v 1.1.2.1 2007/12/03 05:48:38 david_williams Exp $</member>
4357 <member>&#160;</member>
4358 <member>&#160;</member>
4359 <member>This license came from: http://www.w3.org/Consortium/Legal/copyright-documents-20021231</member>
4360 <member>&#160;</member>
4361 <member>&#160;</member>
4362 <member>W3C(R) DOCUMENT LICENSE</member>
4363 <member>http://www.w3.org/Consortium/Legal/2002/copyright-documents-20021231</member>
4364 <member>&#160;</member>
4365 <member>Public documents on the W3C site are provided by the copyright holders under</member>
4366 <member>the following license. By using and/or copying this document, or the W3C</member>
4367 <member>document from which this statement is linked, you (the licensee) agree that</member>
4368 <member>you have read, understood, and will comply with the following terms and</member>
4369 <member>conditions:</member>
4370 <member>&#160;</member>
4371 <member>Permission to copy, and distribute the contents of this document, or the W3C</member>
4372 <member>document from which this statement is linked, in any medium for any purpose</member>
4373 <member>and without fee or royalty is hereby granted, provided that you include the</member>
4374 <member>following on ALL copies of the document, or portions thereof, that you use:</member>
4375 <member>&#160;</member>
4376 <member> 1. A link or URL to the original W3C document.</member>
4377 <member> 2. The pre-existing copyright notice of the original author, or if it</member>
4378 <member> doesn't exist, a notice (hypertext is preferred, but a textual</member>
4379 <member> representation is permitted) of the form: "Copyright (C) [$date-of-document]</member>
4380 <member> World Wide Web Consortium, (Massachusetts Institute of Technology,</member>
4381 <member> European Research Consortium for Informatics and Mathematics, Keio</member>
4382 <member> University). All Rights Reserved.</member>
4383 <member> http://www.w3.org/Consortium/Legal/2002/copyright-documents-20021231"</member>
4384 <member> 3. If it exists, the STATUS of the W3C document.</member>
4385 <member> </member>
4386 <member>When space permits, inclusion of the full text of this NOTICE should be</member>
4387 <member>provided. We request that authorship attribution be provided in any software,</member>
4388 <member>documents, or other items or products that you create pursuant to the</member>
4389 <member>implementation of the contents of this document, or any portion thereof.</member>
4390 <member>&#160;</member>
4391 <member>No right to create modifications or derivatives of W3C documents is granted</member>
4392 <member>pursuant to this license. However, if additional requirements (documented in</member>
4393 <member>the Copyright FAQ) are satisfied, the right to create modifications or</member>
4394 <member>derivatives is sometimes granted by the W3C to individuals complying with</member>
4395 <member>those requirements.</member>
4396 <member>&#160;</member>
4397 <member>THIS DOCUMENT IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS MAKE NO</member>
4398 <member>REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING, BUT NOT</member>
4399 <member>LIMITED TO, WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE,</member>
4400 <member>NON-INFRINGEMENT, OR TITLE; THAT THE CONTENTS OF THE DOCUMENT ARE SUITABLE</member>
4401 <member>FOR ANY PURPOSE; NOR THAT THE IMPLEMENTATION OF SUCH CONTENTS WILL NOT</member>
4402 <member>INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.</member>
4403 <member>&#160;</member>
4404 <member>COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR</member>
4405 <member>CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE DOCUMENT OR THE</member>
4406 <member>PERFORMANCE OR IMPLEMENTATION OF THE CONTENTS THEREOF.</member>
4407 <member>&#160;</member>
4408 <member>The name and trademarks of copyright holders may NOT be used in advertising</member>
4409 <member>or publicity pertaining to this document or its contents without specific,</member>
4410 <member>written prior permission. Title to copyright in this document will at all</member>
4411 <member>times remain with copyright holders.</member>
4412 <member>&#160;</member>
4413 <member>----------------------------------------------------------------------------</member>
4414 <member>&#160;</member>
4415 <member>This formulation of W3C's notice and license became active on December 31 2002.</member>
4416 <member>This version removes the copyright ownership notice such that this license can</member>
4417 <member>be used with materials other than those owned by the W3C, moves information on</member>
4418 <member>style sheets, DTDs, and schemas to the Copyright FAQ, reflects that ERCIM is </member>
4419 <member>now a host of the W3C, includes references to this specific dated version of </member>
4420 <member>the license, and removes the ambiguous grant of "use". See the older </member>
4421 <member>formulation for the policy prior to this date. Please see our Copyright FAQ for</member>
4422 <member>common questions about using materials from our site, such as the translating</member>
4423 <member>or annotating specifications. Other questions about this notice can be directed</member>
4424 <member>to site-policy@w3.org.</member>
4425 <member>&#160;</member>
4426 <member>Joseph Reagle &lt;site-policy@w3.org&gt; </member>
4427 <member>&#160;</member>
4428 <member>Last revised by Reagle $Date: 2007/12/03 05:48:38 $</member>
4429 </simplelist>
4430 </section>
4431 </section>
4432 <section id="enea-linux-eclipse-open-source-licenses-39">
4433 <title>License 39</title>
4434 <section>
4435 <title>Source File(s)</title>
4436 <itemizedlist spacing="compact">
4437 <listitem>
4438 <para>
4439 plugins/extracted_jars/org.eclipse.help_3.6.0.v20130326-1254/about_files/copyright-software-19980720.htm
4440 </para>
4441 </listitem>
4442 </itemizedlist>
4443 </section>
4444 <section>
4445 <title>License Text</title>
4446 <simplelist>
4447 <member>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"</member>
4448 <member> "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;</member>
4449 <member>&lt;html xmlns="http://www.w3.org/1999/xhtml"&gt;</member>
4450 <member>&lt;head&gt;</member>
4451 <member>&lt;meta name="generator" content="HTML Tidy, see www.w3.org" /&gt;</member>
4452 <member>&lt;meta http-equiv="Content-Type"</member>
4453 <member>content="text/html; charset=iso-8859-1" /&gt;</member>
4454 <member>&lt;link rel="stylesheet" type="text/css"</member>
4455 <member>href="/StyleSheets/base.css" /&gt;</member>
4456 <member>&lt;title&gt;W3C IPR SOFTWARE NOTICE&lt;/title&gt;</member>
4457 <member>&lt;/head&gt;</member>
4458 <member>&lt;body text="#000000" bgcolor="#FFFFFF"&gt;</member>
4459 <member>&lt;h1&gt;W3C&lt;sup&gt;&amp;reg;&lt;/sup&gt; SOFTWARE NOTICE AND LICENSE&lt;/h1&gt;</member>
4460 <member>&#160;</member>
4461 <member>&lt;h3&gt;Copyright &amp;copy; 1994-2002 &lt;a href="http://www.w3.org/"&gt;World</member>
4462 <member>Wide Web Consortium&lt;/a&gt;, (&lt;a</member>
4463 <member>href="http://www.lcs.mit.edu/"&gt;Massachusetts Institute of</member>
4464 <member>Technology&lt;/a&gt;, &lt;a href="http://www.inria.fr/"&gt;Institut National de</member>
4465 <member>Recherche en Informatique et en Automatique&lt;/a&gt;, &lt;a</member>
4466 <member>href="http://www.keio.ac.jp/"&gt;Keio University&lt;/a&gt;). All Rights</member>
4467 <member>Reserved. http://www.w3.org/Consortium/Legal/&lt;/h3&gt;</member>
4468 <member>&#160;</member>
4469 <member>&lt;p&gt;This W3C work (including software, documents, or other related</member>
4470 <member>items) is being provided by the copyright holders under the</member>
4471 <member>following license. By obtaining, using and/or copying this work,</member>
4472 <member>you (the licensee) agree that you have read, understood, and will</member>
4473 <member>comply with the following terms and conditions:&lt;/p&gt;</member>
4474 <member>&#160;</member>
4475 <member>&lt;p&gt;Permission to use, copy, modify, and distribute this software</member>
4476 <member>and its documentation, with or without modification,&amp;nbsp; for any</member>
4477 <member>purpose and without fee or royalty is hereby granted, provided that</member>
4478 <member>you include the following on ALL copies of the software and</member>
4479 <member>documentation or portions thereof, including modifications, that</member>
4480 <member>you make:&lt;/p&gt;</member>
4481 <member>&#160;</member>
4482 <member>&lt;ol&gt;</member>
4483 <member>&lt;li&gt;The full text of this NOTICE in a location viewable to users of</member>
4484 <member>the redistributed or derivative work.&lt;/li&gt;</member>
4485 <member>&#160;</member>
4486 <member>&lt;li&gt;Any pre-existing intellectual property disclaimers, notices, or</member>
4487 <member>terms and conditions. If none exist, a short notice of the</member>
4488 <member>following form (hypertext is preferred, text is permitted) should</member>
4489 <member>be used within the body of any redistributed or derivative code:</member>
4490 <member>"Copyright &amp;copy; [$date-of-software] &lt;a</member>
4491 <member>href="http://www.w3.org/"&gt;World Wide Web Consortium&lt;/a&gt;, (&lt;a</member>
4492 <member>href="http://www.lcs.mit.edu/"&gt;Massachusetts Institute of</member>
4493 <member>Technology&lt;/a&gt;, &lt;a href="http://www.inria.fr/"&gt;Institut National de</member>
4494 <member>Recherche en Informatique et en Automatique&lt;/a&gt;, &lt;a</member>
4495 <member>href="http://www.keio.ac.jp/"&gt;Keio University&lt;/a&gt;). All Rights</member>
4496 <member>Reserved. http://www.w3.org/Consortium/Legal/"&lt;/li&gt;</member>
4497 <member>&#160;</member>
4498 <member>&lt;li&gt;Notice of any changes or modifications to the W3C files,</member>
4499 <member>including the date changes were made. (We recommend you provide</member>
4500 <member>URIs to the location from which the code is derived.)&lt;/li&gt;</member>
4501 <member>&lt;/ol&gt;</member>
4502 <member>&#160;</member>
4503 <member>&lt;p&gt;THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND</member>
4504 <member>COPYRIGHT HOLDERS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR</member>
4505 <member>IMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES OF</member>
4506 <member>MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE</member>
4507 <member>USE OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE ANY THIRD</member>
4508 <member>PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.&lt;/p&gt;</member>
4509 <member>&#160;</member>
4510 <member>&lt;p&gt;COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT,</member>
4511 <member>SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE</member>
4512 <member>SOFTWARE OR DOCUMENTATION.&lt;/p&gt;</member>
4513 <member>&#160;</member>
4514 <member>&lt;p&gt;The name and trademarks of copyright holders may NOT be used in</member>
4515 <member>advertising or publicity pertaining to the software without</member>
4516 <member>specific, written prior permission. Title to copyright in this</member>
4517 <member>software and any associated documentation will at all times remain</member>
4518 <member>with copyright holders.&lt;/p&gt;</member>
4519 <member>&#160;</member>
4520 <member>&lt;p&gt;____________________________________&lt;/p&gt;</member>
4521 <member>&#160;</member>
4522 <member>&lt;p&gt;This formulation of W3C's notice and license became active on</member>
4523 <member>August 14 1998 so as to improve compatibility with GPL. This</member>
4524 <member>version ensures that W3C software licensing terms are no more</member>
4525 <member>restrictive than GPL and consequently W3C software may be</member>
4526 <member>distributed in GPL packages. See the &lt;a</member>
4527 <member>href="copyright-software-19980519.html"&gt;older formulation&lt;/a&gt; for</member>
4528 <member>the policy prior to this date. Please see our &lt;a</member>
4529 <member>href="IPR-FAQ.html"&gt;Copyright FAQ&lt;/a&gt; for common questions about</member>
4530 <member>using materials from our site, including specific terms and</member>
4531 <member>conditions for packages like libwww, Amaya, and Jigsaw. Other</member>
4532 <member>questions about this notice can be directed to &lt;a</member>
4533 <member>href="mailto:site-policy@w3.org"&gt;site-policy@w3.org&lt;/a&gt;.&lt;br /&gt;</member>
4534 <member>&amp;nbsp;&lt;/p&gt;</member>
4535 <member>&#160;</member>
4536 <member>&lt;p&gt;&amp;nbsp;&lt;/p&gt;</member>
4537 <member>&#160;</member>
4538 <member>&lt;address&gt;&lt;a href="../../Help/Webmaster.html"&gt;webmaster&lt;/a&gt;&lt;br /&gt;</member>
4539 <member> (last updated $Date: 2006/06/01 15:38:35 $)&lt;/address&gt;</member>
4540 <member>&lt;/body&gt;</member>
4541 <member>&lt;/html&gt;</member>
4542 </simplelist>
4543 </section>
4544 </section>
4545 <section id="enea-linux-eclipse-open-source-licenses-40">
4546 <title>License 40</title>
4547 <section>
4548 <title>Source File(s)</title>
4549 <itemizedlist spacing="compact">
4550 <listitem>
4551 <para>
4552 plugins/extracted_jars/org.apache.batik.util.source_1.7.0.v201011041433/about_files/LICENSE.dom-software.txt
4553 </para>
4554 </listitem>
4555 </itemizedlist>
4556 </section>
4557 <section>
4558 <title>License Text</title>
4559 <simplelist>
4560 <member>xml-commons/java/external/LICENSE.dom-software.txt $Id: LICENSE.dom-software.txt,v 1.2.2.2 2009/02/27 15:39:47 cdamus Exp $</member>
4561 <member>&#160;</member>
4562 <member>&#160;</member>
4563 <member>This license came from: http://www.w3.org/Consortium/Legal/copyright-software-19980720</member>
4564 <member>&#160;</member>
4565 <member>&#160;</member>
4566 <member>W3C(R) SOFTWARE NOTICE AND LICENSE</member>
4567 <member>Copyright (C) 1994-2001 World</member>
4568 <member>Wide Web Consortium, &lt;a href="http://www.w3.org/"&gt;World</member>
4569 <member>Wide Web Consortium&lt;/a&gt;, (&lt;a href=</member>
4570 <member>"http://www.lcs.mit.edu/"&gt;Massachusetts Institute of</member>
4571 <member>Technology&lt;/a&gt;, &lt;a href="http://www.inria.fr/"&gt;Institut National de</member>
4572 <member>Recherche en Informatique et en Automatique&lt;/a&gt;, &lt;a href=</member>
4573 <member>"http://www.keio.ac.jp/"&gt;Keio University&lt;/a&gt;). All Rights Reserved.</member>
4574 <member>http://www.w3.org/Consortium/Legal/</member>
4575 <member>&#160;</member>
4576 <member>This W3C work (including software, documents, or other related</member>
4577 <member>items) is being provided by the copyright holders under the</member>
4578 <member>following license. By obtaining, using and/or copying this work,</member>
4579 <member>you (the licensee) agree that you have read, understood, and will</member>
4580 <member>comply with the following terms and conditions:</member>
4581 <member>Permission to use, copy, modify, and distribute this software</member>
4582 <member>and its documentation, with or without modification, for any</member>
4583 <member>purpose and without fee or royalty is hereby granted, provided that</member>
4584 <member>you include the following on ALL copies of the software and</member>
4585 <member>documentation or portions thereof, including modifications, that</member>
4586 <member>you make:</member>
4587 <member>&#160;</member>
4588 <member>The full text of this NOTICE in a location viewable to users of</member>
4589 <member>the redistributed or derivative work.</member>
4590 <member>&#160;</member>
4591 <member>Any pre-existing intellectual property disclaimers, notices, or</member>
4592 <member>terms and conditions. If none exist, a short notice of the</member>
4593 <member>following form (hypertext is preferred, text is permitted) should</member>
4594 <member>be used within the body of any redistributed or derivative code:</member>
4595 <member>"Copyright (C) [$date-of-software] World Wide Web Consortium, (Massachusetts Institute of</member>
4596 <member>Technology, Institut National de</member>
4597 <member>Recherche en Informatique et en Automatique, Keio University). All Rights Reserved.</member>
4598 <member>http://www.w3.org/Consortium/Legal/"</member>
4599 <member>&#160;</member>
4600 <member>Notice of any changes or modifications to the W3C files,</member>
4601 <member>including the date changes were made. (We recommend you provide </member>
4602 <member>URIs to the location from which the code is derived.)</member>
4603 <member>&#160;</member>
4604 <member>THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND</member>
4605 <member>COPYRIGHT HOLDERS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR</member>
4606 <member>IMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES OF</member>
4607 <member>MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE</member>
4608 <member>USE OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE ANY THIRD</member>
4609 <member>PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.</member>
4610 <member>COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT,</member>
4611 <member>SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE</member>
4612 <member>SOFTWARE OR DOCUMENTATION.</member>
4613 <member>&#160;</member>
4614 <member>The name and trademarks of copyright holders may NOT be used in</member>
4615 <member>advertising or publicity pertaining to the software without</member>
4616 <member>specific, written prior permission. Title to copyright in this</member>
4617 <member>software and any associated documentation will at all times remain</member>
4618 <member>with copyright holders.</member>
4619 <member>____________________________________</member>
4620 <member>This formulation of W3C's notice and license became active on</member>
4621 <member>August 14 1998 so as to improve compatibility with GPL. This</member>
4622 <member>version ensures that W3C software licensing terms are no more</member>
4623 <member>restrictive than GPL and consequently W3C software may be</member>
4624 <member>distributed in GPL packages. See the older formulation for the</member>
4625 <member>policy prior to this date. Please see our Copyright FAQ for common </member>
4626 <member>questions about using materials from</member>
4627 <member>our site, including specific terms and conditions for packages like</member>
4628 <member>libwww, Amaya, and Jigsaw. </member>
4629 <member>Other questions about this notice can be</member>
4630 <member>directed to site-policy@w3.org.</member>
4631 <member>&#160;</member>
4632 <member>webmaster</member>
4633 <member>(last updated $Date: 2009/02/27 15:39:47 $)</member>
4634 </simplelist>
4635 </section>
4636 </section>
4637 <section id="enea-linux-eclipse-open-source-licenses-41">
4638 <title>License 41</title>
4639 <section>
4640 <title>Source File(s)</title>
4641 <itemizedlist spacing="compact">
4642 <listitem>
4643 <para>
4644 plugins/extracted_jars/org.apache.batik.util.source_1.7.0.v201011041433/about_files/LICENSE.sax.txt
4645 </para>
4646 </listitem>
4647 </itemizedlist>
4648 </section>
4649 <section>
4650 <title>License Text</title>
4651 <simplelist>
4652 <member>xml-commons/java/external/LICENSE.sax.txt $Id: LICENSE.sax.txt,v 1.2.2.2 2009/02/27 15:39:47 cdamus Exp $</member>
4653 <member>&#160;</member>
4654 <member>&#160;</member>
4655 <member>This license came from: http://www.megginson.com/SAX/copying.html</member>
4656 <member> However please note future versions of SAX may be covered </member>
4657 <member> under http://saxproject.org/?selected=pd</member>
4658 <member>&#160;</member>
4659 <member>&#160;</member>
4660 <member>This page is now out of date -- see the new SAX site at </member>
4661 <member>http://www.saxproject.org/ for more up-to-date</member>
4662 <member>releases and other information. Please change your bookmarks.</member>
4663 <member>&#160;</member>
4664 <member>&#160;</member>
4665 <member>SAX2 is Free!</member>
4666 <member>&#160;</member>
4667 <member>I hereby abandon any property rights to SAX 2.0 (the Simple API for</member>
4668 <member>XML), and release all of the SAX 2.0 source code, compiled code, and</member>
4669 <member>documentation contained in this distribution into the Public Domain.</member>
4670 <member>SAX comes with NO WARRANTY or guarantee of fitness for any</member>
4671 <member>purpose.</member>
4672 <member>&#160;</member>
4673 <member>David Megginson, david@megginson.com</member>
4674 <member>2000-05-05</member>
4675 </simplelist>
4676 </section>
4677 </section>
4678 <section id="enea-linux-eclipse-open-source-licenses-42">
4679 <title>License 42</title>
4680 <section>
4681 <title>Source File(s)</title>
4682 <itemizedlist spacing="compact">
4683 <listitem>
4684 <para>
4685 features/org.eclipse.ecf.filetransfer.httpclient4.ssl.source.feature_1.0.0.v20150512-1727/about.html
4686 </para>
4687 </listitem>
4688 <listitem>
4689 <para>
4690 features/org.eclipse.ecf.filetransfer.httpclient4.ssl.feature_1.0.0.v20150512-1727/about.html
4691 </para>
4692 </listitem>
4693 <listitem>
4694 <para>
4695 features/org.eclipse.ecf.filetransfer.httpclient4.feature_3.10.0.v20150512-1727/about.html
4696 </para>
4697 </listitem>
4698 <listitem>
4699 <para>
4700 features/org.eclipse.ecf.filetransfer.httpclient4.source.feature_3.10.0.v20150512-1727/about.html
4701 </para>
4702 </listitem>
4703 </itemizedlist>
4704 </section>
4705 <section>
4706 <title>License Text</title>
4707 <simplelist>
4708 <member>## About This Content</member>
4709 <member>&#160;</member>
4710 <member>May 4, 2012</member>
4711 <member>&#160;</member>
4712 <member>### License</member>
4713 <member>&#160;</member>
4714 <member>The Eclipse Foundation makes available all content in this plug-in</member>
4715 <member>("Content"). Unless otherwise indicated below, the Content is provided to you</member>
4716 <member>under the terms and conditions of the Eclipse Public License Version 1.0</member>
4717 <member>("EPL"). A copy of the EPL is available at [http://www.eclipse.org/legal/epl-v</member>
4718 <member>10.html](http://www.eclipse.org/org/documents/epl-v10.php). For purposes of</member>
4719 <member>the EPL, "Program" will mean the Content.</member>
4720 <member>&#160;</member>
4721 <member>If you did not receive this Content directly from the Eclipse Foundation, the</member>
4722 <member>Content is being redistributed by another party ("Redistributor") and</member>
4723 <member>different terms and conditions may apply to your use of any object code in the</member>
4724 <member>Content. Check the Redistributor's license that was provided with the Content.</member>
4725 <member>If no such license exists, contact the Redistributor. Unless otherwise</member>
4726 <member>indicated below, the terms and conditions of the EPL still apply to any source</member>
4727 <member>code in the Content and such source code may be obtained at</member>
4728 <member>[http://www.eclipse.org](http://www.eclipse.org/).</member>
4729 <member>&#160;</member>
4730 <member>### Third Party Content</member>
4731 <member>&#160;</member>
4732 <member>The Content includes items that have been sourced from third parties as set</member>
4733 <member>out below. If you did not receive this Content directly from the Eclipse</member>
4734 <member>Foundation, the following is provided for informational purposes only, and you</member>
4735 <member>should look to the Redistributor's license for terms and conditions of use.</member>
4736 <member>&#160;</member>
4737 <member>#### Apache HttpComponents v4.1.2</member>
4738 <member>&#160;</member>
4739 <member>This plugin is based on software developed by the Apache HttpComponents</member>
4740 <member>project at &lt;http://hc.apache.org/&gt;. A copy of this library is distributed</member>
4741 <member>within this plugin and therefore this plugin is subject to the Apache License</member>
4742 <member>version 2.0, a copy of the license is contained in the file</member>
4743 <member>[asl-v20.txt](asl-v20.txt) and at</member>
4744 <member>&lt;http://www.apache.org/licenses/LICENSE-2.0&gt;.</member>
4745 <member>&#160;</member>
4746 <member>### Apache Commons Codec v1.3</member>
4747 <member>&#160;</member>
4748 <member>This plugin is based on software developed by the Apache Commons Codec project</member>
4749 <member>at &lt;http://jakarta.apache.org/commons/codec/&gt;. A copy of this library is</member>
4750 <member>distributed within this plugin and therefore this plugin is subject to the</member>
4751 <member>Apache License version 2.0, a copy of the license is contained in the file</member>
4752 <member>[asl-v20.txt](asl-v20.txt) and at</member>
4753 <member>&lt;http://www.apache.org/licenses/LICENSE-2.0&gt;.</member>
4754 <member>&#160;</member>
4755 <member>### Apache Commons Logging v1.1</member>
4756 <member>&#160;</member>
4757 <member>This plugin is based on software developed by the Apache Commons Codec project</member>
4758 <member>at &lt;http://jakarta.apache.org/commons/logging/&gt;. A copy of this library is</member>
4759 <member>distributed within this plugin and therefore this plugin is subject to the</member>
4760 <member>Apache License version 2.0, a copy of the license is contained in the file</member>
4761 <member>[asl-v20.txt](asl-v20.txt) and at</member>
4762 <member>&lt;http://www.apache.org/licenses/LICENSE-2.0&gt;.</member>
4763 <member>&#160;</member>
4764 <member>Your use of the this plugin and the components listed above is subject to the</member>
4765 <member>terms and conditions of the Apache License v2.0 which is available at</member>
4766 <member>&lt;http://www.apache.org/licenses/LICENSE-2.0&gt;.</member>
4767 <member>&#160;</member>
4768 <member>More specifically:</member>
4769 <member>&#160;</member>
4770 <member>Apache License </member>
4771 <member>Version 2.0, January 2004 </member>
4772 <member>&lt;http://www.apache.org/licenses/&gt;</member>
4773 <member>&#160;</member>
4774 <member>TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION</member>
4775 <member>&#160;</member>
4776 <member>**1\. Definitions**.</member>
4777 <member>&#160;</member>
4778 <member>"License" shall mean the terms and conditions for use, reproduction, and</member>
4779 <member>distribution as defined by Sections 1 through 9 of this document.</member>
4780 <member>&#160;</member>
4781 <member>"Licensor" shall mean the copyright owner or entity authorized by the</member>
4782 <member>copyright owner that is granting the License.</member>
4783 <member>&#160;</member>
4784 <member>"Legal Entity" shall mean the union of the acting entity and all other</member>
4785 <member>entities that control, are controlled by, or are under common control with</member>
4786 <member>that entity. For the purposes of this definition, "control" means (i) the</member>
4787 <member>power, direct or indirect, to cause the direction or management of such</member>
4788 <member>entity, whether by contract or otherwise, or (ii) ownership of fifty percent</member>
4789 <member>(50%) or more of the outstanding shares, or (iii) beneficial ownership of such</member>
4790 <member>entity.</member>
4791 <member>&#160;</member>
4792 <member>"You" (or "Your") shall mean an individual or Legal Entity exercising</member>
4793 <member>permissions granted by this License.</member>
4794 <member>&#160;</member>
4795 <member>"Source" form shall mean the preferred form for making modifications,</member>
4796 <member>including but not limited to software source code, documentation source, and</member>
4797 <member>configuration files.</member>
4798 <member>&#160;</member>
4799 <member>"Object" form shall mean any form resulting from mechanical transformation or</member>
4800 <member>translation of a Source form, including but not limited to compiled object</member>
4801 <member>code, generated documentation, and conversions to other media types.</member>
4802 <member>&#160;</member>
4803 <member>"Work" shall mean the work of authorship, whether in Source or Object form,</member>
4804 <member>made available under the License, as indicated by a copyright notice that is</member>
4805 <member>included in or attached to the work (an example is provided in the Appendix</member>
4806 <member>below).</member>
4807 <member>&#160;</member>
4808 <member>"Derivative Works" shall mean any work, whether in Source or Object form, that</member>
4809 <member>is based on (or derived from) the Work and for which the editorial revisions,</member>
4810 <member>annotations, elaborations, or other modifications represent, as a whole, an</member>
4811 <member>original work of authorship. For the purposes of this License, Derivative</member>
4812 <member>Works shall not include works that remain separable from, or merely link (or</member>
4813 <member>bind by name) to the interfaces of, the Work and Derivative Works thereof.</member>
4814 <member>&#160;</member>
4815 <member>"Contribution" shall mean any work of authorship, including the original</member>
4816 <member>version of the Work and any modifications or additions to that Work or</member>
4817 <member>Derivative Works thereof, that is intentionally submitted to Licensor for</member>
4818 <member>inclusion in the Work by the copyright owner or by an individual or Legal</member>
4819 <member>Entity authorized to submit on behalf of the copyright owner. For the purposes</member>
4820 <member>of this definition, "submitted" means any form of electronic, verbal, or</member>
4821 <member>written communication sent to the Licensor or its representatives, including</member>
4822 <member>but not limited to communication on electronic mailing lists, source code</member>
4823 <member>control systems, and issue tracking systems that are managed by, or on behalf</member>
4824 <member>of, the Licensor for the purpose of discussing and improving the Work, but</member>
4825 <member>excluding communication that is conspicuously marked or otherwise designated</member>
4826 <member>in writing by the copyright owner as "Not a Contribution."</member>
4827 <member>&#160;</member>
4828 <member>"Contributor" shall mean Licensor and any individual or Legal Entity on behalf</member>
4829 <member>of whom a Contribution has been received by Licensor and subsequently</member>
4830 <member>incorporated within the Work.</member>
4831 <member>&#160;</member>
4832 <member>**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. </member>
4833 <member>&#160;</member>
4834 <member>**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. </member>
4835 <member>&#160;</member>
4836 <member>**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: </member>
4837 <member>&#160;</member>
4838 <member> 1. You must give any other recipients of the Work or Derivative Works a copy of this License; and </member>
4839 <member> </member>
4840 <member>&#160;</member>
4841 <member> 2. You must cause any modified files to carry prominent notices stating that You changed the files; and </member>
4842 <member> </member>
4843 <member>&#160;</member>
4844 <member> 3. 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 </member>
4845 <member> </member>
4846 <member>&#160;</member>
4847 <member> 4. 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.</member>
4848 <member>You may add Your own copyright statement to Your modifications and may provide</member>
4849 <member>additional or different license terms and conditions for use, reproduction, or</member>
4850 <member>distribution of Your modifications, or for any such Derivative Works as a</member>
4851 <member>whole, provided Your use, reproduction, and distribution of the Work otherwise</member>
4852 <member>complies with the conditions stated in this License.</member>
4853 <member>&#160;</member>
4854 <member>**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. </member>
4855 <member>&#160;</member>
4856 <member>**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. </member>
4857 <member>&#160;</member>
4858 <member>**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. </member>
4859 <member>&#160;</member>
4860 <member>**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. </member>
4861 <member>&#160;</member>
4862 <member>**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. </member>
4863 <member>&#160;</member>
4864 <member>END OF TERMS AND CONDITIONS</member>
4865 </simplelist>
4866 </section>
4867 </section>
4868 <section id="enea-linux-eclipse-open-source-licenses-43">
4869 <title>License 43</title>
4870 <section>
4871 <title>Source File(s)</title>
4872 <itemizedlist spacing="compact">
4873 <listitem>
4874 <para>
4875 plugins/extracted_jars/org.antlr.runtime_3.2.0.v201101311130/about_files/LICENSE.txt
4876 </para>
4877 </listitem>
4878 </itemizedlist>
4879 </section>
4880 <section>
4881 <title>License Text</title>
4882 <simplelist>
4883 <member>ANTLR 3 License</member>
4884 <member>&#160;</member>
4885 <member>[The BSD License]</member>
4886 <member>Copyright (c) 2003-2007, Terence Parr</member>
4887 <member>All rights reserved.</member>
4888 <member>&#160;</member>
4889 <member>Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:</member>
4890 <member>&#160;</member>
4891 <member> * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.</member>
4892 <member> * 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.</member>
4893 <member> * 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. </member>
4894 <member>&#160;</member>
4895 <member>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. </member>
4896 </simplelist>
4897 </section>
4898 </section>
4899 <section id="enea-linux-eclipse-open-source-licenses-44">
4900 <title>License 44</title>
4901 <section>
4902 <title>Source File(s)</title>
4903 <itemizedlist spacing="compact">
4904 <listitem>
4905 <para>
4906 plugins/extracted_jars/org.eclipse.team.cvs.core.source_3.3.700.v20150203-1452/about.html
4907 </para>
4908 </listitem>
4909 <listitem>
4910 <para>
4911 plugins/extracted_jars/org.eclipse.team.cvs.core_3.3.700.v20150203-1452/about.html
4912 </para>
4913 </listitem>
4914 </itemizedlist>
4915 </section>
4916 <section>
4917 <title>License Text</title>
4918 <simplelist>
4919 <member>## About This Content</member>
4920 <member>&#160;</member>
4921 <member>October 9, 2009</member>
4922 <member>&#160;</member>
4923 <member>### License</member>
4924 <member>&#160;</member>
4925 <member>The Eclipse Foundation makes available all content in this plug-in</member>
4926 <member>("Content"). Unless otherwise indicated below, the Content is provided to you</member>
4927 <member>under the terms and conditions of the Eclipse Public License Version 1.0</member>
4928 <member>("EPL"). A copy of the EPL is available at</member>
4929 <member>&lt;http://www.eclipse.org/legal/epl-v10.html&gt;. For purposes of the EPL,</member>
4930 <member>"Program" will mean the Content.</member>
4931 <member>&#160;</member>
4932 <member>If you did not receive this Content directly from the Eclipse Foundation, the</member>
4933 <member>Content is being redistributed by another party ("Redistributor") and</member>
4934 <member>different terms and conditions may apply to your use of any object code in the</member>
4935 <member>Content. Check the Redistributor's license that was provided with the Content.</member>
4936 <member>If no such license exists, contact the Redistributor. Unless otherwise</member>
4937 <member>indicated below, the terms and conditions of the EPL still apply to any source</member>
4938 <member>code in the Content and such source code may be obtained at</member>
4939 <member>&lt;http://www.eclipse.org&gt;.</member>
4940 <member>&#160;</member>
4941 <member>### Third Party Content</member>
4942 <member>&#160;</member>
4943 <member>The Content includes items that have been sourced from third parties as set</member>
4944 <member>out below. If you did not receive this Content directly from the Eclipse</member>
4945 <member>Foundation, the following is provided for informational purposes only, and you</member>
4946 <member>should look to the Redistributor's license for terms and conditions of use.</member>
4947 <member>&#160;</member>
4948 <member>#### Ant 1.7.1</member>
4949 <member>&#160;</member>
4950 <member>The plug-in is based on software developed by The Apache Software Foundation</member>
4951 <member>as part of the Ant project.</member>
4952 <member>&#160;</member>
4953 <member>The class org.eclipse.team.internal.ccvs.core.connection.PServerConnection</member>
4954 <member>("Ant-Derived Work") in the plug-in JAR is based on Ant code from the file</member>
4955 <member>CVSPass.java in the package org.apache.tools.ant.taskdefs.</member>
4956 <member>&#160;</member>
4957 <member>Your use of the Ant-Derived Work is subject to the terms and conditions of the</member>
4958 <member>Apache Software License 2.0. A copy of the license is contained in the file</member>
4959 <member>[asl-v20.txt](about_files/asl-v20.txt) and is also available at</member>
4960 <member>&lt;http://www.apache.org/licenses/LICENSE-2.0.html&gt;.</member>
4961 <member>&#160;</member>
4962 <member>The names "Ant" and "Apache Software Foundation" must not be used to endorse</member>
4963 <member>or promote products derived from this software without prior written</member>
4964 <member>permission. For written permission, please contact</member>
4965 <member>[apache@apache.org](mailto:apache@apache.org).</member>
4966 <member>&#160;</member>
4967 <member>The Apache attribution [NOTICE](about_files/NOTICE) file is included with the</member>
4968 <member>Content in accordance with 4d of the Apache License, Version 2.0.</member>
4969 </simplelist>
4970 </section>
4971 </section>
4972 <section id="enea-linux-eclipse-open-source-licenses-45">
4973 <title>License 45</title>
4974 <section>
4975 <title>Source File(s)</title>
4976 <itemizedlist spacing="compact">
4977 <listitem>
4978 <para>
4979 plugins/extracted_jars/org.sat4j.core_2.3.5.v201308161310/about.html
4980 </para>
4981 </listitem>
4982 </itemizedlist>
4983 </section>
4984 <section>
4985 <title>License Text</title>
4986 <simplelist>
4987 <member>## About This Content</member>
4988 <member>&#160;</member>
4989 <member>June, 2010</member>
4990 <member>&#160;</member>
4991 <member>### License</member>
4992 <member>&#160;</member>
4993 <member>The Eclipse Foundation makes available all content in this plug-in</member>
4994 <member>("Content"). Unless otherwise indicated below, the Content is provided to you</member>
4995 <member>under the terms and conditions of the Eclipse Public License Version 1.0</member>
4996 <member>("EPL"). A copy of the EPL is available at [http://www.eclipse.org/legal/epl-v</member>
4997 <member>10.html](http://www.eclipse.org/org/documents/epl-v10.php). For purposes of</member>
4998 <member>the EPL, "Program" will mean the Content.</member>
4999 <member>&#160;</member>
5000 <member>If you did not receive this Content directly from the Eclipse Foundation, the</member>
5001 <member>Content is being redistributed by another party ("Redistributor") and</member>
5002 <member>different terms and conditions may apply to your use of any object code in the</member>
5003 <member>Content. Check the Redistributor's license that was provided with the Content.</member>
5004 <member>If no such license exists, contact the Redistributor. Unless otherwise</member>
5005 <member>indicated below, the terms and conditions of the EPL still apply to any source</member>
5006 <member>code in the Content and such source code may be obtained at</member>
5007 <member>[http://www.eclipse.org](http://www.eclipse.org/).</member>
5008 <member>&#160;</member>
5009 <member>### Third Party Content</member>
5010 <member>&#160;</member>
5011 <member>The Content includes items that have been sourced from third parties as set</member>
5012 <member>out below. If you did not receive this Content directly from the Eclipse</member>
5013 <member>Foundation, the following is provided for informational purposes only, and you</member>
5014 <member>should look to the Redistributor's license for terms and conditions of use.</member>
5015 <member>&#160;</member>
5016 <member>#### SAT4J 2.3.5 SUBSET (Core)</member>
5017 <member>&#160;</member>
5018 <member>The SAT4J project makes available all content in this plug-in ("Content").</member>
5019 <member>Your use of the Content is governed by the terms and conditions of the Eclipse</member>
5020 <member>Public License Version 1.0 ("EPL"). A copy of the EPL is available at</member>
5021 <member>http://www.eclipse.org/legal/epl-v10.html. For purposes of the EPL, "Program"</member>
5022 <member>will mean the Content.</member>
5023 <member>&#160;</member>
5024 <member>Alternatively, the Content may be obtained from the SAT4J project website at</member>
5025 <member>&lt;http://www.sat4j.org/&gt; for use under the terms of either the GNU Lesser</member>
5026 <member>General Public License Version 2.1 or later (the "LGPL"), in which case the</member>
5027 <member>provisions of the LGPL are applicable instead of those above. If you wish to</member>
5028 <member>allow use of your version of the Content only under the terms of the LGPL, and</member>
5029 <member>not to allow others to use your version of this Content under the terms of the</member>
5030 <member>EPL, indicate your decision by deleting the provisions above and replace them</member>
5031 <member>with the notice and other provisions required by the LGPL. If you do not</member>
5032 <member>delete the provisions above, a recipient may use your version of this file</member>
5033 <member>under the terms of the EPL or the LGPL.</member>
5034 <member>&#160;</member>
5035 <member>The Eclipse Foundation elects to include this software in this distribution</member>
5036 <member>under the EPL license. The source code for this plug-in can be obtained from</member>
5037 <member>the SAT4J project website at &lt;http://www.sat4j.org/&gt;</member>
5038 <member>&#160;</member>
5039 <member>SAT4J includes content that was obtained under licenses that differ from the</member>
5040 <member>SAT4J licenses. </member>
5041 <member>The content in the following classes</member>
5042 <member>&#160;</member>
5043 <member> * org/sat4j/core/Vec.java</member>
5044 <member> * org/sat4j/core/VecInt.java</member>
5045 <member> * org/sat4j/minisat/core/Solver.java</member>
5046 <member>&#160;</member>
5047 <member>is based on code obtained from the Minisat 1.1.4 implementation, the source</member>
5048 <member>code for which can be found at [www.minisat.se](www.minisat.se ), under the</member>
5049 <member>following permissive license: </member>
5050 <member> </member>
5051 <member>MiniSat -- Copyright (c) 2003-2005, Niklas Een, Niklas Sorensson </member>
5052 <member> </member>
5053 <member>Permission is hereby granted, free of charge, to any person obtaining a </member>
5054 <member>copy of this software and associated documentation files (the </member>
5055 <member>"Software"), to deal in the Software without restriction, including </member>
5056 <member>without limitation the rights to use, copy, modify, merge, publish, </member>
5057 <member>distribute, sublicense, and/or sell copies of the Software, and to </member>
5058 <member>permit persons to whom the Software is furnished to do so, subject to </member>
5059 <member>the following conditions: </member>
5060 <member> </member>
5061 <member>The above copyright notice and this permission notice shall be included </member>
5062 <member>in all copies or substantial portions of the Software. </member>
5063 <member> </member>
5064 <member>THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS </member>
5065 <member>OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF </member>
5066 <member>MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND </member>
5067 <member>NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE </member>
5068 <member>LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION </member>
5069 <member>OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION </member>
5070 <member>WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.</member>
5071 </simplelist>
5072 </section>
5073 </section>
5074 <section id="enea-linux-eclipse-open-source-licenses-46">
5075 <title>License 46</title>
5076 <section>
5077 <title>Source File(s)</title>
5078 <itemizedlist spacing="compact">
5079 <listitem>
5080 <para>
5081 plugins/extracted_jars/org.w3c.css.sac.source_1.3.1.v200903091627/about_files/LICENSE.sax.txt
5082 </para>
5083 </listitem>
5084 </itemizedlist>
5085 </section>
5086 <section>
5087 <title>License Text</title>
5088 <simplelist>
5089 <member>xml-commons/java/external/LICENSE.sax.txt $Id: LICENSE.sax.txt,v 1.2.2.2 2009/02/27 15:48:33 cdamus Exp $</member>
5090 <member>&#160;</member>
5091 <member>&#160;</member>
5092 <member>This license came from: http://www.megginson.com/SAX/copying.html</member>
5093 <member> However please note future versions of SAX may be covered </member>
5094 <member> under http://saxproject.org/?selected=pd</member>
5095 <member>&#160;</member>
5096 <member>&#160;</member>
5097 <member>This page is now out of date -- see the new SAX site at </member>
5098 <member>http://www.saxproject.org/ for more up-to-date</member>
5099 <member>releases and other information. Please change your bookmarks.</member>
5100 <member>&#160;</member>
5101 <member>&#160;</member>
5102 <member>SAX2 is Free!</member>
5103 <member>&#160;</member>
5104 <member>I hereby abandon any property rights to SAX 2.0 (the Simple API for</member>
5105 <member>XML), and release all of the SAX 2.0 source code, compiled code, and</member>
5106 <member>documentation contained in this distribution into the Public Domain.</member>
5107 <member>SAX comes with NO WARRANTY or guarantee of fitness for any</member>
5108 <member>purpose.</member>
5109 <member>&#160;</member>
5110 <member>David Megginson, david@megginson.com</member>
5111 <member>2000-05-05</member>
5112 </simplelist>
5113 </section>
5114 </section>
5115 <section id="enea-linux-eclipse-open-source-licenses-47">
5116 <title>License 47</title>
5117 <section>
5118 <title>Source File(s)</title>
5119 <itemizedlist spacing="compact">
5120 <listitem>
5121 <para>
5122 plugins/extracted_jars/javax.xml_1.3.4.v201005080400/about_files/LICENSE.dom-software.txt
5123 </para>
5124 </listitem>
5125 </itemizedlist>
5126 </section>
5127 <section>
5128 <title>License Text</title>
5129 <simplelist>
5130 <member>xml-commons/java/external/LICENSE.dom-software.txt $Id: LICENSE.dom-software.txt,v 1.1.2.1 2007/12/03 05:48:37 david_williams Exp $</member>
5131 <member>&#160;</member>
5132 <member>&#160;</member>
5133 <member>This license came from: http://www.w3.org/Consortium/Legal/copyright-software-20021231</member>
5134 <member>&#160;</member>
5135 <member>&#160;</member>
5136 <member>W3C(R) SOFTWARE NOTICE AND LICENSE</member>
5137 <member>http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231</member>
5138 <member>&#160;</member>
5139 <member>This work (and included software, documentation such as READMEs, or other</member>
5140 <member>related items) is being provided by the copyright holders under the following</member>
5141 <member>license. By obtaining, using and/or copying this work, you (the licensee) agree</member>
5142 <member>that you have read, understood, and will comply with the following terms and</member>
5143 <member>conditions.</member>
5144 <member>&#160;</member>
5145 <member>Permission to copy, modify, and distribute this software and its documentation,</member>
5146 <member>with or without modification, for any purpose and without fee or royalty is</member>
5147 <member>hereby granted, provided that you include the following on ALL copies of the</member>
5148 <member>software and documentation or portions thereof, including modifications:</member>
5149 <member>&#160;</member>
5150 <member> 1. The full text of this NOTICE in a location viewable to users of the</member>
5151 <member> redistributed or derivative work. </member>
5152 <member> 2. Any pre-existing intellectual property disclaimers, notices, or terms</member>
5153 <member> and conditions. If none exist, the W3C Software Short Notice should be</member>
5154 <member> included (hypertext is preferred, text is permitted) within the body</member>
5155 <member> of any redistributed or derivative code.</member>
5156 <member> 3. Notice of any changes or modifications to the files, including the date</member>
5157 <member> changes were made. (We recommend you provide URIs to the location from</member>
5158 <member> which the code is derived.)</member>
5159 <member> </member>
5160 <member>THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS MAKE</member>
5161 <member>NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED</member>
5162 <member>TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT</member>
5163 <member>THE USE OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE ANY THIRD PARTY</member>
5164 <member>PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.</member>
5165 <member>&#160;</member>
5166 <member>COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR</member>
5167 <member>CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENTATION.</member>
5168 <member>&#160;</member>
5169 <member>The name and trademarks of copyright holders may NOT be used in advertising or</member>
5170 <member>publicity pertaining to the software without specific, written prior permission.</member>
5171 <member>Title to copyright in this software and any associated documentation will at</member>
5172 <member>all times remain with copyright holders.</member>
5173 <member>&#160;</member>
5174 <member>____________________________________</member>
5175 <member>&#160;</member>
5176 <member>This formulation of W3C's notice and license became active on December 31 2002.</member>
5177 <member>This version removes the copyright ownership notice such that this license can</member>
5178 <member>be used with materials other than those owned by the W3C, reflects that ERCIM</member>
5179 <member>is now a host of the W3C, includes references to this specific dated version of</member>
5180 <member>the license, and removes the ambiguous grant of "use". Otherwise, this version</member>
5181 <member>is the same as the previous version and is written so as to preserve the Free</member>
5182 <member>Software Foundation's assessment of GPL compatibility and OSI's certification</member>
5183 <member>under the Open Source Definition. Please see our Copyright FAQ for common</member>
5184 <member>questions about using materials from our site, including specific terms and</member>
5185 <member>conditions for packages like libwww, Amaya, and Jigsaw. Other questions about</member>
5186 <member>this notice can be directed to site-policy@w3.org.</member>
5187 <member> </member>
5188 <member>Joseph Reagle &lt;site-policy@w3.org&gt; </member>
5189 <member>&#160;</member>
5190 <member>Last revised by Reagle $Date: 2007/12/03 05:48:37 $</member>
5191 </simplelist>
5192 </section>
5193 </section>
5194 <section id="enea-linux-eclipse-open-source-licenses-48">
5195 <title>License 48</title>
5196 <section>
5197 <title>Source File(s)</title>
5198 <itemizedlist spacing="compact">
5199 <listitem>
5200 <para>
5201 plugins/extracted_jars/javax.inject_1.0.0.v20091030/about.html
5202 </para>
5203 </listitem>
5204 <listitem>
5205 <para>
5206 plugins/extracted_jars/javax.inject.source_1.0.0.v20091030/about.html
5207 </para>
5208 </listitem>
5209 </itemizedlist>
5210 </section>
5211 <section>
5212 <title>License Text</title>
5213 <simplelist>
5214 <member>## About This Content</member>
5215 <member>&#160;</member>
5216 <member>October, 2009</member>
5217 <member>&#160;</member>
5218 <member>### License</member>
5219 <member>&#160;</member>
5220 <member>The Eclipse Foundation makes available all content in this plug-in</member>
5221 <member>("Content"). Unless otherwise indicated below, the Content is provided to you</member>
5222 <member>under the terms and conditions of the Eclipse Public License Version 1.0</member>
5223 <member>("EPL"). A copy of the EPL is available at</member>
5224 <member>&lt;http://www.eclipse.org/legal/epl-v10.html&gt;. For purposes of the EPL,</member>
5225 <member>"Program" will mean the Content.</member>
5226 <member>&#160;</member>
5227 <member>If you did not receive this Content directly from the Eclipse Foundation, the</member>
5228 <member>Content is being redistributed by another party ("Redistributor") and</member>
5229 <member>different terms and conditions may apply to your use of any object code in the</member>
5230 <member>Content. Check the Redistributor's license that was provided with the Content.</member>
5231 <member>If no such license exists, contact the Redistributor. Unless otherwise</member>
5232 <member>indicated below, the terms and conditions of the EPL still apply to any source</member>
5233 <member>code in the Content and such source code may be obtained at</member>
5234 <member>[http://www.eclipse.org](http://www.eclipse.org/).</member>
5235 <member>&#160;</member>
5236 <member>### Third Party Content</member>
5237 <member>&#160;</member>
5238 <member>The Content includes items that have been sourced from third parties as set</member>
5239 <member>out below. If you did not receive this Content directly from the Eclipse</member>
5240 <member>Foundation, the following is provided for informational purposes only, and you</member>
5241 <member>should look to the Redistributor's license for terms and conditions of use.</member>
5242 <member>&#160;</member>
5243 <member>#### javax.inject 1.0</member>
5244 <member>&#160;</member>
5245 <member>This plug-in includes the package "javax.inject" from the atinject project,</member>
5246 <member>which is licensed under the Apache 2.0 license, available at</member>
5247 <member>&lt;http://www.apache.org/licenses/LICENSE-2.0&gt;. The license is copied below.</member>
5248 <member>&#160;</member>
5249 <member>The source for the bundle is available from the atinject website at</member>
5250 <member>&lt;http://code.google.com/p/atinject/&gt;.</member>
5251 <member>&#160;</member>
5252 <member> </member>
5253 <member> </member>
5254 <member> Apache License</member>
5255 <member> Version 2.0, January 2004</member>
5256 <member> http://www.apache.org/licenses/</member>
5257 <member> </member>
5258 <member> TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION</member>
5259 <member> </member>
5260 <member> 1. Definitions.</member>
5261 <member> </member>
5262 <member> "License" shall mean the terms and conditions for use, reproduction, and </member>
5263 <member> distribution as defined by Sections 1 through 9 of this document.</member>
5264 <member> </member>
5265 <member> "Licensor" shall mean the copyright owner or entity authorized by the copyright </member>
5266 <member> owner that is granting the License.</member>
5267 <member> </member>
5268 <member> "Legal Entity" shall mean the union of the acting entity and all other entities </member>
5269 <member> that control, are controlled by, or are under common control with that entity. </member>
5270 <member> For the purposes of this definition, "control" means (i) the power, direct or </member>
5271 <member> indirect, to cause the direction or management of such entity, whether by </member>
5272 <member> contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the </member>
5273 <member> outstanding shares, or (iii) beneficial ownership of such entity.</member>
5274 <member> </member>
5275 <member> "You" (or "Your") shall mean an individual or Legal Entity exercising </member>
5276 <member> permissions granted by this License.</member>
5277 <member> </member>
5278 <member> "Source" form shall mean the preferred form for making modifications, including </member>
5279 <member> but not limited to software source code, documentation source, and configuration </member>
5280 <member> files.</member>
5281 <member> </member>
5282 <member> "Object" form shall mean any form resulting from mechanical transformation or </member>
5283 <member> translation of a Source form, including but not limited to compiled object code, </member>
5284 <member> generated documentation, and conversions to other media types.</member>
5285 <member> </member>
5286 <member> "Work" shall mean the work of authorship, whether in Source or Object form, made </member>
5287 <member> available under the License, as indicated by a copyright notice that is included </member>
5288 <member> in or attached to the work (an example is provided in the Appendix below).</member>
5289 <member> </member>
5290 <member> "Derivative Works" shall mean any work, whether in Source or Object form, that </member>
5291 <member> is based on (or derived from) the Work and for which the editorial revisions, </member>
5292 <member> annotations, elaborations, or other modifications represent, as a whole, an </member>
5293 <member> original work of authorship. For the purposes of this License, Derivative Works </member>
5294 <member> shall not include works that remain separable from, or merely link (or bind by </member>
5295 <member> name) to the interfaces of, the Work and Derivative Works thereof.</member>
5296 <member> </member>
5297 <member> "Contribution" shall mean any work of authorship, including the original version </member>
5298 <member> of the Work and any modifications or additions to that Work or Derivative Works </member>
5299 <member> thereof, that is intentionally submitted to Licensor for inclusion in the Work </member>
5300 <member> by the copyright owner or by an individual or Legal Entity authorized to submit </member>
5301 <member> on behalf of the copyright owner. For the purposes of this definition, </member>
5302 <member> "submitted" means any form of electronic, verbal, or written communication sent </member>
5303 <member> to the Licensor or its representatives, including but not limited to </member>
5304 <member> communication on electronic mailing lists, source code control systems, and </member>
5305 <member> issue tracking systems that are managed by, or on behalf of, the Licensor for </member>
5306 <member> the purpose of discussing and improving the Work, but excluding communication </member>
5307 <member> that is conspicuously marked or otherwise designated in writing by the copyright </member>
5308 <member> owner as "Not a Contribution."</member>
5309 <member> </member>
5310 <member> "Contributor" shall mean Licensor and any individual or Legal Entity on behalf </member>
5311 <member> of whom a Contribution has been received by Licensor and subsequently </member>
5312 <member> incorporated within the Work.</member>
5313 <member> </member>
5314 <member> 2. Grant of Copyright License. Subject to the terms and conditions of this </member>
5315 <member> License, each Contributor hereby grants to You a perpetual, worldwide, </member>
5316 <member> non-exclusive, no-charge, royalty-free, irrevocable copyright license to </member>
5317 <member> reproduce, prepare Derivative Works of, publicly display, publicly perform, </member>
5318 <member> sublicense, and distribute the Work and such Derivative Works in Source or </member>
5319 <member> Object form.</member>
5320 <member> </member>
5321 <member> 3. Grant of Patent License. Subject to the terms and conditions of this License, </member>
5322 <member> each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, </member>
5323 <member> no-charge, royalty-free, irrevocable (except as stated in this section) patent </member>
5324 <member> license to make, have made, use, offer to sell, sell, import, and otherwise </member>
5325 <member> transfer the Work, where such license applies only to those patent claims </member>
5326 <member> licensable by such Contributor that are necessarily infringed by their </member>
5327 <member> Contribution(s) alone or by combination of their Contribution(s) with the Work </member>
5328 <member> to which such Contribution(s) was submitted. If You institute patent litigation </member>
5329 <member> against any entity (including a cross-claim or counterclaim in a lawsuit) </member>
5330 <member> alleging that the Work or a Contribution incorporated within the Work </member>
5331 <member> constitutes direct or contributory patent infringement, then any patent licenses </member>
5332 <member> granted to You under this License for that Work shall terminate as of the date </member>
5333 <member> such litigation is filed.</member>
5334 <member> </member>
5335 <member> 4. Redistribution. You may reproduce and distribute copies of the Work or </member>
5336 <member> Derivative Works thereof in any medium, with or without modifications, and in </member>
5337 <member> Source or Object form, provided that You meet the following conditions:</member>
5338 <member> </member>
5339 <member> 1. You must give any other recipients of the Work or Derivative Works a copy </member>
5340 <member> of this License; and</member>
5341 <member> </member>
5342 <member> 2. You must cause any modified files to carry prominent notices stating that </member>
5343 <member> You changed the files; and</member>
5344 <member> </member>
5345 <member> 3. You must retain, in the Source form of any Derivative Works that You </member>
5346 <member> distribute, all copyright, patent, trademark, and attribution notices from </member>
5347 <member> the Source form of the Work, excluding those notices that do not pertain to </member>
5348 <member> any part of the Derivative Works; and</member>
5349 <member> </member>
5350 <member> 4. If the Work includes a "NOTICE" text file as part of its distribution, </member>
5351 <member> then any Derivative Works that You distribute must include a readable copy of </member>
5352 <member> the attribution notices contained within such NOTICE file, excluding those </member>
5353 <member> notices that do not pertain to any part of the Derivative Works, in at least </member>
5354 <member> one of the following places: within a NOTICE text file distributed as part of </member>
5355 <member> the Derivative Works; within the Source form or documentation, if provided </member>
5356 <member> along with the Derivative Works; or, within a display generated by the </member>
5357 <member> Derivative Works, if and wherever such third-party notices normally appear. </member>
5358 <member> The contents of the NOTICE file are for informational purposes only and do </member>
5359 <member> not modify the License. You may add Your own attribution notices within </member>
5360 <member> Derivative Works that You distribute, alongside or as an addendum to the </member>
5361 <member> NOTICE text from the Work, provided that such additional attribution notices </member>
5362 <member> cannot be construed as modifying the License.</member>
5363 <member> </member>
5364 <member> You may add Your own copyright statement to Your modifications and may provide </member>
5365 <member> additional or different license terms and conditions for use, reproduction, or </member>
5366 <member> distribution of Your modifications, or for any such Derivative Works as a whole, </member>
5367 <member> provided Your use, reproduction, and distribution of the Work otherwise complies </member>
5368 <member> with the conditions stated in this License.</member>
5369 <member> </member>
5370 <member> 5. Submission of Contributions. Unless You explicitly state otherwise, any </member>
5371 <member> Contribution intentionally submitted for inclusion in the Work by You to the </member>
5372 <member> Licensor shall be under the terms and conditions of this License, without any </member>
5373 <member> additional terms or conditions. Notwithstanding the above, nothing herein shall </member>
5374 <member> supersede or modify the terms of any separate license agreement you may have </member>
5375 <member> executed with Licensor regarding such Contributions.</member>
5376 <member> </member>
5377 <member> 6. Trademarks. This License does not grant permission to use the trade names, </member>
5378 <member> trademarks, service marks, or product names of the Licensor, except as required </member>
5379 <member> for reasonable and customary use in describing the origin of the Work and </member>
5380 <member> reproducing the content of the NOTICE file.</member>
5381 <member> </member>
5382 <member> 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in </member>
5383 <member> writing, Licensor provides the Work (and each Contributor provides its </member>
5384 <member> Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY </member>
5385 <member> KIND, either express or implied, including, without limitation, any warranties </member>
5386 <member> or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A </member>
5387 <member> PARTICULAR PURPOSE. You are solely responsible for determining the </member>
5388 <member> appropriateness of using or redistributing the Work and assume any risks </member>
5389 <member> associated with Your exercise of permissions under this License.</member>
5390 <member> </member>
5391 <member> 8. Limitation of Liability. In no event and under no legal theory, whether in </member>
5392 <member> tort (including negligence), contract, or otherwise, unless required by </member>
5393 <member> applicable law (such as deliberate and grossly negligent acts) or agreed to in </member>
5394 <member> writing, shall any Contributor be liable to You for damages, including any </member>
5395 <member> direct, indirect, special, incidental, or consequential damages of any character </member>
5396 <member> arising as a result of this License or out of the use or inability to use the </member>
5397 <member> Work (including but not limited to damages for loss of goodwill, work stoppage, </member>
5398 <member> computer failure or malfunction, or any and all other commercial damages or </member>
5399 <member> losses), even if such Contributor has been advised of the possibility of such </member>
5400 <member> damages.</member>
5401 <member> </member>
5402 <member> 9. Accepting Warranty or Additional Liability. While redistributing the Work or </member>
5403 <member> Derivative Works thereof, You may choose to offer, and charge a fee for, </member>
5404 <member> acceptance of support, warranty, indemnity, or other liability obligations </member>
5405 <member> and/or rights consistent with this License. However, in accepting such </member>
5406 <member> obligations, You may act only on Your own behalf and on Your sole </member>
5407 <member> responsibility, not on behalf of any other Contributor, and only if You agree </member>
5408 <member> to indemnify, defend, and hold each Contributor harmless for any liability </member>
5409 <member> incurred by, or claims asserted against, such Contributor by reason of your </member>
5410 <member> accepting any such warranty or additional liability. </member>
5411 <member> </member>
5412 </simplelist>
5413 </section>
5414 </section>
5415 <section id="enea-linux-eclipse-open-source-licenses-49">
5416 <title>License 49</title>
5417 <section>
5418 <title>Source File(s)</title>
5419 <itemizedlist spacing="compact">
5420 <listitem>
5421 <para>
5422 plugins/extracted_jars/org.eclipse.jdt.apt.core.source_3.4.0.v20150518-1201/about.html
5423 </para>
5424 </listitem>
5425 <listitem>
5426 <para>
5427 plugins/extracted_jars/org.eclipse.jdt.apt.core_3.4.0.v20150518-1201/about.html
5428 </para>
5429 </listitem>
5430 </itemizedlist>
5431 </section>
5432 <section>
5433 <title>License Text</title>
5434 <simplelist>
5435 <member>## About This Content</member>
5436 <member>&#160;</member>
5437 <member>May 31, 2006</member>
5438 <member>&#160;</member>
5439 <member>### License</member>
5440 <member>&#160;</member>
5441 <member>The Eclipse Foundation makes available all content in this plug-in</member>
5442 <member>("Content"). Unless otherwise indicated below, the Content is provided to you</member>
5443 <member>under the terms and conditions of the Eclipse Public License Version 1.0</member>
5444 <member>("EPL"). A copy of the EPL is available at</member>
5445 <member>&lt;http://www.eclipse.org/legal/epl-v10.html&gt;. For purposes of the EPL,</member>
5446 <member>"Program" will mean the Content.</member>
5447 <member>&#160;</member>
5448 <member>If you did not receive this Content directly from the Eclipse Foundation, the</member>
5449 <member>Content is being redistributed by another party ("Redistributor") and</member>
5450 <member>different terms and conditions may apply to your use of any object code in the</member>
5451 <member>Content. Check the Redistributor's license that was provided with the Content.</member>
5452 <member>If no such license exists, contact the Redistributor. Unless otherwise</member>
5453 <member>indicated below, the terms and conditions of the EPL still apply to any source</member>
5454 <member>code in the Content and such source code may be obtained at</member>
5455 <member>&lt;http://www.eclipse.org&gt;.</member>
5456 <member>&#160;</member>
5457 <member>### Third Party Content</member>
5458 <member>&#160;</member>
5459 <member>The Content includes items that have been sourced from third parties as set</member>
5460 <member>out below. If you did not receive this Content directly from the Eclipse</member>
5461 <member>Foundation, the following is provided for informational purposes only, and you</member>
5462 <member>should look to the Redistributor's license for terms and conditions of use.</member>
5463 <member>&#160;</member>
5464 <member>#### Java Mirror API</member>
5465 <member>&#160;</member>
5466 <member>The plug-in includes classes in the com.sun.mirror package ("Java Mirror</member>
5467 <member>API"). Your use of the Java Mirror API is governed by the terms and conditions</member>
5468 <member>of the following license:</member>
5469 <member>&#160;</member>
5470 <member>&gt;</member>
5471 <member>&#160;</member>
5472 <member>&gt; Copyright (c) 2004, Sun Microsystems, Inc. All rights reserved.</member>
5473 <member>&#160;</member>
5474 <member>&gt; </member>
5475 <member>&gt; Redistribution and use in source and binary forms, with or without</member>
5476 <member>&#160;</member>
5477 <member>&gt; modification, are permitted provided that the following conditions are</member>
5478 <member>&#160;</member>
5479 <member>&gt; met:</member>
5480 <member>&#160;</member>
5481 <member>&gt; </member>
5482 <member>&gt; * Redistributions of source code must retain the above copyright</member>
5483 <member>&#160;</member>
5484 <member>&gt; notice, this list of conditions and the following disclaimer.</member>
5485 <member>&#160;</member>
5486 <member>&gt; * Redistributions in binary form must reproduce the above copyright</member>
5487 <member>&#160;</member>
5488 <member>&gt; notice, this list of conditions and the following disclaimer in</member>
5489 <member>&#160;</member>
5490 <member>&gt; the documentation and/or other materials provided with the</member>
5491 <member>&#160;</member>
5492 <member>&gt; distribution.</member>
5493 <member>&#160;</member>
5494 <member>&gt; * Neither the name of the Sun Microsystems, Inc. nor the names of</member>
5495 <member>&#160;</member>
5496 <member>&gt; its contributors may be used to endorse or promote products</member>
5497 <member>&#160;</member>
5498 <member>&gt; derived from this software without specific prior written</member>
5499 <member>&#160;</member>
5500 <member>&gt; permission.</member>
5501 <member>&#160;</member>
5502 <member>&gt; </member>
5503 <member>&gt; THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS</member>
5504 <member>&#160;</member>
5505 <member>&gt; "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT</member>
5506 <member>&#160;</member>
5507 <member>&gt; LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR</member>
5508 <member>&#160;</member>
5509 <member>&gt; A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT</member>
5510 <member>&#160;</member>
5511 <member>&gt; OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,</member>
5512 <member>&#160;</member>
5513 <member>&gt; SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT</member>
5514 <member>&#160;</member>
5515 <member>&gt; LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,</member>
5516 <member>&#160;</member>
5517 <member>&gt; DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY</member>
5518 <member>&#160;</member>
5519 <member>&gt; THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT</member>
5520 <member>&#160;</member>
5521 <member>&gt; (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE</member>
5522 <member>&#160;</member>
5523 <member>&gt; OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</member>
5524 <member>&#160;</member>
5525 <member>&gt; </member>
5526 </simplelist>
5527 </section>
5528 </section>
5529 <section id="enea-linux-eclipse-open-source-licenses-50">
5530 <title>License 50</title>
5531 <section>
5532 <title>Source File(s)</title>
5533 <itemizedlist spacing="compact">
5534 <listitem>
5535 <para>
5536 plugins/extracted_jars/org.apache.batik.css_1.7.0.v201011041433/about_files/LICENSE.sax.txt
5537 </para>
5538 </listitem>
5539 </itemizedlist>
5540 </section>
5541 <section>
5542 <title>License Text</title>
5543 <simplelist>
5544 <member>xml-commons/java/external/LICENSE.sax.txt $Id: LICENSE.sax.txt,v 1.1.4.2 2009/02/20 18:01:10 cdamus Exp $</member>
5545 <member>&#160;</member>
5546 <member>&#160;</member>
5547 <member>This license came from: http://www.megginson.com/SAX/copying.html</member>
5548 <member> However please note future versions of SAX may be covered </member>
5549 <member> under http://saxproject.org/?selected=pd</member>
5550 <member>&#160;</member>
5551 <member>&#160;</member>
5552 <member>This page is now out of date -- see the new SAX site at </member>
5553 <member>http://www.saxproject.org/ for more up-to-date</member>
5554 <member>releases and other information. Please change your bookmarks.</member>
5555 <member>&#160;</member>
5556 <member>&#160;</member>
5557 <member>SAX2 is Free!</member>
5558 <member>&#160;</member>
5559 <member>I hereby abandon any property rights to SAX 2.0 (the Simple API for</member>
5560 <member>XML), and release all of the SAX 2.0 source code, compiled code, and</member>
5561 <member>documentation contained in this distribution into the Public Domain.</member>
5562 <member>SAX comes with NO WARRANTY or guarantee of fitness for any</member>
5563 <member>purpose.</member>
5564 <member>&#160;</member>
5565 <member>David Megginson, david@megginson.com</member>
5566 <member>2000-05-05</member>
5567 </simplelist>
5568 </section>
5569 </section>
5570 <section id="enea-linux-eclipse-open-source-licenses-51">
5571 <title>License 51</title>
5572 <section>
5573 <title>Source File(s)</title>
5574 <itemizedlist spacing="compact">
5575 <listitem>
5576 <para>
5577 plugins/extracted_jars/org.w3c.dom.svg_1.1.0.v201011041433/about_files/LICENSE-W3C-20021231.html
5578 </para>
5579 </listitem>
5580 </itemizedlist>
5581 </section>
5582 <section>
5583 <title>License Text</title>
5584 <simplelist>
5585 <member># W3C(R) SOFTWARE NOTICE AND LICENSE</member>
5586 <member>&#160;</member>
5587 <member>### &lt;http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231&gt;</member>
5588 <member>&#160;</member>
5589 <member>This work (and included software, documentation such as READMEs, or other</member>
5590 <member>related items) is being provided by the copyright holders under the following</member>
5591 <member>license. By obtaining, using and/or copying this work, you (the licensee)</member>
5592 <member>agree that you have read, understood, and will comply with the following terms</member>
5593 <member>and conditions.</member>
5594 <member>&#160;</member>
5595 <member>Permission to copy, modify, and distribute this software and its</member>
5596 <member>documentation, with or without modification, for any purpose and without fee</member>
5597 <member>or royalty is hereby granted, provided that you include the following on ALL</member>
5598 <member>copies of the software and documentation or portions thereof, including</member>
5599 <member>modifications:</member>
5600 <member>&#160;</member>
5601 <member> 1. The full text of this NOTICE in a location viewable to users of the redistributed or derivative work.</member>
5602 <member> 2. Any pre-existing intellectual property disclaimers, notices, or terms and conditions. If none exist, the [W3C Software Short Notice](copyright-software-short-notice-20021231.html) should be included (hypertext is preferred, text is permitted) within the body of any redistributed or derivative code.</member>
5603 <member> 3. Notice of any changes or modifications to the files, including the date changes were made. (We recommend you provide URIs to the location from which the code is derived.)</member>
5604 <member>&#160;</member>
5605 <member>THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS</member>
5606 <member>MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT</member>
5607 <member>LIMITED TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR</member>
5608 <member>PURPOSE OR THAT THE USE OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE ANY</member>
5609 <member>THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.</member>
5610 <member>&#160;</member>
5611 <member>COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR</member>
5612 <member>CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENTATION.</member>
5613 <member>&#160;</member>
5614 <member>The name and trademarks of copyright holders may NOT be used in advertising or</member>
5615 <member>publicity pertaining to the software without specific, written prior</member>
5616 <member>permission. Title to copyright in this software and any associated</member>
5617 <member>documentation will at all times remain with copyright holders.</member>
5618 <member>&#160;</member>
5619 <member>____________________________________</member>
5620 <member>&#160;</member>
5621 <member>This formulation of W3C's notice and license became active on December 31</member>
5622 <member>2002\. This version removes the copyright ownership notice such that this</member>
5623 <member>license can be used with materials other than those owned by the W3C, reflects</member>
5624 <member>that ERCIM is now a host of the W3C, includes references to this specific</member>
5625 <member>dated version of the license, and removes the ambiguous grant of "use".</member>
5626 <member>Otherwise, this version is the same as the [previous</member>
5627 <member>version](http://www.w3.org/Consortium/Legal/copyright-software-19980720) and</member>
5628 <member>is written so as to preserve the [Free Software Foundation's assessment of GPL</member>
5629 <member>compatibility](http://www.gnu.org/philosophy/license-</member>
5630 <member>list.html#GPLCompatibleLicenses) and [OSI's</member>
5631 <member>certification](http://www.opensource.org/licenses/W3C.php) under the [Open</member>
5632 <member>Source Definition](http://www.opensource.org/docs/definition.php). Please see</member>
5633 <member>our [Copyright FAQ](http://www.w3.org/Consortium/Legal/IPR-FAQ) for common</member>
5634 <member>questions about using materials from our site, including specific terms and</member>
5635 <member>conditions for packages like libwww, Amaya, and Jigsaw. Other questions about</member>
5636 <member>this notice can be directed to [site-policy@w3.org](mailto:site-</member>
5637 <member>policy@w3.org). </member>
5638 <member>&#160;</member>
5639 <member>&#160;</member>
5640 <member>Joseph Reagle &lt;[site-policy@w3.org&gt;](mailto:site-policy@w3.org)</member>
5641 <member>&#160;</member>
5642 <member>Last revised $Id: LICENSE-W3C-20021231.html,v 1.1.2.1 2007/03/16 14:59:43</member>
5643 <member>cdamus Exp $</member>
5644 </simplelist>
5645 </section>
5646 </section>
5647 <section id="enea-linux-eclipse-open-source-licenses-52">
5648 <title>License 52</title>
5649 <section>
5650 <title>Source File(s)</title>
5651 <itemizedlist spacing="compact">
5652 <listitem>
5653 <para>
5654 plugins/extracted_jars/org.apache.jasper.glassfish.source_2.2.2.v201501141630/about.html
5655 </para>
5656 </listitem>
5657 </itemizedlist>
5658 </section>
5659 <section>
5660 <title>License Text</title>
5661 <simplelist>
5662 <member>## About This Content</member>
5663 <member>&#160;</member>
5664 <member>July 14, 2011</member>
5665 <member>&#160;</member>
5666 <member>### License</member>
5667 <member>&#160;</member>
5668 <member>The Eclipse Foundation makes available all content in this plug-in</member>
5669 <member>("Content"). Unless otherwise indicated below, the Content is provided to you</member>
5670 <member>under the terms and conditions of the Eclipse Public License Version 1.0</member>
5671 <member>("EPL"). A copy of the EPL is available at</member>
5672 <member>&lt;http://www.eclipse.org/legal/epl-v10.html&gt;. For purposes of the EPL,</member>
5673 <member>"Program" will mean the Content.</member>
5674 <member>&#160;</member>
5675 <member>If you did not receive this Content directly from the Eclipse Foundation, the</member>
5676 <member>Content is being redistributed by another party ("Redistributor") and</member>
5677 <member>different terms and conditions may apply to your use of any object code in the</member>
5678 <member>Content. Check the Redistributor's license that was provided with the Content.</member>
5679 <member>If no such license exists, contact the Redistributor. Unless otherwise</member>
5680 <member>indicated below, the terms and conditions of the EPL still apply to any source</member>
5681 <member>code in the Content and such source code may be obtained at</member>
5682 <member>[http://www.eclipse.org](/).</member>
5683 <member>&#160;</member>
5684 <member>### Third Party Content</member>
5685 <member>&#160;</member>
5686 <member>The Content includes items that have been sourced from third parties as set</member>
5687 <member>out below. If you did not receive this Content directly from the Eclipse</member>
5688 <member>Foundation, the following is provided for informational purposes only, and you</member>
5689 <member>should look to the Redistributor's license for terms and conditions of use.</member>
5690 <member>&#160;</member>
5691 <member>#### Java Server Pages Engine.</member>
5692 <member>&#160;</member>
5693 <member>The plug-in includes software developed by Sun as part of the Glassfish</member>
5694 <member>project.</member>
5695 <member>&#160;</member>
5696 <member>Your use of the library code is subject to the terms and conditions of the</member>
5697 <member>Apache Software License 2.0 and the Common Development and Distribution</member>
5698 <member>License("CDDL") license. A copy of the Apache Software License 2.0 is</member>
5699 <member>contained in the file [LICENSE_ASL20.txt](about_files/LICENSE_ASL20.txt) and</member>
5700 <member>is also available at &lt;http://www.apache.org/licenses/LICENSE-2.0.html&gt;. A copy</member>
5701 <member>of the Common Development and Distribution License is contained in the file</member>
5702 <member>[LICENSE_CDDL.txt](about_files/LICENSE_CDDL.txt) and is also available at</member>
5703 <member>&lt;http://www.sun.com/cddl/cddl.html&gt;.</member>
5704 <member>&#160;</member>
5705 <member>Original binaries and source are available from the [Glassfish</member>
5706 <member>website](http://glassfish.dev.java.net/).</member>
5707 </simplelist>
5708 </section>
5709 </section>
5710 <section id="enea-linux-eclipse-open-source-licenses-53">
5711 <title>License 53</title>
5712 <section>
5713 <title>Source File(s)</title>
5714 <itemizedlist spacing="compact">
5715 <listitem>
5716 <para>
5717 plugins/extracted_jars/org.eclipse.ecf.provider.filetransfer.httpclient4.source_1.0.1043.v20150512-1727/about.html
5718 </para>
5719 </listitem>
5720 <listitem>
5721 <para>
5722 plugins/extracted_jars/org.eclipse.ecf.provider.filetransfer.httpclient4_1.0.1043.v20150512-1727/about.html
5723 </para>
5724 </listitem>
5725 <listitem>
5726 <para>
5727 plugins/extracted_jars/org.eclipse.ecf.provider.filetransfer.httpclient4.ssl.source_1.0.0.v20150512-1727/about.html
5728 </para>
5729 </listitem>
5730 <listitem>
5731 <para>
5732 plugins/extracted_jars/org.eclipse.ecf.provider.filetransfer.httpclient4.ssl_1.0.0.v20150512-1727/about.html
5733 </para>
5734 </listitem>
5735 </itemizedlist>
5736 </section>
5737 <section>
5738 <title>License Text</title>
5739 <simplelist>
5740 <member>### About This Content</member>
5741 <member>&#160;</member>
5742 <member>May 4, 2012</member>
5743 <member>&#160;</member>
5744 <member>### License</member>
5745 <member>&#160;</member>
5746 <member>The Eclipse Foundation makes available all content in this plug-in</member>
5747 <member>("Content"). Unless otherwise indicated below, the Content is provided to you</member>
5748 <member>under the terms and conditions of the Eclipse Public License Version 1.0</member>
5749 <member>("EPL"). A copy of the EPL is available at [http://www.eclipse.org/legal/epl-v</member>
5750 <member>10.html](http://www.eclipse.org/org/documents/epl-v10.php). For purposes of</member>
5751 <member>the EPL, "Program" will mean the Content.</member>
5752 <member>&#160;</member>
5753 <member>If you did not receive this Content directly from the Eclipse Foundation, the</member>
5754 <member>Content is being redistributed by another party ("Redistributor") and</member>
5755 <member>different terms and conditions may apply to your use of any object code in the</member>
5756 <member>Content. Check the Redistributor's license that was provided with the Content.</member>
5757 <member>If no such license exists, contact the Redistributor. Unless otherwise</member>
5758 <member>indicated below, the terms and conditions of the EPL still apply to any source</member>
5759 <member>code in the Content and such source code may be obtained at</member>
5760 <member>[http://www.eclipse.org](http://www.eclipse.org/).</member>
5761 <member>&#160;</member>
5762 <member>### Third Party Content</member>
5763 <member>&#160;</member>
5764 <member>The Content includes items that have been sourced from third parties as set</member>
5765 <member>out below. If you did not receive this Content directly from the Eclipse</member>
5766 <member>Foundation, the following is provided for informational purposes only, and you</member>
5767 <member>should look to the Redistributor's license for terms and conditions of use.</member>
5768 <member>&#160;</member>
5769 <member>#### Apache HttpComponents v4.1.2</member>
5770 <member>&#160;</member>
5771 <member>This plugin is based on software developed by the Apache HttpComponents</member>
5772 <member>project at &lt;http://hc.apache.org/&gt;. A copy of this library is distributed</member>
5773 <member>within this plugin and therefore this plugin is subject to the Apache License</member>
5774 <member>version 2.0, a copy of the license is contained in the file</member>
5775 <member>[asl-v20.txt](asl-v20.txt) and at</member>
5776 <member>&lt;http://www.apache.org/licenses/LICENSE-2.0&gt;.</member>
5777 <member>&#160;</member>
5778 <member>#### Apache Commons Logging v1.1.1</member>
5779 <member>&#160;</member>
5780 <member>This plugin is based on software developed by the Apache Commons Codec project</member>
5781 <member>at &lt;http://jakarta.apache.org/commons/logging/&gt;. A copy of this library is</member>
5782 <member>distributed within this plugin and therefore this plugin is subject to the</member>
5783 <member>Apache License version 2.0, a copy of the license is contained in the file</member>
5784 <member>[asl-v20.txt](asl-v20.txt) and at</member>
5785 <member>&lt;http://www.apache.org/licenses/LICENSE-2.0&gt;.</member>
5786 <member>&#160;</member>
5787 <member>Your use of the this plugin and the components listed above is subject to the</member>
5788 <member>terms and conditions of the Apache License v2.0 which is available at</member>
5789 <member>&lt;http://www.apache.org/licenses/LICENSE-2.0&gt;.</member>
5790 <member>&#160;</member>
5791 <member>More specifically:</member>
5792 <member>&#160;</member>
5793 <member> </member>
5794 <member> </member>
5795 <member> </member>
5796 <member> Apache License</member>
5797 <member> Version 2.0, January 2004</member>
5798 <member> http://www.apache.org/licenses/</member>
5799 <member> </member>
5800 <member> TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION</member>
5801 <member> </member>
5802 <member> 1. Definitions.</member>
5803 <member> </member>
5804 <member> "License" shall mean the terms and conditions for use, reproduction,</member>
5805 <member> and distribution as defined by Sections 1 through 9 of this document.</member>
5806 <member> </member>
5807 <member> "Licensor" shall mean the copyright owner or entity authorized by</member>
5808 <member> the copyright owner that is granting the License.</member>
5809 <member> </member>
5810 <member> "Legal Entity" shall mean the union of the acting entity and all</member>
5811 <member> other entities that control, are controlled by, or are under common</member>
5812 <member> control with that entity. For the purposes of this definition,</member>
5813 <member> "control" means (i) the power, direct or indirect, to cause the</member>
5814 <member> direction or management of such entity, whether by contract or</member>
5815 <member> otherwise, or (ii) ownership of fifty percent (50%) or more of the</member>
5816 <member> outstanding shares, or (iii) beneficial ownership of such entity.</member>
5817 <member> </member>
5818 <member> "You" (or "Your") shall mean an individual or Legal Entity</member>
5819 <member> exercising permissions granted by this License.</member>
5820 <member> </member>
5821 <member> "Source" form shall mean the preferred form for making modifications,</member>
5822 <member> including but not limited to software source code, documentation</member>
5823 <member> source, and configuration files.</member>
5824 <member> </member>
5825 <member> "Object" form shall mean any form resulting from mechanical</member>
5826 <member> transformation or translation of a Source form, including but</member>
5827 <member> not limited to compiled object code, generated documentation,</member>
5828 <member> and conversions to other media types.</member>
5829 <member> </member>
5830 <member> "Work" shall mean the work of authorship, whether in Source or</member>
5831 <member> Object form, made available under the License, as indicated by a</member>
5832 <member> copyright notice that is included in or attached to the work</member>
5833 <member> (an example is provided in the Appendix below).</member>
5834 <member> </member>
5835 <member> "Derivative Works" shall mean any work, whether in Source or Object</member>
5836 <member> form, that is based on (or derived from) the Work and for which the</member>
5837 <member> editorial revisions, annotations, elaborations, or other modifications</member>
5838 <member> represent, as a whole, an original work of authorship. For the purposes</member>
5839 <member> of this License, Derivative Works shall not include works that remain</member>
5840 <member> separable from, or merely link (or bind by name) to the interfaces of,</member>
5841 <member> the Work and Derivative Works thereof.</member>
5842 <member> </member>
5843 <member> "Contribution" shall mean any work of authorship, including</member>
5844 <member> the original version of the Work and any modifications or additions</member>
5845 <member> to that Work or Derivative Works thereof, that is intentionally</member>
5846 <member> submitted to Licensor for inclusion in the Work by the copyright owner</member>
5847 <member> or by an individual or Legal Entity authorized to submit on behalf of</member>
5848 <member> the copyright owner. For the purposes of this definition, "submitted"</member>
5849 <member> means any form of electronic, verbal, or written communication sent</member>
5850 <member> to the Licensor or its representatives, including but not limited to</member>
5851 <member> communication on electronic mailing lists, source code control systems,</member>
5852 <member> and issue tracking systems that are managed by, or on behalf of, the</member>
5853 <member> Licensor for the purpose of discussing and improving the Work, but</member>
5854 <member> excluding communication that is conspicuously marked or otherwise</member>
5855 <member> designated in writing by the copyright owner as "Not a Contribution."</member>
5856 <member> </member>
5857 <member> "Contributor" shall mean Licensor and any individual or Legal Entity</member>
5858 <member> on behalf of whom a Contribution has been received by Licensor and</member>
5859 <member> subsequently incorporated within the Work.</member>
5860 <member> </member>
5861 <member> 2. Grant of Copyright License. Subject to the terms and conditions of</member>
5862 <member> this License, each Contributor hereby grants to You a perpetual,</member>
5863 <member> worldwide, non-exclusive, no-charge, royalty-free, irrevocable</member>
5864 <member> copyright license to reproduce, prepare Derivative Works of,</member>
5865 <member> publicly display, publicly perform, sublicense, and distribute the</member>
5866 <member> Work and such Derivative Works in Source or Object form.</member>
5867 <member> </member>
5868 <member> 3. Grant of Patent License. Subject to the terms and conditions of</member>
5869 <member> this License, each Contributor hereby grants to You a perpetual,</member>
5870 <member> worldwide, non-exclusive, no-charge, royalty-free, irrevocable</member>
5871 <member> (except as stated in this section) patent license to make, have made,</member>
5872 <member> use, offer to sell, sell, import, and otherwise transfer the Work,</member>
5873 <member> where such license applies only to those patent claims licensable</member>
5874 <member> by such Contributor that are necessarily infringed by their</member>
5875 <member> Contribution(s) alone or by combination of their Contribution(s)</member>
5876 <member> with the Work to which such Contribution(s) was submitted. If You</member>
5877 <member> institute patent litigation against any entity (including a</member>
5878 <member> cross-claim or counterclaim in a lawsuit) alleging that the Work</member>
5879 <member> or a Contribution incorporated within the Work constitutes direct</member>
5880 <member> or contributory patent infringement, then any patent licenses</member>
5881 <member> granted to You under this License for that Work shall terminate</member>
5882 <member> as of the date such litigation is filed.</member>
5883 <member> </member>
5884 <member> 4. Redistribution. You may reproduce and distribute copies of the</member>
5885 <member> Work or Derivative Works thereof in any medium, with or without</member>
5886 <member> modifications, and in Source or Object form, provided that You</member>
5887 <member> meet the following conditions:</member>
5888 <member> </member>
5889 <member> (a) You must give any other recipients of the Work or</member>
5890 <member> Derivative Works a copy of this License; and</member>
5891 <member> </member>
5892 <member> (b) You must cause any modified files to carry prominent notices</member>
5893 <member> stating that You changed the files; and</member>
5894 <member> </member>
5895 <member> (c) You must retain, in the Source form of any Derivative Works</member>
5896 <member> that You distribute, all copyright, patent, trademark, and</member>
5897 <member> attribution notices from the Source form of the Work,</member>
5898 <member> excluding those notices that do not pertain to any part of</member>
5899 <member> the Derivative Works; and</member>
5900 <member> </member>
5901 <member> (d) If the Work includes a "NOTICE" text file as part of its</member>
5902 <member> distribution, then any Derivative Works that You distribute must</member>
5903 <member> include a readable copy of the attribution notices contained</member>
5904 <member> within such NOTICE file, excluding those notices that do not</member>
5905 <member> pertain to any part of the Derivative Works, in at least one</member>
5906 <member> of the following places: within a NOTICE text file distributed</member>
5907 <member> as part of the Derivative Works; within the Source form or</member>
5908 <member> documentation, if provided along with the Derivative Works; or,</member>
5909 <member> within a display generated by the Derivative Works, if and</member>
5910 <member> wherever such third-party notices normally appear. The contents</member>
5911 <member> of the NOTICE file are for informational purposes only and</member>
5912 <member> do not modify the License. You may add Your own attribution</member>
5913 <member> notices within Derivative Works that You distribute, alongside</member>
5914 <member> or as an addendum to the NOTICE text from the Work, provided</member>
5915 <member> that such additional attribution notices cannot be construed</member>
5916 <member> as modifying the License.</member>
5917 <member> </member>
5918 <member> You may add Your own copyright statement to Your modifications and</member>
5919 <member> may provide additional or different license terms and conditions</member>
5920 <member> for use, reproduction, or distribution of Your modifications, or</member>
5921 <member> for any such Derivative Works as a whole, provided Your use,</member>
5922 <member> reproduction, and distribution of the Work otherwise complies with</member>
5923 <member> the conditions stated in this License.</member>
5924 <member> </member>
5925 <member> 5. Submission of Contributions. Unless You explicitly state otherwise,</member>
5926 <member> any Contribution intentionally submitted for inclusion in the Work</member>
5927 <member> by You to the Licensor shall be under the terms and conditions of</member>
5928 <member> this License, without any additional terms or conditions.</member>
5929 <member> Notwithstanding the above, nothing herein shall supersede or modify</member>
5930 <member> the terms of any separate license agreement you may have executed</member>
5931 <member> with Licensor regarding such Contributions.</member>
5932 <member> </member>
5933 <member> 6. Trademarks. This License does not grant permission to use the trade</member>
5934 <member> names, trademarks, service marks, or product names of the Licensor,</member>
5935 <member> except as required for reasonable and customary use in describing the</member>
5936 <member> origin of the Work and reproducing the content of the NOTICE file.</member>
5937 <member> </member>
5938 <member> 7. Disclaimer of Warranty. Unless required by applicable law or</member>
5939 <member> agreed to in writing, Licensor provides the Work (and each</member>
5940 <member> Contributor provides its Contributions) on an "AS IS" BASIS,</member>
5941 <member> WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or</member>
5942 <member> implied, including, without limitation, any warranties or conditions</member>
5943 <member> of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A</member>
5944 <member> PARTICULAR PURPOSE. You are solely responsible for determining the</member>
5945 <member> appropriateness of using or redistributing the Work and assume any</member>
5946 <member> risks associated with Your exercise of permissions under this License.</member>
5947 <member> </member>
5948 <member> 8. Limitation of Liability. In no event and under no legal theory,</member>
5949 <member> whether in tort (including negligence), contract, or otherwise,</member>
5950 <member> unless required by applicable law (such as deliberate and grossly</member>
5951 <member> negligent acts) or agreed to in writing, shall any Contributor be</member>
5952 <member> liable to You for damages, including any direct, indirect, special,</member>
5953 <member> incidental, or consequential damages of any character arising as a</member>
5954 <member> result of this License or out of the use or inability to use the</member>
5955 <member> Work (including but not limited to damages for loss of goodwill,</member>
5956 <member> work stoppage, computer failure or malfunction, or any and all</member>
5957 <member> other commercial damages or losses), even if such Contributor</member>
5958 <member> has been advised of the possibility of such damages.</member>
5959 <member> </member>
5960 <member> 9. Accepting Warranty or Additional Liability. While redistributing</member>
5961 <member> the Work or Derivative Works thereof, You may choose to offer,</member>
5962 <member> and charge a fee for, acceptance of support, warranty, indemnity,</member>
5963 <member> or other liability obligations and/or rights consistent with this</member>
5964 <member> License. However, in accepting such obligations, You may act only</member>
5965 <member> on Your own behalf and on Your sole responsibility, not on behalf</member>
5966 <member> of any other Contributor, and only if You agree to indemnify,</member>
5967 <member> defend, and hold each Contributor harmless for any liability</member>
5968 <member> incurred by, or claims asserted against, such Contributor by reason</member>
5969 <member> of your accepting any such warranty or additional liability.</member>
5970 <member> </member>
5971 <member> END OF TERMS AND CONDITIONS</member>
5972 <member> </member>
5973 <member> APPENDIX: How to apply the Apache License to your work.</member>
5974 <member> </member>
5975 <member> To apply the Apache License to your work, attach the following</member>
5976 <member> boilerplate notice, with the fields enclosed by brackets "[]"</member>
5977 <member> replaced with your own identifying information. (Don't include</member>
5978 <member> the brackets!) The text should be enclosed in the appropriate</member>
5979 <member> comment syntax for the file format. We also recommend that a</member>
5980 <member> file or class name and description of purpose be included on the</member>
5981 <member> same "printed page" as the copyright notice for easier</member>
5982 <member> identification within third-party archives.</member>
5983 <member> </member>
5984 <member> Copyright [yyyy] [name of copyright owner]</member>
5985 <member> </member>
5986 <member> Licensed under the Apache License, Version 2.0 (the "License");</member>
5987 <member> you may not use this file except in compliance with the License.</member>
5988 <member> You may obtain a copy of the License at</member>
5989 <member> </member>
5990 <member> http://www.apache.org/licenses/LICENSE-2.0</member>
5991 <member> </member>
5992 <member> Unless required by applicable law or agreed to in writing, software</member>
5993 <member> distributed under the License is distributed on an "AS IS" BASIS,</member>
5994 <member> WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</member>
5995 <member> See the License for the specific language governing permissions and</member>
5996 <member> limitations under the License.</member>
5997 <member> </member>
5998 </simplelist>
5999 </section>
6000 </section>
6001 <section id="enea-linux-eclipse-open-source-licenses-54">
6002 <title>License 54</title>
6003 <section>
6004 <title>Source File(s)</title>
6005 <itemizedlist spacing="compact">
6006 <listitem>
6007 <para>
6008 plugins/extracted_jars/org.eclipse.cdt.autotools.ui_1.0.1.201602051005/templates/projecttemplates/HelloWorldCAutotoolsProject/src/COPYING
6009 </para>
6010 </listitem>
6011 <listitem>
6012 <para>
6013 plugins/extracted_jars/org.eclipse.cdt.autotools.ui_1.0.1.201602051005/templates/projecttemplates/HelloWorldCPPAutotoolsProject/src/COPYING
6014 </para>
6015 </listitem>
6016 <listitem>
6017 <para>
6018 plugins/extracted_jars/org.eclipse.cdt.autotools.ui_1.0.1.201602051005/templates/projecttemplates/AutotoolsSharedLibraryProject/COPYING
6019 </para>
6020 </listitem>
6021 </itemizedlist>
6022 </section>
6023 <section>
6024 <title>License Text</title>
6025 <simplelist>
6026 <member>&lt;Place your desired license here.&gt;</member>
6027 </simplelist>
6028 </section>
6029 </section>
6030 <section id="enea-linux-eclipse-open-source-licenses-55">
6031 <title>License 55</title>
6032 <section>
6033 <title>Source File(s)</title>
6034 <itemizedlist spacing="compact">
6035 <listitem>
6036 <para>
6037 plugins/extracted_jars/org.w3c.dom.smil_1.0.1.v200903091627/about_files/LICENSE.dom-software.txt
6038 </para>
6039 </listitem>
6040 </itemizedlist>
6041 </section>
6042 <section>
6043 <title>License Text</title>
6044 <simplelist>
6045 <member>xml-commons/java/external/LICENSE.dom-software.txt $Id: LICENSE.dom-software.txt,v 1.1.2.2 2009/02/27 15:52:05 cdamus Exp $</member>
6046 <member></member>
6047 <member></member>
6048 <member>This license came from: http://www.w3.org/Consortium/Legal/copyright-software-20021231</member>
6049 <member></member>
6050 <member></member>
6051 <member>W3C(R) SOFTWARE NOTICE AND LICENSE</member>
6052 <member>http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231</member>
6053 <member></member>
6054 <member>This work (and included software, documentation such as READMEs, or other</member>
6055 <member>related items) is being provided by the copyright holders under the following</member>
6056 <member>license. By obtaining, using and/or copying this work, you (the licensee) agree</member>
6057 <member>that you have read, understood, and will comply with the following terms and</member>
6058 <member>conditions.</member>
6059 <member></member>
6060 <member>Permission to copy, modify, and distribute this software and its documentation,</member>
6061 <member>with or without modification, for any purpose and without fee or royalty is</member>
6062 <member>hereby granted, provided that you include the following on ALL copies of the</member>
6063 <member>software and documentation or portions thereof, including modifications:</member>
6064 <member></member>
6065 <member> 1. The full text of this NOTICE in a location viewable to users of the</member>
6066 <member> redistributed or derivative work. </member>
6067 <member> 2. Any pre-existing intellectual property disclaimers, notices, or terms</member>
6068 <member> and conditions. If none exist, the W3C Software Short Notice should be</member>
6069 <member> included (hypertext is preferred, text is permitted) within the body</member>
6070 <member> of any redistributed or derivative code.</member>
6071 <member> 3. Notice of any changes or modifications to the files, including the date</member>
6072 <member> changes were made. (We recommend you provide URIs to the location from</member>
6073 <member> which the code is derived.)</member>
6074 <member> </member>
6075 <member>THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS MAKE</member>
6076 <member>NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED</member>
6077 <member>TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT</member>
6078 <member>THE USE OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE ANY THIRD PARTY</member>
6079 <member>PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.</member>
6080 <member></member>
6081 <member>COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR</member>
6082 <member>CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENTATION.</member>
6083 <member></member>
6084 <member>The name and trademarks of copyright holders may NOT be used in advertising or</member>
6085 <member>publicity pertaining to the software without specific, written prior permission.</member>
6086 <member>Title to copyright in this software and any associated documentation will at</member>
6087 <member>all times remain with copyright holders.</member>
6088 <member></member>
6089 <member>____________________________________</member>
6090 <member></member>
6091 <member>This formulation of W3C's notice and license became active on December 31 2002.</member>
6092 <member>This version removes the copyright ownership notice such that this license can</member>
6093 <member>be used with materials other than those owned by the W3C, reflects that ERCIM</member>
6094 <member>is now a host of the W3C, includes references to this specific dated version of</member>
6095 <member>the license, and removes the ambiguous grant of "use". Otherwise, this version</member>
6096 <member>is the same as the previous version and is written so as to preserve the Free</member>
6097 <member>Software Foundation's assessment of GPL compatibility and OSI's certification</member>
6098 <member>under the Open Source Definition. Please see our Copyright FAQ for common</member>
6099 <member>questions about using materials from our site, including specific terms and</member>
6100 <member>conditions for packages like libwww, Amaya, and Jigsaw. Other questions about</member>
6101 <member>this notice can be directed to site-policy@w3.org.</member>
6102 <member> </member>
6103 <member>Joseph Reagle &lt;site-policy@w3.org&gt; </member>
6104 <member></member>
6105 <member>Last revised by Reagle $Date: 2009/02/27 15:52:05 $</member>
6106 </simplelist>
6107 </section>
6108 </section>
6109 <section id="enea-linux-eclipse-open-source-licenses-56">
6110 <title>License 56</title>
6111 <section>
6112 <title>Source File(s)</title>
6113 <itemizedlist spacing="compact">
6114 <listitem>
6115 <para>
6116 plugins/extracted_jars/org.eclipse.jdt.apt.core.source_3.4.0.v20150518-1201/mirror-api-license.txt
6117 </para>
6118 </listitem>
6119 <listitem>
6120 <para>
6121 plugins/extracted_jars/org.eclipse.jdt.apt.core_3.4.0.v20150518-1201/mirror-api-license.txt
6122 </para>
6123 </listitem>
6124 </itemizedlist>
6125 </section>
6126 <section>
6127 <title>License Text</title>
6128 <simplelist>
6129 <member>Copyright (c) 2004, Sun Microsystems, Inc.All rights reserved.</member>
6130 <member>&#160;</member>
6131 <member>Redistribution and use in source and binary forms, with or without</member>
6132 <member>modification, are permitted provided that the following conditions are</member>
6133 <member>met:</member>
6134 <member>&#160;</member>
6135 <member> * Redistributions of source code must retain the above copyright</member>
6136 <member> notice, this list of conditions and the following disclaimer.</member>
6137 <member> * Redistributions in binary form must reproduce the above copyright</member>
6138 <member> notice, this list of conditions and the following disclaimer in</member>
6139 <member> the documentation and/or other materials provided with the</member>
6140 <member> distribution.</member>
6141 <member> * Neither the name of the Sun Microsystems, Inc. nor the names of</member>
6142 <member> its contributors may be used to endorse or promote products</member>
6143 <member> derived from this software without specific prior written</member>
6144 <member> permission.</member>
6145 <member>&#160;</member>
6146 <member>THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS</member>
6147 <member>"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT</member>
6148 <member>LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR</member>
6149 <member>A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT</member>
6150 <member>OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,</member>
6151 <member>SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT</member>
6152 <member>LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,</member>
6153 <member>DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY</member>
6154 <member>THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT</member>
6155 <member>(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE</member>
6156 <member>OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</member>
6157 </simplelist>
6158 </section>
6159 </section>
6160 <section id="enea-linux-eclipse-open-source-licenses-57">
6161 <title>License 57</title>
6162 <section>
6163 <title>Source File(s)</title>
6164 <itemizedlist spacing="compact">
6165 <listitem>
6166 <para>
6167 plugins/extracted_jars/org.junit.source_4.12.0.v201504281640/about_files/cpl-v10.html
6168 </para>
6169 </listitem>
6170 <listitem>
6171 <para>
6172 plugins/org.junit_4.12.0.v201504281640/about_files/cpl-v10.html
6173 </para>
6174 </listitem>
6175 </itemizedlist>
6176 </section>
6177 <section>
6178 <title>License Text</title>
6179 <simplelist>
6180 <member>**Common Public License - v 1.0**</member>
6181 <member>&#160;</member>
6182 <member>****</member>
6183 <member>&#160;</member>
6184 <member>THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS COMMON PUBLIC</member>
6185 <member>LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM</member>
6186 <member>CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.</member>
6187 <member>&#160;</member>
6188 <member>**1\. DEFINITIONS**</member>
6189 <member>&#160;</member>
6190 <member>"Contribution" means:</member>
6191 <member>&#160;</member>
6192 <member>a) in the case of the initial Contributor, the initial code and documentation</member>
6193 <member>distributed under this Agreement, and </member>
6194 <member>b) in the case of each subsequent Contributor: i) changes to the Program, and</member>
6195 <member>ii) additions to the Program; where such changes and/or additions to the</member>
6196 <member>Program originate from and are distributed by that particular Contributor. A</member>
6197 <member>Contribution 'originates' from a Contributor if it was added to the Program by</member>
6198 <member>such Contributor itself or anyone acting on such Contributor's behalf.</member>
6199 <member>Contributions do not include additions to the Program which: (i) are separate</member>
6200 <member>modules of software distributed in conjunction with the Program under their</member>
6201 <member>own license agreement, and (ii) are not derivative works of the Program.</member>
6202 <member>&#160;</member>
6203 <member>"Contributor" means any person or entity that distributes the Program.</member>
6204 <member>&#160;</member>
6205 <member>"Licensed Patents " mean patent claims licensable by a Contributor which are</member>
6206 <member>necessarily infringed by the use or sale of its Contribution alone or when</member>
6207 <member>combined with the Program.</member>
6208 <member>&#160;</member>
6209 <member>"Program" means the Contributions distributed in accordance with this</member>
6210 <member>Agreement.</member>
6211 <member>&#160;</member>
6212 <member>"Recipient" means anyone who receives the Program under this Agreement,</member>
6213 <member>including all Contributors.</member>
6214 <member>&#160;</member>
6215 <member>****</member>
6216 <member>&#160;</member>
6217 <member>**2\. GRANT OF RIGHTS**</member>
6218 <member>&#160;</member>
6219 <member>a) Subject to the terms of this Agreement, each Contributor hereby grants</member>
6220 <member>Recipient a non-exclusive, worldwide, royalty-free copyright license to</member>
6221 <member>reproduce, prepare derivative works of, publicly display, publicly perform,</member>
6222 <member>distribute and sublicense the Contribution of such Contributor, if any, and</member>
6223 <member>such derivative works, in source code and object code form. b) Subject to the</member>
6224 <member>terms of this Agreement, each Contributor hereby grants Recipient a non-</member>
6225 <member>exclusive, worldwide, royalty-free patent license under Licensed Patents to</member>
6226 <member>make, use, sell, offer to sell, import and otherwise transfer the Contribution</member>
6227 <member>of such Contributor, if any, in source code and object code form. This patent</member>
6228 <member>license shall apply to the combination of the Contribution and the Program if,</member>
6229 <member>at the time the Contribution is added by the Contributor, such addition of the</member>
6230 <member>Contribution causes such combination to be covered by the Licensed Patents.</member>
6231 <member>The patent license shall not apply to any other combinations which include the</member>
6232 <member>Contribution. No hardware per se is licensed hereunder. c) Recipient</member>
6233 <member>understands that although each Contributor grants the licenses to its</member>
6234 <member>Contributions set forth herein, no assurances are provided by any Contributor</member>
6235 <member>that the Program does not infringe the patent or other intellectual property</member>
6236 <member>rights of any other entity. Each Contributor disclaims any liability to</member>
6237 <member>Recipient for claims brought by any other entity based on infringement of</member>
6238 <member>intellectual property rights or otherwise. As a condition to exercising the</member>
6239 <member>rights and licenses granted hereunder, each Recipient hereby assumes sole</member>
6240 <member>responsibility to secure any other intellectual property rights needed, if</member>
6241 <member>any. For example, if a third party patent license is required to allow</member>
6242 <member>Recipient to distribute the Program, it is Recipient's responsibility to</member>
6243 <member>acquire that license before distributing the Program. d) Each Contributor</member>
6244 <member>represents that to its knowledge it has sufficient copyright rights in its</member>
6245 <member>Contribution, if any, to grant the copyright license set forth in this</member>
6246 <member>Agreement.</member>
6247 <member>&#160;</member>
6248 <member>**3\. REQUIREMENTS**</member>
6249 <member>&#160;</member>
6250 <member>****A Contributor may choose to distribute the Program in object code form under its own license agreement, provided that:</member>
6251 <member>&#160;</member>
6252 <member>a) it complies with the terms and conditions of this Agreement; and b) its</member>
6253 <member>license agreement: i) effectively disclaims on behalf of all Contributors all</member>
6254 <member>warranties and conditions, express and implied, including warranties or</member>
6255 <member>conditions of title and non-infringement, and implied warranties or conditions</member>
6256 <member>of merchantability and fitness for a particular purpose; ii) effectively</member>
6257 <member>excludes on behalf of all Contributors all liability for damages, including</member>
6258 <member>direct, indirect, special, incidental and consequential damages, such as lost</member>
6259 <member>profits; iii) states that any provisions which differ from this Agreement are</member>
6260 <member>offered by that Contributor alone and not by any other party; and iv) states</member>
6261 <member>that source code for the Program is available from such Contributor, and</member>
6262 <member>informs licensees how to obtain it in a reasonable manner on or through a</member>
6263 <member>medium customarily used for software exchange.</member>
6264 <member>&#160;</member>
6265 <member>When the Program is made available in source code form:</member>
6266 <member>&#160;</member>
6267 <member>a) it must be made available under this Agreement; and b) a copy of this</member>
6268 <member>Agreement must be included with each copy of the Program.</member>
6269 <member>&#160;</member>
6270 <member>&lt;strike&gt;&lt;/strike&gt;</member>
6271 <member>&#160;</member>
6272 <member>&lt;strike&gt;&lt;/strike&gt;Contributors may not remove or alter any copyright notices</member>
6273 <member>contained within the Program.</member>
6274 <member>&#160;</member>
6275 <member>Each Contributor must identify itself as the originator of its Contribution,</member>
6276 <member>if any, in a manner that reasonably allows subsequent Recipients to identify</member>
6277 <member>the originator of the Contribution.</member>
6278 <member>&#160;</member>
6279 <member>**4\. COMMERCIAL DISTRIBUTION**</member>
6280 <member>&#160;</member>
6281 <member>Commercial distributors of software may accept certain responsibilities with</member>
6282 <member>respect to end users, business partners and the like. While this license is</member>
6283 <member>intended to facilitate the commercial use of the Program, the Contributor who</member>
6284 <member>includes the Program in a commercial product offering should do so in a manner</member>
6285 <member>which does not create potential liability for other Contributors. Therefore,</member>
6286 <member>if a Contributor includes the Program in a commercial product offering, such</member>
6287 <member>Contributor ("Commercial Contributor") hereby agrees to defend and indemnify</member>
6288 <member>every other Contributor ("Indemnified Contributor") against any losses,</member>
6289 <member>damages and costs (collectively "Losses") arising from claims, lawsuits and</member>
6290 <member>other legal actions brought by a third party against the Indemnified</member>
6291 <member>Contributor to the extent caused by the acts or omissions of such Commercial</member>
6292 <member>Contributor in connection with its distribution of the Program in a commercial</member>
6293 <member>product offering. The obligations in this section do not apply to any claims</member>
6294 <member>or Losses relating to any actual or alleged intellectual property</member>
6295 <member>infringement. In order to qualify, an Indemnified Contributor must: a)</member>
6296 <member>promptly notify the Commercial Contributor in writing of such claim, and b)</member>
6297 <member>allow the Commercial Contributor to control, and cooperate with the Commercial</member>
6298 <member>Contributor in, the defense and any related settlement negotiations. The</member>
6299 <member>Indemnified Contributor may participate in any such claim at its own expense.</member>
6300 <member>&#160;</member>
6301 <member>For example, a Contributor might include the Program in a commercial product</member>
6302 <member>offering, Product X. That Contributor is then a Commercial Contributor. If</member>
6303 <member>that Commercial Contributor then makes performance claims, or offers</member>
6304 <member>warranties related to Product X, those performance claims and warranties are</member>
6305 <member>such Commercial Contributor's responsibility alone. Under this section, the</member>
6306 <member>Commercial Contributor would have to defend claims against the other</member>
6307 <member>Contributors related to those performance claims and warranties, and if a</member>
6308 <member>court requires any other Contributor to pay any damages as a result, the</member>
6309 <member>Commercial Contributor must pay those damages.</member>
6310 <member>&#160;</member>
6311 <member>**5\. NO WARRANTY**</member>
6312 <member>&#160;</member>
6313 <member>EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN</member>
6314 <member>"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR</member>
6315 <member>IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE,</member>
6316 <member>NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each</member>
6317 <member>Recipient is solely responsible for determining the appropriateness of using</member>
6318 <member>and distributing the Program and assumes all risks associated with its</member>
6319 <member>exercise of rights under this Agreement, including but not limited to the</member>
6320 <member>risks and costs of program errors, compliance with applicable laws, damage to</member>
6321 <member>or loss of data, programs or equipment, and unavailability or interruption of</member>
6322 <member>operations.</member>
6323 <member>&#160;</member>
6324 <member>**6\. DISCLAIMER OF LIABILITY**</member>
6325 <member>&#160;</member>
6326 <member>EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY</member>
6327 <member>CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL,</member>
6328 <member>SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION</member>
6329 <member>LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN</member>
6330 <member>CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)</member>
6331 <member>ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE</member>
6332 <member>EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY</member>
6333 <member>OF SUCH DAMAGES.</member>
6334 <member>&#160;</member>
6335 <member>**7\. GENERAL**</member>
6336 <member>&#160;</member>
6337 <member>If any provision of this Agreement is invalid or unenforceable under</member>
6338 <member>applicable law, it shall not affect the validity or enforceability of the</member>
6339 <member>remainder of the terms of this Agreement, and without further action by the</member>
6340 <member>parties hereto, such provision shall be reformed to the minimum extent</member>
6341 <member>necessary to make such provision valid and enforceable.</member>
6342 <member>&#160;</member>
6343 <member>If Recipient institutes patent litigation against a Contributor with respect</member>
6344 <member>to a patent applicable to software (including a cross-claim or counterclaim in</member>
6345 <member>a lawsuit), then any patent licenses granted by that Contributor to such</member>
6346 <member>Recipient under this Agreement shall terminate as of the date such litigation</member>
6347 <member>is filed. In addition, if Recipient institutes patent litigation against any</member>
6348 <member>entity (including a cross-claim or counterclaim in a lawsuit) alleging that</member>
6349 <member>the Program itself (excluding combinations of the Program with other software</member>
6350 <member>or hardware) infringes such Recipient's patent(s), then such Recipient's</member>
6351 <member>rights granted under Section 2(b) shall terminate as of the date such</member>
6352 <member>litigation is filed.</member>
6353 <member>&#160;</member>
6354 <member>All Recipient's rights under this Agreement shall terminate if it fails to</member>
6355 <member>comply with any of the material terms or conditions of this Agreement and does</member>
6356 <member>not cure such failure in a reasonable period of time after becoming aware of</member>
6357 <member>such noncompliance. If all Recipient's rights under this Agreement terminate,</member>
6358 <member>Recipient agrees to cease use and distribution of the Program as soon as</member>
6359 <member>reasonably practicable. However, Recipient's obligations under this Agreement</member>
6360 <member>and any licenses granted by Recipient relating to the Program shall continue</member>
6361 <member>and survive.</member>
6362 <member>&#160;</member>
6363 <member>Everyone is permitted to copy and distribute copies of this Agreement, but in</member>
6364 <member>order to avoid inconsistency the Agreement is copyrighted and may only be</member>
6365 <member>modified in the following manner. The Agreement Steward reserves the right to</member>
6366 <member>publish new versions (including revisions) of this Agreement from time to</member>
6367 <member>time. No one other than the Agreement Steward has the right to modify this</member>
6368 <member>Agreement. IBM is the initial Agreement Steward. IBM may assign the</member>
6369 <member>responsibility to serve as the Agreement Steward to a suitable separate</member>
6370 <member>entity. Each new version of the Agreement will be given a distinguishing</member>
6371 <member>version number. The Program (including Contributions) may always be</member>
6372 <member>distributed subject to the version of the Agreement under which it was</member>
6373 <member>received. In addition, after a new version of the Agreement is published,</member>
6374 <member>Contributor may elect to distribute the Program (including its Contributions)</member>
6375 <member>under the new version. Except as expressly stated in Sections 2(a) and 2(b)</member>
6376 <member>above, Recipient receives no rights or licenses to the intellectual property</member>
6377 <member>of any Contributor under this Agreement, whether expressly, by implication,</member>
6378 <member>estoppel or otherwise. All rights in the Program not expressly granted under</member>
6379 <member>this Agreement are reserved.</member>
6380 <member>&#160;</member>
6381 <member>This Agreement is governed by the laws of the State of New York and the</member>
6382 <member>intellectual property laws of the United States of America. No party to this</member>
6383 <member>Agreement will bring a legal action under this Agreement more than one year</member>
6384 <member>after the cause of action arose. Each party waives its rights to a jury trial</member>
6385 <member>in any resulting litigation.</member>
6386 </simplelist>
6387 </section>
6388 </section>
6389 <section id="enea-linux-eclipse-open-source-licenses-58">
6390 <title>License 58</title>
6391 <section>
6392 <title>Source File(s)</title>
6393 <itemizedlist spacing="compact">
6394 <listitem>
6395 <para>
6396 plugins/extracted_jars/org.eclipse.jdt.ui_3.11.0.v20150527-0925/about_files/ispell-license.txt
6397 </para>
6398 </listitem>
6399 <listitem>
6400 <para>
6401 plugins/extracted_jars/org.eclipse.jdt.ui_3.11.0.v20150527-0925/about_files/ispell-license.txt
6402 </para>
6403 </listitem>
6404 <listitem>
6405 <para>
6406 plugins/extracted_jars/org.eclipse.jdt.ui.source_3.11.0.v20150527-0925/about_files/ispell-license.txt
6407 </para>
6408 </listitem>
6409 <listitem>
6410 <para>
6411 plugins/extracted_jars/org.eclipse.jdt.ui.source_3.11.0.v20150527-0925/about_files/ispell-license.txt
6412 </para>
6413 </listitem>
6414 <listitem>
6415 <para>
6416 plugins/extracted_jars/org.eclipse.cdt.ui.source_5.11.0.201602051005/about_files/ispell-license.txt
6417 </para>
6418 </listitem>
6419 <listitem>
6420 <para>
6421 plugins/extracted_jars/org.eclipse.cdt.ui.source_5.11.0.201602051005/about_files/ispell-license.txt
6422 </para>
6423 </listitem>
6424 <listitem>
6425 <para>
6426 plugins/extracted_jars/org.eclipse.cdt.ui_5.11.0.201602051005/about_files/ispell-license.txt
6427 </para>
6428 </listitem>
6429 <listitem>
6430 <para>
6431 plugins/extracted_jars/org.eclipse.cdt.ui_5.11.0.201602051005/about_files/ispell-license.txt
6432 </para>
6433 </listitem>
6434 </itemizedlist>
6435 </section>
6436 <section>
6437 <title>License Text</title>
6438 <simplelist>
6439 <member> Copyright 1993, Geoff Kuenning, Granada Hills, CA</member>
6440 <member> All rights reserved.</member>
6441 <member>&#160;</member>
6442 <member> Redistribution and use in source and binary forms, with or without</member>
6443 <member> modification, are permitted provided that the following conditions</member>
6444 <member> are met:</member>
6445 <member>&#160;</member>
6446 <member> 1. Redistributions of source code must retain the above copyright</member>
6447 <member> notice, this list of conditions and the following disclaimer.</member>
6448 <member> 2. Redistributions in binary form must reproduce the above copyright</member>
6449 <member> notice, this list of conditions and the following disclaimer in the</member>
6450 <member> documentation and/or other materials provided with the distribution.</member>
6451 <member> 3. All modifications to the source code must be clearly marked as</member>
6452 <member> such. Binary redistributions based on modified source code</member>
6453 <member> must be clearly marked as modified versions in the documentation</member>
6454 <member> and/or other materials provided with the distribution.</member>
6455 <member> 4. All advertising materials mentioning features or use of this software</member>
6456 <member> must display the following acknowledgment:</member>
6457 <member> This product includes software developed by Geoff Kuenning and</member>
6458 <member> other unpaid contributors.</member>
6459 <member> 5. The name of Geoff Kuenning may not be used to endorse or promote</member>
6460 <member> products derived from this software without specific prior</member>
6461 <member> written permission.</member>
6462 <member>&#160;</member>
6463 <member> THIS SOFTWARE IS PROVIDED BY GEOFF KUENNING AND CONTRIBUTORS ``AS</member>
6464 <member> IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT</member>
6465 <member> LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS</member>
6466 <member> FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GEOFF</member>
6467 <member> KUENNING OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,</member>
6468 <member> INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,</member>
6469 <member> BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;</member>
6470 <member> LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER</member>
6471 <member> CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT</member>
6472 <member> LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN</member>
6473 <member> ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE</member>
6474 <member> POSSIBILITY OF SUCH DAMAGE.</member>
6475 </simplelist>
6476 </section>
6477 </section>
6478 <section id="enea-linux-eclipse-open-source-licenses-59">
6479 <title>License 59</title>
6480 <section>
6481 <title>Source File(s)</title>
6482 <itemizedlist spacing="compact">
6483 <listitem>
6484 <para>
6485 plugins/extracted_jars/org.junit.source_4.12.0.v201504281640/about.html
6486 </para>
6487 </listitem>
6488 <listitem>
6489 <para>
6490 plugins/org.junit_4.12.0.v201504281640/about.html
6491 </para>
6492 </listitem>
6493 </itemizedlist>
6494 </section>
6495 <section>
6496 <title>License Text</title>
6497 <simplelist>
6498 <member>## About This Content</member>
6499 <member>&#160;</member>
6500 <member>February 6, 2015</member>
6501 <member>&#160;</member>
6502 <member>### License</member>
6503 <member>&#160;</member>
6504 <member>The Eclipse Foundation makes available all content in this plug-in</member>
6505 <member>("Content"). Unless otherwise indicated below, the Content is provided to you</member>
6506 <member>under the terms and conditions of the Eclipse Public License Version 1.0</member>
6507 <member>("EPL"). A copy of the EPL is available at</member>
6508 <member>&lt;http://www.eclipse.org/legal/epl-v10.html&gt;. For purposes of the EPL,</member>
6509 <member>"Program" will mean the Content.</member>
6510 <member>&#160;</member>
6511 <member>If you did not receive this Content directly from the Eclipse Foundation, the</member>
6512 <member>Content is being redistributed by another party ("Redistributor") and</member>
6513 <member>different terms and conditions may apply to your use of any object code in the</member>
6514 <member>Content. Check the Redistributor's license that was provided with the Content.</member>
6515 <member>If no such license exists, contact the Redistributor. Unless otherwise</member>
6516 <member>indicated below, the terms and conditions of the EPL still apply to any source</member>
6517 <member>code in the Content and such source code may be obtained at</member>
6518 <member>[http://www.eclipse.org](http://www.eclipse.org/).</member>
6519 <member>&#160;</member>
6520 <member>### Third Party Content</member>
6521 <member>&#160;</member>
6522 <member>The Content includes items that have been sourced from third parties as set</member>
6523 <member>out below. If you did not receive this Content directly from the Eclipse</member>
6524 <member>Foundation, the following is provided for informational purposes only, and you</member>
6525 <member>should look to the Redistributor's license for terms and conditions of use.</member>
6526 <member>&#160;</member>
6527 <member>The Content includes items that have been sourced from third parties as</member>
6528 <member>follows:</member>
6529 <member>&#160;</member>
6530 <member>#### JUnit 4.12</member>
6531 <member>&#160;</member>
6532 <member>The plug-in is accompanied by software developed by</member>
6533 <member>[JUnit.org](http://www.junit.org/). The JUnit 4.12 code included with the</member>
6534 <member>plug-in includes no modifications. Your use of JUnit 4.12 in both source and</member>
6535 <member>binary code form contained in the plug-in is subject to the terms and</member>
6536 <member>conditions of the Common Public License Version 1.0 ("CPL"). A copy of the CPL</member>
6537 <member>is available at &lt;http://www.eclipse.org/legal/cpl-v10.html&gt;. The binary code</member>
6538 <member>is located in junit.jar and the source code is located in source-bundle or in</member>
6539 <member>the org.junit.source bundle. </member>
6540 <member>The original source and binaries are available from &lt;http://search.maven.org/#</member>
6541 <member>search|gav|1|g%3A%22junit%22%20AND%20a%3A%22junit%22&gt;, namely: </member>
6542 <member>&lt;http://search.maven.org/remotecontent?filepath=junit/junit/4.12/junit-4.12-so</member>
6543 <member>urces.jar&gt; </member>
6544 <member>&lt;http://search.maven.org/remotecontent?filepath=junit/junit/4.12/junit-4.12.ja</member>
6545 <member>r&gt;</member>
6546 </simplelist>
6547 </section>
6548 </section>
6549 <section id="enea-linux-eclipse-open-source-licenses-60">
6550 <title>License 60</title>
6551 <section>
6552 <title>Source File(s)</title>
6553 <itemizedlist spacing="compact">
6554 <listitem>
6555 <para>
6556 plugins/extracted_jars/org.apache.httpcomponents.httpcore_4.3.3.v201411290715/about_files/LICENSE.txt
6557 </para>
6558 </listitem>
6559 </itemizedlist>
6560 </section>
6561 <section>
6562 <title>License Text</title>
6563 <simplelist>
6564 <member> Apache License</member>
6565 <member> Version 2.0, January 2004</member>
6566 <member> http://www.apache.org/licenses/</member>
6567 <member>&#160;</member>
6568 <member> TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION</member>
6569 <member>&#160;</member>
6570 <member> 1. Definitions.</member>
6571 <member>&#160;</member>
6572 <member> "License" shall mean the terms and conditions for use, reproduction,</member>
6573 <member> and distribution as defined by Sections 1 through 9 of this document.</member>
6574 <member>&#160;</member>
6575 <member> "Licensor" shall mean the copyright owner or entity authorized by</member>
6576 <member> the copyright owner that is granting the License.</member>
6577 <member>&#160;</member>
6578 <member> "Legal Entity" shall mean the union of the acting entity and all</member>
6579 <member> other entities that control, are controlled by, or are under common</member>
6580 <member> control with that entity. For the purposes of this definition,</member>
6581 <member> "control" means (i) the power, direct or indirect, to cause the</member>
6582 <member> direction or management of such entity, whether by contract or</member>
6583 <member> otherwise, or (ii) ownership of fifty percent (50%) or more of the</member>
6584 <member> outstanding shares, or (iii) beneficial ownership of such entity.</member>
6585 <member>&#160;</member>
6586 <member> "You" (or "Your") shall mean an individual or Legal Entity</member>
6587 <member> exercising permissions granted by this License.</member>
6588 <member>&#160;</member>
6589 <member> "Source" form shall mean the preferred form for making modifications,</member>
6590 <member> including but not limited to software source code, documentation</member>
6591 <member> source, and configuration files.</member>
6592 <member>&#160;</member>
6593 <member> "Object" form shall mean any form resulting from mechanical</member>
6594 <member> transformation or translation of a Source form, including but</member>
6595 <member> not limited to compiled object code, generated documentation,</member>
6596 <member> and conversions to other media types.</member>
6597 <member>&#160;</member>
6598 <member> "Work" shall mean the work of authorship, whether in Source or</member>
6599 <member> Object form, made available under the License, as indicated by a</member>
6600 <member> copyright notice that is included in or attached to the work</member>
6601 <member> (an example is provided in the Appendix below).</member>
6602 <member>&#160;</member>
6603 <member> "Derivative Works" shall mean any work, whether in Source or Object</member>
6604 <member> form, that is based on (or derived from) the Work and for which the</member>
6605 <member> editorial revisions, annotations, elaborations, or other modifications</member>
6606 <member> represent, as a whole, an original work of authorship. For the purposes</member>
6607 <member> of this License, Derivative Works shall not include works that remain</member>
6608 <member> separable from, or merely link (or bind by name) to the interfaces of,</member>
6609 <member> the Work and Derivative Works thereof.</member>
6610 <member>&#160;</member>
6611 <member> "Contribution" shall mean any work of authorship, including</member>
6612 <member> the original version of the Work and any modifications or additions</member>
6613 <member> to that Work or Derivative Works thereof, that is intentionally</member>
6614 <member> submitted to Licensor for inclusion in the Work by the copyright owner</member>
6615 <member> or by an individual or Legal Entity authorized to submit on behalf of</member>
6616 <member> the copyright owner. For the purposes of this definition, "submitted"</member>
6617 <member> means any form of electronic, verbal, or written communication sent</member>
6618 <member> to the Licensor or its representatives, including but not limited to</member>
6619 <member> communication on electronic mailing lists, source code control systems,</member>
6620 <member> and issue tracking systems that are managed by, or on behalf of, the</member>
6621 <member> Licensor for the purpose of discussing and improving the Work, but</member>
6622 <member> excluding communication that is conspicuously marked or otherwise</member>
6623 <member> designated in writing by the copyright owner as "Not a Contribution."</member>
6624 <member>&#160;</member>
6625 <member> "Contributor" shall mean Licensor and any individual or Legal Entity</member>
6626 <member> on behalf of whom a Contribution has been received by Licensor and</member>
6627 <member> subsequently incorporated within the Work.</member>
6628 <member>&#160;</member>
6629 <member> 2. Grant of Copyright License. Subject to the terms and conditions of</member>
6630 <member> this License, each Contributor hereby grants to You a perpetual,</member>
6631 <member> worldwide, non-exclusive, no-charge, royalty-free, irrevocable</member>
6632 <member> copyright license to reproduce, prepare Derivative Works of,</member>
6633 <member> publicly display, publicly perform, sublicense, and distribute the</member>
6634 <member> Work and such Derivative Works in Source or Object form.</member>
6635 <member>&#160;</member>
6636 <member> 3. Grant of Patent License. Subject to the terms and conditions of</member>
6637 <member> this License, each Contributor hereby grants to You a perpetual,</member>
6638 <member> worldwide, non-exclusive, no-charge, royalty-free, irrevocable</member>
6639 <member> (except as stated in this section) patent license to make, have made,</member>
6640 <member> use, offer to sell, sell, import, and otherwise transfer the Work,</member>
6641 <member> where such license applies only to those patent claims licensable</member>
6642 <member> by such Contributor that are necessarily infringed by their</member>
6643 <member> Contribution(s) alone or by combination of their Contribution(s)</member>
6644 <member> with the Work to which such Contribution(s) was submitted. If You</member>
6645 <member> institute patent litigation against any entity (including a</member>
6646 <member> cross-claim or counterclaim in a lawsuit) alleging that the Work</member>
6647 <member> or a Contribution incorporated within the Work constitutes direct</member>
6648 <member> or contributory patent infringement, then any patent licenses</member>
6649 <member> granted to You under this License for that Work shall terminate</member>
6650 <member> as of the date such litigation is filed.</member>
6651 <member>&#160;</member>
6652 <member> 4. Redistribution. You may reproduce and distribute copies of the</member>
6653 <member> Work or Derivative Works thereof in any medium, with or without</member>
6654 <member> modifications, and in Source or Object form, provided that You</member>
6655 <member> meet the following conditions:</member>
6656 <member>&#160;</member>
6657 <member> (a) You must give any other recipients of the Work or</member>
6658 <member> Derivative Works a copy of this License; and</member>
6659 <member>&#160;</member>
6660 <member> (b) You must cause any modified files to carry prominent notices</member>
6661 <member> stating that You changed the files; and</member>
6662 <member>&#160;</member>
6663 <member> (c) You must retain, in the Source form of any Derivative Works</member>
6664 <member> that You distribute, all copyright, patent, trademark, and</member>
6665 <member> attribution notices from the Source form of the Work,</member>
6666 <member> excluding those notices that do not pertain to any part of</member>
6667 <member> the Derivative Works; and</member>
6668 <member>&#160;</member>
6669 <member> (d) If the Work includes a "NOTICE" text file as part of its</member>
6670 <member> distribution, then any Derivative Works that You distribute must</member>
6671 <member> include a readable copy of the attribution notices contained</member>
6672 <member> within such NOTICE file, excluding those notices that do not</member>
6673 <member> pertain to any part of the Derivative Works, in at least one</member>
6674 <member> of the following places: within a NOTICE text file distributed</member>
6675 <member> as part of the Derivative Works; within the Source form or</member>
6676 <member> documentation, if provided along with the Derivative Works; or,</member>
6677 <member> within a display generated by the Derivative Works, if and</member>
6678 <member> wherever such third-party notices normally appear. The contents</member>
6679 <member> of the NOTICE file are for informational purposes only and</member>
6680 <member> do not modify the License. You may add Your own attribution</member>
6681 <member> notices within Derivative Works that You distribute, alongside</member>
6682 <member> or as an addendum to the NOTICE text from the Work, provided</member>
6683 <member> that such additional attribution notices cannot be construed</member>
6684 <member> as modifying the License.</member>
6685 <member>&#160;</member>
6686 <member> You may add Your own copyright statement to Your modifications and</member>
6687 <member> may provide additional or different license terms and conditions</member>
6688 <member> for use, reproduction, or distribution of Your modifications, or</member>
6689 <member> for any such Derivative Works as a whole, provided Your use,</member>
6690 <member> reproduction, and distribution of the Work otherwise complies with</member>
6691 <member> the conditions stated in this License.</member>
6692 <member>&#160;</member>
6693 <member> 5. Submission of Contributions. Unless You explicitly state otherwise,</member>
6694 <member> any Contribution intentionally submitted for inclusion in the Work</member>
6695 <member> by You to the Licensor shall be under the terms and conditions of</member>
6696 <member> this License, without any additional terms or conditions.</member>
6697 <member> Notwithstanding the above, nothing herein shall supersede or modify</member>
6698 <member> the terms of any separate license agreement you may have executed</member>
6699 <member> with Licensor regarding such Contributions.</member>
6700 <member>&#160;</member>
6701 <member> 6. Trademarks. This License does not grant permission to use the trade</member>
6702 <member> names, trademarks, service marks, or product names of the Licensor,</member>
6703 <member> except as required for reasonable and customary use in describing the</member>
6704 <member> origin of the Work and reproducing the content of the NOTICE file.</member>
6705 <member>&#160;</member>
6706 <member> 7. Disclaimer of Warranty. Unless required by applicable law or</member>
6707 <member> agreed to in writing, Licensor provides the Work (and each</member>
6708 <member> Contributor provides its Contributions) on an "AS IS" BASIS,</member>
6709 <member> WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or</member>
6710 <member> implied, including, without limitation, any warranties or conditions</member>
6711 <member> of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A</member>
6712 <member> PARTICULAR PURPOSE. You are solely responsible for determining the</member>
6713 <member> appropriateness of using or redistributing the Work and assume any</member>
6714 <member> risks associated with Your exercise of permissions under this License.</member>
6715 <member>&#160;</member>
6716 <member> 8. Limitation of Liability. In no event and under no legal theory,</member>
6717 <member> whether in tort (including negligence), contract, or otherwise,</member>
6718 <member> unless required by applicable law (such as deliberate and grossly</member>
6719 <member> negligent acts) or agreed to in writing, shall any Contributor be</member>
6720 <member> liable to You for damages, including any direct, indirect, special,</member>
6721 <member> incidental, or consequential damages of any character arising as a</member>
6722 <member> result of this License or out of the use or inability to use the</member>
6723 <member> Work (including but not limited to damages for loss of goodwill,</member>
6724 <member> work stoppage, computer failure or malfunction, or any and all</member>
6725 <member> other commercial damages or losses), even if such Contributor</member>
6726 <member> has been advised of the possibility of such damages.</member>
6727 <member>&#160;</member>
6728 <member> 9. Accepting Warranty or Additional Liability. While redistributing</member>
6729 <member> the Work or Derivative Works thereof, You may choose to offer,</member>
6730 <member> and charge a fee for, acceptance of support, warranty, indemnity,</member>
6731 <member> or other liability obligations and/or rights consistent with this</member>
6732 <member> License. However, in accepting such obligations, You may act only</member>
6733 <member> on Your own behalf and on Your sole responsibility, not on behalf</member>
6734 <member> of any other Contributor, and only if You agree to indemnify,</member>
6735 <member> defend, and hold each Contributor harmless for any liability</member>
6736 <member> incurred by, or claims asserted against, such Contributor by reason</member>
6737 <member> of your accepting any such warranty or additional liability.</member>
6738 <member>&#160;</member>
6739 <member> END OF TERMS AND CONDITIONS</member>
6740 <member>&#160;</member>
6741 <member>=========================================================================</member>
6742 <member>&#160;</member>
6743 <member>This project contains annotations in the package org.apache.http.annotation</member>
6744 <member>which are derived from JCIP-ANNOTATIONS</member>
6745 <member>Copyright (c) 2005 Brian Goetz and Tim Peierls.</member>
6746 <member>See http://www.jcip.net and the Creative Commons Attribution License</member>
6747 <member>(http://creativecommons.org/licenses/by/2.5)</member>
6748 <member>Full text: http://creativecommons.org/licenses/by/2.5/legalcode</member>
6749 <member>&#160;</member>
6750 <member>License</member>
6751 <member>&#160;</member>
6752 <member>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.</member>
6753 <member>&#160;</member>
6754 <member>BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS.</member>
6755 <member>&#160;</member>
6756 <member>1. Definitions</member>
6757 <member>&#160;</member>
6758 <member> "Collective Work" means a work, such as a periodical issue, anthology or encyclopedia, in which the Work in its entirety in unmodified form, along with a number of other contributions, constituting separate and independent works in themselves, are assembled into a collective whole. A work that constitutes a Collective Work will not be considered a Derivative Work (as defined below) for the purposes of this License.</member>
6759 <member> "Derivative Work" means a work based upon the Work or upon the Work and other pre-existing works, such as a translation, musical arrangement, dramatization, fictionalization, motion picture version, sound recording, art reproduction, abridgment, condensation, or any other form in which the Work may be recast, transformed, or adapted, except that a work that constitutes a Collective Work will not be considered a Derivative Work for the purpose of this License. For the avoidance of doubt, where the Work is a musical composition or sound recording, the synchronization of the Work in timed-relation with a moving image ("synching") will be considered a Derivative Work for the purpose of this License.</member>
6760 <member> "Licensor" means the individual or entity that offers the Work under the terms of this License.</member>
6761 <member> "Original Author" means the individual or entity who created the Work.</member>
6762 <member> "Work" means the copyrightable work of authorship offered under the terms of this License.</member>
6763 <member> "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.</member>
6764 <member>&#160;</member>
6765 <member>2. Fair Use Rights. Nothing in this license is intended to reduce, limit, or restrict any rights arising from fair use, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws.</member>
6766 <member>&#160;</member>
6767 <member>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:</member>
6768 <member>&#160;</member>
6769 <member> to reproduce the Work, to incorporate the Work into one or more Collective Works, and to reproduce the Work as incorporated in the Collective Works;</member>
6770 <member> to create and reproduce Derivative Works;</member>
6771 <member> to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission the Work including as incorporated in Collective Works;</member>
6772 <member> to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission Derivative Works.</member>
6773 <member>&#160;</member>
6774 <member> For the avoidance of doubt, where the work is a musical composition:</member>
6775 <member> Performance Royalties Under Blanket Licenses. Licensor waives the exclusive right to collect, whether individually or via a performance rights society (e.g. ASCAP, BMI, SESAC), royalties for the public performance or public digital performance (e.g. webcast) of the Work.</member>
6776 <member> Mechanical Rights and Statutory Royalties. Licensor waives the exclusive right to collect, whether individually or via a music rights agency or designated agent (e.g. Harry Fox Agency), royalties for any phonorecord You create from the Work ("cover version") and distribute, subject to the compulsory license created by 17 USC Section 115 of the US Copyright Act (or the equivalent in other jurisdictions).</member>
6777 <member> Webcasting Rights and Statutory Royalties. For the avoidance of doubt, where the Work is a sound recording, Licensor waives the exclusive right to collect, whether individually or via a performance-rights society (e.g. SoundExchange), royalties for the public digital performance (e.g. webcast) of the Work, subject to the compulsory license created by 17 USC Section 114 of the US Copyright Act (or the equivalent in other jurisdictions).</member>
6778 <member>&#160;</member>
6779 <member>The above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. All rights not expressly granted by Licensor are hereby reserved.</member>
6780 <member>&#160;</member>
6781 <member>4. Restrictions.The license granted in Section 3 above is expressly made subject to and limited by the following restrictions:</member>
6782 <member>&#160;</member>
6783 <member> You may distribute, publicly display, publicly perform, or publicly digitally perform the Work only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy or phonorecord of the Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute, publicly display, publicly perform, or publicly digitally perform the Work with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License Agreement. The above applies to the Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Work itself to be made subject to the terms of this License. If You create a Collective Work, upon notice from any Licensor You must, to the extent practicable, remove from the Collective Work any credit as required by clause 4(b), as requested. If You create a Derivative Work, upon notice from any Licensor You must, to the extent practicable, remove from the Derivative Work any credit as required by clause 4(b), as requested.</member>
6784 <member> If you distribute, publicly display, publicly perform, or publicly digitally perform the Work or any Derivative Works or Collective Works, You must 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 (ii) if the Original Author and/or Licensor designate another party or parties (e.g. a sponsor institute, publishing entity, journal) for attribution in Licensor's copyright notice, terms of service or by other reasonable means, the name of such party or parties; the title of the Work if supplied; to the extent reasonably practicable, the Uniform Resource Identifier, 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 in the case of a Derivative Work, a credit identifying the use of the Work in the Derivative Work (e.g., "French translation of the Work by Original Author," or "Screenplay based on original Work by Original Author"). Such credit may be implemented in any reasonable manner; provided, however, that in the case of a Derivative Work or Collective Work, at a minimum such credit will appear where any other comparable authorship credit appears and in a manner at least as prominent as such other comparable authorship credit.</member>
6785 <member>&#160;</member>
6786 <member>5. Representations, Warranties and Disclaimer</member>
6787 <member>&#160;</member>
6788 <member>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.</member>
6789 <member>&#160;</member>
6790 <member>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.</member>
6791 <member>&#160;</member>
6792 <member>7. Termination</member>
6793 <member>&#160;</member>
6794 <member> This License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Derivative Works or Collective Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License.</member>
6795 <member> 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.</member>
6796 <member>&#160;</member>
6797 <member>8. Miscellaneous</member>
6798 <member>&#160;</member>
6799 <member> Each time You distribute or publicly digitally perform the Work or a Collective Work, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License.</member>
6800 <member> Each time You distribute or publicly digitally perform a Derivative Work, Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License.</member>
6801 <member> 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.</member>
6802 <member> 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.</member>
6803 <member> 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.</member>
6804 </simplelist>
6805 </section>
6806 </section>
6807 <section id="enea-linux-eclipse-open-source-licenses-61">
6808 <title>License 61</title>
6809 <section>
6810 <title>Source File(s)</title>
6811 <itemizedlist spacing="compact">
6812 <listitem>
6813 <para>
6814 plugins/extracted_jars/org.eclipse.swt.gtk.linux.x86_64.source_3.104.0.v20150528-0211/about_files/lgpl-v21.txt
6815 </para>
6816 </listitem>
6817 <listitem>
6818 <para>
6819 plugins/extracted_jars/org.eclipse.swt.gtk.linux.x86_64_3.104.0.v20150528-0211/about_files/lgpl-v21.txt
6820 </para>
6821 </listitem>
6822 </itemizedlist>
6823 </section>
6824 <section>
6825 <title>License Text</title>
6826 <simplelist>
6827 <member> GNU LESSER GENERAL PUBLIC LICENSE</member>
6828 <member> Version 2.1, February 1999</member>
6829 <member>&#160;</member>
6830 <member> Copyright (C) 1991, 1999 Free Software Foundation, Inc.</member>
6831 <member> 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA</member>
6832 <member> Everyone is permitted to copy and distribute verbatim copies</member>
6833 <member> of this license document, but changing it is not allowed.</member>
6834 <member>&#160;</member>
6835 <member>[This is the first released version of the Lesser GPL. It also counts</member>
6836 <member> as the successor of the GNU Library Public License, version 2, hence</member>
6837 <member> the version number 2.1.]</member>
6838 <member>&#160;</member>
6839 <member> Preamble</member>
6840 <member>&#160;</member>
6841 <member> The licenses for most software are designed to take away your</member>
6842 <member>freedom to share and change it. By contrast, the GNU General Public</member>
6843 <member>Licenses are intended to guarantee your freedom to share and change</member>
6844 <member>free software--to make sure the software is free for all its users.</member>
6845 <member>&#160;</member>
6846 <member> This license, the Lesser General Public License, applies to some</member>
6847 <member>specially designated software packages--typically libraries--of the</member>
6848 <member>Free Software Foundation and other authors who decide to use it. You</member>
6849 <member>can use it too, but we suggest you first think carefully about whether</member>
6850 <member>this license or the ordinary General Public License is the better</member>
6851 <member>strategy to use in any particular case, based on the explanations below.</member>
6852 <member>&#160;</member>
6853 <member> When we speak of free software, we are referring to freedom of use,</member>
6854 <member>not price. Our General Public Licenses are designed to make sure that</member>
6855 <member>you have the freedom to distribute copies of free software (and charge</member>
6856 <member>for this service if you wish); that you receive source code or can get</member>
6857 <member>it if you want it; that you can change the software and use pieces of</member>
6858 <member>it in new free programs; and that you are informed that you can do</member>
6859 <member>these things.</member>
6860 <member>&#160;</member>
6861 <member> To protect your rights, we need to make restrictions that forbid</member>
6862 <member>distributors to deny you these rights or to ask you to surrender these</member>
6863 <member>rights. These restrictions translate to certain responsibilities for</member>
6864 <member>you if you distribute copies of the library or if you modify it.</member>
6865 <member>&#160;</member>
6866 <member> For example, if you distribute copies of the library, whether gratis</member>
6867 <member>or for a fee, you must give the recipients all the rights that we gave</member>
6868 <member>you. You must make sure that they, too, receive or can get the source</member>
6869 <member>code. If you link other code with the library, you must provide</member>
6870 <member>complete object files to the recipients, so that they can relink them</member>
6871 <member>with the library after making changes to the library and recompiling</member>
6872 <member>it. And you must show them these terms so they know their rights.</member>
6873 <member>&#160;</member>
6874 <member> We protect your rights with a two-step method: (1) we copyright the</member>
6875 <member>library, and (2) we offer you this license, which gives you legal</member>
6876 <member>permission to copy, distribute and/or modify the library.</member>
6877 <member>&#160;</member>
6878 <member> To protect each distributor, we want to make it very clear that</member>
6879 <member>there is no warranty for the free library. Also, if the library is</member>
6880 <member>modified by someone else and passed on, the recipients should know</member>
6881 <member>that what they have is not the original version, so that the original</member>
6882 <member>author's reputation will not be affected by problems that might be</member>
6883 <member>introduced by others.</member>
6884 <member></member>
6885 <member> Finally, software patents pose a constant threat to the existence of</member>
6886 <member>any free program. We wish to make sure that a company cannot</member>
6887 <member>effectively restrict the users of a free program by obtaining a</member>
6888 <member>restrictive license from a patent holder. Therefore, we insist that</member>
6889 <member>any patent license obtained for a version of the library must be</member>
6890 <member>consistent with the full freedom of use specified in this license.</member>
6891 <member>&#160;</member>
6892 <member> Most GNU software, including some libraries, is covered by the</member>
6893 <member>ordinary GNU General Public License. This license, the GNU Lesser</member>
6894 <member>General Public License, applies to certain designated libraries, and</member>
6895 <member>is quite different from the ordinary General Public License. We use</member>
6896 <member>this license for certain libraries in order to permit linking those</member>
6897 <member>libraries into non-free programs.</member>
6898 <member>&#160;</member>
6899 <member> When a program is linked with a library, whether statically or using</member>
6900 <member>a shared library, the combination of the two is legally speaking a</member>
6901 <member>combined work, a derivative of the original library. The ordinary</member>
6902 <member>General Public License therefore permits such linking only if the</member>
6903 <member>entire combination fits its criteria of freedom. The Lesser General</member>
6904 <member>Public License permits more lax criteria for linking other code with</member>
6905 <member>the library.</member>
6906 <member>&#160;</member>
6907 <member> We call this license the "Lesser" General Public License because it</member>
6908 <member>does Less to protect the user's freedom than the ordinary General</member>
6909 <member>Public License. It also provides other free software developers Less</member>
6910 <member>of an advantage over competing non-free programs. These disadvantages</member>
6911 <member>are the reason we use the ordinary General Public License for many</member>
6912 <member>libraries. However, the Lesser license provides advantages in certain</member>
6913 <member>special circumstances.</member>
6914 <member>&#160;</member>
6915 <member> For example, on rare occasions, there may be a special need to</member>
6916 <member>encourage the widest possible use of a certain library, so that it becomes</member>
6917 <member>a de-facto standard. To achieve this, non-free programs must be</member>
6918 <member>allowed to use the library. A more frequent case is that a free</member>
6919 <member>library does the same job as widely used non-free libraries. In this</member>
6920 <member>case, there is little to gain by limiting the free library to free</member>
6921 <member>software only, so we use the Lesser General Public License.</member>
6922 <member>&#160;</member>
6923 <member> In other cases, permission to use a particular library in non-free</member>
6924 <member>programs enables a greater number of people to use a large body of</member>
6925 <member>free software. For example, permission to use the GNU C Library in</member>
6926 <member>non-free programs enables many more people to use the whole GNU</member>
6927 <member>operating system, as well as its variant, the GNU/Linux operating</member>
6928 <member>system.</member>
6929 <member>&#160;</member>
6930 <member> Although the Lesser General Public License is Less protective of the</member>
6931 <member>users' freedom, it does ensure that the user of a program that is</member>
6932 <member>linked with the Library has the freedom and the wherewithal to run</member>
6933 <member>that program using a modified version of the Library.</member>
6934 <member>&#160;</member>
6935 <member> The precise terms and conditions for copying, distribution and</member>
6936 <member>modification follow. Pay close attention to the difference between a</member>
6937 <member>"work based on the library" and a "work that uses the library". The</member>
6938 <member>former contains code derived from the library, whereas the latter must</member>
6939 <member>be combined with the library in order to run.</member>
6940 <member></member>
6941 <member> GNU LESSER GENERAL PUBLIC LICENSE</member>
6942 <member> TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION</member>
6943 <member>&#160;</member>
6944 <member> 0. This License Agreement applies to any software library or other</member>
6945 <member>program which contains a notice placed by the copyright holder or</member>
6946 <member>other authorized party saying it may be distributed under the terms of</member>
6947 <member>this Lesser General Public License (also called "this License").</member>
6948 <member>Each licensee is addressed as "you".</member>
6949 <member>&#160;</member>
6950 <member> A "library" means a collection of software functions and/or data</member>
6951 <member>prepared so as to be conveniently linked with application programs</member>
6952 <member>(which use some of those functions and data) to form executables.</member>
6953 <member>&#160;</member>
6954 <member> The "Library", below, refers to any such software library or work</member>
6955 <member>which has been distributed under these terms. A "work based on the</member>
6956 <member>Library" means either the Library or any derivative work under</member>
6957 <member>copyright law: that is to say, a work containing the Library or a</member>
6958 <member>portion of it, either verbatim or with modifications and/or translated</member>
6959 <member>straightforwardly into another language. (Hereinafter, translation is</member>
6960 <member>included without limitation in the term "modification".)</member>
6961 <member>&#160;</member>
6962 <member> "Source code" for a work means the preferred form of the work for</member>
6963 <member>making modifications to it. For a library, complete source code means</member>
6964 <member>all the source code for all modules it contains, plus any associated</member>
6965 <member>interface definition files, plus the scripts used to control compilation</member>
6966 <member>and installation of the library.</member>
6967 <member>&#160;</member>
6968 <member> Activities other than copying, distribution and modification are not</member>
6969 <member>covered by this License; they are outside its scope. The act of</member>
6970 <member>running a program using the Library is not restricted, and output from</member>
6971 <member>such a program is covered only if its contents constitute a work based</member>
6972 <member>on the Library (independent of the use of the Library in a tool for</member>
6973 <member>writing it). Whether that is true depends on what the Library does</member>
6974 <member>and what the program that uses the Library does.</member>
6975 <member> </member>
6976 <member> 1. You may copy and distribute verbatim copies of the Library's</member>
6977 <member>complete source code as you receive it, in any medium, provided that</member>
6978 <member>you conspicuously and appropriately publish on each copy an</member>
6979 <member>appropriate copyright notice and disclaimer of warranty; keep intact</member>
6980 <member>all the notices that refer to this License and to the absence of any</member>
6981 <member>warranty; and distribute a copy of this License along with the</member>
6982 <member>Library.</member>
6983 <member>&#160;</member>
6984 <member> You may charge a fee for the physical act of transferring a copy,</member>
6985 <member>and you may at your option offer warranty protection in exchange for a</member>
6986 <member>fee.</member>
6987 <member></member>
6988 <member> 2. You may modify your copy or copies of the Library or any portion</member>
6989 <member>of it, thus forming a work based on the Library, and copy and</member>
6990 <member>distribute such modifications or work under the terms of Section 1</member>
6991 <member>above, provided that you also meet all of these conditions:</member>
6992 <member>&#160;</member>
6993 <member> a) The modified work must itself be a software library.</member>
6994 <member>&#160;</member>
6995 <member> b) You must cause the files modified to carry prominent notices</member>
6996 <member> stating that you changed the files and the date of any change.</member>
6997 <member>&#160;</member>
6998 <member> c) You must cause the whole of the work to be licensed at no</member>
6999 <member> charge to all third parties under the terms of this License.</member>
7000 <member>&#160;</member>
7001 <member> d) If a facility in the modified Library refers to a function or a</member>
7002 <member> table of data to be supplied by an application program that uses</member>
7003 <member> the facility, other than as an argument passed when the facility</member>
7004 <member> is invoked, then you must make a good faith effort to ensure that,</member>
7005 <member> in the event an application does not supply such function or</member>
7006 <member> table, the facility still operates, and performs whatever part of</member>
7007 <member> its purpose remains meaningful.</member>
7008 <member>&#160;</member>
7009 <member> (For example, a function in a library to compute square roots has</member>
7010 <member> a purpose that is entirely well-defined independent of the</member>
7011 <member> application. Therefore, Subsection 2d requires that any</member>
7012 <member> application-supplied function or table used by this function must</member>
7013 <member> be optional: if the application does not supply it, the square</member>
7014 <member> root function must still compute square roots.)</member>
7015 <member>&#160;</member>
7016 <member>These requirements apply to the modified work as a whole. If</member>
7017 <member>identifiable sections of that work are not derived from the Library,</member>
7018 <member>and can be reasonably considered independent and separate works in</member>
7019 <member>themselves, then this License, and its terms, do not apply to those</member>
7020 <member>sections when you distribute them as separate works. But when you</member>
7021 <member>distribute the same sections as part of a whole which is a work based</member>
7022 <member>on the Library, the distribution of the whole must be on the terms of</member>
7023 <member>this License, whose permissions for other licensees extend to the</member>
7024 <member>entire whole, and thus to each and every part regardless of who wrote</member>
7025 <member>it.</member>
7026 <member>&#160;</member>
7027 <member>Thus, it is not the intent of this section to claim rights or contest</member>
7028 <member>your rights to work written entirely by you; rather, the intent is to</member>
7029 <member>exercise the right to control the distribution of derivative or</member>
7030 <member>collective works based on the Library.</member>
7031 <member>&#160;</member>
7032 <member>In addition, mere aggregation of another work not based on the Library</member>
7033 <member>with the Library (or with a work based on the Library) on a volume of</member>
7034 <member>a storage or distribution medium does not bring the other work under</member>
7035 <member>the scope of this License.</member>
7036 <member>&#160;</member>
7037 <member> 3. You may opt to apply the terms of the ordinary GNU General Public</member>
7038 <member>License instead of this License to a given copy of the Library. To do</member>
7039 <member>this, you must alter all the notices that refer to this License, so</member>
7040 <member>that they refer to the ordinary GNU General Public License, version 2,</member>
7041 <member>instead of to this License. (If a newer version than version 2 of the</member>
7042 <member>ordinary GNU General Public License has appeared, then you can specify</member>
7043 <member>that version instead if you wish.) Do not make any other change in</member>
7044 <member>these notices.</member>
7045 <member></member>
7046 <member> Once this change is made in a given copy, it is irreversible for</member>
7047 <member>that copy, so the ordinary GNU General Public License applies to all</member>
7048 <member>subsequent copies and derivative works made from that copy.</member>
7049 <member>&#160;</member>
7050 <member> This option is useful when you wish to copy part of the code of</member>
7051 <member>the Library into a program that is not a library.</member>
7052 <member>&#160;</member>
7053 <member> 4. You may copy and distribute the Library (or a portion or</member>
7054 <member>derivative of it, under Section 2) in object code or executable form</member>
7055 <member>under the terms of Sections 1 and 2 above provided that you accompany</member>
7056 <member>it with the complete corresponding machine-readable source code, which</member>
7057 <member>must be distributed under the terms of Sections 1 and 2 above on a</member>
7058 <member>medium customarily used for software interchange.</member>
7059 <member>&#160;</member>
7060 <member> If distribution of object code is made by offering access to copy</member>
7061 <member>from a designated place, then offering equivalent access to copy the</member>
7062 <member>source code from the same place satisfies the requirement to</member>
7063 <member>distribute the source code, even though third parties are not</member>
7064 <member>compelled to copy the source along with the object code.</member>
7065 <member>&#160;</member>
7066 <member> 5. A program that contains no derivative of any portion of the</member>
7067 <member>Library, but is designed to work with the Library by being compiled or</member>
7068 <member>linked with it, is called a "work that uses the Library". Such a</member>
7069 <member>work, in isolation, is not a derivative work of the Library, and</member>
7070 <member>therefore falls outside the scope of this License.</member>
7071 <member>&#160;</member>
7072 <member> However, linking a "work that uses the Library" with the Library</member>
7073 <member>creates an executable that is a derivative of the Library (because it</member>
7074 <member>contains portions of the Library), rather than a "work that uses the</member>
7075 <member>library". The executable is therefore covered by this License.</member>
7076 <member>Section 6 states terms for distribution of such executables.</member>
7077 <member>&#160;</member>
7078 <member> When a "work that uses the Library" uses material from a header file</member>
7079 <member>that is part of the Library, the object code for the work may be a</member>
7080 <member>derivative work of the Library even though the source code is not.</member>
7081 <member>Whether this is true is especially significant if the work can be</member>
7082 <member>linked without the Library, or if the work is itself a library. The</member>
7083 <member>threshold for this to be true is not precisely defined by law.</member>
7084 <member>&#160;</member>
7085 <member> If such an object file uses only numerical parameters, data</member>
7086 <member>structure layouts and accessors, and small macros and small inline</member>
7087 <member>functions (ten lines or less in length), then the use of the object</member>
7088 <member>file is unrestricted, regardless of whether it is legally a derivative</member>
7089 <member>work. (Executables containing this object code plus portions of the</member>
7090 <member>Library will still fall under Section 6.)</member>
7091 <member>&#160;</member>
7092 <member> Otherwise, if the work is a derivative of the Library, you may</member>
7093 <member>distribute the object code for the work under the terms of Section 6.</member>
7094 <member>Any executables containing that work also fall under Section 6,</member>
7095 <member>whether or not they are linked directly with the Library itself.</member>
7096 <member></member>
7097 <member> 6. As an exception to the Sections above, you may also combine or</member>
7098 <member>link a "work that uses the Library" with the Library to produce a</member>
7099 <member>work containing portions of the Library, and distribute that work</member>
7100 <member>under terms of your choice, provided that the terms permit</member>
7101 <member>modification of the work for the customer's own use and reverse</member>
7102 <member>engineering for debugging such modifications.</member>
7103 <member>&#160;</member>
7104 <member> You must give prominent notice with each copy of the work that the</member>
7105 <member>Library is used in it and that the Library and its use are covered by</member>
7106 <member>this License. You must supply a copy of this License. If the work</member>
7107 <member>during execution displays copyright notices, you must include the</member>
7108 <member>copyright notice for the Library among them, as well as a reference</member>
7109 <member>directing the user to the copy of this License. Also, you must do one</member>
7110 <member>of these things:</member>
7111 <member>&#160;</member>
7112 <member> a) Accompany the work with the complete corresponding</member>
7113 <member> machine-readable source code for the Library including whatever</member>
7114 <member> changes were used in the work (which must be distributed under</member>
7115 <member> Sections 1 and 2 above); and, if the work is an executable linked</member>
7116 <member> with the Library, with the complete machine-readable "work that</member>
7117 <member> uses the Library", as object code and/or source code, so that the</member>
7118 <member> user can modify the Library and then relink to produce a modified</member>
7119 <member> executable containing the modified Library. (It is understood</member>
7120 <member> that the user who changes the contents of definitions files in the</member>
7121 <member> Library will not necessarily be able to recompile the application</member>
7122 <member> to use the modified definitions.)</member>
7123 <member>&#160;</member>
7124 <member> b) Use a suitable shared library mechanism for linking with the</member>
7125 <member> Library. A suitable mechanism is one that (1) uses at run time a</member>
7126 <member> copy of the library already present on the user's computer system,</member>
7127 <member> rather than copying library functions into the executable, and (2)</member>
7128 <member> will operate properly with a modified version of the library, if</member>
7129 <member> the user installs one, as long as the modified version is</member>
7130 <member> interface-compatible with the version that the work was made with.</member>
7131 <member>&#160;</member>
7132 <member> c) Accompany the work with a written offer, valid for at</member>
7133 <member> least three years, to give the same user the materials</member>
7134 <member> specified in Subsection 6a, above, for a charge no more</member>
7135 <member> than the cost of performing this distribution.</member>
7136 <member>&#160;</member>
7137 <member> d) If distribution of the work is made by offering access to copy</member>
7138 <member> from a designated place, offer equivalent access to copy the above</member>
7139 <member> specified materials from the same place.</member>
7140 <member>&#160;</member>
7141 <member> e) Verify that the user has already received a copy of these</member>
7142 <member> materials or that you have already sent this user a copy.</member>
7143 <member>&#160;</member>
7144 <member> For an executable, the required form of the "work that uses the</member>
7145 <member>Library" must include any data and utility programs needed for</member>
7146 <member>reproducing the executable from it. However, as a special exception,</member>
7147 <member>the materials to be distributed need not include anything that is</member>
7148 <member>normally distributed (in either source or binary form) with the major</member>
7149 <member>components (compiler, kernel, and so on) of the operating system on</member>
7150 <member>which the executable runs, unless that component itself accompanies</member>
7151 <member>the executable.</member>
7152 <member>&#160;</member>
7153 <member> It may happen that this requirement contradicts the license</member>
7154 <member>restrictions of other proprietary libraries that do not normally</member>
7155 <member>accompany the operating system. Such a contradiction means you cannot</member>
7156 <member>use both them and the Library together in an executable that you</member>
7157 <member>distribute.</member>
7158 <member></member>
7159 <member> 7. You may place library facilities that are a work based on the</member>
7160 <member>Library side-by-side in a single library together with other library</member>
7161 <member>facilities not covered by this License, and distribute such a combined</member>
7162 <member>library, provided that the separate distribution of the work based on</member>
7163 <member>the Library and of the other library facilities is otherwise</member>
7164 <member>permitted, and provided that you do these two things:</member>
7165 <member>&#160;</member>
7166 <member> a) Accompany the combined library with a copy of the same work</member>
7167 <member> based on the Library, uncombined with any other library</member>
7168 <member> facilities. This must be distributed under the terms of the</member>
7169 <member> Sections above.</member>
7170 <member>&#160;</member>
7171 <member> b) Give prominent notice with the combined library of the fact</member>
7172 <member> that part of it is a work based on the Library, and explaining</member>
7173 <member> where to find the accompanying uncombined form of the same work.</member>
7174 <member>&#160;</member>
7175 <member> 8. You may not copy, modify, sublicense, link with, or distribute</member>
7176 <member>the Library except as expressly provided under this License. Any</member>
7177 <member>attempt otherwise to copy, modify, sublicense, link with, or</member>
7178 <member>distribute the Library is void, and will automatically terminate your</member>
7179 <member>rights under this License. However, parties who have received copies,</member>
7180 <member>or rights, from you under this License will not have their licenses</member>
7181 <member>terminated so long as such parties remain in full compliance.</member>
7182 <member>&#160;</member>
7183 <member> 9. You are not required to accept this License, since you have not</member>
7184 <member>signed it. However, nothing else grants you permission to modify or</member>
7185 <member>distribute the Library or its derivative works. These actions are</member>
7186 <member>prohibited by law if you do not accept this License. Therefore, by</member>
7187 <member>modifying or distributing the Library (or any work based on the</member>
7188 <member>Library), you indicate your acceptance of this License to do so, and</member>
7189 <member>all its terms and conditions for copying, distributing or modifying</member>
7190 <member>the Library or works based on it.</member>
7191 <member>&#160;</member>
7192 <member> 10. Each time you redistribute the Library (or any work based on the</member>
7193 <member>Library), the recipient automatically receives a license from the</member>
7194 <member>original licensor to copy, distribute, link with or modify the Library</member>
7195 <member>subject to these terms and conditions. You may not impose any further</member>
7196 <member>restrictions on the recipients' exercise of the rights granted herein.</member>
7197 <member>You are not responsible for enforcing compliance by third parties with</member>
7198 <member>this License.</member>
7199 <member></member>
7200 <member> 11. If, as a consequence of a court judgment or allegation of patent</member>
7201 <member>infringement or for any other reason (not limited to patent issues),</member>
7202 <member>conditions are imposed on you (whether by court order, agreement or</member>
7203 <member>otherwise) that contradict the conditions of this License, they do not</member>
7204 <member>excuse you from the conditions of this License. If you cannot</member>
7205 <member>distribute so as to satisfy simultaneously your obligations under this</member>
7206 <member>License and any other pertinent obligations, then as a consequence you</member>
7207 <member>may not distribute the Library at all. For example, if a patent</member>
7208 <member>license would not permit royalty-free redistribution of the Library by</member>
7209 <member>all those who receive copies directly or indirectly through you, then</member>
7210 <member>the only way you could satisfy both it and this License would be to</member>
7211 <member>refrain entirely from distribution of the Library.</member>
7212 <member>&#160;</member>
7213 <member>If any portion of this section is held invalid or unenforceable under any</member>
7214 <member>particular circumstance, the balance of the section is intended to apply,</member>
7215 <member>and the section as a whole is intended to apply in other circumstances.</member>
7216 <member>&#160;</member>
7217 <member>It is not the purpose of this section to induce you to infringe any</member>
7218 <member>patents or other property right claims or to contest validity of any</member>
7219 <member>such claims; this section has the sole purpose of protecting the</member>
7220 <member>integrity of the free software distribution system which is</member>
7221 <member>implemented by public license practices. Many people have made</member>
7222 <member>generous contributions to the wide range of software distributed</member>
7223 <member>through that system in reliance on consistent application of that</member>
7224 <member>system; it is up to the author/donor to decide if he or she is willing</member>
7225 <member>to distribute software through any other system and a licensee cannot</member>
7226 <member>impose that choice.</member>
7227 <member>&#160;</member>
7228 <member>This section is intended to make thoroughly clear what is believed to</member>
7229 <member>be a consequence of the rest of this License.</member>
7230 <member>&#160;</member>
7231 <member> 12. If the distribution and/or use of the Library is restricted in</member>
7232 <member>certain countries either by patents or by copyrighted interfaces, the</member>
7233 <member>original copyright holder who places the Library under this License may add</member>
7234 <member>an explicit geographical distribution limitation excluding those countries,</member>
7235 <member>so that distribution is permitted only in or among countries not thus</member>
7236 <member>excluded. In such case, this License incorporates the limitation as if</member>
7237 <member>written in the body of this License.</member>
7238 <member>&#160;</member>
7239 <member> 13. The Free Software Foundation may publish revised and/or new</member>
7240 <member>versions of the Lesser General Public License from time to time.</member>
7241 <member>Such new versions will be similar in spirit to the present version,</member>
7242 <member>but may differ in detail to address new problems or concerns.</member>
7243 <member>&#160;</member>
7244 <member>Each version is given a distinguishing version number. If the Library</member>
7245 <member>specifies a version number of this License which applies to it and</member>
7246 <member>"any later version", you have the option of following the terms and</member>
7247 <member>conditions either of that version or of any later version published by</member>
7248 <member>the Free Software Foundation. If the Library does not specify a</member>
7249 <member>license version number, you may choose any version ever published by</member>
7250 <member>the Free Software Foundation.</member>
7251 <member></member>
7252 <member> 14. If you wish to incorporate parts of the Library into other free</member>
7253 <member>programs whose distribution conditions are incompatible with these,</member>
7254 <member>write to the author to ask for permission. For software which is</member>
7255 <member>copyrighted by the Free Software Foundation, write to the Free</member>
7256 <member>Software Foundation; we sometimes make exceptions for this. Our</member>
7257 <member>decision will be guided by the two goals of preserving the free status</member>
7258 <member>of all derivatives of our free software and of promoting the sharing</member>
7259 <member>and reuse of software generally.</member>
7260 <member>&#160;</member>
7261 <member> NO WARRANTY</member>
7262 <member>&#160;</member>
7263 <member> 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO</member>
7264 <member>WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.</member>
7265 <member>EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR</member>
7266 <member>OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY</member>
7267 <member>KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE</member>
7268 <member>IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR</member>
7269 <member>PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE</member>
7270 <member>LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME</member>
7271 <member>THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.</member>
7272 <member>&#160;</member>
7273 <member> 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN</member>
7274 <member>WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY</member>
7275 <member>AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU</member>
7276 <member>FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR</member>
7277 <member>CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE</member>
7278 <member>LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING</member>
7279 <member>RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A</member>
7280 <member>FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF</member>
7281 <member>SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH</member>
7282 <member>DAMAGES.</member>
7283 <member>&#160;</member>
7284 <member> END OF TERMS AND CONDITIONS</member>
7285 <member></member>
7286 <member> How to Apply These Terms to Your New Libraries</member>
7287 <member>&#160;</member>
7288 <member> If you develop a new library, and you want it to be of the greatest</member>
7289 <member>possible use to the public, we recommend making it free software that</member>
7290 <member>everyone can redistribute and change. You can do so by permitting</member>
7291 <member>redistribution under these terms (or, alternatively, under the terms of the</member>
7292 <member>ordinary General Public License).</member>
7293 <member>&#160;</member>
7294 <member> To apply these terms, attach the following notices to the library. It is</member>
7295 <member>safest to attach them to the start of each source file to most effectively</member>
7296 <member>convey the exclusion of warranty; and each file should have at least the</member>
7297 <member>"copyright" line and a pointer to where the full notice is found.</member>
7298 <member>&#160;</member>
7299 <member> &lt;one line to give the library's name and a brief idea of what it does.&gt;</member>
7300 <member> Copyright (C) &lt;year&gt; &lt;name of author&gt;</member>
7301 <member>&#160;</member>
7302 <member> This library is free software; you can redistribute it and/or</member>
7303 <member> modify it under the terms of the GNU Lesser General Public</member>
7304 <member> License as published by the Free Software Foundation; either</member>
7305 <member> version 2.1 of the License, or (at your option) any later version.</member>
7306 <member>&#160;</member>
7307 <member> This library is distributed in the hope that it will be useful,</member>
7308 <member> but WITHOUT ANY WARRANTY; without even the implied warranty of</member>
7309 <member> MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU</member>
7310 <member> Lesser General Public License for more details.</member>
7311 <member>&#160;</member>
7312 <member> You should have received a copy of the GNU Lesser General Public</member>
7313 <member> License along with this library; if not, write to the Free Software</member>
7314 <member> Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA</member>
7315 <member>&#160;</member>
7316 <member>Also add information on how to contact you by electronic and paper mail.</member>
7317 <member>&#160;</member>
7318 <member>You should also get your employer (if you work as a programmer) or your</member>
7319 <member>school, if any, to sign a "copyright disclaimer" for the library, if</member>
7320 <member>necessary. Here is a sample; alter the names:</member>
7321 <member>&#160;</member>
7322 <member> Yoyodyne, Inc., hereby disclaims all copyright interest in the</member>
7323 <member> library `Frob' (a library for tweaking knobs) written by James Random Hacker.</member>
7324 <member>&#160;</member>
7325 <member> &lt;signature of Ty Coon&gt;, 1 April 1990</member>
7326 <member> Ty Coon, President of Vice</member>
7327 <member>&#160;</member>
7328 <member>That's all there is to it!</member>
7329 </simplelist>
7330 </section>
7331 </section>
7332 <section id="enea-linux-eclipse-open-source-licenses-62">
7333 <title>License 62</title>
7334 <section>
7335 <title>Source File(s)</title>
7336 <itemizedlist spacing="compact">
7337 <listitem>
7338 <para>
7339 plugins/extracted_jars/com.ibm.icu.source_54.1.1.v201501272100/about_files/license.html
7340 </para>
7341 </listitem>
7342 <listitem>
7343 <para>
7344 plugins/extracted_jars/com.ibm.icu_54.1.1.v201501272100/about_files/license.html
7345 </para>
7346 </listitem>
7347 </itemizedlist>
7348 </section>
7349 <section>
7350 <title>License Text</title>
7351 <simplelist>
7352 <member>## ICU License - ICU 1.8.1 and later</member>
7353 <member>&#160;</member>
7354 <member>COPYRIGHT AND PERMISSION NOTICE</member>
7355 <member>&#160;</member>
7356 <member>Copyright (c) 1995-2014 International Business Machines Corporation and others</member>
7357 <member>&#160;</member>
7358 <member>All rights reserved.</member>
7359 <member>&#160;</member>
7360 <member>Permission is hereby granted, free of charge, to any person obtaining a copy</member>
7361 <member>of this software and associated documentation files (the "Software"), to deal</member>
7362 <member>in the Software without restriction, including without limitation the rights</member>
7363 <member>to use, copy, modify, merge, publish, distribute, and/or sell copies of the</member>
7364 <member>Software, and to permit persons to whom the Software is furnished to do so,</member>
7365 <member>provided that the above copyright notice(s) and this permission notice appear</member>
7366 <member>in all copies of the Software and that both the above copyright notice(s) and</member>
7367 <member>this permission notice appear in supporting documentation.</member>
7368 <member>&#160;</member>
7369 <member>THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR</member>
7370 <member>IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,</member>
7371 <member>FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN</member>
7372 <member>NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE</member>
7373 <member>LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY</member>
7374 <member>DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN</member>
7375 <member>ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN</member>
7376 <member>CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.</member>
7377 <member>&#160;</member>
7378 <member>Except as contained in this notice, the name of a copyright holder shall not</member>
7379 <member>be used in advertising or otherwise to promote the sale, use or other dealings</member>
7380 <member>in this Software without prior written authorization of the copyright holder.</member>
7381 <member>&#160;</member>
7382 <member>* * *</member>
7383 <member>&#160;</member>
7384 <member>All trademarks and registered trademarks mentioned herein are the property of</member>
7385 <member>their respective owners.</member>
7386 <member>&#160;</member>
7387 <member>* * *</member>
7388 <member>&#160;</member>
7389 <member>## Third-Party Software Licenses</member>
7390 <member>&#160;</member>
7391 <member>This section contains third-party software notices and/or additional terms for</member>
7392 <member>licensed third-party software components included within ICU libraries.</member>
7393 <member>&#160;</member>
7394 <member>### 1\. Unicode Data Files and Software</member>
7395 <member>&#160;</member>
7396 <member> </member>
7397 <member> </member>
7398 <member> COPYRIGHT AND PERMISSION NOTICE</member>
7399 <member> </member>
7400 <member> Copyright Â(C) 1991-2014 Unicode, Inc. All rights reserved.</member>
7401 <member> Distributed under the Terms of Use in </member>
7402 <member> &lt;http://www.unicode.org/copyright.html&gt;.</member>
7403 <member> </member>
7404 <member> Permission is hereby granted, free of charge, to any person obtaining</member>
7405 <member> a copy of the Unicode data files and any associated documentation</member>
7406 <member> (the "Data Files") or Unicode software and any associated documentation</member>
7407 <member> (the "Software") to deal in the Data Files or Software</member>
7408 <member> without restriction, including without limitation the rights to use,</member>
7409 <member> copy, modify, merge, publish, distribute, and/or sell copies of</member>
7410 <member> the Data Files or Software, and to permit persons to whom the Data Files</member>
7411 <member> or Software are furnished to do so, provided that</member>
7412 <member> (a) this copyright and permission notice appear with all copies </member>
7413 <member> of the Data Files or Software,</member>
7414 <member> (b) this copyright and permission notice appear in associated </member>
7415 <member> documentation, and</member>
7416 <member> (c) there is clear notice in each modified Data File or in the Software</member>
7417 <member> as well as in the documentation associated with the Data File(s) or</member>
7418 <member> Software that the data or software has been modified.</member>
7419 <member> </member>
7420 <member> THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF</member>
7421 <member> ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE</member>
7422 <member> WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND</member>
7423 <member> NONINFRINGEMENT OF THIRD PARTY RIGHTS.</member>
7424 <member> IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS</member>
7425 <member> NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL</member>
7426 <member> DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,</member>
7427 <member> DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER</member>
7428 <member> TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR</member>
7429 <member> PERFORMANCE OF THE DATA FILES OR SOFTWARE.</member>
7430 <member> </member>
7431 <member> Except as contained in this notice, the name of a copyright holder</member>
7432 <member> shall not be used in advertising or otherwise to promote the sale,</member>
7433 <member> use or other dealings in these Data Files or Software without prior</member>
7434 <member> written authorization of the copyright holder.</member>
7435 <member>&#160;</member>
7436 <member>### 2\. Chinese/Japanese Word Break Dictionary Data (cjdict.txt)</member>
7437 <member>&#160;</member>
7438 <member> </member>
7439 <member> </member>
7440 <member> # The Google Chrome software developed by Google is licensed under the BSD license. Other software included in this distribution is provided under other licenses, as set forth below.</member>
7441 <member> # </member>
7442 <member> # The BSD License</member>
7443 <member> # http://opensource.org/licenses/bsd-license.php </member>
7444 <member> # Copyright (C) 2006-2008, Google Inc.</member>
7445 <member> # </member>
7446 <member> # All rights reserved.</member>
7447 <member> # </member>
7448 <member> # Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:</member>
7449 <member> # </member>
7450 <member> # Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.</member>
7451 <member> # 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.</member>
7452 <member> # Neither the name of Google Inc. nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.</member>
7453 <member> # </member>
7454 <member> # </member>
7455 <member> # 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.</member>
7456 <member> # </member>
7457 <member> # </member>
7458 <member> # The word list in cjdict.txt are generated by combining three word lists listed</member>
7459 <member> # below with further processing for compound word breaking. The frequency is generated</member>
7460 <member> # with an iterative training against Google web corpora. </member>
7461 <member> # </member>
7462 <member> # * Libtabe (Chinese)</member>
7463 <member> # - https://sourceforge.net/project/?group_id=1519</member>
7464 <member> # - Its license terms and conditions are shown below.</member>
7465 <member> # </member>
7466 <member> # * IPADIC (Japanese)</member>
7467 <member> # - http://chasen.aist-nara.ac.jp/chasen/distribution.html</member>
7468 <member> # - Its license terms and conditions are shown below.</member>
7469 <member> # </member>
7470 <member> # ---------COPYING.libtabe ---- BEGIN--------------------</member>
7471 <member> # </member>
7472 <member> # /*</member>
7473 <member> # * Copyrighy (c) 1999 TaBE Project.</member>
7474 <member> # * Copyright (c) 1999 Pai-Hsiang Hsiao.</member>
7475 <member> # * All rights reserved.</member>
7476 <member> # *</member>
7477 <member> # * Redistribution and use in source and binary forms, with or without</member>
7478 <member> # * modification, are permitted provided that the following conditions</member>
7479 <member> # * are met:</member>
7480 <member> # *</member>
7481 <member> # * . Redistributions of source code must retain the above copyright</member>
7482 <member> # * notice, this list of conditions and the following disclaimer.</member>
7483 <member> # * . Redistributions in binary form must reproduce the above copyright</member>
7484 <member> # * notice, this list of conditions and the following disclaimer in</member>
7485 <member> # * the documentation and/or other materials provided with the</member>
7486 <member> # * distribution.</member>
7487 <member> # * . Neither the name of the TaBE Project nor the names of its</member>
7488 <member> # * contributors may be used to endorse or promote products derived</member>
7489 <member> # * from this software without specific prior written permission.</member>
7490 <member> # *</member>
7491 <member> # * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS</member>
7492 <member> # * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT</member>
7493 <member> # * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS</member>
7494 <member> # * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE</member>
7495 <member> # * REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,</member>
7496 <member> # * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES</member>
7497 <member> # * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR</member>
7498 <member> # * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)</member>
7499 <member> # * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,</member>
7500 <member> # * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)</member>
7501 <member> # * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED</member>
7502 <member> # * OF THE POSSIBILITY OF SUCH DAMAGE.</member>
7503 <member> # */</member>
7504 <member> # </member>
7505 <member> # /*</member>
7506 <member> # * Copyright (c) 1999 Computer Systems and Communication Lab,</member>
7507 <member> # * Institute of Information Science, Academia Sinica.</member>
7508 <member> # * All rights reserved.</member>
7509 <member> # *</member>
7510 <member> # * Redistribution and use in source and binary forms, with or without</member>
7511 <member> # * modification, are permitted provided that the following conditions</member>
7512 <member> # * are met:</member>
7513 <member> # *</member>
7514 <member> # * . Redistributions of source code must retain the above copyright</member>
7515 <member> # * notice, this list of conditions and the following disclaimer.</member>
7516 <member> # * . Redistributions in binary form must reproduce the above copyright</member>
7517 <member> # * notice, this list of conditions and the following disclaimer in</member>
7518 <member> # * the documentation and/or other materials provided with the</member>
7519 <member> # * distribution.</member>
7520 <member> # * . Neither the name of the Computer Systems and Communication Lab</member>
7521 <member> # * nor the names of its contributors may be used to endorse or</member>
7522 <member> # * promote products derived from this software without specific</member>
7523 <member> # * prior written permission.</member>
7524 <member> # *</member>
7525 <member> # * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS</member>
7526 <member> # * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT</member>
7527 <member> # * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS</member>
7528 <member> # * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE</member>
7529 <member> # * REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,</member>
7530 <member> # * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES</member>
7531 <member> # * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR</member>
7532 <member> # * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)</member>
7533 <member> # * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,</member>
7534 <member> # * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)</member>
7535 <member> # * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED</member>
7536 <member> # * OF THE POSSIBILITY OF SUCH DAMAGE.</member>
7537 <member> # */</member>
7538 <member> # </member>
7539 <member> # Copyright 1996 Chih-Hao Tsai @ Beckman Institute, University of Illinois</member>
7540 <member> # c-tsai4@uiuc.edu http://casper.beckman.uiuc.edu/~c-tsai4</member>
7541 <member> # </member>
7542 <member> # ---------------COPYING.libtabe-----END------------------------------------</member>
7543 <member> # </member>
7544 <member> # </member>
7545 <member> # ---------------COPYING.ipadic-----BEGIN------------------------------------</member>
7546 <member> # </member>
7547 <member> # Copyright 2000, 2001, 2002, 2003 Nara Institute of Science</member>
7548 <member> # and Technology. All Rights Reserved.</member>
7549 <member> # </member>
7550 <member> # Use, reproduction, and distribution of this software is permitted.</member>
7551 <member> # Any copy of this software, whether in its original form or modified,</member>
7552 <member> # must include both the above copyright notice and the following</member>
7553 <member> # paragraphs.</member>
7554 <member> # </member>
7555 <member> # Nara Institute of Science and Technology (NAIST),</member>
7556 <member> # the copyright holders, disclaims all warranties with regard to this</member>
7557 <member> # software, including all implied warranties of merchantability and</member>
7558 <member> # fitness, in no event shall NAIST be liable for</member>
7559 <member> # any special, indirect or consequential damages or any damages</member>
7560 <member> # whatsoever resulting from loss of use, data or profits, whether in an</member>
7561 <member> # action of contract, negligence or other tortuous action, arising out</member>
7562 <member> # of or in connection with the use or performance of this software.</member>
7563 <member> # </member>
7564 <member> # A large portion of the dictionary entries</member>
7565 <member> # originate from ICOT Free Software. The following conditions for ICOT</member>
7566 <member> # Free Software applies to the current dictionary as well.</member>
7567 <member> # </member>
7568 <member> # Each User may also freely distribute the Program, whether in its</member>
7569 <member> # original form or modified, to any third party or parties, PROVIDED</member>
7570 <member> # that the provisions of Section 3 ("NO WARRANTY") will ALWAYS appear</member>
7571 <member> # on, or be attached to, the Program, which is distributed substantially</member>
7572 <member> # in the same form as set out herein and that such intended</member>
7573 <member> # distribution, if actually made, will neither violate or otherwise</member>
7574 <member> # contravene any of the laws and regulations of the countries having</member>
7575 <member> # jurisdiction over the User or the intended distribution itself.</member>
7576 <member> # </member>
7577 <member> # NO WARRANTY</member>
7578 <member> # </member>
7579 <member> # The program was produced on an experimental basis in the course of the</member>
7580 <member> # research and development conducted during the project and is provided</member>
7581 <member> # to users as so produced on an experimental basis. Accordingly, the</member>
7582 <member> # program is provided without any warranty whatsoever, whether express,</member>
7583 <member> # implied, statutory or otherwise. The term "warranty" used herein</member>
7584 <member> # includes, but is not limited to, any warranty of the quality,</member>
7585 <member> # performance, merchantability and fitness for a particular purpose of</member>
7586 <member> # the program and the nonexistence of any infringement or violation of</member>
7587 <member> # any right of any third party.</member>
7588 <member> # </member>
7589 <member> # Each user of the program will agree and understand, and be deemed to</member>
7590 <member> # have agreed and understood, that there is no warranty whatsoever for</member>
7591 <member> # the program and, accordingly, the entire risk arising from or</member>
7592 <member> # otherwise connected with the program is assumed by the user.</member>
7593 <member> # </member>
7594 <member> # Therefore, neither ICOT, the copyright holder, or any other</member>
7595 <member> # organization that participated in or was otherwise related to the</member>
7596 <member> # development of the program and their respective officials, directors,</member>
7597 <member> # officers and other employees shall be held liable for any and all</member>
7598 <member> # damages, including, without limitation, general, special, incidental</member>
7599 <member> # and consequential damages, arising out of or otherwise in connection</member>
7600 <member> # with the use or inability to use the program or any product, material</member>
7601 <member> # or result produced or otherwise obtained by using the program,</member>
7602 <member> # regardless of whether they have been advised of, or otherwise had</member>
7603 <member> # knowledge of, the possibility of such damages at any time during the</member>
7604 <member> # project or thereafter. Each user will be deemed to have agreed to the</member>
7605 <member> # foregoing by his or her commencement of use of the program. The term</member>
7606 <member> # "use" as used herein includes, but is not limited to, the use,</member>
7607 <member> # modification, copying and distribution of the program and the</member>
7608 <member> # production of secondary products from the program.</member>
7609 <member> # </member>
7610 <member> # In the case where the program, whether in its original form or</member>
7611 <member> # modified, was distributed or delivered to or received by a user from</member>
7612 <member> # any person, organization or entity other than ICOT, unless it makes or</member>
7613 <member> # grants independently of ICOT any specific warranty to the user in</member>
7614 <member> # writing, such person, organization or entity, will also be exempted</member>
7615 <member> # from and not be held liable to the user for any such damages as noted</member>
7616 <member> # above as far as the program is concerned.</member>
7617 <member> # </member>
7618 <member> # ---------------COPYING.ipadic-----END------------------------------------</member>
7619 <member> </member>
7620 <member>&#160;</member>
7621 <member>### 3\. Lao Word Break Dictionary Data (laodict.txt)</member>
7622 <member>&#160;</member>
7623 <member> </member>
7624 <member> </member>
7625 <member> # Copyright (c) 2013 International Business Machines Corporation</member>
7626 <member> # and others. All Rights Reserved.</member>
7627 <member> #</member>
7628 <member> # Project: http://code.google.com/p/lao-dictionary/</member>
7629 <member> # Dictionary: http://lao-dictionary.googlecode.com/git/Lao-Dictionary.txt</member>
7630 <member> # License: http://lao-dictionary.googlecode.com/git/Lao-Dictionary-LICENSE.txt</member>
7631 <member> # (copied below)</member>
7632 <member> #</member>
7633 <member> # This file is derived from the above dictionary, with slight modifications.</member>
7634 <member> # --------------------------------------------------------------------------------</member>
7635 <member> # Copyright (C) 2013 Brian Eugene Wilson, Robert Martin Campbell.</member>
7636 <member> # All rights reserved.</member>
7637 <member> #</member>
7638 <member> # Redistribution and use in source and binary forms, with or without modification,</member>
7639 <member> # are permitted provided that the following conditions are met:</member>
7640 <member> #</member>
7641 <member> # Redistributions of source code must retain the above copyright notice, this</member>
7642 <member> # list of conditions and the following disclaimer. Redistributions in binary</member>
7643 <member> # form must reproduce the above copyright notice, this list of conditions and</member>
7644 <member> # the following disclaimer in the documentation and/or other materials</member>
7645 <member> # provided with the distribution.</member>
7646 <member> #</member>
7647 <member> # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND</member>
7648 <member> # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED</member>
7649 <member> # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE</member>
7650 <member> # DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR</member>
7651 <member> # ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES</member>
7652 <member> # (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;</member>
7653 <member> # LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON</member>
7654 <member> # ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT</member>
7655 <member> # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS</member>
7656 <member> # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</member>
7657 <member> # --------------------------------------------------------------------------------</member>
7658 <member> </member>
7659 <member>&#160;</member>
7660 <member>### 4\. Burmese Word Break Dictionary Data (burmesedict.txt)</member>
7661 <member>&#160;</member>
7662 <member> </member>
7663 <member> </member>
7664 <member> # Copyright (c) 2014 International Business Machines Corporation</member>
7665 <member> # and others. All Rights Reserved.</member>
7666 <member> #</member>
7667 <member> # This list is part of a project hosted at:</member>
7668 <member> # github.com/kanyawtech/myanmar-karen-word-lists</member>
7669 <member> #</member>
7670 <member> # --------------------------------------------------------------------------------</member>
7671 <member> # Copyright (c) 2013, LeRoy Benjamin Sharon</member>
7672 <member> # All rights reserved.</member>
7673 <member> #</member>
7674 <member> # Redistribution and use in source and binary forms, with or without modification,</member>
7675 <member> # are permitted provided that the following conditions are met:</member>
7676 <member> #</member>
7677 <member> # Redistributions of source code must retain the above copyright notice, this</member>
7678 <member> # list of conditions and the following disclaimer.</member>
7679 <member> #</member>
7680 <member> # Redistributions in binary form must reproduce the above copyright notice, this</member>
7681 <member> # list of conditions and the following disclaimer in the documentation and/or</member>
7682 <member> # other materials provided with the distribution.</member>
7683 <member> #</member>
7684 <member> # Neither the name Myanmar Karen Word Lists, nor the names of its</member>
7685 <member> # contributors may be used to endorse or promote products derived from</member>
7686 <member> # this software without specific prior written permission.</member>
7687 <member> #</member>
7688 <member> # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND</member>
7689 <member> # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED</member>
7690 <member> # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE</member>
7691 <member> # DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR</member>
7692 <member> # ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES</member>
7693 <member> # (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;</member>
7694 <member> # LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON</member>
7695 <member> # ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT</member>
7696 <member> # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS</member>
7697 <member> # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</member>
7698 <member> # --------------------------------------------------------------------------------</member>
7699 <member> </member>
7700 <member>&#160;</member>
7701 <member>### 5\. Time Zone Database</member>
7702 <member>&#160;</member>
7703 <member>ICU uses the public domain data and code derived from [ Time Zone</member>
7704 <member>Database](http://www.iana.org/time-zones) for its time zone support. The</member>
7705 <member>ownership of the TZ database is explained in [BCP 175: Procedure for</member>
7706 <member>Maintaining the Time Zone Database](http://tools.ietf.org/html/rfc6557)</member>
7707 <member>section 7.</member>
7708 <member>&#160;</member>
7709 <member> </member>
7710 <member> </member>
7711 <member> 7. Database Ownership</member>
7712 <member> </member>
7713 <member> The TZ database itself is not an IETF Contribution or an IETF</member>
7714 <member> document. Rather it is a pre-existing and regularly updated work</member>
7715 <member> that is in the public domain, and is intended to remain in the public</member>
7716 <member> domain. Therefore, BCPs 78 [RFC5378] and 79 [RFC3979] do not apply</member>
7717 <member> to the TZ Database or contributions that individuals make to it.</member>
7718 <member> Should any claims be made and substantiated against the TZ Database,</member>
7719 <member> the organization that is providing the IANA Considerations defined in</member>
7720 <member> this RFC, under the memorandum of understanding with the IETF,</member>
7721 <member> currently ICANN, may act in accordance with all competent court</member>
7722 <member> orders. No ownership claims will be made by ICANN or the IETF Trust</member>
7723 <member> on the database or the code. Any person making a contribution to the</member>
7724 <member> database or code waives all rights to future claims in that</member>
7725 <member> contribution or in the TZ Database.</member>
7726 <member> </member>
7727 <member> </member>
7728 </simplelist>
7729 </section>
7730 </section>
7731 <section id="enea-linux-eclipse-open-source-licenses-63">
7732 <title>License 63</title>
7733 <section>
7734 <title>Source File(s)</title>
7735 <itemizedlist spacing="compact">
7736 <listitem>
7737 <para>
7738 plugins/extracted_jars/org.eclipse.swt.gtk.linux.x86_64.source_3.104.0.v20150528-0211/about_files/mpl-v11.txt
7739 </para>
7740 </listitem>
7741 <listitem>
7742 <para>
7743 plugins/extracted_jars/org.eclipse.swt.gtk.linux.x86_64_3.104.0.v20150528-0211/about_files/mpl-v11.txt
7744 </para>
7745 </listitem>
7746 </itemizedlist>
7747 </section>
7748 <section>
7749 <title>License Text</title>
7750 <simplelist>
7751 <member> MOZILLA PUBLIC LICENSE</member>
7752 <member> Version 1.1</member>
7753 <member>&#160;</member>
7754 <member> ---------------</member>
7755 <member>&#160;</member>
7756 <member>1. Definitions.</member>
7757 <member>&#160;</member>
7758 <member> 1.0.1. "Commercial Use" means distribution or otherwise making the</member>
7759 <member> Covered Code available to a third party.</member>
7760 <member>&#160;</member>
7761 <member> 1.1. "Contributor" means each entity that creates or contributes to</member>
7762 <member> the creation of Modifications.</member>
7763 <member>&#160;</member>
7764 <member> 1.2. "Contributor Version" means the combination of the Original</member>
7765 <member> Code, prior Modifications used by a Contributor, and the Modifications</member>
7766 <member> made by that particular Contributor.</member>
7767 <member>&#160;</member>
7768 <member> 1.3. "Covered Code" means the Original Code or Modifications or the</member>
7769 <member> combination of the Original Code and Modifications, in each case</member>
7770 <member> including portions thereof.</member>
7771 <member>&#160;</member>
7772 <member> 1.4. "Electronic Distribution Mechanism" means a mechanism generally</member>
7773 <member> accepted in the software development community for the electronic</member>
7774 <member> transfer of data.</member>
7775 <member>&#160;</member>
7776 <member> 1.5. "Executable" means Covered Code in any form other than Source</member>
7777 <member> Code.</member>
7778 <member>&#160;</member>
7779 <member> 1.6. "Initial Developer" means the individual or entity identified</member>
7780 <member> as the Initial Developer in the Source Code notice required by Exhibit</member>
7781 <member> A.</member>
7782 <member>&#160;</member>
7783 <member> 1.7. "Larger Work" means a work which combines Covered Code or</member>
7784 <member> portions thereof with code not governed by the terms of this License.</member>
7785 <member>&#160;</member>
7786 <member> 1.8. "License" means this document.</member>
7787 <member>&#160;</member>
7788 <member> 1.8.1. "Licensable" means having the right to grant, to the maximum</member>
7789 <member> extent possible, whether at the time of the initial grant or</member>
7790 <member> subsequently acquired, any and all of the rights conveyed herein.</member>
7791 <member>&#160;</member>
7792 <member> 1.9. "Modifications" means any addition to or deletion from the</member>
7793 <member> substance or structure of either the Original Code or any previous</member>
7794 <member> Modifications. When Covered Code is released as a series of files, a</member>
7795 <member> Modification is:</member>
7796 <member> A. Any addition to or deletion from the contents of a file</member>
7797 <member> containing Original Code or previous Modifications.</member>
7798 <member>&#160;</member>
7799 <member> B. Any new file that contains any part of the Original Code or</member>
7800 <member> previous Modifications.</member>
7801 <member>&#160;</member>
7802 <member> 1.10. "Original Code" means Source Code of computer software code</member>
7803 <member> which is described in the Source Code notice required by Exhibit A as</member>
7804 <member> Original Code, and which, at the time of its release under this</member>
7805 <member> License is not already Covered Code governed by this License.</member>
7806 <member>&#160;</member>
7807 <member> 1.10.1. "Patent Claims" means any patent claim(s), now owned or</member>
7808 <member> hereafter acquired, including without limitation, method, process,</member>
7809 <member> and apparatus claims, in any patent Licensable by grantor.</member>
7810 <member>&#160;</member>
7811 <member> 1.11. "Source Code" means the preferred form of the Covered Code for</member>
7812 <member> making modifications to it, including all modules it contains, plus</member>
7813 <member> any associated interface definition files, scripts used to control</member>
7814 <member> compilation and installation of an Executable, or source code</member>
7815 <member> differential comparisons against either the Original Code or another</member>
7816 <member> well known, available Covered Code of the Contributor's choice. The</member>
7817 <member> Source Code can be in a compressed or archival form, provided the</member>
7818 <member> appropriate decompression or de-archiving software is widely available</member>
7819 <member> for no charge.</member>
7820 <member>&#160;</member>
7821 <member> 1.12. "You" (or "Your") means an individual or a legal entity</member>
7822 <member> exercising rights under, and complying with all of the terms of, this</member>
7823 <member> License or a future version of this License issued under Section 6.1.</member>
7824 <member> For legal entities, "You" includes any entity which controls, is</member>
7825 <member> controlled by, or is under common control with You. For purposes of</member>
7826 <member> this definition, "control" means (a) the power, direct or indirect,</member>
7827 <member> to cause the direction or management of such entity, whether by</member>
7828 <member> contract or otherwise, or (b) ownership of more than fifty percent</member>
7829 <member> (50%) of the outstanding shares or beneficial ownership of such</member>
7830 <member> entity.</member>
7831 <member>&#160;</member>
7832 <member>2. Source Code License.</member>
7833 <member>&#160;</member>
7834 <member> 2.1. The Initial Developer Grant.</member>
7835 <member> The Initial Developer hereby grants You a world-wide, royalty-free,</member>
7836 <member> non-exclusive license, subject to third party intellectual property</member>
7837 <member> claims:</member>
7838 <member> (a) under intellectual property rights (other than patent or</member>
7839 <member> trademark) Licensable by Initial Developer to use, reproduce,</member>
7840 <member> modify, display, perform, sublicense and distribute the Original</member>
7841 <member> Code (or portions thereof) with or without Modifications, and/or</member>
7842 <member> as part of a Larger Work; and</member>
7843 <member>&#160;</member>
7844 <member> (b) under Patents Claims infringed by the making, using or</member>
7845 <member> selling of Original Code, to make, have made, use, practice,</member>
7846 <member> sell, and offer for sale, and/or otherwise dispose of the</member>
7847 <member> Original Code (or portions thereof).</member>
7848 <member>&#160;</member>
7849 <member> (c) the licenses granted in this Section 2.1(a) and (b) are</member>
7850 <member> effective on the date Initial Developer first distributes</member>
7851 <member> Original Code under the terms of this License.</member>
7852 <member>&#160;</member>
7853 <member> (d) Notwithstanding Section 2.1(b) above, no patent license is</member>
7854 <member> granted: 1) for code that You delete from the Original Code; 2)</member>
7855 <member> separate from the Original Code; or 3) for infringements caused</member>
7856 <member> by: i) the modification of the Original Code or ii) the</member>
7857 <member> combination of the Original Code with other software or devices.</member>
7858 <member>&#160;</member>
7859 <member> 2.2. Contributor Grant.</member>
7860 <member> Subject to third party intellectual property claims, each Contributor</member>
7861 <member> hereby grants You a world-wide, royalty-free, non-exclusive license</member>
7862 <member>&#160;</member>
7863 <member> (a) under intellectual property rights (other than patent or</member>
7864 <member> trademark) Licensable by Contributor, to use, reproduce, modify,</member>
7865 <member> display, perform, sublicense and distribute the Modifications</member>
7866 <member> created by such Contributor (or portions thereof) either on an</member>
7867 <member> unmodified basis, with other Modifications, as Covered Code</member>
7868 <member> and/or as part of a Larger Work; and</member>
7869 <member>&#160;</member>
7870 <member> (b) under Patent Claims infringed by the making, using, or</member>
7871 <member> selling of Modifications made by that Contributor either alone</member>
7872 <member> and/or in combination with its Contributor Version (or portions</member>
7873 <member> of such combination), to make, use, sell, offer for sale, have</member>
7874 <member> made, and/or otherwise dispose of: 1) Modifications made by that</member>
7875 <member> Contributor (or portions thereof); and 2) the combination of</member>
7876 <member> Modifications made by that Contributor with its Contributor</member>
7877 <member> Version (or portions of such combination).</member>
7878 <member>&#160;</member>
7879 <member> (c) the licenses granted in Sections 2.2(a) and 2.2(b) are</member>
7880 <member> effective on the date Contributor first makes Commercial Use of</member>
7881 <member> the Covered Code.</member>
7882 <member>&#160;</member>
7883 <member> (d) Notwithstanding Section 2.2(b) above, no patent license is</member>
7884 <member> granted: 1) for any code that Contributor has deleted from the</member>
7885 <member> Contributor Version; 2) separate from the Contributor Version;</member>
7886 <member> 3) for infringements caused by: i) third party modifications of</member>
7887 <member> Contributor Version or ii) the combination of Modifications made</member>
7888 <member> by that Contributor with other software (except as part of the</member>
7889 <member> Contributor Version) or other devices; or 4) under Patent Claims</member>
7890 <member> infringed by Covered Code in the absence of Modifications made by</member>
7891 <member> that Contributor.</member>
7892 <member>&#160;</member>
7893 <member>3. Distribution Obligations.</member>
7894 <member>&#160;</member>
7895 <member> 3.1. Application of License.</member>
7896 <member> The Modifications which You create or to which You contribute are</member>
7897 <member> governed by the terms of this License, including without limitation</member>
7898 <member> Section 2.2. The Source Code version of Covered Code may be</member>
7899 <member> distributed only under the terms of this License or a future version</member>
7900 <member> of this License released under Section 6.1, and You must include a</member>
7901 <member> copy of this License with every copy of the Source Code You</member>
7902 <member> distribute. You may not offer or impose any terms on any Source Code</member>
7903 <member> version that alters or restricts the applicable version of this</member>
7904 <member> License or the recipients' rights hereunder. However, You may include</member>
7905 <member> an additional document offering the additional rights described in</member>
7906 <member> Section 3.5.</member>
7907 <member>&#160;</member>
7908 <member> 3.2. Availability of Source Code.</member>
7909 <member> Any Modification which You create or to which You contribute must be</member>
7910 <member> made available in Source Code form under the terms of this License</member>
7911 <member> either on the same media as an Executable version or via an accepted</member>
7912 <member> Electronic Distribution Mechanism to anyone to whom you made an</member>
7913 <member> Executable version available; and if made available via Electronic</member>
7914 <member> Distribution Mechanism, must remain available for at least twelve (12)</member>
7915 <member> months after the date it initially became available, or at least six</member>
7916 <member> (6) months after a subsequent version of that particular Modification</member>
7917 <member> has been made available to such recipients. You are responsible for</member>
7918 <member> ensuring that the Source Code version remains available even if the</member>
7919 <member> Electronic Distribution Mechanism is maintained by a third party.</member>
7920 <member>&#160;</member>
7921 <member> 3.3. Description of Modifications.</member>
7922 <member> You must cause all Covered Code to which You contribute to contain a</member>
7923 <member> file documenting the changes You made to create that Covered Code and</member>
7924 <member> the date of any change. You must include a prominent statement that</member>
7925 <member> the Modification is derived, directly or indirectly, from Original</member>
7926 <member> Code provided by the Initial Developer and including the name of the</member>
7927 <member> Initial Developer in (a) the Source Code, and (b) in any notice in an</member>
7928 <member> Executable version or related documentation in which You describe the</member>
7929 <member> origin or ownership of the Covered Code.</member>
7930 <member>&#160;</member>
7931 <member> 3.4. Intellectual Property Matters</member>
7932 <member> (a) Third Party Claims.</member>
7933 <member> If Contributor has knowledge that a license under a third party's</member>
7934 <member> intellectual property rights is required to exercise the rights</member>
7935 <member> granted by such Contributor under Sections 2.1 or 2.2,</member>
7936 <member> Contributor must include a text file with the Source Code</member>
7937 <member> distribution titled "LEGAL" which describes the claim and the</member>
7938 <member> party making the claim in sufficient detail that a recipient will</member>
7939 <member> know whom to contact. If Contributor obtains such knowledge after</member>
7940 <member> the Modification is made available as described in Section 3.2,</member>
7941 <member> Contributor shall promptly modify the LEGAL file in all copies</member>
7942 <member> Contributor makes available thereafter and shall take other steps</member>
7943 <member> (such as notifying appropriate mailing lists or newsgroups)</member>
7944 <member> reasonably calculated to inform those who received the Covered</member>
7945 <member> Code that new knowledge has been obtained.</member>
7946 <member>&#160;</member>
7947 <member> (b) Contributor APIs.</member>
7948 <member> If Contributor's Modifications include an application programming</member>
7949 <member> interface and Contributor has knowledge of patent licenses which</member>
7950 <member> are reasonably necessary to implement that API, Contributor must</member>
7951 <member> also include this information in the LEGAL file.</member>
7952 <member>&#160;</member>
7953 <member> (c) Representations.</member>
7954 <member> Contributor represents that, except as disclosed pursuant to</member>
7955 <member> Section 3.4(a) above, Contributor believes that Contributor's</member>
7956 <member> Modifications are Contributor's original creation(s) and/or</member>
7957 <member> Contributor has sufficient rights to grant the rights conveyed by</member>
7958 <member> this License.</member>
7959 <member>&#160;</member>
7960 <member> 3.5. Required Notices.</member>
7961 <member> You must duplicate the notice in Exhibit A in each file of the Source</member>
7962 <member> Code. If it is not possible to put such notice in a particular Source</member>
7963 <member> Code file due to its structure, then You must include such notice in a</member>
7964 <member> location (such as a relevant directory) where a user would be likely</member>
7965 <member> to look for such a notice. If You created one or more Modification(s)</member>
7966 <member> You may add your name as a Contributor to the notice described in</member>
7967 <member> Exhibit A. You must also duplicate this License in any documentation</member>
7968 <member> for the Source Code where You describe recipients' rights or ownership</member>
7969 <member> rights relating to Covered Code. You may choose to offer, and to</member>
7970 <member> charge a fee for, warranty, support, indemnity or liability</member>
7971 <member> obligations to one or more recipients of Covered Code. However, You</member>
7972 <member> may do so only on Your own behalf, and not on behalf of the Initial</member>
7973 <member> Developer or any Contributor. You must make it absolutely clear than</member>
7974 <member> any such warranty, support, indemnity or liability obligation is</member>
7975 <member> offered by You alone, and You hereby agree to indemnify the Initial</member>
7976 <member> Developer and every Contributor for any liability incurred by the</member>
7977 <member> Initial Developer or such Contributor as a result of warranty,</member>
7978 <member> support, indemnity or liability terms You offer.</member>
7979 <member>&#160;</member>
7980 <member> 3.6. Distribution of Executable Versions.</member>
7981 <member> You may distribute Covered Code in Executable form only if the</member>
7982 <member> requirements of Section 3.1-3.5 have been met for that Covered Code,</member>
7983 <member> and if You include a notice stating that the Source Code version of</member>
7984 <member> the Covered Code is available under the terms of this License,</member>
7985 <member> including a description of how and where You have fulfilled the</member>
7986 <member> obligations of Section 3.2. The notice must be conspicuously included</member>
7987 <member> in any notice in an Executable version, related documentation or</member>
7988 <member> collateral in which You describe recipients' rights relating to the</member>
7989 <member> Covered Code. You may distribute the Executable version of Covered</member>
7990 <member> Code or ownership rights under a license of Your choice, which may</member>
7991 <member> contain terms different from this License, provided that You are in</member>
7992 <member> compliance with the terms of this License and that the license for the</member>
7993 <member> Executable version does not attempt to limit or alter the recipient's</member>
7994 <member> rights in the Source Code version from the rights set forth in this</member>
7995 <member> License. If You distribute the Executable version under a different</member>
7996 <member> license You must make it absolutely clear that any terms which differ</member>
7997 <member> from this License are offered by You alone, not by the Initial</member>
7998 <member> Developer or any Contributor. You hereby agree to indemnify the</member>
7999 <member> Initial Developer and every Contributor for any liability incurred by</member>
8000 <member> the Initial Developer or such Contributor as a result of any such</member>
8001 <member> terms You offer.</member>
8002 <member>&#160;</member>
8003 <member> 3.7. Larger Works.</member>
8004 <member> You may create a Larger Work by combining Covered Code with other code</member>
8005 <member> not governed by the terms of this License and distribute the Larger</member>
8006 <member> Work as a single product. In such a case, You must make sure the</member>
8007 <member> requirements of this License are fulfilled for the Covered Code.</member>
8008 <member>&#160;</member>
8009 <member>4. Inability to Comply Due to Statute or Regulation.</member>
8010 <member>&#160;</member>
8011 <member> If it is impossible for You to comply with any of the terms of this</member>
8012 <member> License with respect to some or all of the Covered Code due to</member>
8013 <member> statute, judicial order, or regulation then You must: (a) comply with</member>
8014 <member> the terms of this License to the maximum extent possible; and (b)</member>
8015 <member> describe the limitations and the code they affect. Such description</member>
8016 <member> must be included in the LEGAL file described in Section 3.4 and must</member>
8017 <member> be included with all distributions of the Source Code. Except to the</member>
8018 <member> extent prohibited by statute or regulation, such description must be</member>
8019 <member> sufficiently detailed for a recipient of ordinary skill to be able to</member>
8020 <member> understand it.</member>
8021 <member>&#160;</member>
8022 <member>5. Application of this License.</member>
8023 <member>&#160;</member>
8024 <member> This License applies to code to which the Initial Developer has</member>
8025 <member> attached the notice in Exhibit A and to related Covered Code.</member>
8026 <member>&#160;</member>
8027 <member>6. Versions of the License.</member>
8028 <member>&#160;</member>
8029 <member> 6.1. New Versions.</member>
8030 <member> Netscape Communications Corporation ("Netscape") may publish revised</member>
8031 <member> and/or new versions of the License from time to time. Each version</member>
8032 <member> will be given a distinguishing version number.</member>
8033 <member>&#160;</member>
8034 <member> 6.2. Effect of New Versions.</member>
8035 <member> Once Covered Code has been published under a particular version of the</member>
8036 <member> License, You may always continue to use it under the terms of that</member>
8037 <member> version. You may also choose to use such Covered Code under the terms</member>
8038 <member> of any subsequent version of the License published by Netscape. No one</member>
8039 <member> other than Netscape has the right to modify the terms applicable to</member>
8040 <member> Covered Code created under this License.</member>
8041 <member>&#160;</member>
8042 <member> 6.3. Derivative Works.</member>
8043 <member> If You create or use a modified version of this License (which you may</member>
8044 <member> only do in order to apply it to code which is not already Covered Code</member>
8045 <member> governed by this License), You must (a) rename Your license so that</member>
8046 <member> the phrases "Mozilla", "MOZILLAPL", "MOZPL", "Netscape",</member>
8047 <member> "MPL", "NPL" or any confusingly similar phrase do not appear in your</member>
8048 <member> license (except to note that your license differs from this License)</member>
8049 <member> and (b) otherwise make it clear that Your version of the license</member>
8050 <member> contains terms which differ from the Mozilla Public License and</member>
8051 <member> Netscape Public License. (Filling in the name of the Initial</member>
8052 <member> Developer, Original Code or Contributor in the notice described in</member>
8053 <member> Exhibit A shall not of themselves be deemed to be modifications of</member>
8054 <member> this License.)</member>
8055 <member>&#160;</member>
8056 <member>7. DISCLAIMER OF WARRANTY.</member>
8057 <member>&#160;</member>
8058 <member> COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS,</member>
8059 <member> WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,</member>
8060 <member> WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF</member>
8061 <member> DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING.</member>
8062 <member> THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE</member>
8063 <member> IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT,</member>
8064 <member> YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE</member>
8065 <member> COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER</member>
8066 <member> OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF</member>
8067 <member> ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.</member>
8068 <member>&#160;</member>
8069 <member>8. TERMINATION.</member>
8070 <member>&#160;</member>
8071 <member> 8.1. This License and the rights granted hereunder will terminate</member>
8072 <member> automatically if You fail to comply with terms herein and fail to cure</member>
8073 <member> such breach within 30 days of becoming aware of the breach. All</member>
8074 <member> sublicenses to the Covered Code which are properly granted shall</member>
8075 <member> survive any termination of this License. Provisions which, by their</member>
8076 <member> nature, must remain in effect beyond the termination of this License</member>
8077 <member> shall survive.</member>
8078 <member>&#160;</member>
8079 <member> 8.2. If You initiate litigation by asserting a patent infringement</member>
8080 <member> claim (excluding declatory judgment actions) against Initial Developer</member>
8081 <member> or a Contributor (the Initial Developer or Contributor against whom</member>
8082 <member> You file such action is referred to as "Participant") alleging that:</member>
8083 <member>&#160;</member>
8084 <member> (a) such Participant's Contributor Version directly or indirectly</member>
8085 <member> infringes any patent, then any and all rights granted by such</member>
8086 <member> Participant to You under Sections 2.1 and/or 2.2 of this License</member>
8087 <member> shall, upon 60 days notice from Participant terminate prospectively,</member>
8088 <member> unless if within 60 days after receipt of notice You either: (i)</member>
8089 <member> agree in writing to pay Participant a mutually agreeable reasonable</member>
8090 <member> royalty for Your past and future use of Modifications made by such</member>
8091 <member> Participant, or (ii) withdraw Your litigation claim with respect to</member>
8092 <member> the Contributor Version against such Participant. If within 60 days</member>
8093 <member> of notice, a reasonable royalty and payment arrangement are not</member>
8094 <member> mutually agreed upon in writing by the parties or the litigation claim</member>
8095 <member> is not withdrawn, the rights granted by Participant to You under</member>
8096 <member> Sections 2.1 and/or 2.2 automatically terminate at the expiration of</member>
8097 <member> the 60 day notice period specified above.</member>
8098 <member>&#160;</member>
8099 <member> (b) any software, hardware, or device, other than such Participant's</member>
8100 <member> Contributor Version, directly or indirectly infringes any patent, then</member>
8101 <member> any rights granted to You by such Participant under Sections 2.1(b)</member>
8102 <member> and 2.2(b) are revoked effective as of the date You first made, used,</member>
8103 <member> sold, distributed, or had made, Modifications made by that</member>
8104 <member> Participant.</member>
8105 <member>&#160;</member>
8106 <member> 8.3. If You assert a patent infringement claim against Participant</member>
8107 <member> alleging that such Participant's Contributor Version directly or</member>
8108 <member> indirectly infringes any patent where such claim is resolved (such as</member>
8109 <member> by license or settlement) prior to the initiation of patent</member>
8110 <member> infringement litigation, then the reasonable value of the licenses</member>
8111 <member> granted by such Participant under Sections 2.1 or 2.2 shall be taken</member>
8112 <member> into account in determining the amount or value of any payment or</member>
8113 <member> license.</member>
8114 <member>&#160;</member>
8115 <member> 8.4. In the event of termination under Sections 8.1 or 8.2 above,</member>
8116 <member> all end user license agreements (excluding distributors and resellers)</member>
8117 <member> which have been validly granted by You or any distributor hereunder</member>
8118 <member> prior to termination shall survive termination.</member>
8119 <member>&#160;</member>
8120 <member>9. LIMITATION OF LIABILITY.</member>
8121 <member>&#160;</member>
8122 <member> UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT</member>
8123 <member> (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL</member>
8124 <member> DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE,</member>
8125 <member> OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR</member>
8126 <member> ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY</member>
8127 <member> CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL,</member>
8128 <member> WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER</member>
8129 <member> COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN</member>
8130 <member> INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF</member>
8131 <member> LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY</member>
8132 <member> RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW</member>
8133 <member> PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE</member>
8134 <member> EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO</member>
8135 <member> THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU.</member>
8136 <member>&#160;</member>
8137 <member>10. U.S. GOVERNMENT END USERS.</member>
8138 <member>&#160;</member>
8139 <member> The Covered Code is a "commercial item," as that term is defined in</member>
8140 <member> 48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial computer</member>
8141 <member> software" and "commercial computer software documentation," as such</member>
8142 <member> terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48</member>
8143 <member> C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995),</member>
8144 <member> all U.S. Government End Users acquire Covered Code with only those</member>
8145 <member> rights set forth herein.</member>
8146 <member>&#160;</member>
8147 <member>11. MISCELLANEOUS.</member>
8148 <member>&#160;</member>
8149 <member> This License represents the complete agreement concerning subject</member>
8150 <member> matter hereof. If any provision of this License is held to be</member>
8151 <member> unenforceable, such provision shall be reformed only to the extent</member>
8152 <member> necessary to make it enforceable. This License shall be governed by</member>
8153 <member> California law provisions (except to the extent applicable law, if</member>
8154 <member> any, provides otherwise), excluding its conflict-of-law provisions.</member>
8155 <member> With respect to disputes in which at least one party is a citizen of,</member>
8156 <member> or an entity chartered or registered to do business in the United</member>
8157 <member> States of America, any litigation relating to this License shall be</member>
8158 <member> subject to the jurisdiction of the Federal Courts of the Northern</member>
8159 <member> District of California, with venue lying in Santa Clara County,</member>
8160 <member> California, with the losing party responsible for costs, including</member>
8161 <member> without limitation, court costs and reasonable attorneys' fees and</member>
8162 <member> expenses. The application of the United Nations Convention on</member>
8163 <member> Contracts for the International Sale of Goods is expressly excluded.</member>
8164 <member> Any law or regulation which provides that the language of a contract</member>
8165 <member> shall be construed against the drafter shall not apply to this</member>
8166 <member> License.</member>
8167 <member>&#160;</member>
8168 <member>12. RESPONSIBILITY FOR CLAIMS.</member>
8169 <member>&#160;</member>
8170 <member> As between Initial Developer and the Contributors, each party is</member>
8171 <member> responsible for claims and damages arising, directly or indirectly,</member>
8172 <member> out of its utilization of rights under this License and You agree to</member>
8173 <member> work with Initial Developer and Contributors to distribute such</member>
8174 <member> responsibility on an equitable basis. Nothing herein is intended or</member>
8175 <member> shall be deemed to constitute any admission of liability.</member>
8176 <member>&#160;</member>
8177 <member>13. MULTIPLE-LICENSED CODE.</member>
8178 <member>&#160;</member>
8179 <member> Initial Developer may designate portions of the Covered Code as</member>
8180 <member> "Multiple-Licensed". "Multiple-Licensed" means that the Initial</member>
8181 <member> Developer permits you to utilize portions of the Covered Code under</member>
8182 <member> Your choice of the NPL or the alternative licenses, if any, specified</member>
8183 <member> by the Initial Developer in the file described in Exhibit A.</member>
8184 <member>&#160;</member>
8185 <member>EXHIBIT A -Mozilla Public License.</member>
8186 <member>&#160;</member>
8187 <member> ``The contents of this file are subject to the Mozilla Public License</member>
8188 <member> Version 1.1 (the "License"); you may not use this file except in</member>
8189 <member> compliance with the License. You may obtain a copy of the License at</member>
8190 <member> http://www.mozilla.org/MPL/</member>
8191 <member>&#160;</member>
8192 <member> Software distributed under the License is distributed on an "AS IS"</member>
8193 <member> basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the</member>
8194 <member> License for the specific language governing rights and limitations</member>
8195 <member> under the License.</member>
8196 <member>&#160;</member>
8197 <member> The Original Code is ______________________________________.</member>
8198 <member>&#160;</member>
8199 <member> The Initial Developer of the Original Code is ________________________.</member>
8200 <member> Portions created by ______________________ are Copyright (C) ______</member>
8201 <member> _______________________. All Rights Reserved.</member>
8202 <member>&#160;</member>
8203 <member> Contributor(s): ______________________________________.</member>
8204 <member>&#160;</member>
8205 <member> Alternatively, the contents of this file may be used under the terms</member>
8206 <member> of the _____ license (the "[___] License"), in which case the</member>
8207 <member> provisions of [______] License are applicable instead of those</member>
8208 <member> above. If you wish to allow use of your version of this file only</member>
8209 <member> under the terms of the [____] License and not to allow others to use</member>
8210 <member> your version of this file under the MPL, indicate your decision by</member>
8211 <member> deleting the provisions above and replace them with the notice and</member>
8212 <member> other provisions required by the [___] License. If you do not delete</member>
8213 <member> the provisions above, a recipient may use your version of this file</member>
8214 <member> under either the MPL or the [___] License."</member>
8215 <member>&#160;</member>
8216 <member> [NOTE: The text of this Exhibit A may differ slightly from the text of</member>
8217 <member> the notices in the Source Code files of the Original Code. You should</member>
8218 <member> use the text of this Exhibit A rather than the text found in the</member>
8219 <member> Original Code Source Code for Your Modifications.]</member>
8220 </simplelist>
8221 </section>
8222 </section>
8223 <section id="enea-linux-eclipse-open-source-licenses-64">
8224 <title>License 64</title>
8225 <section>
8226 <title>Source File(s)</title>
8227 <itemizedlist spacing="compact">
8228 <listitem>
8229 <para>
8230 plugins/extracted_jars/com.sun.el.source_2.2.0.v201303151357/about_files/LICENSE_CDDL.txt
8231 </para>
8232 </listitem>
8233 <listitem>
8234 <para>
8235 plugins/extracted_jars/javax.servlet.source_3.1.0.v201410161800/about_files/LICENSE_CDDL.txt
8236 </para>
8237 </listitem>
8238 <listitem>
8239 <para>
8240 plugins/extracted_jars/javax.el_2.2.0.v201303151357/about_files/LICENSE_CDDL.txt
8241 </para>
8242 </listitem>
8243 <listitem>
8244 <para>
8245 plugins/extracted_jars/javax.servlet.jsp_2.2.0.v201112011158/about_files/LICENSE_CDDL.txt
8246 </para>
8247 </listitem>
8248 <listitem>
8249 <para>
8250 plugins/extracted_jars/javax.servlet_3.1.0.v201410161800/about_files/LICENSE_CDDL.txt
8251 </para>
8252 </listitem>
8253 <listitem>
8254 <para>
8255 plugins/extracted_jars/javax.el.source_2.2.0.v201303151357/about_files/LICENSE_CDDL.txt
8256 </para>
8257 </listitem>
8258 <listitem>
8259 <para>
8260 plugins/extracted_jars/javax.servlet.jsp.source_2.2.0.v201112011158/about_files/LICENSE_CDDL.txt
8261 </para>
8262 </listitem>
8263 <listitem>
8264 <para>
8265 plugins/extracted_jars/javax.annotation_1.2.0.v201401042248/about_files/LICENSE_CDDL.txt
8266 </para>
8267 </listitem>
8268 <listitem>
8269 <para>
8270 plugins/extracted_jars/org.apache.jasper.glassfish_2.2.2.v201501141630/about_files/LICENSE_CDDL.txt
8271 </para>
8272 </listitem>
8273 <listitem>
8274 <para>
8275 plugins/extracted_jars/com.sun.el_2.2.0.v201303151357/about_files/LICENSE_CDDL.txt
8276 </para>
8277 </listitem>
8278 <listitem>
8279 <para>
8280 plugins/extracted_jars/javax.annotation.source_1.2.0.v201401042248/about_files/LICENSE_CDDL.txt
8281 </para>
8282 </listitem>
8283 </itemizedlist>
8284 </section>
8285 <section>
8286 <title>License Text</title>
8287 <simplelist>
8288 <member>COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0</member>
8289 <member>&#160;</member>
8290 <member>1. Definitions.</member>
8291 <member>&#160;</member>
8292 <member> 1.1. Contributor. means each individual or entity that creates or contributes to the creation of Modifications.</member>
8293 <member>&#160;</member>
8294 <member> 1.2. Contributor Version. means the combination of the Original Software, prior Modifications used by a Contributor (if any), and the Modifications made by that particular Contributor.</member>
8295 <member>&#160;</member>
8296 <member> 1.3. Covered Software. means (a) the Original Software, or (b) Modifications, or (c) the combination of files containing Original Software with files containing Modifications, in each case including portions thereof.</member>
8297 <member>&#160;</member>
8298 <member> 1.4. Executable. means the Covered Software in any form other than Source Code.</member>
8299 <member>&#160;</member>
8300 <member> 1.5. Initial Developer. means the individual or entity that first makes Original Software available under this License.</member>
8301 <member>&#160;</member>
8302 <member> 1.6. Larger Work. means a work which combines Covered Software or portions thereof with code not governed by the terms of this License.</member>
8303 <member>&#160;</member>
8304 <member> 1.7. License. means this document.</member>
8305 <member>&#160;</member>
8306 <member> 1.8. Licensable. means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently acquired, any and all of the rights conveyed herein.</member>
8307 <member>&#160;</member>
8308 <member> 1.9. Modifications. means the Source Code and Executable form of any of the following:</member>
8309 <member>&#160;</member>
8310 <member> A. Any file that results from an addition to, deletion from or modification of the contents of a file containing Original Software or previous Modifications;</member>
8311 <member>&#160;</member>
8312 <member> B. Any new file that contains any part of the Original Software or previous Modification; or</member>
8313 <member>&#160;</member>
8314 <member> C. Any new file that is contributed or otherwise made available under the terms of this License.</member>
8315 <member>&#160;</member>
8316 <member> 1.10. Original Software. means the Source Code and Executable form of computer software code that is originally released under this License.</member>
8317 <member>&#160;</member>
8318 <member> 1.11. Patent Claims. means any patent claim(s), now owned or hereafter acquired, including without limitation, method, process, and apparatus claims, in any patent Licensable by grantor.</member>
8319 <member>&#160;</member>
8320 <member> 1.12. Source Code. means (a) the common form of computer software code in which modifications are made and (b) associated documentation included in or with such code.</member>
8321 <member>&#160;</member>
8322 <member> 1.13. You. (or .Your.) 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 which controls, is controlled by, or is under common control with You. For purposes of this definition, .control. means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity.</member>
8323 <member>&#160;</member>
8324 <member>2. License Grants.</member>
8325 <member>&#160;</member>
8326 <member> 2.1. The Initial Developer Grant.</member>
8327 <member>&#160;</member>
8328 <member> Conditioned upon Your compliance with Section 3.1 below and subject to third party intellectual property claims, the Initial Developer hereby grants You a world-wide, royalty-free, non-exclusive license:</member>
8329 <member>&#160;</member>
8330 <member> (a) under intellectual property rights (other than patent or trademark) Licensable by Initial Developer, to use, reproduce, modify, display, perform, sublicense and distribute the Original Software (or portions thereof), with or without Modifications, and/or as part of a Larger Work; and</member>
8331 <member>&#160;</member>
8332 <member> (b) under Patent Claims infringed by the making, using or selling of Original Software, to make, have made, use, practice, sell, and offer for sale, and/or otherwise dispose of the Original Software (or portions thereof).</member>
8333 <member>&#160;</member>
8334 <member> (c) The licenses granted in Sections 2.1(a) and (b) are effective on the date Initial Developer first distributes or otherwise makes the Original Software available to a third party under the terms of this License.</member>
8335 <member>&#160;</member>
8336 <member> (d) Notwithstanding Section 2.1(b) above, no patent license is granted: (1) for code that You delete from the Original Software, or (2) for infringements caused by: (i) the modification of the Original Software, or (ii) the combination of the Original Software with other software or devices.</member>
8337 <member>&#160;</member>
8338 <member> 2.2. Contributor Grant.</member>
8339 <member>&#160;</member>
8340 <member> Conditioned upon Your compliance with Section 3.1 below and subject to third party intellectual property claims, each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license:</member>
8341 <member>&#160;</member>
8342 <member> (a) under intellectual property rights (other than patent or trademark) Licensable by Contributor to use, reproduce, modify, display, perform, sublicense and distribute the Modifications created by such Contributor (or portions thereof), either on an unmodified basis, with other Modifications, as Covered Software and/or as part of a Larger Work; and</member>
8343 <member>&#160;</member>
8344 <member> (b) under Patent Claims infringed by the making, using, or selling of Modifications made by that Contributor either alone and/or in combination with its Contributor Version (or portions of such combination), to make, use, sell, offer for sale, have made, and/or otherwise dispose of: (1) Modifications made by that Contributor (or portions thereof); and (2) the combination of Modifications made by that Contributor with its Contributor Version (or portions of such combination).</member>
8345 <member>&#160;</member>
8346 <member> (c) The licenses granted in Sections 2.2(a) and 2.2(b) are effective on the date Contributor first distributes or otherwise makes the Modifications available to a third party.</member>
8347 <member>&#160;</member>
8348 <member> (d) Notwithstanding Section 2.2(b) above, no patent license is granted: (1) for any code that Contributor has deleted from the Contributor Version; (2) for infringements caused by: (i) third party modifications of Contributor Version, or (ii) the combination of Modifications made by that Contributor with other software (except as part of the Contributor Version) or other devices; or (3) under Patent Claims infringed by Covered Software in the absence of Modifications made by that Contributor.</member>
8349 <member>&#160;</member>
8350 <member>3. Distribution Obligations.</member>
8351 <member>&#160;</member>
8352 <member> 3.1. Availability of Source Code.</member>
8353 <member> Any Covered Software that You distribute or otherwise make available in Executable form must also be made available in Source Code form and that Source Code form must be distributed only under the terms of this License. You must include a copy of this License with every copy of the Source Code form of the Covered Software You distribute or otherwise make available. You must inform recipients of any such Covered Software in Executable form as to how they can obtain such Covered Software in Source Code form in a reasonable manner on or through a medium customarily used for software exchange.</member>
8354 <member>&#160;</member>
8355 <member> 3.2. Modifications.</member>
8356 <member> The Modifications that You create or to which You contribute are governed by the terms of this License. You represent that You believe Your Modifications are Your original creation(s) and/or You have sufficient rights to grant the rights conveyed by this License.</member>
8357 <member>&#160;</member>
8358 <member> 3.3. Required Notices.</member>
8359 <member> You must include a notice in each of Your Modifications that identifies You as the Contributor of the Modification. You may not remove or alter any copyright, patent or trademark notices contained within the Covered Software, or any notices of licensing or any descriptive text giving attribution to any Contributor or the Initial Developer.</member>
8360 <member>&#160;</member>
8361 <member> 3.4. Application of Additional Terms.</member>
8362 <member> You may not offer or impose any terms on any Covered Software in Source Code form that alters or restricts the applicable version of this License or the recipients. rights hereunder. You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Software. However, you may do so only on Your own behalf, and not on behalf of the Initial Developer or any Contributor. You must make it absolutely clear that any such warranty, support, indemnity or liability obligation is offered by You alone, and You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of warranty, support, indemnity or liability terms You offer.</member>
8363 <member>&#160;</member>
8364 <member> 3.5. Distribution of Executable Versions.</member>
8365 <member> You may distribute the Executable form of the Covered Software under the terms of this License or under the terms of a license of Your choice, which may contain terms different from this License, provided that You are in compliance with the terms of this License and that the license for the Executable form does not attempt to limit or alter the recipient.s rights in the Source Code form from the rights set forth in this License. If You distribute the Covered Software in Executable form under a different license, You must make it absolutely clear that any terms which differ from this License are offered by You alone, not by the Initial Developer or Contributor. You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of any such terms You offer.</member>
8366 <member>&#160;</member>
8367 <member> 3.6. Larger Works.</member>
8368 <member> You may create a Larger Work by combining Covered Software with other code not governed by the terms of this License and distribute the Larger Work as a single product. In such a case, You must make sure the requirements of this License are fulfilled for the Covered Software.</member>
8369 <member>&#160;</member>
8370 <member>4. Versions of the License.</member>
8371 <member>&#160;</member>
8372 <member> 4.1. New Versions.</member>
8373 <member> Sun Microsystems, Inc. is the initial license steward and may publish revised and/or new versions of this License from time to time. Each version will be given a distinguishing version number. Except as provided in Section 4.3, no one other than the license steward has the right to modify this License.</member>
8374 <member>&#160;</member>
8375 <member> 4.2. Effect of New Versions.</member>
8376 <member> You may always continue to use, distribute or otherwise make the Covered Software available under the terms of the version of the License under which You originally received the Covered Software. If the Initial Developer includes a notice in the Original Software prohibiting it from being distributed or otherwise made available under any subsequent version of the License, You must distribute and make the Covered Software available under the terms of the version of the License under which You originally received the Covered Software. Otherwise, You may also choose to use, distribute or otherwise make the Covered Software available under the terms of any subsequent version of the License published by the license steward.</member>
8377 <member>&#160;</member>
8378 <member> 4.3. Modified Versions.</member>
8379 <member> When You are an Initial Developer and You want to create a new license for Your Original Software, You may create and use a modified version of this License if You: (a) rename the license and remove any references to the name of the license steward (except to note that the license differs from this License); and (b) otherwise make it clear that the license contains terms which differ from this License.</member>
8380 <member>&#160;</member>
8381 <member>5. DISCLAIMER OF WARRANTY.</member>
8382 <member>&#160;</member>
8383 <member> COVERED SOFTWARE IS PROVIDED UNDER THIS LICENSE ON AN .AS IS. BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED SOFTWARE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED SOFTWARE IS WITH YOU. SHOULD ANY COVERED SOFTWARE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED SOFTWARE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.</member>
8384 <member>&#160;</member>
8385 <member>6. TERMINATION.</member>
8386 <member>&#160;</member>
8387 <member> 6.1. This License and the rights granted hereunder will terminate automatically if You fail to comply with terms herein and fail to cure such breach within 30 days of becoming aware of the breach. Provisions which, by their nature, must remain in effect beyond the termination of this License shall survive.</member>
8388 <member>&#160;</member>
8389 <member> 6.2. If You assert a patent infringement claim (excluding declaratory judgment actions) against Initial Developer or a Contributor (the Initial Developer or Contributor against whom You assert such claim is referred to as .Participant.) alleging that the Participant Software (meaning the Contributor Version where the Participant is a Contributor or the Original Software where the Participant is the Initial Developer) directly or indirectly infringes any patent, then any and all rights granted directly or indirectly to You by such Participant, the Initial Developer (if the Initial Developer is not the Participant) and all Contributors under Sections 2.1 and/or 2.2 of this License shall, upon 60 days notice from Participant terminate prospectively and automatically at the expiration of such 60 day notice period, unless if within such 60 day period You withdraw Your claim with respect to the Participant Software against such Participant either unilaterally or pursuant to a written agreement with Participant.</member>
8390 <member>&#160;</member>
8391 <member> 6.3. In the event of termination under Sections 6.1 or 6.2 above, all end user licenses that have been validly granted by You or any distributor hereunder prior to termination (excluding licenses granted to You by any distributor) shall survive termination.</member>
8392 <member>&#160;</member>
8393 <member>7. LIMITATION OF LIABILITY.</member>
8394 <member>&#160;</member>
8395 <member> UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED SOFTWARE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOST PROFITS, LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTY.S NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU.</member>
8396 <member>&#160;</member>
8397 <member>8. U.S. GOVERNMENT END USERS.</member>
8398 <member>&#160;</member>
8399 <member> The Covered Software is a .commercial item,. as that term is defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of .commercial computer software. (as that term is defined at 48 C.F.R. ? 252.227-7014(a)(1)) and .commercial computer software documentation. as such terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Covered Software with only those rights set forth herein. This U.S. Government Rights clause is in lieu of, and supersedes, any other FAR, DFAR, or other clause or provision that addresses Government rights in computer software under this License.</member>
8400 <member>&#160;</member>
8401 <member>9. MISCELLANEOUS.</member>
8402 <member>&#160;</member>
8403 <member> This License represents the complete agreement concerning subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by the law of the jurisdiction specified in a notice contained within the Original Software (except to the extent applicable law, if any, provides otherwise), excluding such jurisdiction.s conflict-of-law provisions. Any litigation relating to this License shall be subject to the jurisdiction of the courts located in the jurisdiction and venue specified in a notice contained within the Original Software, with the losing party responsible for costs, including, without limitation, court costs and reasonable attorneys. fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License. You agree that You alone are responsible for compliance with the United States export administration regulations (and the export control laws and regulation of any other countries) when You use, distribute or otherwise make available any Covered Software.</member>
8404 <member>&#160;</member>
8405 <member>10. RESPONSIBILITY FOR CLAIMS.</member>
8406 <member>&#160;</member>
8407 <member> As between Initial Developer and the Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License and You agree to work with Initial Developer and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability.</member>
8408 <member>&#160;</member>
8409 <member> NOTICE PURSUANT TO SECTION 9 OF THE COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL)</member>
8410 <member>&#160;</member>
8411 <member> The code released under the CDDL shall be governed by the laws of the State of California (excluding conflict-of-law provisions). Any litigation relating to this License shall be subject to the jurisdiction of the Federal Courts of the Northern District of California and the state courts of the State of California, with venue lying in Santa Clara County, California.</member>
8412 <member>&#160;</member>
8413 <member>&#160;</member>
8414 <member>The GNU General Public License (GPL) Version 2, June 1991</member>
8415 <member>&#160;</member>
8416 <member>&#160;</member>
8417 <member>Copyright (C) 1989, 1991 Free Software Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA</member>
8418 <member>&#160;</member>
8419 <member>Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.</member>
8420 <member>&#160;</member>
8421 <member>Preamble</member>
8422 <member>&#160;</member>
8423 <member>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.</member>
8424 <member>&#160;</member>
8425 <member>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.</member>
8426 <member>&#160;</member>
8427 <member>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.</member>
8428 <member>&#160;</member>
8429 <member>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.</member>
8430 <member>&#160;</member>
8431 <member>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.</member>
8432 <member>&#160;</member>
8433 <member>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.</member>
8434 <member>&#160;</member>
8435 <member>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.</member>
8436 <member>&#160;</member>
8437 <member>The precise terms and conditions for copying, distribution and modification follow.</member>
8438 <member>&#160;</member>
8439 <member>&#160;</member>
8440 <member>TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION</member>
8441 <member>&#160;</member>
8442 <member>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".</member>
8443 <member>&#160;</member>
8444 <member>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.</member>
8445 <member>&#160;</member>
8446 <member>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.</member>
8447 <member>&#160;</member>
8448 <member>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.</member>
8449 <member>&#160;</member>
8450 <member>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:</member>
8451 <member>&#160;</member>
8452 <member> a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change.</member>
8453 <member>&#160;</member>
8454 <member> 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.</member>
8455 <member>&#160;</member>
8456 <member> 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.)</member>
8457 <member>&#160;</member>
8458 <member>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.</member>
8459 <member>&#160;</member>
8460 <member>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.</member>
8461 <member>&#160;</member>
8462 <member>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.</member>
8463 <member>&#160;</member>
8464 <member>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:</member>
8465 <member>&#160;</member>
8466 <member> 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,</member>
8467 <member>&#160;</member>
8468 <member> 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,</member>
8469 <member>&#160;</member>
8470 <member> 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.)</member>
8471 <member>&#160;</member>
8472 <member>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.</member>
8473 <member>&#160;</member>
8474 <member>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.</member>
8475 <member>&#160;</member>
8476 <member>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.</member>
8477 <member>&#160;</member>
8478 <member>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.</member>
8479 <member>&#160;</member>
8480 <member>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.</member>
8481 <member>&#160;</member>
8482 <member>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.</member>
8483 <member>&#160;</member>
8484 <member>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.</member>
8485 <member>&#160;</member>
8486 <member>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.</member>
8487 <member>&#160;</member>
8488 <member>This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License.</member>
8489 <member>&#160;</member>
8490 <member>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.</member>
8491 <member>&#160;</member>
8492 <member>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.</member>
8493 <member>&#160;</member>
8494 <member>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.</member>
8495 <member>&#160;</member>
8496 <member>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.</member>
8497 <member>&#160;</member>
8498 <member>NO WARRANTY</member>
8499 <member>&#160;</member>
8500 <member>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.</member>
8501 <member>&#160;</member>
8502 <member>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.</member>
8503 <member>&#160;</member>
8504 <member>END OF TERMS AND CONDITIONS</member>
8505 <member>&#160;</member>
8506 <member>&#160;</member>
8507 <member>How to Apply These Terms to Your New Programs</member>
8508 <member>&#160;</member>
8509 <member>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.</member>
8510 <member>&#160;</member>
8511 <member>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.</member>
8512 <member>&#160;</member>
8513 <member> One line to give the program's name and a brief idea of what it does.</member>
8514 <member>&#160;</member>
8515 <member> Copyright (C)</member>
8516 <member>&#160;</member>
8517 <member> 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.</member>
8518 <member>&#160;</member>
8519 <member> 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.</member>
8520 <member>&#160;</member>
8521 <member> 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</member>
8522 <member>&#160;</member>
8523 <member>Also add information on how to contact you by electronic and paper mail.</member>
8524 <member>&#160;</member>
8525 <member>If the program is interactive, make it output a short notice like this when it starts in an interactive mode:</member>
8526 <member>&#160;</member>
8527 <member> Gnomovision version 69, Copyright (C) year name of author</member>
8528 <member> 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.</member>
8529 <member>&#160;</member>
8530 <member>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.</member>
8531 <member>&#160;</member>
8532 <member>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:</member>
8533 <member>&#160;</member>
8534 <member> Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker.</member>
8535 <member>&#160;</member>
8536 <member> signature of Ty Coon, 1 April 1989</member>
8537 <member> Ty Coon, President of Vice</member>
8538 <member>&#160;</member>
8539 <member>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.</member>
8540 <member>&#160;</member>
8541 <member>&#160;</member>
8542 <member>"CLASSPATH" EXCEPTION TO THE GPL VERSION 2</member>
8543 <member>&#160;</member>
8544 <member>Certain source files distributed by Sun Microsystems, Inc. are subject to the following clarification and special exception to the GPL Version 2, but only where Sun has expressly included in the particular source file's header the words</member>
8545 <member>&#160;</member>
8546 <member>"Sun designates this particular file as subject to the "Classpath" exception as provided by Sun in the License file that accompanied this code."</member>
8547 <member>&#160;</member>
8548 <member>Linking this library statically or dynamically with other modules is making a combined work based on this library. Thus, the terms and conditions of the GNU General Public License Version 2 cover the whole combination.</member>
8549 <member>&#160;</member>
8550 <member>As a special exception, the copyright holders of this library give you permission to link this library with independent modules to produce an executable, regardless of the license terms of these independent modules, and to copy and distribute the resulting executable under terms of your choice, provided that you also meet, for each linked independent module, the terms and conditions of the license of that module.? An independent module is a module which is not derived from or based on this library.? If you modify this library, you may extend this exception to your version of the library, but you are not obligated to do so.? If you do not wish to do so, delete this exception statement from your version.</member>
8551 </simplelist>
8552 </section>
8553 </section>
8554 <section id="enea-linux-eclipse-open-source-licenses-65">
8555 <title>License 65</title>
8556 <section>
8557 <title>Source File(s)</title>
8558 <itemizedlist spacing="compact">
8559 <listitem>
8560 <para>
8561 plugins/extracted_jars/org.w3c.css.sac_1.3.1.v200903091627/about_files/LICENSE-W3C-20021231.html
8562 </para>
8563 </listitem>
8564 </itemizedlist>
8565 </section>
8566 <section>
8567 <title>License Text</title>
8568 <simplelist>
8569 <member># W3C(R) SOFTWARE NOTICE AND LICENSE</member>
8570 <member>&#160;</member>
8571 <member>### &lt;http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231&gt;</member>
8572 <member>&#160;</member>
8573 <member>This work (and included software, documentation such as READMEs, or other</member>
8574 <member>related items) is being provided by the copyright holders under the following</member>
8575 <member>license. By obtaining, using and/or copying this work, you (the licensee)</member>
8576 <member>agree that you have read, understood, and will comply with the following terms</member>
8577 <member>and conditions.</member>
8578 <member>&#160;</member>
8579 <member>Permission to copy, modify, and distribute this software and its</member>
8580 <member>documentation, with or without modification, for any purpose and without fee</member>
8581 <member>or royalty is hereby granted, provided that you include the following on ALL</member>
8582 <member>copies of the software and documentation or portions thereof, including</member>
8583 <member>modifications:</member>
8584 <member>&#160;</member>
8585 <member> 1. The full text of this NOTICE in a location viewable to users of the redistributed or derivative work.</member>
8586 <member> 2. Any pre-existing intellectual property disclaimers, notices, or terms and conditions. If none exist, the [W3C Software Short Notice](copyright-software-short-notice-20021231.html) should be included (hypertext is preferred, text is permitted) within the body of any redistributed or derivative code.</member>
8587 <member> 3. Notice of any changes or modifications to the files, including the date changes were made. (We recommend you provide URIs to the location from which the code is derived.)</member>
8588 <member>&#160;</member>
8589 <member>THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS</member>
8590 <member>MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT</member>
8591 <member>LIMITED TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR</member>
8592 <member>PURPOSE OR THAT THE USE OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE ANY</member>
8593 <member>THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.</member>
8594 <member>&#160;</member>
8595 <member>COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR</member>
8596 <member>CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENTATION.</member>
8597 <member>&#160;</member>
8598 <member>The name and trademarks of copyright holders may NOT be used in advertising or</member>
8599 <member>publicity pertaining to the software without specific, written prior</member>
8600 <member>permission. Title to copyright in this software and any associated</member>
8601 <member>documentation will at all times remain with copyright holders.</member>
8602 <member>&#160;</member>
8603 <member>____________________________________</member>
8604 <member>&#160;</member>
8605 <member>This formulation of W3C's notice and license became active on December 31</member>
8606 <member>2002\. This version removes the copyright ownership notice such that this</member>
8607 <member>license can be used with materials other than those owned by the W3C, reflects</member>
8608 <member>that ERCIM is now a host of the W3C, includes references to this specific</member>
8609 <member>dated version of the license, and removes the ambiguous grant of "use".</member>
8610 <member>Otherwise, this version is the same as the [previous</member>
8611 <member>version](http://www.w3.org/Consortium/Legal/copyright-software-19980720) and</member>
8612 <member>is written so as to preserve the [Free Software Foundation's assessment of GPL</member>
8613 <member>compatibility](http://www.gnu.org/philosophy/license-</member>
8614 <member>list.html#GPLCompatibleLicenses) and [OSI's</member>
8615 <member>certification](http://www.opensource.org/licenses/W3C.php) under the [Open</member>
8616 <member>Source Definition](http://www.opensource.org/docs/definition.php). Please see</member>
8617 <member>our [Copyright FAQ](http://www.w3.org/Consortium/Legal/IPR-FAQ) for common</member>
8618 <member>questions about using materials from our site, including specific terms and</member>
8619 <member>conditions for packages like libwww, Amaya, and Jigsaw. Other questions about</member>
8620 <member>this notice can be directed to [site-policy@w3.org](mailto:site-</member>
8621 <member>policy@w3.org). </member>
8622 <member>&#160;</member>
8623 <member>&#160;</member>
8624 <member>Joseph Reagle &lt;[site-policy@w3.org&gt;](mailto:site-policy@w3.org)</member>
8625 <member>&#160;</member>
8626 <member>Last revised $Id: LICENSE-W3C-20021231.html,v 1.2.2.2 2009/02/27 15:48:32</member>
8627 <member>cdamus Exp $</member>
8628 </simplelist>
8629 </section>
8630 </section>
8631 <section id="enea-linux-eclipse-open-source-licenses-66">
8632 <title>License 66</title>
8633 <section>
8634 <title>Source File(s)</title>
8635 <itemizedlist spacing="compact">
8636 <listitem>
8637 <para>
8638 plugins/extracted_jars/org.w3c.dom.events_3.0.0.draft20060413_v201105210656/about.html
8639 </para>
8640 </listitem>
8641 </itemizedlist>
8642 </section>
8643 <section>
8644 <title>License Text</title>
8645 <simplelist>
8646 <member>## About This Content</member>
8647 <member>&#160;</member>
8648 <member>June, 2009</member>
8649 <member>&#160;</member>
8650 <member>### License</member>
8651 <member>&#160;</member>
8652 <member>The Eclipse Foundation makes available all content in this plug-in</member>
8653 <member>("Content"). Unless otherwise indicated below, the Content is provided to you</member>
8654 <member>under the terms and conditions of the Eclipse Public License Version 1.0</member>
8655 <member>("EPL"). A copy of the EPL is available at</member>
8656 <member>&lt;http://www.eclipse.org/legal/epl-v10.html&gt;. For purposes of the EPL,</member>
8657 <member>"Program" will mean the Content.</member>
8658 <member>&#160;</member>
8659 <member>If you did not receive this Content directly from the Eclipse Foundation, the</member>
8660 <member>Content is being redistributed by another party ("Redistributor") and</member>
8661 <member>different terms and conditions may apply to your use of any object code in the</member>
8662 <member>Content. Check the Redistributor's license that was provided with the Content.</member>
8663 <member>If no such license exists, contact the Redistributor. Unless otherwise</member>
8664 <member>indicated below, the terms and conditions of the EPL still apply to any source</member>
8665 <member>code in the Content and such source code may be obtained at</member>
8666 <member>[http://www.eclipse.org](http://www.eclipse.org/).</member>
8667 <member>&#160;</member>
8668 <member>### Third Party Content</member>
8669 <member>&#160;</member>
8670 <member>The Content includes items that have been sourced from third parties as set</member>
8671 <member>out below. If you did not receive this Content directly from the Eclipse</member>
8672 <member>Foundation, the following is provided for informational purposes only, and you</member>
8673 <member>should look to the Redistributor's license for terms and conditions of use.</member>
8674 <member>&#160;</member>
8675 <member>#### Batik SVG Toolkit 1.7 (subset)</member>
8676 <member>&#160;</member>
8677 <member>The plug-in includes a subset of Batik SVG Toolkit 1.7 ("Batik") developed by</member>
8678 <member>the Apache Software Foundation as part of the XML Graphics project. Your use</member>
8679 <member>of Batik is subject to the terms and conditions of the Apache License, Version</member>
8680 <member>2.0 ("Apache License"). A copy of the Apache License can be found in</member>
8681 <member>[about_files/LICENSE-2.0.txt](about_files/LICENSE-2.0.txt) and is also</member>
8682 <member>available at &lt;http://www.apache.org/licenses/LICENSE-2.0&gt;.</member>
8683 <member>&#160;</member>
8684 <member>The Apache attribution [NOTICE](about_files/NOTICE) file is included with the</member>
8685 <member>Content in accordance with 4d of the Apache License.</member>
8686 <member>&#160;</member>
8687 <member>Batik is a subset of the original distribution available from the Apache</member>
8688 <member>Software Foundation and does NOT include:</member>
8689 <member>&#160;</member>
8690 <member> * Rhino</member>
8691 <member> * Xerces-J</member>
8692 <member> * PDF Transcoder</member>
8693 <member>&#160;</member>
8694 <member>A subset of the Apache binary code located in the file batik-ext.jar of the</member>
8695 <member>original distribution is included in this plug-in.</member>
8696 <member>&#160;</member>
8697 <member>Source code for Batik is available at &lt;http://xmlgraphics.apache.org/batik/&gt;.</member>
8698 <member>&#160;</member>
8699 <member>The names "Batik" and "Apache Software Foundation" must not be used to endorse</member>
8700 <member>or promote products derived from this software without prior written</member>
8701 <member>permission. For written permission, please contact</member>
8702 <member>[apache@apache.org](mailto:apache@apache.org).</member>
8703 <member>&#160;</member>
8704 <member>#### DOM Events</member>
8705 <member>&#160;</member>
8706 <member>The plug-in includes Document Object Model (DOM) Level 3 Events Specification</member>
8707 <member>("DOM Events") developed by the World Wide Web Consortium ("W3C"). Your use of</member>
8708 <member>DOM Events is subject to the terms and conditions of the W3C software license,</member>
8709 <member>dated December 31 2002 ("W3C License"). A copy of the W3C License can be found</member>
8710 <member>in [about_files/LICENSE-W3C-20021231.html](about_files/LICENSE-</member>
8711 <member>W3C-20021231.html) and is also available at</member>
8712 <member>&lt;http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231&gt;.</member>
8713 <member>&#160;</member>
8714 <member>Source code for DOM Events is available at</member>
8715 <member>&lt;http://www.w3.org/TR/SVG11/java.html&gt;.</member>
8716 </simplelist>
8717 </section>
8718 </section>
8719 <section id="enea-linux-eclipse-open-source-licenses-67">
8720 <title>License 67</title>
8721 <section>
8722 <title>Source File(s)</title>
8723 <itemizedlist spacing="compact">
8724 <listitem>
8725 <para>
8726 plugins/extracted_jars/org.eclipse.swt.gtk.linux.x86_64.source_3.104.0.v20150528-0211/about_files/webkit-bsd.txt
8727 </para>
8728 </listitem>
8729 <listitem>
8730 <para>
8731 plugins/extracted_jars/org.eclipse.swt.gtk.linux.x86_64_3.104.0.v20150528-0211/about_files/webkit-bsd.txt
8732 </para>
8733 </listitem>
8734 </itemizedlist>
8735 </section>
8736 <section>
8737 <title>License Text</title>
8738 <simplelist>
8739 <member>BSD License</member>
8740 <member>&#160;</member>
8741 <member>Copyright (C) 2009 Apple Inc. All rights reserved.</member>
8742 <member>&#160;</member>
8743 <member>Redistribution and use in source and binary forms, with or without modification, are permitted provided</member>
8744 <member>that the following conditions are met:</member>
8745 <member>&#160;</member>
8746 <member>1. Redistributions of source code must retain the above copyright notice, this list of conditions and</member>
8747 <member>the following disclaimer.</member>
8748 <member>&#160;</member>
8749 <member>2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and</member>
8750 <member>the following disclaimer in the documentation and/or other materials provided with the distribution.</member>
8751 <member>&#160;</member>
8752 <member>THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,</member>
8753 <member>INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE</member>
8754 <member>ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,</member>
8755 <member>SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR</member>
8756 <member>SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,</member>
8757 <member>WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE</member>
8758 <member>USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</member>
8759 </simplelist>
8760 </section>
8761 </section>
8762 <section id="enea-linux-eclipse-open-source-licenses-68">
8763 <title>License 68</title>
8764 <section>
8765 <title>Source File(s)</title>
8766 <itemizedlist spacing="compact">
8767 <listitem>
8768 <para>
8769 plugins/extracted_jars/org.apache.batik.util.gui_1.7.0.v200903091627/about_files/LICENSE.sax.txt
8770 </para>
8771 </listitem>
8772 </itemizedlist>
8773 </section>
8774 <section>
8775 <title>License Text</title>
8776 <simplelist>
8777 <member>xml-commons/java/external/LICENSE.sax.txt $Id: LICENSE.sax.txt,v 1.2.2.2 2009/02/27 15:41:20 cdamus Exp $</member>
8778 <member>&#160;</member>
8779 <member>&#160;</member>
8780 <member>This license came from: http://www.megginson.com/SAX/copying.html</member>
8781 <member> However please note future versions of SAX may be covered </member>
8782 <member> under http://saxproject.org/?selected=pd</member>
8783 <member>&#160;</member>
8784 <member>&#160;</member>
8785 <member>This page is now out of date -- see the new SAX site at </member>
8786 <member>http://www.saxproject.org/ for more up-to-date</member>
8787 <member>releases and other information. Please change your bookmarks.</member>
8788 <member>&#160;</member>
8789 <member>&#160;</member>
8790 <member>SAX2 is Free!</member>
8791 <member>&#160;</member>
8792 <member>I hereby abandon any property rights to SAX 2.0 (the Simple API for</member>
8793 <member>XML), and release all of the SAX 2.0 source code, compiled code, and</member>
8794 <member>documentation contained in this distribution into the Public Domain.</member>
8795 <member>SAX comes with NO WARRANTY or guarantee of fitness for any</member>
8796 <member>purpose.</member>
8797 <member>&#160;</member>
8798 <member>David Megginson, david@megginson.com</member>
8799 <member>2000-05-05</member>
8800 </simplelist>
8801 </section>
8802 </section>
8803 <section id="enea-linux-eclipse-open-source-licenses-69">
8804 <title>License 69</title>
8805 <section>
8806 <title>Source File(s)</title>
8807 <itemizedlist spacing="compact">
8808 <listitem>
8809 <para>
8810 plugins/extracted_jars/org.sat4j.pb_2.3.5.v201404071733/about.html
8811 </para>
8812 </listitem>
8813 </itemizedlist>
8814 </section>
8815 <section>
8816 <title>License Text</title>
8817 <simplelist>
8818 <member>## About This Content</member>
8819 <member>&#160;</member>
8820 <member>June, 2010</member>
8821 <member>&#160;</member>
8822 <member>### License</member>
8823 <member>&#160;</member>
8824 <member>The Eclipse Foundation makes available all content in this plug-in</member>
8825 <member>("Content"). Unless otherwise indicated below, the Content is provided to you</member>
8826 <member>under the terms and conditions of the Eclipse Public License Version 1.0</member>
8827 <member>("EPL"). A copy of the EPL is available at [http://www.eclipse.org/legal/epl-v</member>
8828 <member>10.html](http://www.eclipse.org/org/documents/epl-v10.php). For purposes of</member>
8829 <member>the EPL, "Program" will mean the Content.</member>
8830 <member>&#160;</member>
8831 <member>If you did not receive this Content directly from the Eclipse Foundation, the</member>
8832 <member>Content is being redistributed by another party ("Redistributor") and</member>
8833 <member>different terms and conditions may apply to your use of any object code in the</member>
8834 <member>Content. Check the Redistributor's license that was provided with the Content.</member>
8835 <member>If no such license exists, contact the Redistributor. Unless otherwise</member>
8836 <member>indicated below, the terms and conditions of the EPL still apply to any source</member>
8837 <member>code in the Content and such source code may be obtained at</member>
8838 <member>[http://www.eclipse.org](http://www.eclipse.org/).</member>
8839 <member>&#160;</member>
8840 <member>### Third Party Content</member>
8841 <member>&#160;</member>
8842 <member>The Content includes items that have been sourced from third parties as set</member>
8843 <member>out below. If you did not receive this Content directly from the Eclipse</member>
8844 <member>Foundation, the following is provided for informational purposes only, and you</member>
8845 <member>should look to the Redistributor's license for terms and conditions of use.</member>
8846 <member>&#160;</member>
8847 <member>#### SAT4J 2.3.5 SUBSET (Pseudo)</member>
8848 <member>&#160;</member>
8849 <member>The SAT4J project makes available all content in this plug-in ("Content").</member>
8850 <member>Your use of the Content is governed by the terms and conditions of the Eclipse</member>
8851 <member>Public License Version 1.0 ("EPL"). A copy of the EPL is available at</member>
8852 <member>http://www.eclipse.org/legal/epl-v10.html. For purposes of the EPL, "Program"</member>
8853 <member>will mean the Content.</member>
8854 <member>&#160;</member>
8855 <member>Alternatively, the Content may be obtained from the SAT4J project website at</member>
8856 <member>&lt;http://www.sat4j.org/&gt; for use under the terms of either the GNU Lesser</member>
8857 <member>General Public License Version 2.1 or later (the "LGPL"), in which case the</member>
8858 <member>provisions of the LGPL are applicable instead of those above. If you wish to</member>
8859 <member>allow use of your version of the Content only under the terms of the LGPL, and</member>
8860 <member>not to allow others to use your version of this Content under the terms of the</member>
8861 <member>EPL, indicate your decision by deleting the provisions above and replace them</member>
8862 <member>with the notice and other provisions required by the LGPL. If you do not</member>
8863 <member>delete the provisions above, a recipient may use your version of this file</member>
8864 <member>under the terms of the EPL or the LGPL.</member>
8865 <member>&#160;</member>
8866 <member>The Eclipse Foundation elects to include this software in this distribution</member>
8867 <member>under the EPL license. The source code for this plug-in can be obtained from</member>
8868 <member>the SAT4J project website at &lt;http://www.sat4j.org/&gt;</member>
8869 <member>&#160;</member>
8870 <member>SAT4J includes content that was obtained under licenses that differ from the</member>
8871 <member>SAT4J licenses. </member>
8872 <member>The content in the following classes</member>
8873 <member>&#160;</member>
8874 <member> * org/sat4j/pb/reader/OPBReader2005.java</member>
8875 <member> * org/sat4j/pb/reader/OPBReader2007.java</member>
8876 <member>&#160;</member>
8877 <member>is based on a parser for pseudo-Boolean instances (the "Official" reader for</member>
8878 <member>the Pseudo Boolean evaluation 2005) and was obtained from</member>
8879 <member>&#160;</member>
8880 <member> * &lt;http://www.cril.univ-artois.fr/PB05/parser/SimpleParser.java&gt; and</member>
8881 <member> * &lt;http://www.cril.univ-artois.fr/PB07/parser/SimpleParser.java&gt;</member>
8882 <member>under the following permissive license: </member>
8883 <member> </member>
8884 <member>Copyright (c) 2005-2007 Olivier ROUSSEL and Vasco MANQUINHO </member>
8885 <member> </member>
8886 <member>Permission is hereby granted, free of charge, to any person obtaining a copy </member>
8887 <member>of this software and associated documentation files (the "Software"), to deal </member>
8888 <member>in the Software without restriction, including without limitation the rights </member>
8889 <member>to use, copy, modify, merge, publish, distribute, sublicense, and/or sell </member>
8890 <member>copies of the Software, and to permit persons to whom the Software is </member>
8891 <member>furnished to do so, subject to the following conditions: </member>
8892 <member> </member>
8893 <member>The above copyright notice and this permission notice shall be included in </member>
8894 <member>all copies or substantial portions of the Software. </member>
8895 <member> </member>
8896 <member>THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR </member>
8897 <member>IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, </member>
8898 <member>FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE </member>
8899 <member>AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER </member>
8900 <member>LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, </member>
8901 <member>OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN </member>
8902 <member>THE SOFTWARE. </member>
8903 </simplelist>
8904 </section>
8905 </section>
8906 <section id="enea-linux-eclipse-open-source-licenses-70">
8907 <title>License 70</title>
8908 <section>
8909 <title>Source File(s)</title>
8910 <itemizedlist spacing="compact">
8911 <listitem>
8912 <para>
8913 plugins/extracted_jars/org.apache.batik.util.gui_1.7.0.v200903091627/about_files/LICENSE.dom-software.txt
8914 </para>
8915 </listitem>
8916 </itemizedlist>
8917 </section>
8918 <section>
8919 <title>License Text</title>
8920 <simplelist>
8921 <member>xml-commons/java/external/LICENSE.dom-software.txt $Id: LICENSE.dom-software.txt,v 1.2.2.2 2009/02/27 15:41:20 cdamus Exp $</member>
8922 <member>&#160;</member>
8923 <member>&#160;</member>
8924 <member>This license came from: http://www.w3.org/Consortium/Legal/copyright-software-19980720</member>
8925 <member>&#160;</member>
8926 <member>&#160;</member>
8927 <member>W3C(R) SOFTWARE NOTICE AND LICENSE</member>
8928 <member>Copyright (C) 1994-2001 World</member>
8929 <member>Wide Web Consortium, &lt;a href="http://www.w3.org/"&gt;World</member>
8930 <member>Wide Web Consortium&lt;/a&gt;, (&lt;a href=</member>
8931 <member>"http://www.lcs.mit.edu/"&gt;Massachusetts Institute of</member>
8932 <member>Technology&lt;/a&gt;, &lt;a href="http://www.inria.fr/"&gt;Institut National de</member>
8933 <member>Recherche en Informatique et en Automatique&lt;/a&gt;, &lt;a href=</member>
8934 <member>"http://www.keio.ac.jp/"&gt;Keio University&lt;/a&gt;). All Rights Reserved.</member>
8935 <member>http://www.w3.org/Consortium/Legal/</member>
8936 <member>&#160;</member>
8937 <member>This W3C work (including software, documents, or other related</member>
8938 <member>items) is being provided by the copyright holders under the</member>
8939 <member>following license. By obtaining, using and/or copying this work,</member>
8940 <member>you (the licensee) agree that you have read, understood, and will</member>
8941 <member>comply with the following terms and conditions:</member>
8942 <member>Permission to use, copy, modify, and distribute this software</member>
8943 <member>and its documentation, with or without modification, for any</member>
8944 <member>purpose and without fee or royalty is hereby granted, provided that</member>
8945 <member>you include the following on ALL copies of the software and</member>
8946 <member>documentation or portions thereof, including modifications, that</member>
8947 <member>you make:</member>
8948 <member>&#160;</member>
8949 <member>The full text of this NOTICE in a location viewable to users of</member>
8950 <member>the redistributed or derivative work.</member>
8951 <member>&#160;</member>
8952 <member>Any pre-existing intellectual property disclaimers, notices, or</member>
8953 <member>terms and conditions. If none exist, a short notice of the</member>
8954 <member>following form (hypertext is preferred, text is permitted) should</member>
8955 <member>be used within the body of any redistributed or derivative code:</member>
8956 <member>"Copyright (C) [$date-of-software] World Wide Web Consortium, (Massachusetts Institute of</member>
8957 <member>Technology, Institut National de</member>
8958 <member>Recherche en Informatique et en Automatique, Keio University). All Rights Reserved.</member>
8959 <member>http://www.w3.org/Consortium/Legal/"</member>
8960 <member>&#160;</member>
8961 <member>Notice of any changes or modifications to the W3C files,</member>
8962 <member>including the date changes were made. (We recommend you provide </member>
8963 <member>URIs to the location from which the code is derived.)</member>
8964 <member>&#160;</member>
8965 <member>THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND</member>
8966 <member>COPYRIGHT HOLDERS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR</member>
8967 <member>IMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES OF</member>
8968 <member>MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE</member>
8969 <member>USE OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE ANY THIRD</member>
8970 <member>PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.</member>
8971 <member>COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT,</member>
8972 <member>SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE</member>
8973 <member>SOFTWARE OR DOCUMENTATION.</member>
8974 <member>&#160;</member>
8975 <member>The name and trademarks of copyright holders may NOT be used in</member>
8976 <member>advertising or publicity pertaining to the software without</member>
8977 <member>specific, written prior permission. Title to copyright in this</member>
8978 <member>software and any associated documentation will at all times remain</member>
8979 <member>with copyright holders.</member>
8980 <member>____________________________________</member>
8981 <member>This formulation of W3C's notice and license became active on</member>
8982 <member>August 14 1998 so as to improve compatibility with GPL. This</member>
8983 <member>version ensures that W3C software licensing terms are no more</member>
8984 <member>restrictive than GPL and consequently W3C software may be</member>
8985 <member>distributed in GPL packages. See the older formulation for the</member>
8986 <member>policy prior to this date. Please see our Copyright FAQ for common </member>
8987 <member>questions about using materials from</member>
8988 <member>our site, including specific terms and conditions for packages like</member>
8989 <member>libwww, Amaya, and Jigsaw. </member>
8990 <member>Other questions about this notice can be</member>
8991 <member>directed to site-policy@w3.org.</member>
8992 <member>&#160;</member>
8993 <member>webmaster</member>
8994 <member>(last updated $Date: 2009/02/27 15:41:20 $)</member>
8995 </simplelist>
8996 </section>
8997 </section>
8998 <section id="enea-linux-eclipse-open-source-licenses-71">
8999 <title>License 71</title>
9000 <section>
9001 <title>Source File(s)</title>
9002 <itemizedlist spacing="compact">
9003 <listitem>
9004 <para>
9005 plugins/extracted_jars/org.w3c.css.sac_1.3.1.v200903091627/about_files/LICENSE.sac.html
9006 </para>
9007 </listitem>
9008 </itemizedlist>
9009 </section>
9010 <section>
9011 <title>License Text</title>
9012 <simplelist>
9013 <member># W3C IPR SOFTWARE NOTICE</member>
9014 <member>&#160;</member>
9015 <member>### Copyright (C) 2002 World Wide Web Consortium, (Massachusetts Institute of</member>
9016 <member>Technology, Institut National de Recherche en Informatique et en Automatique,</member>
9017 <member>Keio University). All Rights Reserved.</member>
9018 <member>&#160;</member>
9019 <member>**Note:** The original version of the W3C Software Copyright Notice and License could be found at &lt;http://www.w3.org/Consortium/Legal/copyright-software-19980720&gt;</member>
9020 <member>&#160;</member>
9021 <member>### Copyright (C) 1994-2002 [World Wide Web Consortium](http://www.w3.org/),</member>
9022 <member>([Massachusetts Institute of Technology](http://www.lcs.mit.edu/), [Institut</member>
9023 <member>National de Recherche en Informatique et en</member>
9024 <member>Automatique](http://www.inria.fr/), [Keio</member>
9025 <member>University](http://www.keio.ac.jp/)). All Rights Reserved.</member>
9026 <member>http://www.w3.org/Consortium/Legal/</member>
9027 <member>&#160;</member>
9028 <member>This W3C work (including software, documents, or other related items) is being</member>
9029 <member>provided by the copyright holders under the following license. By obtaining,</member>
9030 <member>using and/or copying this work, you (the licensee) agree that you have read,</member>
9031 <member>understood, and will comply with the following terms and conditions:</member>
9032 <member>&#160;</member>
9033 <member>Permission to use, copy, and modify this software and its documentation, with</member>
9034 <member>or without modification, for any purpose and without fee or royalty is hereby</member>
9035 <member>granted, provided that you include the following on ALL copies of the software</member>
9036 <member>and documentation or portions thereof, including modifications, that you make:</member>
9037 <member>&#160;</member>
9038 <member> 1. The full text of this NOTICE in a location viewable to users of the redistributed or derivative work.</member>
9039 <member> 2. Any pre-existing intellectual property disclaimers, notices, or terms and conditions. If none exist, a short notice of the following form (hypertext is preferred, text is permitted) should be used within the body of any redistributed or derivative code: "Copyright (C) 2002 [World Wide Web Consortium](http://www.w3.org/), ([Massachusetts Institute of Technology](http://www.lcs.mit.edu/), [Institut National de Recherche en Informatique et en Automatique](http://www.inria.fr/), [Keio University](http://www.keio.ac.jp/)). All Rights Reserved. http://www.w3.org/Consortium/Legal/"</member>
9040 <member> 3. Notice of any changes or modifications to the W3C files, including the date changes were made. (We recommend you provide URIs to the location from which the code is derived.)</member>
9041 <member>&#160;</member>
9042 <member>THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS</member>
9043 <member>MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT</member>
9044 <member>LIMITED TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR</member>
9045 <member>PURPOSE OR THAT THE USE OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE ANY</member>
9046 <member>THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.</member>
9047 <member>&#160;</member>
9048 <member>COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR</member>
9049 <member>CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENTATION.</member>
9050 <member>&#160;</member>
9051 <member>The name and trademarks of copyright holders may NOT be used in advertising or</member>
9052 <member>publicity pertaining to the software without specific, written prior</member>
9053 <member>permission. Title to copyright in this software and any associated</member>
9054 <member>documentation will at all times remain with copyright holders.</member>
9055 </simplelist>
9056 </section>
9057 </section>
9058 <section id="enea-linux-eclipse-open-source-licenses-72">
9059 <title>License 72</title>
9060 <section>
9061 <title>Source File(s)</title>
9062 <itemizedlist spacing="compact">
9063 <listitem>
9064 <para>
9065 plugins/extracted_jars/org.apache.batik.util_1.7.0.v201011041433/about_files/LICENSE.sax.txt
9066 </para>
9067 </listitem>
9068 </itemizedlist>
9069 </section>
9070 <section>
9071 <title>License Text</title>
9072 <simplelist>
9073 <member>xml-commons/java/external/LICENSE.sax.txt $Id: LICENSE.sax.txt,v 1.2.2.2 2009/02/27 15:39:49 cdamus Exp $</member>
9074 <member>&#160;</member>
9075 <member>&#160;</member>
9076 <member>This license came from: http://www.megginson.com/SAX/copying.html</member>
9077 <member> However please note future versions of SAX may be covered </member>
9078 <member> under http://saxproject.org/?selected=pd</member>
9079 <member>&#160;</member>
9080 <member>&#160;</member>
9081 <member>This page is now out of date -- see the new SAX site at </member>
9082 <member>http://www.saxproject.org/ for more up-to-date</member>
9083 <member>releases and other information. Please change your bookmarks.</member>
9084 <member>&#160;</member>
9085 <member>&#160;</member>
9086 <member>SAX2 is Free!</member>
9087 <member>&#160;</member>
9088 <member>I hereby abandon any property rights to SAX 2.0 (the Simple API for</member>
9089 <member>XML), and release all of the SAX 2.0 source code, compiled code, and</member>
9090 <member>documentation contained in this distribution into the Public Domain.</member>
9091 <member>SAX comes with NO WARRANTY or guarantee of fitness for any</member>
9092 <member>purpose.</member>
9093 <member>&#160;</member>
9094 <member>David Megginson, david@megginson.com</member>
9095 <member>2000-05-05</member>
9096 </simplelist>
9097 </section>
9098 </section>
9099 <section id="enea-linux-eclipse-open-source-licenses-73">
9100 <title>License 73</title>
9101 <section>
9102 <title>Source File(s)</title>
9103 <itemizedlist spacing="compact">
9104 <listitem>
9105 <para>
9106 plugins/extracted_jars/org.eclipse.swt.gtk.linux.x86_64.source_3.104.0.v20150528-0211/about.html
9107 </para>
9108 </listitem>
9109 <listitem>
9110 <para>
9111 plugins/extracted_jars/org.eclipse.swt.gtk.linux.x86_64_3.104.0.v20150528-0211/about.html
9112 </para>
9113 </listitem>
9114 </itemizedlist>
9115 </section>
9116 <section>
9117 <title>License Text</title>
9118 <simplelist>
9119 <member>## About This Content</member>
9120 <member>&#160;</member>
9121 <member>January 2, 2014</member>
9122 <member>&#160;</member>
9123 <member>### License</member>
9124 <member>&#160;</member>
9125 <member>The Eclipse Foundation makes available all content in this plug-in</member>
9126 <member>("Content"). Unless otherwise indicated below, the Content is provided to you</member>
9127 <member>under the terms and conditions of the Eclipse Public License Version 1.0</member>
9128 <member>("EPL"). A copy of the EPL is available at</member>
9129 <member>&lt;http://www.eclipse.org/legal/epl-v10.html&gt;. For purposes of the EPL,</member>
9130 <member>"Program" will mean the Content.</member>
9131 <member>&#160;</member>
9132 <member>If you did not receive this Content directly from the Eclipse Foundation, the</member>
9133 <member>Content is being redistributed by another party ("Redistributor") and</member>
9134 <member>different terms and conditions may apply to your use of any object code in the</member>
9135 <member>Content. Check the Redistributor's license that was provided with the Content.</member>
9136 <member>If no such license exists, contact the Redistributor. Unless otherwise</member>
9137 <member>indicated below, the terms and conditions of the EPL still apply to any source</member>
9138 <member>code in the Content and such source code may be obtained at</member>
9139 <member>&lt;http://www.eclipse.org&gt;.</member>
9140 <member>&#160;</member>
9141 <member>### Third Party Content</member>
9142 <member>&#160;</member>
9143 <member>The Content includes items that have been sourced from third parties as set</member>
9144 <member>out below. If you did not receive this Content directly from the Eclipse</member>
9145 <member>Foundation, the following is provided for informational purposes only, and you</member>
9146 <member>should look to the Redistributor's license for terms and conditions of use.</member>
9147 <member>&#160;</member>
9148 <member>#### Gnome Binding</member>
9149 <member>&#160;</member>
9150 <member>The "Gnome Binding" is a binding to the Gnome API. The Content may include any</member>
9151 <member>or all of the following files:</member>
9152 <member>&#160;</member>
9153 <member>The following files in the plug-in JAR shall be defined as the native code</member>
9154 <member>portion of the Gnome Binding:</member>
9155 <member>&#160;</member>
9156 <member> * libswt-gnome-gtk-xxxx.so (where "xxxx" is the version number)</member>
9157 <member>&#160;</member>
9158 <member>The following files in both the plug-in JAR and the src.zip shall be defined</member>
9159 <member>respectively as the bytecode and source code portions of the Gnome Binding:</member>
9160 <member>&#160;</member>
9161 <member> * The contents of the directory org/eclipse/swt/internal/gnome (but not including any sub-directories)</member>
9162 <member>&#160;</member>
9163 <member>The Gnome Binding contains portions of Gnome ("Library"). Gnome is made</member>
9164 <member>available by The Free Software Foundation. Use of the Library is governed by</member>
9165 <member>the terms and conditions of the GNU Lesser General Public License Version 2.1</member>
9166 <member>("LGPL"). Use of the Gnome Binding on a standalone basis, is also governed by</member>
9167 <member>the terms and conditions of the LGPL. A copy of the LGPL is provided with the</member>
9168 <member>Content ([lgpl-v21.txt](about_files/lgpl-v21.txt)) and is also available at</member>
9169 <member>&lt;http://www.gnu.org/licenses/lgpl.html&gt;.</member>
9170 <member>&#160;</member>
9171 <member>In accordance with Section 6 of the LGPL, you may combine or link a "work that</member>
9172 <member>uses the Library" (e.g. the SWT) with the Library to produce a work containing</member>
9173 <member>portions of the Library (e.g. the Gnome Binding) and distribute that work</member>
9174 <member>under the terms of your choice (e.g. the EPL) provided you comply with all</member>
9175 <member>other terms and conditions of Section 6 as well as other Sections of the LGPL.</member>
9176 <member>Please note, if you modify the Gnome Binding such modifications shall be</member>
9177 <member>governed by the terms and conditions of the LGPL. Also note, the terms of the</member>
9178 <member>EPL permit you to modify the combined work and the source code of the combined</member>
9179 <member>work is provided for debugging purposes so there is no need to reverse</member>
9180 <member>engineer the combined work.</member>
9181 <member>&#160;</member>
9182 <member>#### GTK+ Binding</member>
9183 <member>&#160;</member>
9184 <member>The "GTK+ Binding" is a binding to the GTK+ API. The Content may include any</member>
9185 <member>or all of the following files:</member>
9186 <member>&#160;</member>
9187 <member>The following files in the plug-in JAR shall be defined as the native code</member>
9188 <member>portion of the GTK+ Binding:</member>
9189 <member>&#160;</member>
9190 <member> * libswt-atk-gtk-xxxx.so (where "xxxx" is the version number)</member>
9191 <member> * libswt-pi-gtk-xxxx.so (where "xxxx" is the version number)</member>
9192 <member>&#160;</member>
9193 <member>The following files in both the plug-in JAR and the src.zip shall be defined</member>
9194 <member>respectively as the bytecode and source code portions of the GTK+ Binding:</member>
9195 <member>&#160;</member>
9196 <member> * The contents of the directory org/eclipse/swt/internal/accessibility/gtk (but not including any sub-directories)</member>
9197 <member> * The contents of the directory org/eclipse/swt/internal/cde (but not including any sub-directories)</member>
9198 <member> * The contents of the directory org/eclipse/swt/internal/gtk (but not including any sub-directories)</member>
9199 <member>&#160;</member>
9200 <member>The GTK+ Binding contains portions of GTK+ ("Library"). GTK+ is made available</member>
9201 <member>by The Free Software Foundation. Use of the Library is governed by the terms</member>
9202 <member>and conditions of the GNU Lesser General Public License Version 2.1 ("LGPL").</member>
9203 <member>Use of the GTK+ Binding on a standalone basis, is also governed by the terms</member>
9204 <member>and conditions of the LGPL. A copy of the LGPL is provided with the Content</member>
9205 <member>([lgpl-v21.txt](about_files/lgpl-v21.txt)) and is also available at</member>
9206 <member>&lt;http://www.gnu.org/licenses/lgpl.html&gt;.</member>
9207 <member>&#160;</member>
9208 <member>In accordance with Section 6 of the LGPL, you may combine or link a "work that</member>
9209 <member>uses the Library" (e.g. the SWT) with the Library to produce a work containing</member>
9210 <member>portions of the Library (e.g. the GTK+ Binding) and distribute that work under</member>
9211 <member>the terms of your choice (e.g. the EPL) provided you comply with all other</member>
9212 <member>terms and conditions of Section 6 as well as other Sections of the LGPL.</member>
9213 <member>Please note, if you modify the GTK+ Binding such modifications shall be</member>
9214 <member>governed by the terms and conditions of the LGPL. Also note, the terms of the</member>
9215 <member>EPL permit you to modify the combined work and the source code of the combined</member>
9216 <member>work is provided for debugging purposes so there is no need to reverse</member>
9217 <member>engineer the combined work.</member>
9218 <member>&#160;</member>
9219 <member>#### WebKitGTK+ Binding</member>
9220 <member>&#160;</member>
9221 <member>The "WebKitGTK+ Binding" is a binding to the WebKitGTK+ API. The Content may</member>
9222 <member>include any or all of the following files:</member>
9223 <member>&#160;</member>
9224 <member>The following files in the plug-in JAR shall be defined as the native code</member>
9225 <member>portion of the WebKitGTK+ Binding:</member>
9226 <member>&#160;</member>
9227 <member> * libswt-webkit-gtk-xxxx.so (where "xxxx" is the version number)</member>
9228 <member>&#160;</member>
9229 <member>The following files in both the plug-in JAR and the src.zip shall be defined</member>
9230 <member>respectively as the bytecode and source code portions of the WebKitGTK+</member>
9231 <member>Binding:</member>
9232 <member>&#160;</member>
9233 <member> * The contents of the directory org/eclipse/swt/internal/webkit (but not including any sub-directories)</member>
9234 <member>&#160;</member>
9235 <member>The WebKitGTK+ Binding contains portions of WebKitGTK+ ("Library"). WebKitGTK+</member>
9236 <member>is made available by the WebKitGTK+ open source project</member>
9237 <member>([http://webkit.org/](http://webkitgtk.org/)). Use of the Library is governed</member>
9238 <member>by the terms and conditions of the GNU Lesser General Public License Version</member>
9239 <member>2.1 ("LGPL"). Use of the WebKitGTK+ Binding on a standalone basis, is also</member>
9240 <member>governed by the terms and conditions of the LGPL. A copy of the LGPL is</member>
9241 <member>provided with the Content ([lgpl-v21.txt](about_files/lgpl-v21.txt)) and is</member>
9242 <member>also available at &lt;http://www.gnu.org/licenses/lgpl.html&gt;.</member>
9243 <member>&#160;</member>
9244 <member>In accordance with Section 6 of the LGPL, you may combine or link a "work that</member>
9245 <member>uses the Library" (e.g. the SWT) with the Library to produce a work containing</member>
9246 <member>portions of the Library (e.g. the WebKitGTK+ Binding) and distribute that work</member>
9247 <member>under the terms of your choice (e.g. the EPL) provided you comply with all</member>
9248 <member>other terms and conditions of Section 6 as well as other Sections of the LGPL.</member>
9249 <member>Please note, if you modify the WebKitGTK+ Binding such modifications shall be</member>
9250 <member>governed by the terms and conditions of the LGPL. Also note, the terms of the</member>
9251 <member>EPL permit you to modify the combined work and the source code of the combined</member>
9252 <member>work is provided for debugging purposes so there is no need to reverse</member>
9253 <member>engineer the combined work.</member>
9254 <member>&#160;</member>
9255 <member>The WebKitGTK+ Binding also contains portions of the WebKit JavaScriptCore</member>
9256 <member>code which is made available by the WebKit open source project</member>
9257 <member>(&lt;http://webkit.org/&gt;). The WebKit JavaScriptCore code was obtained under the</member>
9258 <member>terms of the BSD license. A copy of the BSD license is provided ([webkit-</member>
9259 <member>bsd.txt](about_files/webkit-bsd.txt)) and is also available at</member>
9260 <member>&lt;http://webkit.org/coding/bsd-license.html&gt;.</member>
9261 <member>&#160;</member>
9262 <member>#### libsoup</member>
9263 <member>&#160;</member>
9264 <member>The "WebKitGTK+ Binding" also includes a binding to the libsoup API. The</member>
9265 <member>Content may include any or all of the following files:</member>
9266 <member>&#160;</member>
9267 <member>The following files in the plug-in JAR shall be defined as the native code</member>
9268 <member>portion of the WebKitGTK+ Binding:</member>
9269 <member>&#160;</member>
9270 <member> * libswt-webkit-gtk-xxxx.so (where "xxxx" is the version number)</member>
9271 <member>&#160;</member>
9272 <member>The following files in both the plug-in JAR and the src.zip shall be defined</member>
9273 <member>respectively as the bytecode and source code portions of the WebKitGTK+</member>
9274 <member>Binding:</member>
9275 <member>&#160;</member>
9276 <member> * The contents of the directory org/eclipse/swt/internal/webkit (but not including any sub-directories)</member>
9277 <member>&#160;</member>
9278 <member>The WebKitGTK+ Binding contains portions of libsoup ("Library"). libsoup is</member>
9279 <member>made available by The GNOME Project</member>
9280 <member>([http://live.gnome.org/LibSoup/](http://live.gnome.org/LibSoup)). Use of the</member>
9281 <member>Library is governed by the terms and conditions of the GNU Lesser General</member>
9282 <member>Public License Version 2.1 ("LGPL"). Use of the WebKitGTK+ Binding on a</member>
9283 <member>standalone basis, is also governed by the terms and conditions of the LGPL. A</member>
9284 <member>copy of the LGPL is provided with the Content</member>
9285 <member>([lgpl-v21.txt](about_files/lgpl-v21.txt)) and is also available at</member>
9286 <member>&lt;http://www.gnu.org/licenses/lgpl.html&gt;.</member>
9287 <member>&#160;</member>
9288 <member>#### Mozilla Binding</member>
9289 <member>&#160;</member>
9290 <member>The "Mozilla Binding" is a binding to the Mozilla API. The Content may include</member>
9291 <member>any or all of the following files:</member>
9292 <member>&#160;</member>
9293 <member>The following files in the plug-in JAR shall be defined as the native code</member>
9294 <member>portion of the Mozilla Binding:</member>
9295 <member>&#160;</member>
9296 <member> * libswt-mozilla-gtk-xxxx.so (where "xxxx" is the version number)</member>
9297 <member> * libswt-xulrunner-gtk-xxxx.so (where "xxxx" is the version number)</member>
9298 <member> * libswt-xulrunner24-gtk-xxxx.so (where "xxxx" is the version number)</member>
9299 <member> * libswt-xpcominit-gtk-xxxx.so (where "xxxx" is the version number)</member>
9300 <member>&#160;</member>
9301 <member>The following files in both the plug-in JAR and the src.zip shall be defined</member>
9302 <member>respectively as the bytecode and source code portions of the Mozilla Binding:</member>
9303 <member>&#160;</member>
9304 <member> * The contents of the directory org/eclipse/swt/internal/mozilla (but not including any sub-directories)</member>
9305 <member>&#160;</member>
9306 <member>The Mozilla Binding contains portions of Mozilla ("Mozilla"). Mozilla is made</member>
9307 <member>available by Mozilla.org. Use of Mozilla is governed by the terms and</member>
9308 <member>conditions of the Mozilla Public License Version 2.0 ("MPL"). A copy of the</member>
9309 <member>MPL is provided with the Content ([mpl-v20.txt](about_files/mpl-v20.txt)) and</member>
9310 <member>is also available at &lt;http://www.mozilla.org/MPL/2.0/&gt;.</member>
9311 <member>&#160;</member>
9312 <member>#### XULRunner 24 (subset, derivative work)</member>
9313 <member>&#160;</member>
9314 <member>The library swt-xulrunner24-gtk-xxxx.dll (where "xxxx" is the version number)</member>
9315 <member>contains a small portion of XULRunner 24 content (header files) that have been</member>
9316 <member>modified from the Original Code provided by mozilla.org, and whose Initial</member>
9317 <member>Developer is Netscape Communications Corporation. Use of this code is governed</member>
9318 <member>by the terms and conditions of the Mozilla Public License Version 2.0 ("MPL").</member>
9319 <member>A copy of the MPL is provided with the Content</member>
9320 <member>([mpl-v20.txt](./about_files/mpl-v20.txt)) and is also available at</member>
9321 <member>&lt;http://www.mozilla.org/MPL/2.0/&gt;.</member>
9322 <member>&#160;</member>
9323 <member>The changed files are:</member>
9324 <member>&#160;</member>
9325 <member> * org.eclipse.swt/Eclipse SWT Mozilla/common/library/nsIGlobalObject_24.h`</member>
9326 <member> * org.eclipse.swt/Eclipse SWT Mozilla/common/library/nsIScriptContext_24.h`</member>
9327 <member> * org.eclipse.swt/Eclipse SWT Mozilla/common/library/nsIScriptGlobalObject_24.h` Changes to the original files were made by SWT on September 18, 2013 and are marked with trailing comment _"//SWT-20130918"_. </member>
9328 <member>&#160;</member>
9329 <member>#### XULRunner 1.9 (subset, derivative work)</member>
9330 <member>&#160;</member>
9331 <member>The libraries libswt-xulrunner-gtk-xxxx.so, libswt-mozilla-gtk-xxxx.so, and</member>
9332 <member>libswt-mozilla-gcc3-gtk-xxxx.so (where "xxxx" is the version number) contain a</member>
9333 <member>small portion of XULRunner 1.9 content (header files) that have been modified</member>
9334 <member>from the Original Code provided by mozilla.org, and whose Initial Developer is</member>
9335 <member>Netscape Communications Corporation. Use of this code is governed by the terms</member>
9336 <member>and conditions of the Mozilla Public License Version 1.1 ("MPL"). A copy of</member>
9337 <member>the MPL is provided with the Content</member>
9338 <member>([mpl-v11.txt](./about_files/mpl-v11.txt)) and is also available at</member>
9339 <member>&lt;http://www.mozilla.org/MPL/MPL-1.1.html&gt;.</member>
9340 <member>&#160;</member>
9341 <member>The changed files are:</member>
9342 <member>&#160;</member>
9343 <member> * org.eclipse.swt/Eclipse SWT Mozilla/common/library/nsIScriptContext.h`</member>
9344 <member> * org.eclipse.swt/Eclipse SWT Mozilla/common/library/nsIScriptGlobalObject.h` Changes to the original files were made by SWT on April 7, 2009 and are marked with trailing comment _"//SWT-20090407"_. </member>
9345 <member>&#160;</member>
9346 <member>#### Cairo Binding</member>
9347 <member>&#160;</member>
9348 <member>The "Cairo Binding" is a binding to the Cairo API. The Content may include any</member>
9349 <member>or all of the following files:</member>
9350 <member>&#160;</member>
9351 <member>The following files in the plug-in JAR shall be defined as the native code</member>
9352 <member>portion of the Cairo Binding:</member>
9353 <member>&#160;</member>
9354 <member> * libswt-cairo-gtk-xxxx.so (where "xxxx" is the version number)</member>
9355 <member>&#160;</member>
9356 <member>The following files in both the plug-in JAR and the src.zip shall be defined</member>
9357 <member>respectively as the bytecode and source code portions of the Cairo Binding:</member>
9358 <member>&#160;</member>
9359 <member> * The contents of the directory org/eclipse/swt/internal/cairo (but not including any sub-directories)</member>
9360 <member>&#160;</member>
9361 <member>The Cairo Binding contains portions of Cairo ("Cairo"). Cairo is made</member>
9362 <member>available by the Cairo project at &lt;http://www.cairographics.org&gt;. Use of Cairo</member>
9363 <member>by the Cairo Binding is governed by the terms and conditions of the Mozilla</member>
9364 <member>Public License Version 1.1 ("MPL"). A copy of the MPL is provided with the</member>
9365 <member>Content ([mpl-v11.txt](about_files/mpl-v11.txt)) and is also available at</member>
9366 <member>&lt;http://www.mozilla.org/MPL/MPL-1.1.html&gt;.</member>
9367 <member>&#160;</member>
9368 <member>#### Independent JPEG Group's JPEG software release 6b</member>
9369 <member>&#160;</member>
9370 <member>This software is based in part on the work of the Independent JPEG Group's</member>
9371 <member>JPEG software release 6b ("LIBJPEG"). LIBJPEG was used to implement the</member>
9372 <member>decoding of JPEG format files in Java (TM). The Content does NOT include any</member>
9373 <member>portion of the LIBJPEG file ansi2knr.c.</member>
9374 <member>&#160;</member>
9375 <member>Your use of LIBJPEG is subject to the terms and conditions located in the</member>
9376 <member>[about_files/IJG_README](about_files/IJG_README) file which is included with</member>
9377 <member>the Content.</member>
9378 <member>&#160;</member>
9379 <member>The IJG's website is located at [http://ijg.org](http://ijg.org/).</member>
9380 <member>&#160;</member>
9381 <member>The class org.eclipse.swt.internal.image.JPEGFileFormat is based on following</member>
9382 <member>files from LIBJPEG:</member>
9383 <member>&#160;</member>
9384 <member> * cderror.h</member>
9385 <member> * cdjpeg.h</member>
9386 <member> * jchuff.h</member>
9387 <member> * jdcolor.c</member>
9388 <member> * jdct.h</member>
9389 <member> * jdhuff.h</member>
9390 <member> * jerror.h</member>
9391 <member> * jidctint.c</member>
9392 <member> * jinclude.h</member>
9393 <member> * jmemsys.h</member>
9394 <member> * jmorecfg.h</member>
9395 <member> * jpegint.h</member>
9396 <member> * jpeglib.h</member>
9397 <member> * jversion.h</member>
9398 <member> * transupp.h</member>
9399 <member>&#160;</member>
9400 <member>The class org.eclipse.swt.internal.image.JPEGDecoder is based on the following</member>
9401 <member>files from LIBJPEG:</member>
9402 <member>&#160;</member>
9403 <member> * jcapimin.c</member>
9404 <member> * jcapistd.c</member>
9405 <member> * jccoefct.c</member>
9406 <member> * jccolor.c</member>
9407 <member> * jcdctmgr.c</member>
9408 <member> * jchuff.c</member>
9409 <member> * jcinit.c</member>
9410 <member> * jcmainct.c</member>
9411 <member> * jcmarker.c</member>
9412 <member> * jcmaster.c</member>
9413 <member> * jcomapi.c</member>
9414 <member> * jcparam.c</member>
9415 <member> * jcphuff.c</member>
9416 <member> * jcprepct.c</member>
9417 <member> * jcsample.c</member>
9418 <member> * jctrans.c</member>
9419 <member> * jdapimin.c</member>
9420 <member> * jdapistd.c</member>
9421 <member> * jdatadst.c</member>
9422 <member> * jdatasrc.c</member>
9423 <member> * jdcoefct.c</member>
9424 <member> * jdcolor.c</member>
9425 <member> * jddctmgr.c</member>
9426 <member> * jdhuff.c</member>
9427 <member> * jdinput.c</member>
9428 <member> * jdmainct.c</member>
9429 <member> * jdmarker.c</member>
9430 <member> * jdmaster.c</member>
9431 <member> * jdmerge.c</member>
9432 <member> * jdphuff.c</member>
9433 <member> * jdpostct.c</member>
9434 <member> * jdsample.c</member>
9435 <member> * jdtrans.c</member>
9436 <member> * jerror.c</member>
9437 <member> * jfdctflt.c</member>
9438 <member> * jfdctfst.c</member>
9439 <member> * jfdctint.c</member>
9440 <member> * jidctflt.c</member>
9441 <member> * jidctfst.c</member>
9442 <member> * jidctint.c</member>
9443 <member> * jidctred.c</member>
9444 <member> * jpegtran.c</member>
9445 <member> * jquant1.c</member>
9446 <member> * jquant2.c</member>
9447 <member> * jutils.c</member>
9448 <member> * cderror.h</member>
9449 <member> * cdjpeg.h</member>
9450 <member> * jchuff.h</member>
9451 <member> * jconfig.h</member>
9452 <member> * jdct.h</member>
9453 <member> * jdhuff.h</member>
9454 <member> * jerror.h</member>
9455 <member> * jinclude.h</member>
9456 <member> * jmorecfg.h</member>
9457 <member> * jpegint.h</member>
9458 <member> * jpeglib.h</member>
9459 <member> * jversion.h</member>
9460 <member> * transupp.h</member>
9461 <member>&#160;</member>
9462 <member>The following changes were made to the LIBJPEG code in the Content:</member>
9463 <member>&#160;</member>
9464 <member> 1. In Java, pointer math is not allowed so indexing was used instead.</member>
9465 <member> 2. Function pointers were replaced with switch statements.</member>
9466 <member> 3. The virtual memory, tracing and progress monitoring were removed.</member>
9467 <member> 4. The error handling was simplified and now uses Java exceptions.</member>
9468 <member>&#160;</member>
9469 <member>#### PuTTY 0.58 (derivative work)</member>
9470 <member>&#160;</member>
9471 <member>Portions of the SWT class org/eclipse/swt/internal/image/PngDeflater are based</member>
9472 <member>on PuTTY's sshzlib.c. PuTTY is made available by Mozilla.org. Use of PuTTY is</member>
9473 <member>governed by the terms and conditions of the the following MIT-style license:</member>
9474 <member>&#160;</member>
9475 <member>&gt; _PuTTY is copyright 1997-2007 Simon Tatham._</member>
9476 <member>&#160;</member>
9477 <member>&gt;</member>
9478 <member>&#160;</member>
9479 <member>&gt; _Portions copyright Robert de Bath, Joris van Rantwijk, Delian Delchev,</member>
9480 <member>Andreas Schultz, Jeroen Massar, Wez Furlong, Nicolas Barry, Justin Bradford,</member>
9481 <member>Ben Harris, Malcolm Smith, Ahmad Khalifa, Markus Kuhn, and CORE SDI S.A._</member>
9482 <member>&#160;</member>
9483 <member>&gt;</member>
9484 <member>&#160;</member>
9485 <member>&gt; _Permission is hereby granted, free of charge, to any person obtaining a</member>
9486 <member>copy of this software and associated documentation files (the "Software"), to</member>
9487 <member>deal in the Software without restriction, including without limitation the</member>
9488 <member>rights to use, copy, modify, merge, publish, distribute, sublicense, and/or</member>
9489 <member>sell copies of the Software, and to permit persons to whom the Software is</member>
9490 <member>furnished to do so, subject to the following conditions:_</member>
9491 <member>&#160;</member>
9492 <member>&gt;</member>
9493 <member>&#160;</member>
9494 <member>&gt; _The above copyright notice and this permission notice shall be included in</member>
9495 <member>all copies or substantial portions of the Software._</member>
9496 <member>&#160;</member>
9497 <member>&gt;</member>
9498 <member>&#160;</member>
9499 <member>&gt; _THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR</member>
9500 <member>IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,</member>
9501 <member>FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL SIMON</member>
9502 <member>TATHAM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN</member>
9503 <member>ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION</member>
9504 <member>WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE._</member>
9505 <member>&#160;</member>
9506 <member>A copy of the license is also available at</member>
9507 <member>&lt;http://www.chiark.greenend.org.uk/~sgtatham/putty/licence.html&gt;.</member>
9508 <member>&#160;</member>
9509 <member>Java and all Java-based trademarks and logos are trademarks or registered</member>
9510 <member>trademarks of Sun Microsystems, Inc. in the United States and other countries.</member>
9511 </simplelist>
9512 </section>
9513 </section>
9514 <section id="enea-linux-eclipse-open-source-licenses-74">
9515 <title>License 74</title>
9516 <section>
9517 <title>Source File(s)</title>
9518 <itemizedlist spacing="compact">
9519 <listitem>
9520 <para>
9521 plugins/extracted_jars/org.eclipse.ant.ui.source_3.6.0.v20150428-1928/about.html
9522 </para>
9523 </listitem>
9524 <listitem>
9525 <para>
9526 plugins/extracted_jars/org.eclipse.ant.ui_3.6.0.v20150428-1928/about.html
9527 </para>
9528 </listitem>
9529 </itemizedlist>
9530 </section>
9531 <section>
9532 <title>License Text</title>
9533 <simplelist>
9534 <member>## About This Content</member>
9535 <member>&#160;</member>
9536 <member>October 8, 2009</member>
9537 <member>&#160;</member>
9538 <member>### License</member>
9539 <member>&#160;</member>
9540 <member>The Eclipse Foundation makes available all content in this plug-in</member>
9541 <member>("Content"). Unless otherwise indicated below, the Content is provided to you</member>
9542 <member>under the terms and conditions of the Eclipse Public License Version 1.0</member>
9543 <member>("EPL"). A copy of the EPL is available at</member>
9544 <member>&lt;http://www.eclipse.org/legal/epl-v10.html&gt;. For purposes of the EPL,</member>
9545 <member>"Program" will mean the Content.</member>
9546 <member>&#160;</member>
9547 <member>If you did not receive this Content directly from the Eclipse Foundation, the</member>
9548 <member>Content is being redistributed by another party ("Redistributor") and</member>
9549 <member>different terms and conditions may apply to your use of any object code in the</member>
9550 <member>Content. Check the Redistributor's license that was provided with the Content.</member>
9551 <member>If no such license exists, contact the Redistributor. Unless otherwise</member>
9552 <member>indicated below, the terms and conditions of the EPL still apply to any source</member>
9553 <member>code in the Content and such source code may be obtained at</member>
9554 <member>&lt;http://www.eclipse.org&gt;.</member>
9555 <member>&#160;</member>
9556 <member>### Third Party Content</member>
9557 <member>&#160;</member>
9558 <member>The Content includes items that have been sourced from third parties as set</member>
9559 <member>out below. If you did not receive this Content directly from the Eclipse</member>
9560 <member>Foundation, the following is provided for informational purposes only, and you</member>
9561 <member>should look to the Redistributor's license for terms and conditions of use.</member>
9562 <member>&#160;</member>
9563 <member>#### Ant 1.7.1</member>
9564 <member>&#160;</member>
9565 <member>The following classes in the plug-in JAR are based on Ant code developed by</member>
9566 <member>The Apache Software Foundation and shall be defined as the "Ant-Derived Work":</member>
9567 <member>&#160;</member>
9568 <member> * org.eclipse.ant.internal.ui.editor.utils.ProjectHelper</member>
9569 <member>&#160;</member>
9570 <member>The object code for ProjectHelper is located in the plug-in JAR and the source</member>
9571 <member>code is located in src.zip.</member>
9572 <member>&#160;</member>
9573 <member>Your use of the Ant-Derived Work is subject to the terms and conditions of the</member>
9574 <member>Apache Software License 2.0. A copy of the license is contained in the file</member>
9575 <member>[about_files/asl-v20.txt](about_files/asl-v20.txt) and is also available at</member>
9576 <member>&lt;http://www.apache.org/licenses/LICENSE-2.0.html&gt;.</member>
9577 <member>&#160;</member>
9578 <member>The names "Ant" and "Apache Software Foundation" must not be used to endorse</member>
9579 <member>or promote products derived from this software without prior written</member>
9580 <member>permission. For written permission, please contact</member>
9581 <member>[apache@apache.org](mailto:apache@apache.org).</member>
9582 <member>&#160;</member>
9583 <member>The Apache attribution [NOTICE](about_files/NOTICE) file is included with the</member>
9584 <member>Content in accordance with 4d of the Apache License, Version 2.0.</member>
9585 </simplelist>
9586 </section>
9587 </section>
9588 <section id="enea-linux-eclipse-open-source-licenses-75">
9589 <title>License 75</title>
9590 <section>
9591 <title>Source File(s)</title>
9592 <itemizedlist spacing="compact">
9593 <listitem>
9594 <para>
9595 plugins/extracted_jars/org.eclipse.swt.gtk.linux.x86_64.source_3.104.0.v20150528-0211/about_files/mpl-v20.txt
9596 </para>
9597 </listitem>
9598 <listitem>
9599 <para>
9600 plugins/extracted_jars/org.eclipse.swt.gtk.linux.x86_64_3.104.0.v20150528-0211/about_files/mpl-v20.txt
9601 </para>
9602 </listitem>
9603 </itemizedlist>
9604 </section>
9605 <section>
9606 <title>License Text</title>
9607 <simplelist>
9608 <member>Mozilla Public License Version 2.0</member>
9609 <member>==================================</member>
9610 <member></member>
9611 <member>1. Definitions</member>
9612 <member>--------------</member>
9613 <member></member>
9614 <member>1.1. "Contributor"</member>
9615 <member> means each individual or legal entity that creates, contributes to</member>
9616 <member> the creation of, or owns Covered Software.</member>
9617 <member></member>
9618 <member>1.2. "Contributor Version"</member>
9619 <member> means the combination of the Contributions of others (if any) used</member>
9620 <member> by a Contributor and that particular Contributor's Contribution.</member>
9621 <member></member>
9622 <member>1.3. "Contribution"</member>
9623 <member> means Covered Software of a particular Contributor.</member>
9624 <member></member>
9625 <member>1.4. "Covered Software"</member>
9626 <member> means Source Code Form to which the initial Contributor has attached</member>
9627 <member> the notice in Exhibit A, the Executable Form of such Source Code</member>
9628 <member> Form, and Modifications of such Source Code Form, in each case</member>
9629 <member> including portions thereof.</member>
9630 <member></member>
9631 <member>1.5. "Incompatible With Secondary Licenses"</member>
9632 <member> means</member>
9633 <member></member>
9634 <member> (a) that the initial Contributor has attached the notice described</member>
9635 <member> in Exhibit B to the Covered Software; or</member>
9636 <member></member>
9637 <member> (b) that the Covered Software was made available under the terms of</member>
9638 <member> version 1.1 or earlier of the License, but not also under the</member>
9639 <member> terms of a Secondary License.</member>
9640 <member></member>
9641 <member>1.6. "Executable Form"</member>
9642 <member> means any form of the work other than Source Code Form.</member>
9643 <member></member>
9644 <member>1.7. "Larger Work"</member>
9645 <member> means a work that combines Covered Software with other material, in </member>
9646 <member> a separate file or files, that is not Covered Software.</member>
9647 <member></member>
9648 <member>1.8. "License"</member>
9649 <member> means this document.</member>
9650 <member></member>
9651 <member>1.9. "Licensable"</member>
9652 <member> means having the right to grant, to the maximum extent possible,</member>
9653 <member> whether at the time of the initial grant or subsequently, any and</member>
9654 <member> all of the rights conveyed by this License.</member>
9655 <member></member>
9656 <member>1.10. "Modifications"</member>
9657 <member> means any of the following:</member>
9658 <member></member>
9659 <member> (a) any file in Source Code Form that results from an addition to,</member>
9660 <member> deletion from, or modification of the contents of Covered</member>
9661 <member> Software; or</member>
9662 <member></member>
9663 <member> (b) any new file in Source Code Form that contains any Covered</member>
9664 <member> Software.</member>
9665 <member></member>
9666 <member>1.11. "Patent Claims" of a Contributor</member>
9667 <member> means any patent claim(s), including without limitation, method,</member>
9668 <member> process, and apparatus claims, in any patent Licensable by such</member>
9669 <member> Contributor that would be infringed, but for the grant of the</member>
9670 <member> License, by the making, using, selling, offering for sale, having</member>
9671 <member> made, import, or transfer of either its Contributions or its</member>
9672 <member> Contributor Version.</member>
9673 <member></member>
9674 <member>1.12. "Secondary License"</member>
9675 <member> means either the GNU General Public License, Version 2.0, the GNU</member>
9676 <member> Lesser General Public License, Version 2.1, the GNU Affero General</member>
9677 <member> Public License, Version 3.0, or any later versions of those</member>
9678 <member> licenses.</member>
9679 <member></member>
9680 <member>1.13. "Source Code Form"</member>
9681 <member> means the form of the work preferred for making modifications.</member>
9682 <member></member>
9683 <member>1.14. "You" (or "Your")</member>
9684 <member> means an individual or a legal entity exercising rights under this</member>
9685 <member> License. For legal entities, "You" includes any entity that</member>
9686 <member> controls, is controlled by, or is under common control with You. For</member>
9687 <member> purposes of this definition, "control" means (a) the power, direct</member>
9688 <member> or indirect, to cause the direction or management of such entity,</member>
9689 <member> whether by contract or otherwise, or (b) ownership of more than</member>
9690 <member> fifty percent (50%) of the outstanding shares or beneficial</member>
9691 <member> ownership of such entity.</member>
9692 <member></member>
9693 <member>2. License Grants and Conditions</member>
9694 <member>--------------------------------</member>
9695 <member></member>
9696 <member>2.1. Grants</member>
9697 <member></member>
9698 <member>Each Contributor hereby grants You a world-wide, royalty-free,</member>
9699 <member>non-exclusive license:</member>
9700 <member></member>
9701 <member>(a) under intellectual property rights (other than patent or trademark)</member>
9702 <member> Licensable by such Contributor to use, reproduce, make available,</member>
9703 <member> modify, display, perform, distribute, and otherwise exploit its</member>
9704 <member> Contributions, either on an unmodified basis, with Modifications, or</member>
9705 <member> as part of a Larger Work; and</member>
9706 <member></member>
9707 <member>(b) under Patent Claims of such Contributor to make, use, sell, offer</member>
9708 <member> for sale, have made, import, and otherwise transfer either its</member>
9709 <member> Contributions or its Contributor Version.</member>
9710 <member></member>
9711 <member>2.2. Effective Date</member>
9712 <member></member>
9713 <member>The licenses granted in Section 2.1 with respect to any Contribution</member>
9714 <member>become effective for each Contribution on the date the Contributor first</member>
9715 <member>distributes such Contribution.</member>
9716 <member></member>
9717 <member>2.3. Limitations on Grant Scope</member>
9718 <member></member>
9719 <member>The licenses granted in this Section 2 are the only rights granted under</member>
9720 <member>this License. No additional rights or licenses will be implied from the</member>
9721 <member>distribution or licensing of Covered Software under this License.</member>
9722 <member>Notwithstanding Section 2.1(b) above, no patent license is granted by a</member>
9723 <member>Contributor:</member>
9724 <member></member>
9725 <member>(a) for any code that a Contributor has removed from Covered Software;</member>
9726 <member> or</member>
9727 <member></member>
9728 <member>(b) for infringements caused by: (i) Your and any other third party's</member>
9729 <member> modifications of Covered Software, or (ii) the combination of its</member>
9730 <member> Contributions with other software (except as part of its Contributor</member>
9731 <member> Version); or</member>
9732 <member></member>
9733 <member>(c) under Patent Claims infringed by Covered Software in the absence of</member>
9734 <member> its Contributions.</member>
9735 <member></member>
9736 <member>This License does not grant any rights in the trademarks, service marks,</member>
9737 <member>or logos of any Contributor (except as may be necessary to comply with</member>
9738 <member>the notice requirements in Section 3.4).</member>
9739 <member></member>
9740 <member>2.4. Subsequent Licenses</member>
9741 <member></member>
9742 <member>No Contributor makes additional grants as a result of Your choice to</member>
9743 <member>distribute the Covered Software under a subsequent version of this</member>
9744 <member>License (see Section 10.2) or under the terms of a Secondary License (if</member>
9745 <member>permitted under the terms of Section 3.3).</member>
9746 <member></member>
9747 <member>2.5. Representation</member>
9748 <member></member>
9749 <member>Each Contributor represents that the Contributor believes its</member>
9750 <member>Contributions are its original creation(s) or it has sufficient rights</member>
9751 <member>to grant the rights to its Contributions conveyed by this License.</member>
9752 <member></member>
9753 <member>2.6. Fair Use</member>
9754 <member></member>
9755 <member>This License is not intended to limit any rights You have under</member>
9756 <member>applicable copyright doctrines of fair use, fair dealing, or other</member>
9757 <member>equivalents.</member>
9758 <member></member>
9759 <member>2.7. Conditions</member>
9760 <member></member>
9761 <member>Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted</member>
9762 <member>in Section 2.1.</member>
9763 <member></member>
9764 <member>3. Responsibilities</member>
9765 <member>-------------------</member>
9766 <member></member>
9767 <member>3.1. Distribution of Source Form</member>
9768 <member></member>
9769 <member>All distribution of Covered Software in Source Code Form, including any</member>
9770 <member>Modifications that You create or to which You contribute, must be under</member>
9771 <member>the terms of this License. You must inform recipients that the Source</member>
9772 <member>Code Form of the Covered Software is governed by the terms of this</member>
9773 <member>License, and how they can obtain a copy of this License. You may not</member>
9774 <member>attempt to alter or restrict the recipients' rights in the Source Code</member>
9775 <member>Form.</member>
9776 <member></member>
9777 <member>3.2. Distribution of Executable Form</member>
9778 <member></member>
9779 <member>If You distribute Covered Software in Executable Form then:</member>
9780 <member></member>
9781 <member>(a) such Covered Software must also be made available in Source Code</member>
9782 <member> Form, as described in Section 3.1, and You must inform recipients of</member>
9783 <member> the Executable Form how they can obtain a copy of such Source Code</member>
9784 <member> Form by reasonable means in a timely manner, at a charge no more</member>
9785 <member> than the cost of distribution to the recipient; and</member>
9786 <member></member>
9787 <member>(b) You may distribute such Executable Form under the terms of this</member>
9788 <member> License, or sublicense it under different terms, provided that the</member>
9789 <member> license for the Executable Form does not attempt to limit or alter</member>
9790 <member> the recipients' rights in the Source Code Form under this License.</member>
9791 <member></member>
9792 <member>3.3. Distribution of a Larger Work</member>
9793 <member></member>
9794 <member>You may create and distribute a Larger Work under terms of Your choice,</member>
9795 <member>provided that You also comply with the requirements of this License for</member>
9796 <member>the Covered Software. If the Larger Work is a combination of Covered</member>
9797 <member>Software with a work governed by one or more Secondary Licenses, and the</member>
9798 <member>Covered Software is not Incompatible With Secondary Licenses, this</member>
9799 <member>License permits You to additionally distribute such Covered Software</member>
9800 <member>under the terms of such Secondary License(s), so that the recipient of</member>
9801 <member>the Larger Work may, at their option, further distribute the Covered</member>
9802 <member>Software under the terms of either this License or such Secondary</member>
9803 <member>License(s).</member>
9804 <member></member>
9805 <member>3.4. Notices</member>
9806 <member></member>
9807 <member>You may not remove or alter the substance of any license notices</member>
9808 <member>(including copyright notices, patent notices, disclaimers of warranty,</member>
9809 <member>or limitations of liability) contained within the Source Code Form of</member>
9810 <member>the Covered Software, except that You may alter any license notices to</member>
9811 <member>the extent required to remedy known factual inaccuracies.</member>
9812 <member></member>
9813 <member>3.5. Application of Additional Terms</member>
9814 <member></member>
9815 <member>You may choose to offer, and to charge a fee for, warranty, support,</member>
9816 <member>indemnity or liability obligations to one or more recipients of Covered</member>
9817 <member>Software. However, You may do so only on Your own behalf, and not on</member>
9818 <member>behalf of any Contributor. You must make it absolutely clear that any</member>
9819 <member>such warranty, support, indemnity, or liability obligation is offered by</member>
9820 <member>You alone, and You hereby agree to indemnify every Contributor for any</member>
9821 <member>liability incurred by such Contributor as a result of warranty, support,</member>
9822 <member>indemnity or liability terms You offer. You may include additional</member>
9823 <member>disclaimers of warranty and limitations of liability specific to any</member>
9824 <member>jurisdiction.</member>
9825 <member></member>
9826 <member>4. Inability to Comply Due to Statute or Regulation</member>
9827 <member>---------------------------------------------------</member>
9828 <member></member>
9829 <member>If it is impossible for You to comply with any of the terms of this</member>
9830 <member>License with respect to some or all of the Covered Software due to</member>
9831 <member>statute, judicial order, or regulation then You must: (a) comply with</member>
9832 <member>the terms of this License to the maximum extent possible; and (b)</member>
9833 <member>describe the limitations and the code they affect. Such description must</member>
9834 <member>be placed in a text file included with all distributions of the Covered</member>
9835 <member>Software under this License. Except to the extent prohibited by statute</member>
9836 <member>or regulation, such description must be sufficiently detailed for a</member>
9837 <member>recipient of ordinary skill to be able to understand it.</member>
9838 <member></member>
9839 <member>5. Termination</member>
9840 <member>--------------</member>
9841 <member></member>
9842 <member>5.1. The rights granted under this License will terminate automatically</member>
9843 <member>if You fail to comply with any of its terms. However, if You become</member>
9844 <member>compliant, then the rights granted under this License from a particular</member>
9845 <member>Contributor are reinstated (a) provisionally, unless and until such</member>
9846 <member>Contributor explicitly and finally terminates Your grants, and (b) on an</member>
9847 <member>ongoing basis, if such Contributor fails to notify You of the</member>
9848 <member>non-compliance by some reasonable means prior to 60 days after You have</member>
9849 <member>come back into compliance. Moreover, Your grants from a particular</member>
9850 <member>Contributor are reinstated on an ongoing basis if such Contributor</member>
9851 <member>notifies You of the non-compliance by some reasonable means, this is the</member>
9852 <member>first time You have received notice of non-compliance with this License</member>
9853 <member>from such Contributor, and You become compliant prior to 30 days after</member>
9854 <member>Your receipt of the notice.</member>
9855 <member></member>
9856 <member>5.2. If You initiate litigation against any entity by asserting a patent</member>
9857 <member>infringement claim (excluding declaratory judgment actions,</member>
9858 <member>counter-claims, and cross-claims) alleging that a Contributor Version</member>
9859 <member>directly or indirectly infringes any patent, then the rights granted to</member>
9860 <member>You by any and all Contributors for the Covered Software under Section</member>
9861 <member>2.1 of this License shall terminate.</member>
9862 <member></member>
9863 <member>5.3. In the event of termination under Sections 5.1 or 5.2 above, all</member>
9864 <member>end user license agreements (excluding distributors and resellers) which</member>
9865 <member>have been validly granted by You or Your distributors under this License</member>
9866 <member>prior to termination shall survive termination.</member>
9867 <member></member>
9868 <member>************************************************************************</member>
9869 <member>* *</member>
9870 <member>* 6. Disclaimer of Warranty *</member>
9871 <member>* ------------------------- *</member>
9872 <member>* *</member>
9873 <member>* Covered Software is provided under this License on an "as is" *</member>
9874 <member>* basis, without warranty of any kind, either expressed, implied, or *</member>
9875 <member>* statutory, including, without limitation, warranties that the *</member>
9876 <member>* Covered Software is free of defects, merchantable, fit for a *</member>
9877 <member>* particular purpose or non-infringing. The entire risk as to the *</member>
9878 <member>* quality and performance of the Covered Software is with You. *</member>
9879 <member>* Should any Covered Software prove defective in any respect, You *</member>
9880 <member>* (not any Contributor) assume the cost of any necessary servicing, *</member>
9881 <member>* repair, or correction. This disclaimer of warranty constitutes an *</member>
9882 <member>* essential part of this License. No use of any Covered Software is *</member>
9883 <member>* authorized under this License except under this disclaimer. *</member>
9884 <member>* *</member>
9885 <member>************************************************************************</member>
9886 <member></member>
9887 <member>************************************************************************</member>
9888 <member>* *</member>
9889 <member>* 7. Limitation of Liability *</member>
9890 <member>* -------------------------- *</member>
9891 <member>* *</member>
9892 <member>* Under no circumstances and under no legal theory, whether tort *</member>
9893 <member>* (including negligence), contract, or otherwise, shall any *</member>
9894 <member>* Contributor, or anyone who distributes Covered Software as *</member>
9895 <member>* permitted above, be liable to You for any direct, indirect, *</member>
9896 <member>* special, incidental, or consequential damages of any character *</member>
9897 <member>* including, without limitation, damages for lost profits, loss of *</member>
9898 <member>* goodwill, work stoppage, computer failure or malfunction, or any *</member>
9899 <member>* and all other commercial damages or losses, even if such party *</member>
9900 <member>* shall have been informed of the possibility of such damages. This *</member>
9901 <member>* limitation of liability shall not apply to liability for death or *</member>
9902 <member>* personal injury resulting from such party's negligence to the *</member>
9903 <member>* extent applicable law prohibits such limitation. Some *</member>
9904 <member>* jurisdictions do not allow the exclusion or limitation of *</member>
9905 <member>* incidental or consequential damages, so this exclusion and *</member>
9906 <member>* limitation may not apply to You. *</member>
9907 <member>* *</member>
9908 <member>************************************************************************</member>
9909 <member></member>
9910 <member>8. Litigation</member>
9911 <member>-------------</member>
9912 <member></member>
9913 <member>Any litigation relating to this License may be brought only in the</member>
9914 <member>courts of a jurisdiction where the defendant maintains its principal</member>
9915 <member>place of business and such litigation shall be governed by laws of that</member>
9916 <member>jurisdiction, without reference to its conflict-of-law provisions.</member>
9917 <member>Nothing in this Section shall prevent a party's ability to bring</member>
9918 <member>cross-claims or counter-claims.</member>
9919 <member></member>
9920 <member>9. Miscellaneous</member>
9921 <member>----------------</member>
9922 <member></member>
9923 <member>This License represents the complete agreement concerning the subject</member>
9924 <member>matter hereof. If any provision of this License is held to be</member>
9925 <member>unenforceable, such provision shall be reformed only to the extent</member>
9926 <member>necessary to make it enforceable. Any law or regulation which provides</member>
9927 <member>that the language of a contract shall be construed against the drafter</member>
9928 <member>shall not be used to construe this License against a Contributor.</member>
9929 <member></member>
9930 <member>10. Versions of the License</member>
9931 <member>---------------------------</member>
9932 <member></member>
9933 <member>10.1. New Versions</member>
9934 <member></member>
9935 <member>Mozilla Foundation is the license steward. Except as provided in Section</member>
9936 <member>10.3, no one other than the license steward has the right to modify or</member>
9937 <member>publish new versions of this License. Each version will be given a</member>
9938 <member>distinguishing version number.</member>
9939 <member></member>
9940 <member>10.2. Effect of New Versions</member>
9941 <member></member>
9942 <member>You may distribute the Covered Software under the terms of the version</member>
9943 <member>of the License under which You originally received the Covered Software,</member>
9944 <member>or under the terms of any subsequent version published by the license</member>
9945 <member>steward.</member>
9946 <member></member>
9947 <member>10.3. Modified Versions</member>
9948 <member></member>
9949 <member>If you create software not governed by this License, and you want to</member>
9950 <member>create a new license for such software, you may create and use a</member>
9951 <member>modified version of this License if you rename the license and remove</member>
9952 <member>any references to the name of the license steward (except to note that</member>
9953 <member>such modified license differs from this License).</member>
9954 <member></member>
9955 <member>10.4. Distributing Source Code Form that is Incompatible With Secondary</member>
9956 <member>Licenses</member>
9957 <member></member>
9958 <member>If You choose to distribute Source Code Form that is Incompatible With</member>
9959 <member>Secondary Licenses under the terms of this version of the License, the</member>
9960 <member>notice described in Exhibit B of this License must be attached.</member>
9961 <member></member>
9962 <member>Exhibit A - Source Code Form License Notice</member>
9963 <member>-------------------------------------------</member>
9964 <member></member>
9965 <member> This Source Code Form is subject to the terms of the Mozilla Public</member>
9966 <member> License, v. 2.0. If a copy of the MPL was not distributed with this</member>
9967 <member> file, You can obtain one at http://mozilla.org/MPL/2.0/.</member>
9968 <member></member>
9969 <member>If it is not possible or desirable to put the notice in a particular</member>
9970 <member>file, then You may include the notice in a location (such as a LICENSE</member>
9971 <member>file in a relevant directory) where a recipient would be likely to look</member>
9972 <member>for such a notice.</member>
9973 <member></member>
9974 <member>You may add additional accurate notices of copyright ownership.</member>
9975 <member></member>
9976 <member>Exhibit B - "Incompatible With Secondary Licenses" Notice</member>
9977 <member>---------------------------------------------------------</member>
9978 <member></member>
9979 <member> This Source Code Form is "Incompatible With Secondary Licenses", as</member>
9980 <member> defined by the Mozilla Public License, v. 2.0.</member>
9981 </simplelist>
9982 </section>
9983 </section>
9984 <section id="enea-linux-eclipse-open-source-licenses-76">
9985 <title>License 76</title>
9986 <section>
9987 <title>Source File(s)</title>
9988 <itemizedlist spacing="compact">
9989 <listitem>
9990 <para>
9991 plugins/extracted_jars/org.w3c.dom.events.source_3.0.0.draft20060413_v201105210656/about_files/LICENSE.dom-software.txt
9992 </para>
9993 </listitem>
9994 </itemizedlist>
9995 </section>
9996 <section>
9997 <title>License Text</title>
9998 <simplelist>
9999 <member>xml-commons/java/external/LICENSE.dom-software.txt $Id: LICENSE.dom-software.txt,v 1.1.2.1 2009/02/20 17:40:43 cdamus Exp $</member>
10000 <member>&#160;</member>
10001 <member>&#160;</member>
10002 <member>This license came from: http://www.w3.org/Consortium/Legal/copyright-software-19980720</member>
10003 <member>&#160;</member>
10004 <member>&#160;</member>
10005 <member>W3C(R) SOFTWARE NOTICE AND LICENSE</member>
10006 <member>Copyright (C) 1994-2001 World</member>
10007 <member>Wide Web Consortium, &lt;a href="http://www.w3.org/"&gt;World</member>
10008 <member>Wide Web Consortium&lt;/a&gt;, (&lt;a href=</member>
10009 <member>"http://www.lcs.mit.edu/"&gt;Massachusetts Institute of</member>
10010 <member>Technology&lt;/a&gt;, &lt;a href="http://www.inria.fr/"&gt;Institut National de</member>
10011 <member>Recherche en Informatique et en Automatique&lt;/a&gt;, &lt;a href=</member>
10012 <member>"http://www.keio.ac.jp/"&gt;Keio University&lt;/a&gt;). All Rights Reserved.</member>
10013 <member>http://www.w3.org/Consortium/Legal/</member>
10014 <member>&#160;</member>
10015 <member>This W3C work (including software, documents, or other related</member>
10016 <member>items) is being provided by the copyright holders under the</member>
10017 <member>following license. By obtaining, using and/or copying this work,</member>
10018 <member>you (the licensee) agree that you have read, understood, and will</member>
10019 <member>comply with the following terms and conditions:</member>
10020 <member>Permission to use, copy, modify, and distribute this software</member>
10021 <member>and its documentation, with or without modification, for any</member>
10022 <member>purpose and without fee or royalty is hereby granted, provided that</member>
10023 <member>you include the following on ALL copies of the software and</member>
10024 <member>documentation or portions thereof, including modifications, that</member>
10025 <member>you make:</member>
10026 <member>&#160;</member>
10027 <member>The full text of this NOTICE in a location viewable to users of</member>
10028 <member>the redistributed or derivative work.</member>
10029 <member>&#160;</member>
10030 <member>Any pre-existing intellectual property disclaimers, notices, or</member>
10031 <member>terms and conditions. If none exist, a short notice of the</member>
10032 <member>following form (hypertext is preferred, text is permitted) should</member>
10033 <member>be used within the body of any redistributed or derivative code:</member>
10034 <member>"Copyright (C) [$date-of-software] World Wide Web Consortium, (Massachusetts Institute of</member>
10035 <member>Technology, Institut National de</member>
10036 <member>Recherche en Informatique et en Automatique, Keio University). All Rights Reserved.</member>
10037 <member>http://www.w3.org/Consortium/Legal/"</member>
10038 <member>&#160;</member>
10039 <member>Notice of any changes or modifications to the W3C files,</member>
10040 <member>including the date changes were made. (We recommend you provide </member>
10041 <member>URIs to the location from which the code is derived.)</member>
10042 <member>&#160;</member>
10043 <member>THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND</member>
10044 <member>COPYRIGHT HOLDERS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR</member>
10045 <member>IMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES OF</member>
10046 <member>MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE</member>
10047 <member>USE OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE ANY THIRD</member>
10048 <member>PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.</member>
10049 <member>COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT,</member>
10050 <member>SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE</member>
10051 <member>SOFTWARE OR DOCUMENTATION.</member>
10052 <member>&#160;</member>
10053 <member>The name and trademarks of copyright holders may NOT be used in</member>
10054 <member>advertising or publicity pertaining to the software without</member>
10055 <member>specific, written prior permission. Title to copyright in this</member>
10056 <member>software and any associated documentation will at all times remain</member>
10057 <member>with copyright holders.</member>
10058 <member>____________________________________</member>
10059 <member>This formulation of W3C's notice and license became active on</member>
10060 <member>August 14 1998 so as to improve compatibility with GPL. This</member>
10061 <member>version ensures that W3C software licensing terms are no more</member>
10062 <member>restrictive than GPL and consequently W3C software may be</member>
10063 <member>distributed in GPL packages. See the older formulation for the</member>
10064 <member>policy prior to this date. Please see our Copyright FAQ for common </member>
10065 <member>questions about using materials from</member>
10066 <member>our site, including specific terms and conditions for packages like</member>
10067 <member>libwww, Amaya, and Jigsaw. </member>
10068 <member>Other questions about this notice can be</member>
10069 <member>directed to site-policy@w3.org.</member>
10070 <member>&#160;</member>
10071 <member>webmaster</member>
10072 <member>(last updated $Date: 2009/02/20 17:40:43 $)</member>
10073 </simplelist>
10074 </section>
10075 </section>
10076 <section id="enea-linux-eclipse-open-source-licenses-77">
10077 <title>License 77</title>
10078 <section>
10079 <title>Source File(s)</title>
10080 <itemizedlist spacing="compact">
10081 <listitem>
10082 <para>
10083 plugins/extracted_jars/org.apache.lucene.core_3.5.0.v20120725-1805/about_files/LICENSE.txt
10084 </para>
10085 </listitem>
10086 <listitem>
10087 <para>
10088 plugins/extracted_jars/org.apache.lucene.analysis_3.5.0.v20120725-1805/about_files/LICENSE.txt
10089 </para>
10090 </listitem>
10091 <listitem>
10092 <para>
10093 plugins/extracted_jars/org.apache.lucene.core.source_3.5.0.v20120725-1805/about_files/LICENSE.txt
10094 </para>
10095 </listitem>
10096 <listitem>
10097 <para>
10098 plugins/extracted_jars/org.apache.lucene.analysis.source_3.5.0.v20120725-1805/about_files/LICENSE.txt
10099 </para>
10100 </listitem>
10101 </itemizedlist>
10102 </section>
10103 <section>
10104 <title>License Text</title>
10105 <simplelist>
10106 <member> Apache License</member>
10107 <member> Version 2.0, January 2004</member>
10108 <member> http://www.apache.org/licenses/</member>
10109 <member>&#160;</member>
10110 <member> TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION</member>
10111 <member>&#160;</member>
10112 <member> 1. Definitions.</member>
10113 <member>&#160;</member>
10114 <member> "License" shall mean the terms and conditions for use, reproduction,</member>
10115 <member> and distribution as defined by Sections 1 through 9 of this document.</member>
10116 <member>&#160;</member>
10117 <member> "Licensor" shall mean the copyright owner or entity authorized by</member>
10118 <member> the copyright owner that is granting the License.</member>
10119 <member>&#160;</member>
10120 <member> "Legal Entity" shall mean the union of the acting entity and all</member>
10121 <member> other entities that control, are controlled by, or are under common</member>
10122 <member> control with that entity. For the purposes of this definition,</member>
10123 <member> "control" means (i) the power, direct or indirect, to cause the</member>
10124 <member> direction or management of such entity, whether by contract or</member>
10125 <member> otherwise, or (ii) ownership of fifty percent (50%) or more of the</member>
10126 <member> outstanding shares, or (iii) beneficial ownership of such entity.</member>
10127 <member>&#160;</member>
10128 <member> "You" (or "Your") shall mean an individual or Legal Entity</member>
10129 <member> exercising permissions granted by this License.</member>
10130 <member>&#160;</member>
10131 <member> "Source" form shall mean the preferred form for making modifications,</member>
10132 <member> including but not limited to software source code, documentation</member>
10133 <member> source, and configuration files.</member>
10134 <member>&#160;</member>
10135 <member> "Object" form shall mean any form resulting from mechanical</member>
10136 <member> transformation or translation of a Source form, including but</member>
10137 <member> not limited to compiled object code, generated documentation,</member>
10138 <member> and conversions to other media types.</member>
10139 <member>&#160;</member>
10140 <member> "Work" shall mean the work of authorship, whether in Source or</member>
10141 <member> Object form, made available under the License, as indicated by a</member>
10142 <member> copyright notice that is included in or attached to the work</member>
10143 <member> (an example is provided in the Appendix below).</member>
10144 <member>&#160;</member>
10145 <member> "Derivative Works" shall mean any work, whether in Source or Object</member>
10146 <member> form, that is based on (or derived from) the Work and for which the</member>
10147 <member> editorial revisions, annotations, elaborations, or other modifications</member>
10148 <member> represent, as a whole, an original work of authorship. For the purposes</member>
10149 <member> of this License, Derivative Works shall not include works that remain</member>
10150 <member> separable from, or merely link (or bind by name) to the interfaces of,</member>
10151 <member> the Work and Derivative Works thereof.</member>
10152 <member>&#160;</member>
10153 <member> "Contribution" shall mean any work of authorship, including</member>
10154 <member> the original version of the Work and any modifications or additions</member>
10155 <member> to that Work or Derivative Works thereof, that is intentionally</member>
10156 <member> submitted to Licensor for inclusion in the Work by the copyright owner</member>
10157 <member> or by an individual or Legal Entity authorized to submit on behalf of</member>
10158 <member> the copyright owner. For the purposes of this definition, "submitted"</member>
10159 <member> means any form of electronic, verbal, or written communication sent</member>
10160 <member> to the Licensor or its representatives, including but not limited to</member>
10161 <member> communication on electronic mailing lists, source code control systems,</member>
10162 <member> and issue tracking systems that are managed by, or on behalf of, the</member>
10163 <member> Licensor for the purpose of discussing and improving the Work, but</member>
10164 <member> excluding communication that is conspicuously marked or otherwise</member>
10165 <member> designated in writing by the copyright owner as "Not a Contribution."</member>
10166 <member>&#160;</member>
10167 <member> "Contributor" shall mean Licensor and any individual or Legal Entity</member>
10168 <member> on behalf of whom a Contribution has been received by Licensor and</member>
10169 <member> subsequently incorporated within the Work.</member>
10170 <member>&#160;</member>
10171 <member> 2. Grant of Copyright License. Subject to the terms and conditions of</member>
10172 <member> this License, each Contributor hereby grants to You a perpetual,</member>
10173 <member> worldwide, non-exclusive, no-charge, royalty-free, irrevocable</member>
10174 <member> copyright license to reproduce, prepare Derivative Works of,</member>
10175 <member> publicly display, publicly perform, sublicense, and distribute the</member>
10176 <member> Work and such Derivative Works in Source or Object form.</member>
10177 <member>&#160;</member>
10178 <member> 3. Grant of Patent License. Subject to the terms and conditions of</member>
10179 <member> this License, each Contributor hereby grants to You a perpetual,</member>
10180 <member> worldwide, non-exclusive, no-charge, royalty-free, irrevocable</member>
10181 <member> (except as stated in this section) patent license to make, have made,</member>
10182 <member> use, offer to sell, sell, import, and otherwise transfer the Work,</member>
10183 <member> where such license applies only to those patent claims licensable</member>
10184 <member> by such Contributor that are necessarily infringed by their</member>
10185 <member> Contribution(s) alone or by combination of their Contribution(s)</member>
10186 <member> with the Work to which such Contribution(s) was submitted. If You</member>
10187 <member> institute patent litigation against any entity (including a</member>
10188 <member> cross-claim or counterclaim in a lawsuit) alleging that the Work</member>
10189 <member> or a Contribution incorporated within the Work constitutes direct</member>
10190 <member> or contributory patent infringement, then any patent licenses</member>
10191 <member> granted to You under this License for that Work shall terminate</member>
10192 <member> as of the date such litigation is filed.</member>
10193 <member>&#160;</member>
10194 <member> 4. Redistribution. You may reproduce and distribute copies of the</member>
10195 <member> Work or Derivative Works thereof in any medium, with or without</member>
10196 <member> modifications, and in Source or Object form, provided that You</member>
10197 <member> meet the following conditions:</member>
10198 <member>&#160;</member>
10199 <member> (a) You must give any other recipients of the Work or</member>
10200 <member> Derivative Works a copy of this License; and</member>
10201 <member>&#160;</member>
10202 <member> (b) You must cause any modified files to carry prominent notices</member>
10203 <member> stating that You changed the files; and</member>
10204 <member>&#160;</member>
10205 <member> (c) You must retain, in the Source form of any Derivative Works</member>
10206 <member> that You distribute, all copyright, patent, trademark, and</member>
10207 <member> attribution notices from the Source form of the Work,</member>
10208 <member> excluding those notices that do not pertain to any part of</member>
10209 <member> the Derivative Works; and</member>
10210 <member>&#160;</member>
10211 <member> (d) If the Work includes a "NOTICE" text file as part of its</member>
10212 <member> distribution, then any Derivative Works that You distribute must</member>
10213 <member> include a readable copy of the attribution notices contained</member>
10214 <member> within such NOTICE file, excluding those notices that do not</member>
10215 <member> pertain to any part of the Derivative Works, in at least one</member>
10216 <member> of the following places: within a NOTICE text file distributed</member>
10217 <member> as part of the Derivative Works; within the Source form or</member>
10218 <member> documentation, if provided along with the Derivative Works; or,</member>
10219 <member> within a display generated by the Derivative Works, if and</member>
10220 <member> wherever such third-party notices normally appear. The contents</member>
10221 <member> of the NOTICE file are for informational purposes only and</member>
10222 <member> do not modify the License. You may add Your own attribution</member>
10223 <member> notices within Derivative Works that You distribute, alongside</member>
10224 <member> or as an addendum to the NOTICE text from the Work, provided</member>
10225 <member> that such additional attribution notices cannot be construed</member>
10226 <member> as modifying the License.</member>
10227 <member>&#160;</member>
10228 <member> You may add Your own copyright statement to Your modifications and</member>
10229 <member> may provide additional or different license terms and conditions</member>
10230 <member> for use, reproduction, or distribution of Your modifications, or</member>
10231 <member> for any such Derivative Works as a whole, provided Your use,</member>
10232 <member> reproduction, and distribution of the Work otherwise complies with</member>
10233 <member> the conditions stated in this License.</member>
10234 <member>&#160;</member>
10235 <member> 5. Submission of Contributions. Unless You explicitly state otherwise,</member>
10236 <member> any Contribution intentionally submitted for inclusion in the Work</member>
10237 <member> by You to the Licensor shall be under the terms and conditions of</member>
10238 <member> this License, without any additional terms or conditions.</member>
10239 <member> Notwithstanding the above, nothing herein shall supersede or modify</member>
10240 <member> the terms of any separate license agreement you may have executed</member>
10241 <member> with Licensor regarding such Contributions.</member>
10242 <member>&#160;</member>
10243 <member> 6. Trademarks. This License does not grant permission to use the trade</member>
10244 <member> names, trademarks, service marks, or product names of the Licensor,</member>
10245 <member> except as required for reasonable and customary use in describing the</member>
10246 <member> origin of the Work and reproducing the content of the NOTICE file.</member>
10247 <member>&#160;</member>
10248 <member> 7. Disclaimer of Warranty. Unless required by applicable law or</member>
10249 <member> agreed to in writing, Licensor provides the Work (and each</member>
10250 <member> Contributor provides its Contributions) on an "AS IS" BASIS,</member>
10251 <member> WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or</member>
10252 <member> implied, including, without limitation, any warranties or conditions</member>
10253 <member> of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A</member>
10254 <member> PARTICULAR PURPOSE. You are solely responsible for determining the</member>
10255 <member> appropriateness of using or redistributing the Work and assume any</member>
10256 <member> risks associated with Your exercise of permissions under this License.</member>
10257 <member>&#160;</member>
10258 <member> 8. Limitation of Liability. In no event and under no legal theory,</member>
10259 <member> whether in tort (including negligence), contract, or otherwise,</member>
10260 <member> unless required by applicable law (such as deliberate and grossly</member>
10261 <member> negligent acts) or agreed to in writing, shall any Contributor be</member>
10262 <member> liable to You for damages, including any direct, indirect, special,</member>
10263 <member> incidental, or consequential damages of any character arising as a</member>
10264 <member> result of this License or out of the use or inability to use the</member>
10265 <member> Work (including but not limited to damages for loss of goodwill,</member>
10266 <member> work stoppage, computer failure or malfunction, or any and all</member>
10267 <member> other commercial damages or losses), even if such Contributor</member>
10268 <member> has been advised of the possibility of such damages.</member>
10269 <member>&#160;</member>
10270 <member> 9. Accepting Warranty or Additional Liability. While redistributing</member>
10271 <member> the Work or Derivative Works thereof, You may choose to offer,</member>
10272 <member> and charge a fee for, acceptance of support, warranty, indemnity,</member>
10273 <member> or other liability obligations and/or rights consistent with this</member>
10274 <member> License. However, in accepting such obligations, You may act only</member>
10275 <member> on Your own behalf and on Your sole responsibility, not on behalf</member>
10276 <member> of any other Contributor, and only if You agree to indemnify,</member>
10277 <member> defend, and hold each Contributor harmless for any liability</member>
10278 <member> incurred by, or claims asserted against, such Contributor by reason</member>
10279 <member> of your accepting any such warranty or additional liability.</member>
10280 <member>&#160;</member>
10281 <member> END OF TERMS AND CONDITIONS</member>
10282 <member>&#160;</member>
10283 <member> APPENDIX: How to apply the Apache License to your work.</member>
10284 <member>&#160;</member>
10285 <member> To apply the Apache License to your work, attach the following</member>
10286 <member> boilerplate notice, with the fields enclosed by brackets "[]"</member>
10287 <member> replaced with your own identifying information. (Don't include</member>
10288 <member> the brackets!) The text should be enclosed in the appropriate</member>
10289 <member> comment syntax for the file format. We also recommend that a</member>
10290 <member> file or class name and description of purpose be included on the</member>
10291 <member> same "printed page" as the copyright notice for easier</member>
10292 <member> identification within third-party archives.</member>
10293 <member>&#160;</member>
10294 <member> Copyright [yyyy] [name of copyright owner]</member>
10295 <member>&#160;</member>
10296 <member> Licensed under the Apache License, Version 2.0 (the "License");</member>
10297 <member> you may not use this file except in compliance with the License.</member>
10298 <member> You may obtain a copy of the License at</member>
10299 <member>&#160;</member>
10300 <member> http://www.apache.org/licenses/LICENSE-2.0</member>
10301 <member>&#160;</member>
10302 <member> Unless required by applicable law or agreed to in writing, software</member>
10303 <member> distributed under the License is distributed on an "AS IS" BASIS,</member>
10304 <member> WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</member>
10305 <member> See the License for the specific language governing permissions and</member>
10306 <member> limitations under the License.</member>
10307 <member>&#160;</member>
10308 <member>&#160;</member>
10309 <member>&#160;</member>
10310 <member>Some code in src/java/org/apache/lucene/util/UnicodeUtil.java was</member>
10311 <member>derived from unicode conversion examples available at</member>
10312 <member>http://www.unicode.org/Public/PROGRAMS/CVTUTF. Here is the copyright</member>
10313 <member>from those sources:</member>
10314 <member>&#160;</member>
10315 <member>/*</member>
10316 <member> * Copyright 2001-2004 Unicode, Inc.</member>
10317 <member> * </member>
10318 <member> * Disclaimer</member>
10319 <member> * </member>
10320 <member> * This source code is provided as is by Unicode, Inc. No claims are</member>
10321 <member> * made as to fitness for any particular purpose. No warranties of any</member>
10322 <member> * kind are expressed or implied. The recipient agrees to determine</member>
10323 <member> * applicability of information provided. If this file has been</member>
10324 <member> * purchased on magnetic or optical media from Unicode, Inc., the</member>
10325 <member> * sole remedy for any claim will be exchange of defective media</member>
10326 <member> * within 90 days of receipt.</member>
10327 <member> * </member>
10328 <member> * Limitations on Rights to Redistribute This Code</member>
10329 <member> * </member>
10330 <member> * Unicode, Inc. hereby grants the right to freely use the information</member>
10331 <member> * supplied in this file in the creation of products supporting the</member>
10332 <member> * Unicode Standard, and to make copies of this file in any form</member>
10333 <member> * for internal or external distribution as long as this notice</member>
10334 <member> * remains attached.</member>
10335 <member> */</member>
10336 <member>&#160;</member>
10337 <member>&#160;</member>
10338 <member>Some code in src/java/org/apache/lucene/util/ArrayUtil.java was</member>
10339 <member>derived from Python 2.4.2 sources available at</member>
10340 <member>http://www.python.org. Full license is here:</member>
10341 <member>&#160;</member>
10342 <member> http://www.python.org/download/releases/2.4.2/license/</member>
10343 <member>&#160;</member>
10344 <member>&#160;</member>
10345 <member>Some code in src/java/org/apache/lucene/util/UnicodeUtil.java was</member>
10346 <member>derived from ICU (http://www.icu-project.org)</member>
10347 <member>The full license is available here: </member>
10348 <member> http://source.icu-project.org/repos/icu/icu/trunk/license.html</member>
10349 <member>&#160;</member>
10350 <member>/*</member>
10351 <member> * Copyright (C) 1999-2010, International Business Machines</member>
10352 <member> * Corporation and others. All Rights Reserved.</member>
10353 <member> *</member>
10354 <member> * Permission is hereby granted, free of charge, to any person obtaining a copy </member>
10355 <member> * of this software and associated documentation files (the "Software"), to deal</member>
10356 <member> * in the Software without restriction, including without limitation the rights </member>
10357 <member> * to use, copy, modify, merge, publish, distribute, and/or sell copies of the </member>
10358 <member> * Software, and to permit persons to whom the Software is furnished to do so, </member>
10359 <member> * provided that the above copyright notice(s) and this permission notice appear </member>
10360 <member> * in all copies of the Software and that both the above copyright notice(s) and</member>
10361 <member> * this permission notice appear in supporting documentation.</member>
10362 <member> * </member>
10363 <member> * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR </member>
10364 <member> * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, </member>
10365 <member> * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. </member>
10366 <member> * IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE </member>
10367 <member> * LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR </member>
10368 <member> * ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER </member>
10369 <member> * IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT </member>
10370 <member> * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.</member>
10371 <member> *</member>
10372 <member> * Except as contained in this notice, the name of a copyright holder shall not </member>
10373 <member> * be used in advertising or otherwise to promote the sale, use or other </member>
10374 <member> * dealings in this Software without prior written authorization of the </member>
10375 <member> * copyright holder.</member>
10376 <member> */</member>
10377 <member>&#160;</member>
10378 <member>The following license applies to the Snowball stemmers:</member>
10379 <member>&#160;</member>
10380 <member>Copyright (c) 2001, Dr Martin Porter</member>
10381 <member>Copyright (c) 2002, Richard Boulton</member>
10382 <member>All rights reserved.</member>
10383 <member>&#160;</member>
10384 <member>Redistribution and use in source and binary forms, with or without</member>
10385 <member>modification, are permitted provided that the following conditions are met:</member>
10386 <member>&#160;</member>
10387 <member> * Redistributions of source code must retain the above copyright notice,</member>
10388 <member> * this list of conditions and the following disclaimer.</member>
10389 <member> * Redistributions in binary form must reproduce the above copyright</member>
10390 <member> * notice, this list of conditions and the following disclaimer in the</member>
10391 <member> * documentation and/or other materials provided with the distribution.</member>
10392 <member> * Neither the name of the copyright holders nor the names of its contributors</member>
10393 <member> * may be used to endorse or promote products derived from this software</member>
10394 <member> * without specific prior written permission.</member>
10395 <member>&#160;</member>
10396 <member>THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"</member>
10397 <member>AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE</member>
10398 <member>IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE</member>
10399 <member>DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE</member>
10400 <member>FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL</member>
10401 <member>DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR</member>
10402 <member>SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER</member>
10403 <member>CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,</member>
10404 <member>OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE</member>
10405 <member>OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</member>
10406 <member>&#160;</member>
10407 <member>The following license applies to the KStemmer:</member>
10408 <member>&#160;</member>
10409 <member>Copyright (C) 2003,</member>
10410 <member>Center for Intelligent Information Retrieval,</member>
10411 <member>University of Massachusetts, Amherst.</member>
10412 <member>All rights reserved.</member>
10413 <member>&#160;</member>
10414 <member>Redistribution and use in source and binary forms, with or without modification,</member>
10415 <member>are permitted provided that the following conditions are met:</member>
10416 <member>&#160;</member>
10417 <member>1. Redistributions of source code must retain the above copyright notice, this</member>
10418 <member>list of conditions and the following disclaimer.</member>
10419 <member>&#160;</member>
10420 <member>2. Redistributions in binary form must reproduce the above copyright notice,</member>
10421 <member>this list of conditions and the following disclaimer in the documentation</member>
10422 <member>and/or other materials provided with the distribution.</member>
10423 <member>&#160;</member>
10424 <member>3. The names "Center for Intelligent Information Retrieval" and</member>
10425 <member>"University of Massachusetts" must not be used to endorse or promote products</member>
10426 <member>derived from this software without prior written permission. To obtain</member>
10427 <member>permission, contact info@ciir.cs.umass.edu.</member>
10428 <member>&#160;</member>
10429 <member>THIS SOFTWARE IS PROVIDED BY UNIVERSITY OF MASSACHUSETTS AND OTHER CONTRIBUTORS</member>
10430 <member>"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,</member>
10431 <member>THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE</member>
10432 <member>ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE</member>
10433 <member>LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR</member>
10434 <member>CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE</member>
10435 <member>GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)</member>
10436 <member>HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT</member>
10437 <member>LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY</member>
10438 <member>OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF</member>
10439 <member>SUCH DAMAGE.</member>
10440 </simplelist>
10441 </section>
10442 </section>
10443</chapter>
diff --git a/doc/book-enea-linux-eclipse-open-source/swcomp.mk b/doc/book-enea-linux-eclipse-open-source/swcomp.mk
new file mode 100644
index 0000000..ad07cbd
--- /dev/null
+++ b/doc/book-enea-linux-eclipse-open-source/swcomp.mk
@@ -0,0 +1,11 @@
1# Component build specification
2
3# Version of THIS book
4BOOK_VER ?= $(REL_VER)-dev
5
6DOCBOOK_COMMON_SRC := $(shell find $(DOCBOOKTEMPLATE)/docsrc_common -type f \( -name "bookinfo_userdoc.xml" \) -print 2>/dev/null)
7DOCBOOK_SRC := $(COMP)/swcomp.mk $(COMP)/doc/book.xml $(shell find $(COMP)/doc -type f \( -name "*.xml" -o -name "*.svg" -o -name "*.png" \) ! -name "book.xml" -print) $(DOCBOOK_COMMON_SRC)
8
9BOOKPACKAGES := book-enea-linux-eclipse-open-source
10BOOKDESC_$(BOOKPACKAGES) := "Enea Linux Eclipse Open Source Report"
11BOOKDEFAULTCONDITION := $(DEFAULTCONDITIONS) \ No newline at end of file
diff --git a/doc/book-enea-linux-open-source/doc/README b/doc/book-enea-linux-open-source/doc/README
new file mode 100644
index 0000000..c40a2d9
--- /dev/null
+++ b/doc/book-enea-linux-open-source/doc/README
@@ -0,0 +1,4 @@
1The licenses.xml in the git repository of Enea Linux Open Source Report
2is the frozen version belonging to the last official release of Enea Linux.
3The contents must be generated from the release script to obtain the latest
4lists of packages and licenses.
diff --git a/doc/book-enea-linux-open-source/doc/about.xml b/doc/book-enea-linux-open-source/doc/about.xml
new file mode 100644
index 0000000..f2f863f
--- /dev/null
+++ b/doc/book-enea-linux-open-source/doc/about.xml
@@ -0,0 +1,12 @@
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
3"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
4<chapter id="enea-linux-open-source-packages-and-licenses">
5 <title>About this Report</title>
6
7 <para>This document contains the open source and license information
8 pertaining to packages provided with Enea Linux <xi:include
9 href="../../s_docsrc_common/pardoc-distro.xml"
10 xmlns:xi="http://www.w3.org/2001/XInclude"
11 xpointer="element(EneaLinux_REL_VER/1)" />.</para>
12</chapter> \ No newline at end of file
diff --git a/doc/book-enea-linux-open-source/doc/book.xml b/doc/book-enea-linux-open-source/doc/book.xml
new file mode 100644
index 0000000..d5da88e
--- /dev/null
+++ b/doc/book-enea-linux-open-source/doc/book.xml
@@ -0,0 +1,14 @@
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
3"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd" [
4<!ENTITY % local.common.attrib "xml:base CDATA #IMPLIED">
5]>
6<book id="book_enea_linux_open_source">
7 <title><trademark class="registered">Enea</trademark> Linux Open Source Report</title>
8 <subtitle>Release Version
9 <xi:include href="../../s_docsrc_common/pardoc-distro.xml" xpointer="element(EneaLinux_REL_VER/1)"
10 xmlns:xi="http://www.w3.org/2001/XInclude" /></subtitle>
11 <xi:include href="../../s_docbuild/template/docsrc_common/bookinfo_userdoc.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
12 <xi:include href="about.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
13 <xi:include href="licenses.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
14</book>
diff --git a/doc/book-enea-linux-open-source/doc/licenses.xml b/doc/book-enea-linux-open-source/doc/licenses.xml
index 48d9381..557c792 100644
--- a/doc/book-enea-linux-open-source/doc/licenses.xml
+++ b/doc/book-enea-linux-open-source/doc/licenses.xml
@@ -1,20 +1,6 @@
1<?xml version="1.0" encoding="UTF-8"?> 1<?xml version="1.0" encoding="UTF-8"?>
2<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN" 2<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
3"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd"> 3"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
4
5<!--
6
7This file is a copy of the licenses.xml produced for Enea Linux 5.0 for PPC.
8 URL:
9 git@git.enea.se:linux/meta-enea-base-ppc.git
10 Version (tag):
11 "enea-linux-5.0-ppc"
12 Path within the repo:
13 documentation/book-enea-linux-open-source/doc/licenses.xml
14
15No modifications except this comment have been made.
16-->
17
18<chapter id="enea_linux_packages"> 4<chapter id="enea_linux_packages">
19 <title>Packages and Licenses</title> 5 <title>Packages and Licenses</title>
20 <section id="licenses_packages"> 6 <section id="licenses_packages">
@@ -29,7 +15,7 @@ specific documentation.-->
29 <informaltable> 15 <informaltable>
30 <tgroup cols="4"> 16 <tgroup cols="4">
31 <colspec colwidth="2*"/> 17 <colspec colwidth="2*"/>
32 <colspec colwidth="1.5*"/> 18 <colspec colwidth="1*"/>
33 <colspec colwidth="5*"/> 19 <colspec colwidth="5*"/>
34 <colspec colwidth="2*"/> 20 <colspec colwidth="2*"/>
35 21
@@ -80,12 +66,6 @@ specific documentation.-->
80 <entry>Apache-2.0</entry> 66 <entry>Apache-2.0</entry>
81</row> 67</row>
82<row> 68<row>
83 <entry>at</entry>
84 <entry>3.1.15</entry>
85 <entry>At allows for commands to be run at a particular time. Batch will execute commands when the system load levels drop to a particular level.</entry>
86 <entry>GPL-2.0</entry>
87</row>
88<row>
89 <entry>atk</entry> 69 <entry>atk</entry>
90 <entry>2.12.0</entry> 70 <entry>2.12.0</entry>
91 <entry>Accessibility toolkit for GNOME.</entry> 71 <entry>Accessibility toolkit for GNOME.</entry>
@@ -98,6 +78,12 @@ specific documentation.-->
98 <entry> LGPL-2.1, GPL-2.0</entry> 78 <entry> LGPL-2.1, GPL-2.0</entry>
99</row> 79</row>
100<row> 80<row>
81 <entry>augeas</entry>
82 <entry>1.2.0</entry>
83 <entry>Augeas configuration API.</entry>
84 <entry>LGPL-2.1</entry>
85</row>
86<row>
101 <entry>autoconf</entry> 87 <entry>autoconf</entry>
102 <entry>2.69</entry> 88 <entry>2.69</entry>
103 <entry>Autoconf is an extensible package of M4 macros that produce shell scripts to automatically configure software source code packages. Autoconf creates a configuration script for a package from a template file that lists the operating system features that the package can use in the form of M4 macro calls.</entry> 89 <entry>Autoconf is an extensible package of M4 macros that produce shell scripts to automatically configure software source code packages. Autoconf creates a configuration script for a package from a template file that lists the operating system features that the package can use in the form of M4 macro calls.</entry>
@@ -152,12 +138,6 @@ specific documentation.-->
152 <entry> GPL-2.0, LGPL-2.1</entry> 138 <entry> GPL-2.0, LGPL-2.1</entry>
153</row> 139</row>
154<row> 140<row>
155 <entry>benchtest-runner</entry>
156 <entry>1.0</entry>
157 <entry>Execute all benchmark scripts in current directory</entry>
158 <entry>BSD</entry>
159</row>
160<row>
161 <entry>bigreqsproto</entry> 141 <entry>bigreqsproto</entry>
162 <entry>1.1.2</entry> 142 <entry>1.1.2</entry>
163 <entry>This package provides the wire protocol for the BIG-REQUESTS extension used to send larger requests that usual in order to avoid fragmentation.</entry> 143 <entry>This package provides the wire protocol for the BIG-REQUESTS extension used to send larger requests that usual in order to avoid fragmentation.</entry>
@@ -236,15 +216,15 @@ specific documentation.-->
236 <entry> GPL-2.0, LGPL-2.1</entry> 216 <entry> GPL-2.0, LGPL-2.1</entry>
237</row> 217</row>
238<row> 218<row>
239 <entry>bonnie++</entry> 219 <entry>boot-format</entry>
240 <entry>1.03e</entry> 220 <entry>git</entry>
241 <entry>Tests large file IO and creation/deletion of small files.</entry> 221 <entry>Boot format utility for booting from eSDHC/eSPI</entry>
242 <entry>GPL-2.0</entry> 222 <entry>GPL-2.0</entry>
243</row> 223</row>
244<row> 224<row>
245 <entry>boot-format</entry> 225 <entry>bridge-utils</entry>
246 <entry>commit 4eb81a67</entry> 226 <entry>1.5</entry>
247 <entry>Boot format utility for booting from eSDHC/eSPI</entry> 227 <entry>Tools for ethernet bridging.</entry>
248 <entry>GPL-2.0</entry> 228 <entry>GPL-2.0</entry>
249</row> 229</row>
250<row> 230<row>
@@ -356,12 +336,6 @@ specific documentation.-->
356 <entry>GPL-2.0</entry> 336 <entry>GPL-2.0</entry>
357</row> 337</row>
358<row> 338<row>
359 <entry>cronie</entry>
360 <entry>1.4.11</entry>
361 <entry>Cronie contains the standard UNIX daemon crond that runs specified programs at scheduled times and related tools. It is based on the original cron and has security and configuration enhancements like the ability to use pam and SELinux.</entry>
362 <entry> ISC, BSD</entry>
363</row>
364<row>
365 <entry>cross-localedef</entry> 339 <entry>cross-localedef</entry>
366 <entry>2.20</entry> 340 <entry>2.20</entry>
367 <entry>Cross locale generation tool for glibc.</entry> 341 <entry>Cross locale generation tool for glibc.</entry>
@@ -410,12 +384,6 @@ specific documentation.-->
410 <entry> AFL-2.0, GPL-2.0</entry> 384 <entry> AFL-2.0, GPL-2.0</entry>
411</row> 385</row>
412<row> 386<row>
413 <entry>ddt-runner</entry>
414 <entry>1.0</entry>
415 <entry>Script to automatize Device Driver Tests</entry>
416 <entry>BSD</entry>
417</row>
418<row>
419 <entry>dejagnu</entry> 387 <entry>dejagnu</entry>
420 <entry>1.4.4</entry> 388 <entry>1.4.4</entry>
421 <entry>GNU unit testing framework written in Expect and Tcl.</entry> 389 <entry>GNU unit testing framework written in Expect and Tcl.</entry>
@@ -458,6 +426,12 @@ specific documentation.-->
458 <entry>MIT</entry> 426 <entry>MIT</entry>
459</row> 427</row>
460<row> 428<row>
429 <entry>dnsmasq</entry>
430 <entry>2.71</entry>
431 <entry>Lightweight easy to configure DNS forwarder and DHCP server.</entry>
432 <entry> GPL-2.0, GPL-3.0</entry>
433</row>
434<row>
461 <entry>docbook-dsssl-stylesheets</entry> 435 <entry>docbook-dsssl-stylesheets</entry>
462 <entry>1.79</entry> 436 <entry>1.79</entry>
463 <entry>DSSSL stylesheets used to transform SGML and XML DocBook files.</entry> 437 <entry>DSSSL stylesheets used to transform SGML and XML DocBook files.</entry>
@@ -543,17 +517,11 @@ specific documentation.-->
543</row> 517</row>
544<row> 518<row>
545 <entry>eth-config</entry> 519 <entry>eth-config</entry>
546 <entry>commit 8040e0b1</entry> 520 <entry>git</entry>
547 <entry>Ethernet Configuration Files</entry> 521 <entry>Ethernet Configuration Files</entry>
548 <entry> BSD, GPL-2.0</entry> 522 <entry> BSD, GPL-2.0</entry>
549</row> 523</row>
550<row> 524<row>
551 <entry>ethtool</entry>
552 <entry>3.15</entry>
553 <entry>A small utility for examining and tuning the settings of your ethernet-based network interfaces.</entry>
554 <entry>GPL-2.0</entry>
555</row>
556<row>
557 <entry>eventlog</entry> 525 <entry>eventlog</entry>
558 <entry>0.2.13</entry> 526 <entry>0.2.13</entry>
559 <entry>The EventLog library aims to be a replacement of the simple syslog() API provided on UNIX systems. The major difference between EventLog and syslog is that EventLog tries to add structure to messages. EventLog provides an interface to build format and output an event record. The exact format and output method can be customized by the administrator via a configuration file. his package is the runtime part of the library. </entry> 527 <entry>The EventLog library aims to be a replacement of the simple syslog() API provided on UNIX systems. The major difference between EventLog and syslog is that EventLog tries to add structure to messages. EventLog provides an interface to build format and output an event record. The exact format and output method can be customized by the administrator via a configuration file. his package is the runtime part of the library. </entry>
@@ -615,19 +583,19 @@ specific documentation.-->
615</row> 583</row>
616<row> 584<row>
617 <entry>flib</entry> 585 <entry>flib</entry>
618 <entry>commit 4bd48d4d</entry> 586 <entry>git</entry>
619 <entry>Foundation Library</entry> 587 <entry>Foundation Library</entry>
620 <entry> BSD, GPL-2.0</entry> 588 <entry> BSD, GPL-2.0</entry>
621</row> 589</row>
622<row> 590<row>
623 <entry>fmc</entry> 591 <entry>fmc</entry>
624 <entry>commit 4f4a3ebe</entry> 592 <entry>git</entry>
625 <entry>Frame Manager Configuration tool</entry> 593 <entry>Frame Manager Configuration tool</entry>
626 <entry>MIT</entry> 594 <entry>MIT</entry>
627</row> 595</row>
628<row> 596<row>
629 <entry>fmlib</entry> 597 <entry>fmlib</entry>
630 <entry>commit 661d7822</entry> 598 <entry>git</entry>
631 <entry>Frame Manager User Space Library</entry> 599 <entry>Frame Manager User Space Library</entry>
632 <entry> BSD, GPL-2.0</entry> 600 <entry> BSD, GPL-2.0</entry>
633</row> 601</row>
@@ -860,6 +828,12 @@ specific documentation.-->
860 <entry>GPL-2.0</entry> 828 <entry>GPL-2.0</entry>
861</row> 829</row>
862<row> 830<row>
831 <entry>gnulib</entry>
832 <entry>git</entry>
833 <entry>A collection of software subroutines which are designed to be usable on many operating systems. The goal of the project is to make it easy for free software authors to make their software run on many operating systems. Since source is designed to be copied from gnulib it is not a library per-se as much as a collection of portable idioms to be used in other projects.</entry>
834 <entry>LGPL-2.0</entry>
835</row>
836<row>
863 <entry>gnutls</entry> 837 <entry>gnutls</entry>
864 <entry>3.3.5</entry> 838 <entry>3.3.5</entry>
865 <entry>GNU Transport Layer Security Library.</entry> 839 <entry>GNU Transport Layer Security Library.</entry>
@@ -956,12 +930,6 @@ specific documentation.-->
956 <entry>GPL-2.0</entry> 930 <entry>GPL-2.0</entry>
957</row> 931</row>
958<row> 932<row>
959 <entry>i2c-tools</entry>
960 <entry>3.1.1</entry>
961 <entry>Set of i2c tools for linux.</entry>
962 <entry>GPL-2.0</entry>
963</row>
964<row>
965 <entry>icu</entry> 933 <entry>icu</entry>
966 <entry>53.1</entry> 934 <entry>53.1</entry>
967 <entry>The International Component for Unicode (ICU) is a mature portable set of C/C++ and Java libraries for Unicode support software internationalization (I18N) and globalization (G11N) giving applications the same results on all platforms.</entry> 935 <entry>The International Component for Unicode (ICU) is a mature portable set of C/C++ and Java libraries for Unicode support software internationalization (I18N) and globalization (G11N) giving applications the same results on all platforms.</entry>
@@ -1088,6 +1056,12 @@ specific documentation.-->
1088 <entry> GPL-2.0, MIT</entry> 1056 <entry> GPL-2.0, MIT</entry>
1089</row> 1057</row>
1090<row> 1058<row>
1059 <entry>libbsd</entry>
1060 <entry>0.7.0</entry>
1061 <entry>This library provides useful functions commonly found on BSD systems and lacking on others like GNU systems thus making it easier to port projects with strong BSD origins without needing to embed the same code over and over again on each project.</entry>
1062 <entry> BSD-4-Clause, MIT</entry>
1063</row>
1064<row>
1091 <entry>libcap</entry> 1065 <entry>libcap</entry>
1092 <entry>2.22</entry> 1066 <entry>2.22</entry>
1093 <entry>Library for getting/setting POSIX.1e capabilities.</entry> 1067 <entry>Library for getting/setting POSIX.1e capabilities.</entry>
@@ -1340,12 +1314,6 @@ specific documentation.-->
1340 <entry> GPL-2.0, LGPL-2.1</entry> 1314 <entry> GPL-2.0, LGPL-2.1</entry>
1341</row> 1315</row>
1342<row> 1316<row>
1343 <entry>libuio</entry>
1344 <entry>1.0</entry>
1345 <entry>Provide a generic framework for handling devices in userspace.</entry>
1346 <entry>GPL-2.0</entry>
1347</row>
1348<row>
1349 <entry>liburcu</entry> 1317 <entry>liburcu</entry>
1350 <entry>0.8.4</entry> 1318 <entry>0.8.4</entry>
1351 <entry>Userspace RCU (read-copy-update) library.</entry> 1319 <entry>Userspace RCU (read-copy-update) library.</entry>
@@ -1364,6 +1332,12 @@ specific documentation.-->
1364 <entry>LGPL-2.1</entry> 1332 <entry>LGPL-2.1</entry>
1365</row> 1333</row>
1366<row> 1334<row>
1335 <entry>libvirt</entry>
1336 <entry>1.2.14</entry>
1337 <entry>A toolkit to interact with the virtualization capabilities of recent versions of Linux.</entry>
1338 <entry>LGPL-2.1</entry>
1339</row>
1340<row>
1367 <entry>libvorbis</entry> 1341 <entry>libvorbis</entry>
1368 <entry>1.3.4</entry> 1342 <entry>1.3.4</entry>
1369 <entry>Ogg Vorbis is a high-quality lossy audio codec that is free of intellectual property restrictions. libvorbis is the main vorbis codec library.</entry> 1343 <entry>Ogg Vorbis is a high-quality lossy audio codec that is free of intellectual property restrictions. libvorbis is the main vorbis codec library.</entry>
@@ -1556,30 +1530,12 @@ specific documentation.-->
1556 <entry>GPL-2.0</entry> 1530 <entry>GPL-2.0</entry>
1557</row> 1531</row>
1558<row> 1532<row>
1559 <entry>linx-mod</entry>
1560 <entry>2.6.6</entry>
1561 <entry>LINX is a distributed communication protocol stack for transparent inter node and interprocess communication for a heterogeneous mix of systems.</entry>
1562 <entry>GPL-2.0</entry>
1563</row>
1564<row>
1565 <entry>linx</entry>
1566 <entry>2.6.6</entry>
1567 <entry>LINX is a distributed communication protocol stack for transparent inter node and interprocess communication for a heterogeneous mix of systems.</entry>
1568 <entry>BSD</entry>
1569</row>
1570<row>
1571 <entry>list2mask</entry> 1533 <entry>list2mask</entry>
1572 <entry>1.0</entry> 1534 <entry>1.0</entry>
1573 <entry>Translate CPU list given on command line to a hexadecimal CPU mask. Can use kernel boot parameters isolcpus or nohz_full as input as well as a list given on command line.</entry> 1535 <entry>Translate CPU list given on command line to a hexadecimal CPU mask. Can use kernel boot parameters isolcpus or nohz_full as input as well as a list given on command line.</entry>
1574 <entry>BSD</entry> 1536 <entry>BSD</entry>
1575</row> 1537</row>
1576<row> 1538<row>
1577 <entry>logrotate</entry>
1578 <entry>3.8.7</entry>
1579 <entry>Rotates compresses removes and mails system log files.</entry>
1580 <entry>GPL-2.0</entry>
1581</row>
1582<row>
1583 <entry>lrzsz</entry> 1539 <entry>lrzsz</entry>
1584 <entry>0.12.20</entry> 1540 <entry>0.12.20</entry>
1585 <entry>Lrzsz is a cosmetically modified zmodem/ymodem/xmodem package built from the public-domain version of Chuck Forsberg's rzsz package. These programs use error correcting protocols ({zxy}modem) to send (sz sx sb) and receive (rz rx rb) files over a dial-in serial port from a variety of programs running under various operating systems. </entry> 1541 <entry>Lrzsz is a cosmetically modified zmodem/ymodem/xmodem package built from the public-domain version of Chuck Forsberg's rzsz package. These programs use error correcting protocols ({zxy}modem) to send (sz sx sb) and receive (rz rx rb) files over a dial-in serial port from a variety of programs running under various operating systems. </entry>
@@ -1622,6 +1578,18 @@ specific documentation.-->
1622 <entry> LGPL-2.1, MIT, GPL-2.0</entry> 1578 <entry> LGPL-2.1, MIT, GPL-2.0</entry>
1623</row> 1579</row>
1624<row> 1580<row>
1581 <entry>lvm2</entry>
1582 <entry>2.02.97</entry>
1583 <entry>LVM2 is a set of utilities to manage logical volumes in Linux.</entry>
1584 <entry> GPL-2.0, LGPL-2.0</entry>
1585</row>
1586<row>
1587 <entry>lxc</entry>
1588 <entry>1.0.6</entry>
1589 <entry>lxc aims to use these new functionnalities to provide an userspace container object</entry>
1590 <entry>GPL-2.0</entry>
1591</row>
1592<row>
1625 <entry>lzo</entry> 1593 <entry>lzo</entry>
1626 <entry>2.08</entry> 1594 <entry>2.08</entry>
1627 <entry>Lossless data compression library.</entry> 1595 <entry>Lossless data compression library.</entry>
@@ -1676,6 +1644,18 @@ specific documentation.-->
1676 <entry>MIT</entry> 1644 <entry>MIT</entry>
1677</row> 1645</row>
1678<row> 1646<row>
1647 <entry>meta-environment-p2041rdb</entry>
1648 <entry>1.0</entry>
1649 <entry>Package of environment files for SDK.</entry>
1650 <entry>MIT</entry>
1651</row>
1652<row>
1653 <entry>meta-environment-p3041ds</entry>
1654 <entry>1.0</entry>
1655 <entry>Package of environment files for SDK.</entry>
1656 <entry>MIT</entry>
1657</row>
1658<row>
1679 <entry>meta-environment-t4240rdb-64b</entry> 1659 <entry>meta-environment-t4240rdb-64b</entry>
1680 <entry>1.0</entry> 1660 <entry>1.0</entry>
1681 <entry>Package of environment files for SDK.</entry> 1661 <entry>Package of environment files for SDK.</entry>
@@ -1736,12 +1716,6 @@ specific documentation.-->
1736 <entry> GPL-3.0, LGPL-3.0</entry> 1716 <entry> GPL-3.0, LGPL-3.0</entry>
1737</row> 1717</row>
1738<row> 1718<row>
1739 <entry>mtd-utils</entry>
1740 <entry>1.5.1</entry>
1741 <entry>Tools for managing memory technology devices.</entry>
1742 <entry>GPL-2.0</entry>
1743</row>
1744<row>
1745 <entry>mtdev</entry> 1719 <entry>mtdev</entry>
1746 <entry>1.1.5</entry> 1720 <entry>1.1.5</entry>
1747 <entry>mtdev is a library which transforms all variants of kernel multitouch events to the slotted type B protocol. The events put into mtdev may be from any MT device specifically type A without contact tracking type A with contact tracking or type B with contact tracking</entry> 1721 <entry>mtdev is a library which transforms all variants of kernel multitouch events to the slotted type B protocol. The events put into mtdev may be from any MT device specifically type A without contact tracking type A with contact tracking or type B with contact tracking</entry>
@@ -1760,18 +1734,24 @@ specific documentation.-->
1760 <entry>GPL-2.0</entry> 1734 <entry>GPL-2.0</entry>
1761</row> 1735</row>
1762<row> 1736<row>
1763 <entry>net-tools</entry>
1764 <entry>1.60-25</entry>
1765 <entry>A collection of programs that form the base set of the NET-3 networking distribution for the Linux operating system</entry>
1766 <entry>GPL-2.0</entry>
1767</row>
1768<row>
1769 <entry>netbase</entry> 1737 <entry>netbase</entry>
1770 <entry>5.2</entry> 1738 <entry>5.2</entry>
1771 <entry>This package provides the necessary infrastructure for basic TCP/IP based networking</entry> 1739 <entry>This package provides the necessary infrastructure for basic TCP/IP based networking</entry>
1772 <entry>GPL-2.0</entry> 1740 <entry>GPL-2.0</entry>
1773</row> 1741</row>
1774<row> 1742<row>
1743 <entry>netcat-openbsd</entry>
1744 <entry>1.105</entry>
1745 <entry>OpenBSD Netcat.</entry>
1746 <entry>BSD-3-Clause</entry>
1747</row>
1748<row>
1749 <entry>netcf</entry>
1750 <entry>0.2.3</entry>
1751 <entry>netcf is a cross-platform network configuration library.</entry>
1752 <entry>LGPL-2.1</entry>
1753</row>
1754<row>
1775 <entry>nettle</entry> 1755 <entry>nettle</entry>
1776 <entry>2.7.1</entry> 1756 <entry>2.7.1</entry>
1777 <entry>A low level cryptographic library.</entry> 1757 <entry>A low level cryptographic library.</entry>
@@ -1820,6 +1800,12 @@ specific documentation.-->
1820 <entry>OpenSSL</entry> 1800 <entry>OpenSSL</entry>
1821</row> 1801</row>
1822<row> 1802<row>
1803 <entry>openvswitch</entry>
1804 <entry>2.1.2</entry>
1805 <entry>Open vSwitch is a production quality multilayer virtual switch licensed under the open source Apache 2.0 license. It is designed to enable massive network automation through programmatic extension while still supporting standard management interfaces and protocols (e.g. NetFlow sFlow SPAN RSPAN CLI LACP 802.1ag)</entry>
1806 <entry>Apache-2.0</entry>
1807</row>
1808<row>
1823 <entry>opkg-utils</entry> 1809 <entry>opkg-utils</entry>
1824 <entry>0.1.8</entry> 1810 <entry>0.1.8</entry>
1825 <entry>Additional utilities for the opkg package manager.</entry> 1811 <entry>Additional utilities for the opkg package manager.</entry>
@@ -1952,27 +1938,27 @@ specific documentation.-->
1952 <entry>MIT</entry> 1938 <entry>MIT</entry>
1953</row> 1939</row>
1954<row> 1940<row>
1955 <entry>packagegroup-cross-canadian-t4240rdb-64b</entry> 1941 <entry>packagegroup-cross-canadian-p2041rdb</entry>
1956 <entry>1.0</entry> 1942 <entry>1.0</entry>
1957 <entry>Host SDK package for cross canadian toolchain.</entry> 1943 <entry>Host SDK package for cross canadian toolchain.</entry>
1958 <entry>MIT</entry> 1944 <entry>MIT</entry>
1959</row> 1945</row>
1960<row> 1946<row>
1961 <entry>packagegroup-enea-bench</entry> 1947 <entry>packagegroup-cross-canadian-p3041ds</entry>
1962 <entry>1.0</entry> 1948 <entry>1.0</entry>
1963 <entry>Package group for benchmarking test</entry> 1949 <entry>Host SDK package for cross canadian toolchain.</entry>
1964 <entry>MIT</entry> 1950 <entry>MIT</entry>
1965</row> 1951</row>
1966<row> 1952<row>
1967 <entry>packagegroup-enea-core-boot</entry> 1953 <entry>packagegroup-cross-canadian-t4240rdb-64b</entry>
1968 <entry>1.0</entry> 1954 <entry>1.0</entry>
1969 <entry>The minimal and busybox set of packages required to boot the system</entry> 1955 <entry>Host SDK package for cross canadian toolchain.</entry>
1970 <entry>MIT</entry> 1956 <entry>MIT</entry>
1971</row> 1957</row>
1972<row> 1958<row>
1973 <entry>packagegroup-enea-ddt</entry> 1959 <entry>packagegroup-enea-core-boot</entry>
1974 <entry>1.0</entry> 1960 <entry>1.0</entry>
1975 <entry>Package group for driver test</entry> 1961 <entry>The minimal and busybox set of packages required to boot the system</entry>
1976 <entry>MIT</entry> 1962 <entry>MIT</entry>
1977</row> 1963</row>
1978<row> 1964<row>
@@ -1982,21 +1968,15 @@ specific documentation.-->
1982 <entry>MIT</entry> 1968 <entry>MIT</entry>
1983</row> 1969</row>
1984<row> 1970<row>
1985 <entry>packagegroup-enea-ptest</entry>
1986 <entry>1.0</entry>
1987 <entry>Ptest package group</entry>
1988 <entry>MIT</entry>
1989</row>
1990<row>
1991 <entry>packagegroup-enea-rt-tools</entry> 1971 <entry>packagegroup-enea-rt-tools</entry>
1992 <entry>1.0</entry> 1972 <entry>1.0</entry>
1993 <entry>Enea RT-tools package group</entry> 1973 <entry>Enea RT-tools package group</entry>
1994 <entry>MIT</entry> 1974 <entry>MIT</entry>
1995</row> 1975</row>
1996<row> 1976<row>
1997 <entry>packagegroup-enea-sys</entry> 1977 <entry>packagegroup-enea-virt</entry>
1998 <entry>1.0</entry> 1978 <entry>1.0</entry>
1999 <entry>Package group for system test</entry> 1979 <entry>Package group for virtualization</entry>
2000 <entry>MIT</entry> 1980 <entry>MIT</entry>
2001</row> 1981</row>
2002<row> 1982<row>
@@ -2012,6 +1992,12 @@ specific documentation.-->
2012 <entry>LGPL-2.0</entry> 1992 <entry>LGPL-2.0</entry>
2013</row> 1993</row>
2014<row> 1994<row>
1995 <entry>parted</entry>
1996 <entry>3.1</entry>
1997 <entry>Disk partition editing/resizing utility.</entry>
1998 <entry>GPL-3.0</entry>
1999</row>
2000<row>
2015 <entry>partrt</entry> 2001 <entry>partrt</entry>
2016 <entry>1.1</entry> 2002 <entry>1.1</entry>
2017 <entry>partrt is a tool for dividing a SMP Linux system into a real time domain and a non-real time domain.</entry> 2003 <entry>partrt is a tool for dividing a SMP Linux system into a real time domain and a non-real time domain.</entry>
@@ -2066,6 +2052,12 @@ specific documentation.-->
2066 <entry>GPL-2.0</entry> 2052 <entry>GPL-2.0</entry>
2067</row> 2053</row>
2068<row> 2054<row>
2055 <entry>pm-utils</entry>
2056 <entry>1.4.1</entry>
2057 <entry>Simple shell command line tools to suspend and hibernate.</entry>
2058 <entry>GPL-2.0</entry>
2059</row>
2060<row>
2069 <entry>pointercal-xinput</entry> 2061 <entry>pointercal-xinput</entry>
2070 <entry>0.0</entry> 2062 <entry>0.0</entry>
2071 <entry>Touchscreen calibration data from xinput-calibrator.</entry> 2063 <entry>Touchscreen calibration data from xinput-calibrator.</entry>
@@ -2144,18 +2136,18 @@ specific documentation.-->
2144 <entry>GPL-2.0</entry> 2136 <entry>GPL-2.0</entry>
2145</row> 2137</row>
2146<row> 2138<row>
2147 <entry>ptest-runner</entry>
2148 <entry>1.0</entry>
2149 <entry>The ptest-runner package installs a ptest-runner shell script which loops through all installed ptest test suites and runs them in sequence.</entry>
2150 <entry>MIT</entry>
2151</row>
2152<row>
2153 <entry>pulseaudio</entry> 2139 <entry>pulseaudio</entry>
2154 <entry>5.0</entry> 2140 <entry>5.0</entry>
2155 <entry>Sound server for Linux and Unix-like operating systems.</entry> 2141 <entry>Sound server for Linux and Unix-like operating systems.</entry>
2156 <entry> GPL-2.0, LGPL-2.1</entry> 2142 <entry> GPL-2.0, LGPL-2.1</entry>
2157</row> 2143</row>
2158<row> 2144<row>
2145 <entry>python-argparse</entry>
2146 <entry>1.2.1</entry>
2147 <entry>Python command-line parsing library.</entry>
2148 <entry>Python-2.0</entry>
2149</row>
2150<row>
2159 <entry>python-dbus</entry> 2151 <entry>python-dbus</entry>
2160 <entry>1.2.0</entry> 2152 <entry>1.2.0</entry>
2161 <entry>Python bindings for the DBus inter-process communication system.</entry> 2153 <entry>Python bindings for the DBus inter-process communication system.</entry>
@@ -2217,7 +2209,13 @@ specific documentation.-->
2217</row> 2209</row>
2218<row> 2210<row>
2219 <entry>qemu</entry> 2211 <entry>qemu</entry>
2220 <entry>2.1.0</entry> 2212 <entry>1.7</entry>
2213 <entry>Fast open source processor emulator.</entry>
2214 <entry> GPL-2.0, LGPL-2.1</entry>
2215</row>
2216<row>
2217 <entry>qemu</entry>
2218 <entry>2.3.0</entry>
2221 <entry>Fast open source processor emulator.</entry> 2219 <entry>Fast open source processor emulator.</entry>
2222 <entry> GPL-2.0, LGPL-2.1</entry> 2220 <entry> GPL-2.0, LGPL-2.1</entry>
2223</row> 2221</row>
@@ -2264,6 +2262,12 @@ specific documentation.-->
2264 <entry>MIT</entry> 2262 <entry>MIT</entry>
2265</row> 2263</row>
2266<row> 2264<row>
2265 <entry>rcw</entry>
2266 <entry>git</entry>
2267 <entry>Reset Control Words (RCW)</entry>
2268 <entry>BSD</entry>
2269</row>
2270<row>
2267 <entry>readline</entry> 2271 <entry>readline</entry>
2268 <entry>6.3</entry> 2272 <entry>6.3</entry>
2269 <entry>The GNU Readline library provides a set of functions for use by applications that allow users to edit command lines as they are typed in. Both Emacs and vi editing modes are available. The Readline library includes additional functions to maintain a list of previously-entered command lines to recall and perhaps reedit those lines and perform csh-like history expansion on previous commands.</entry> 2273 <entry>The GNU Readline library provides a set of functions for use by applications that allow users to edit command lines as they are typed in. Both Emacs and vi editing modes are available. The Readline library includes additional functions to maintain a list of previously-entered command lines to recall and perhaps reedit those lines and perform csh-like history expansion on previous commands.</entry>
@@ -2318,18 +2322,6 @@ specific documentation.-->
2318 <entry>GPL-3.0</entry> 2322 <entry>GPL-3.0</entry>
2319</row> 2323</row>
2320<row> 2324<row>
2321 <entry>rt-bmark</entry>
2322 <entry>1.0</entry>
2323 <entry>RT Benachmarks</entry>
2324 <entry>BSD</entry>
2325</row>
2326<row>
2327 <entry>rt-tests</entry>
2328 <entry>0.89</entry>
2329 <entry>Real-Time preemption testcases.</entry>
2330 <entry> GPL-2.0</entry>
2331</row>
2332<row>
2333 <entry>run-postinsts</entry> 2325 <entry>run-postinsts</entry>
2334 <entry>1.0</entry> 2326 <entry>1.0</entry>
2335 <entry>Runs postinstall scripts on first boot of the target device.</entry> 2327 <entry>Runs postinstall scripts on first boot of the target device.</entry>
@@ -2438,12 +2430,6 @@ specific documentation.-->
2438 <entry>BSD</entry> 2430 <entry>BSD</entry>
2439</row> 2431</row>
2440<row> 2432<row>
2441 <entry>stress</entry>
2442 <entry>1.0.4</entry>
2443 <entry>stress is a deliberately simple workload generator for POSIX systems. It imposes a configurable amount of CPU memory I/O and disk stress on the system. It is written in C and is free software licensed under the GPLv2.</entry>
2444 <entry>GPL-2.0</entry>
2445</row>
2446<row>
2447 <entry>subversion</entry> 2433 <entry>subversion</entry>
2448 <entry>1.8.9</entry> 2434 <entry>1.8.9</entry>
2449 <entry>Subversion (svn) version control system client.</entry> 2435 <entry>Subversion (svn) version control system client.</entry>
@@ -2474,12 +2460,6 @@ specific documentation.-->
2474 <entry>GPL-2.0</entry> 2460 <entry>GPL-2.0</entry>
2475</row> 2461</row>
2476<row> 2462<row>
2477 <entry>systest-runner</entry>
2478 <entry>1.0</entry>
2479 <entry>Execute all scripts under systest-runner/tests folder</entry>
2480 <entry>BSD</entry>
2481</row>
2482<row>
2483 <entry>sysvinit-inittab</entry> 2463 <entry>sysvinit-inittab</entry>
2484 <entry>2.88dsf</entry> 2464 <entry>2.88dsf</entry>
2485 <entry>Inittab configuration for SysVinit.</entry> 2465 <entry>Inittab configuration for SysVinit.</entry>
@@ -2631,7 +2611,7 @@ specific documentation.-->
2631</row> 2611</row>
2632<row> 2612<row>
2633 <entry>usdpaa</entry> 2613 <entry>usdpaa</entry>
2634 <entry>commit d9975948</entry> 2614 <entry>git</entry>
2635 <entry>User-Space Data-Path Acceleration Architecture drivers</entry> 2615 <entry>User-Space Data-Path Acceleration Architecture drivers</entry>
2636 <entry> BSD, GPL-2.0</entry> 2616 <entry> BSD, GPL-2.0</entry>
2637</row> 2617</row>
@@ -2660,6 +2640,12 @@ specific documentation.-->
2660 <entry> MIT</entry> 2640 <entry> MIT</entry>
2661</row> 2641</row>
2662<row> 2642<row>
2643 <entry>virt-example</entry>
2644 <entry>1.0.0</entry>
2645 <entry>KVM and libvirt examples</entry>
2646 <entry>BSD</entry>
2647</row>
2648<row>
2663 <entry>vte</entry> 2649 <entry>vte</entry>
2664 <entry>0.28.2</entry> 2650 <entry>0.28.2</entry>
2665 <entry>Virtual terminal emulator GTK+ widget library.</entry> 2651 <entry>Virtual terminal emulator GTK+ widget library.</entry>
@@ -2672,12 +2658,6 @@ specific documentation.-->
2672 <entry>BSD-2-Clause</entry> 2658 <entry>BSD-2-Clause</entry>
2673</row> 2659</row>
2674<row> 2660<row>
2675 <entry>watchdog</entry>
2676 <entry>5.13</entry>
2677 <entry>Watchdog is a daemon that checks if your system is still working. If programs in user space are not longer executed it will reboot the system.</entry>
2678 <entry>GPL-2.0</entry>
2679</row>
2680<row>
2681 <entry>wayland</entry> 2661 <entry>wayland</entry>
2682 <entry>1.5.0</entry> 2662 <entry>1.5.0</entry>
2683 <entry>Wayland is a protocol for a compositor to talk to its clients as well as a C library implementation of that protocol. The compositor can be a standalone display server running on Linux kernel modesetting and evdev input devices an X application or a wayland client itself. The clients can be traditional applications X servers (rootless or fullscreen) or other display servers.</entry> 2663 <entry>Wayland is a protocol for a compositor to talk to its clients as well as a C library implementation of that protocol. The compositor can be a standalone display server running on Linux kernel modesetting and evdev input devices an X application or a wayland client itself. The clients can be traditional applications X servers (rootless or fullscreen) or other display servers.</entry>
@@ -2918,6 +2898,12 @@ specific documentation.-->
2918 <entry> GPL-2.0, GPL-3.0, LGPL-2.1, PD</entry> 2898 <entry> GPL-2.0, GPL-3.0, LGPL-2.1, PD</entry>
2919</row> 2899</row>
2920<row> 2900<row>
2901 <entry>yajl</entry>
2902 <entry>2.1.0</entry>
2903 <entry>YAJL is a small event-driven (SAX-style) JSON parser written in ANSI C and a small validating JSON generator.</entry>
2904 <entry>ISC</entry>
2905</row>
2906<row>
2921 <entry>zip</entry> 2907 <entry>zip</entry>
2922 <entry>3.0</entry> 2908 <entry>3.0</entry>
2923 <entry>Compressor/archiver for creating and modifying .zip files.</entry> 2909 <entry>Compressor/archiver for creating and modifying .zip files.</entry>
@@ -2932,7 +2918,7 @@ specific documentation.-->
2932 </tbody> 2918 </tbody>
2933 </tgroup> 2919 </tgroup>
2934 </informaltable> 2920 </informaltable>
2935 </section> 2921 </section>
2936 <section id="open_source_license"> 2922 <section id="open_source_license">
2937 <title>Open Source Licenses</title> 2923 <title>Open Source Licenses</title>
2938<section id="lic_0"> 2924<section id="lic_0">
@@ -5692,34 +5678,34 @@ The precise terms and conditions for copying, distribution and modification foll
5692TERMS AND CONDITIONS 5678TERMS AND CONDITIONS
56930. Definitions. 56790. Definitions.
5694 5680
5695&rdquor;This License&rdquo; refers to version 3 of the GNU General Public License. 5681"This License" refers to version 3 of the GNU General Public License.
5696 5682
5697&rdquor;Copyright&rdquo; also means copyright-like laws that apply to other kinds of 5683"Copyright" also means copyright-like laws that apply to other kinds of
5698works, such as semiconductor masks. 5684works, such as semiconductor masks.
5699 5685
5700&rdquor;The Program&rdquo; refers to any copyrightable work licensed under this 5686"The Program" refers to any copyrightable work licensed under this
5701License. Each licensee is addressed as &rdquor;you&rdquo;. &rdquor;Licensees&rdquo; 5687License. Each licensee is addressed as "you". "Licensees"
5702and &rdquor;recipients&rdquo; may be individuals or organizations. 5688and "recipients" may be individuals or organizations.
5703 5689
5704To &rdquor;modify&rdquo; a work means to copy from or adapt all or part of the work in 5690To "modify" a work means to copy from or adapt all or part of the work in
5705a fashion requiring copyright permission, other than the making of an exact copy. The 5691a fashion requiring copyright permission, other than the making of an exact copy. The
5706resulting work is called a &rdquor;modified version&rdquo; of the earlier work or a 5692resulting work is called a "modified version" of the earlier work or a
5707work &rdquor;based on&rdquo; the earlier work. 5693work "based on" the earlier work.
5708 5694
5709A &rdquor;covered work&rdquo; means either the unmodified Program or a work based on 5695A "covered work" means either the unmodified Program or a work based on
5710the Program. 5696the Program.
5711 5697
5712To &rdquor;propagate&rdquo; a work means to do anything with it that, without 5698To "propagate" a work means to do anything with it that, without
5713permission, would make you directly or secondarily liable for infringement under 5699permission, would make you directly or secondarily liable for infringement under
5714applicable copyright law, except executing it on a computer or modifying a private 5700applicable copyright law, except executing it on a computer or modifying a private
5715copy. Propagation includes copying, distribution (with or without modification), 5701copy. Propagation includes copying, distribution (with or without modification),
5716making available to the public, and in some countries other activities as well. 5702making available to the public, and in some countries other activities as well.
5717 5703
5718To &rdquor;convey&rdquo; a work means any kind of propagation that enables other 5704To "convey" a work means any kind of propagation that enables other
5719parties to make or receive copies. Mere interaction with a user through a computer 5705parties to make or receive copies. Mere interaction with a user through a computer
5720network, with no transfer of a copy, is not conveying. 5706network, with no transfer of a copy, is not conveying.
5721 5707
5722An interactive user interface displays &rdquor;Appropriate Legal Notices&rdquo; to the 5708An interactive user interface displays "Appropriate Legal Notices" to the
5723extent that it includes a convenient and prominently visible feature that (1) displays 5709extent that it includes a convenient and prominently visible feature that (1) displays
5724an appropriate copyright notice, and (2) tells the user that there is no warranty for 5710an appropriate copyright notice, and (2) tells the user that there is no warranty for
5725the work (except to the extent that warranties are provided), that licensees may 5711the work (except to the extent that warranties are provided), that licensees may
@@ -5728,26 +5714,26 @@ interface presents a list of user commands or options, such as a menu, a promine
5728item in the list meets this criterion. 5714item in the list meets this criterion.
57291. Source Code. 57151. Source Code.
5730 5716
5731The &rdquor;source code&rdquo; for a work means the preferred form of the work for 5717The "source code" for a work means the preferred form of the work for
5732making modifications to it. &rdquor;Object code&rdquo; means any non-source form of a 5718making modifications to it. "Object code" means any non-source form of a
5733work. 5719work.
5734 5720
5735A &rdquor;Standard Interface&rdquo; means an interface that either is an official 5721A "Standard Interface" means an interface that either is an official
5736standard defined by a recognized standards body, or, in the case of interfaces 5722standard defined by a recognized standards body, or, in the case of interfaces
5737specified for a particular programming language, one that is widely used among 5723specified for a particular programming language, one that is widely used among
5738developers working in that language. 5724developers working in that language.
5739 5725
5740The &rdquor;System Libraries&rdquo; of an executable work include anything, other than 5726The "System Libraries" of an executable work include anything, other than
5741the work as a whole, that (a) is included in the normal form of packaging a Major 5727the work as a whole, that (a) is included in the normal form of packaging a Major
5742Component, but which is not part of that Major Component, and (b) serves only to 5728Component, but which is not part of that Major Component, and (b) serves only to
5743enable use of the work with that Major Component, or to implement a Standard Interface 5729enable use of the work with that Major Component, or to implement a Standard Interface
5744for which an implementation is available to the public in source code form. A 5730for which an implementation is available to the public in source code form. A
5745&rdquor;Major Component&rdquo;, in this context, means a major essential component 5731"Major Component", in this context, means a major essential component
5746(kernel, window system, and so on) of the specific operating system (if any) on which 5732(kernel, window system, and so on) of the specific operating system (if any) on which
5747the executable work runs, or a compiler used to produce the work, or an object code 5733the executable work runs, or a compiler used to produce the work, or an object code
5748interpreter used to run it. 5734interpreter used to run it.
5749 5735
5750The &rdquor;Corresponding Source&rdquo; for a work in object code form means all the 5736The "Corresponding Source" for a work in object code form means all the
5751source code needed to generate, install, and (for an executable work) run the object 5737source code needed to generate, install, and (for an executable work) run the object
5752code and to modify the work, including scripts to control those activities. However, 5738code and to modify the work, including scripts to control those activities. However,
5753it does not include the work's System Libraries, or general-purpose tools or generally 5739it does not include the work's System Libraries, or general-purpose tools or generally
@@ -5817,7 +5803,7 @@ you also meet all of these conditions:
5817giving a relevant date. 5803giving a relevant date.
5818 * b) The work must carry prominent notices stating that it is released under this 5804 * b) The work must carry prominent notices stating that it is released under this
5819License and any conditions added under section 7. This requirement modifies the 5805License and any conditions added under section 7. This requirement modifies the
5820requirement in section 4 to &rdquor;keep intact all notices&rdquo;. 5806requirement in section 4 to "keep intact all notices".
5821 * c) You must license the entire work, as a whole, under this License to anyone 5807 * c) You must license the entire work, as a whole, under this License to anyone
5822who comes into possession of a copy. This License will therefore apply, along with any 5808who comes into possession of a copy. This License will therefore apply, along with any
5823applicable section 7 additional terms, to the whole of the work, and all its parts, 5809applicable section 7 additional terms, to the whole of the work, and all its parts,
@@ -5831,7 +5817,7 @@ Appropriate Legal Notices, your work need not make them do so.
5831A compilation of a covered work with other separate and independent works, which are 5817A compilation of a covered work with other separate and independent works, which are
5832not by their nature extensions of the covered work, and which are not combined with it 5818not by their nature extensions of the covered work, and which are not combined with it
5833such as to form a larger program, in or on a volume of a storage or distribution 5819such as to form a larger program, in or on a volume of a storage or distribution
5834medium, is called an &rdquor;aggregate&rdquo; if the compilation and its resulting 5820medium, is called an "aggregate" if the compilation and its resulting
5835copyright are not used to limit the access or legal rights of the compilation's users 5821copyright are not used to limit the access or legal rights of the compilation's users
5836beyond what the individual works permit. Inclusion of a covered work in an aggregate 5822beyond what the individual works permit. Inclusion of a covered work in an aggregate
5837does not cause this License to apply to the other parts of the aggregate. 5823does not cause this License to apply to the other parts of the aggregate.
@@ -5875,19 +5861,19 @@ A separable portion of the object code, whose source code is excluded from the
5875Corresponding Source as a System Library, need not be included in conveying the object 5861Corresponding Source as a System Library, need not be included in conveying the object
5876code work. 5862code work.
5877 5863
5878A &rdquor;User Product&rdquo; is either (1) a &rdquor;consumer product&rdquo;, which 5864A "User Product" is either (1) a "consumer product", which
5879means any tangible personal property which is normally used for personal, family, or 5865means any tangible personal property which is normally used for personal, family, or
5880household purposes, or (2) anything designed or sold for incorporation into a 5866household purposes, or (2) anything designed or sold for incorporation into a
5881dwelling. In determining whether a product is a consumer product, doubtful cases shall 5867dwelling. In determining whether a product is a consumer product, doubtful cases shall
5882be resolved in favor of coverage. For a particular product received by a particular 5868be resolved in favor of coverage. For a particular product received by a particular
5883user, &rdquor;normally used&rdquo; refers to a typical or common use of that class of 5869user, "normally used" refers to a typical or common use of that class of
5884product, regardless of the status of the particular user or of the way in which the 5870product, regardless of the status of the particular user or of the way in which the
5885particular user actually uses, or expects or is expected to use, the product. A 5871particular user actually uses, or expects or is expected to use, the product. A
5886product is a consumer product regardless of whether the product has substantial 5872product is a consumer product regardless of whether the product has substantial
5887commercial, industrial or non-consumer uses, unless such uses represent the only 5873commercial, industrial or non-consumer uses, unless such uses represent the only
5888significant mode of use of the product. 5874significant mode of use of the product.
5889 5875
5890&rdquor;Installation Information&rdquo; for a User Product means any methods, 5876"Installation Information" for a User Product means any methods,
5891procedures, authorization keys, or other information required to install and execute 5877procedures, authorization keys, or other information required to install and execute
5892modified versions of a covered work in that User Product from a modified version of 5878modified versions of a covered work in that User Product from a modified version of
5893its Corresponding Source. The information must suffice to ensure that the continued 5879its Corresponding Source. The information must suffice to ensure that the continued
@@ -5916,7 +5902,7 @@ implementation available to the public in source code form), and must require no
5916special password or key for unpacking, reading or copying. 5902special password or key for unpacking, reading or copying.
59177. Additional Terms. 59037. Additional Terms.
5918 5904
5919&rdquor;Additional permissions&rdquo; are terms that supplement the terms of this 5905"Additional permissions" are terms that supplement the terms of this
5920License by making exceptions from one or more of its conditions. Additional 5906License by making exceptions from one or more of its conditions. Additional
5921permissions that are applicable to the entire Program shall be treated as though they 5907permissions that are applicable to the entire Program shall be treated as though they
5922were included in this License, to the extent that they are valid under applicable law. 5908were included in this License, to the extent that they are valid under applicable law.
@@ -5951,8 +5937,8 @@ who conveys the material (or modified versions of it) with contractual assumptio
5951liability to the recipient, for any liability that these contractual assumptions 5937liability to the recipient, for any liability that these contractual assumptions
5952directly impose on those licensors and authors. 5938directly impose on those licensors and authors.
5953 5939
5954All other non-permissive additional terms are considered &rdquor;further 5940All other non-permissive additional terms are considered "further
5955restrictions&rdquo; within the meaning of section 10. If the Program as you received 5941restrictions" within the meaning of section 10. If the Program as you received
5956it, or any part of it, contains a notice stating that it is governed by this License 5942it, or any part of it, contains a notice stating that it is governed by this License
5957along with a term that is a further restriction, you may remove that term. If a 5943along with a term that is a further restriction, you may remove that term. If a
5958license document contains a further restriction but permits relicensing or conveying 5944license document contains a further restriction but permits relicensing or conveying
@@ -6006,7 +5992,7 @@ from the original licensors, to run, modify and propagate that work, subject to
6006License. You are not responsible for enforcing compliance by third parties with this 5992License. You are not responsible for enforcing compliance by third parties with this
6007License. 5993License.
6008 5994
6009An &rdquor;entity transaction&rdquo; is a transaction transferring control of an 5995An "entity transaction" is a transaction transferring control of an
6010organization, or substantially all assets of one, or subdividing an organization, or 5996organization, or substantially all assets of one, or subdividing an organization, or
6011merging organizations. If propagation of a covered work results from an entity 5997merging organizations. If propagation of a covered work results from an entity
6012transaction, each party to that transaction who receives a copy of the work also 5998transaction, each party to that transaction who receives a copy of the work also
@@ -6023,16 +6009,16 @@ that any patent claim is infringed by making, using, selling, offering for sale,
6023importing the Program or any portion of it. 6009importing the Program or any portion of it.
602411. Patents. 601011. Patents.
6025 6011
6026A &rdquor;contributor&rdquo; is a copyright holder who authorizes use under this 6012A "contributor" is a copyright holder who authorizes use under this
6027License of the Program or a work on which the Program is based. The work thus licensed 6013License of the Program or a work on which the Program is based. The work thus licensed
6028is called the contributor's &rdquor;contributor version&rdquo;. 6014is called the contributor's "contributor version".
6029 6015
6030A contributor's &rdquor;essential patent claims&rdquo; are all patent claims owned or 6016A contributor's "essential patent claims" are all patent claims owned or
6031controlled by the contributor, whether already acquired or hereafter acquired, that 6017controlled by the contributor, whether already acquired or hereafter acquired, that
6032would be infringed by some manner, permitted by this License, of making, using, or 6018would be infringed by some manner, permitted by this License, of making, using, or
6033selling its contributor version, but do not include claims that would be infringed 6019selling its contributor version, but do not include claims that would be infringed
6034only as a consequence of further modification of the contributor version. For purposes 6020only as a consequence of further modification of the contributor version. For purposes
6035of this definition, &rdquor;control&rdquo; includes the right to grant patent 6021of this definition, "control" includes the right to grant patent
6036sublicenses in a manner consistent with the requirements of this License. 6022sublicenses in a manner consistent with the requirements of this License.
6037 6023
6038Each contributor grants you a non-exclusive, worldwide, royalty-free patent license 6024Each contributor grants you a non-exclusive, worldwide, royalty-free patent license
@@ -6040,10 +6026,10 @@ under the contributor's essential patent claims, to make, use, sell, offer for s
6040import and otherwise run, modify and propagate the contents of its contributor 6026import and otherwise run, modify and propagate the contents of its contributor
6041version. 6027version.
6042 6028
6043In the following three paragraphs, a &rdquor;patent license&rdquo; is any express 6029In the following three paragraphs, a "patent license" is any express
6044agreement or commitment, however denominated, not to enforce a patent (such as an 6030agreement or commitment, however denominated, not to enforce a patent (such as an
6045express permission to practice a patent or covenant not to sue for patent 6031express permission to practice a patent or covenant not to sue for patent
6046infringement). To &rdquor;grant&rdquo; such a patent license to a party means to make 6032infringement). To "grant" such a patent license to a party means to make
6047such an agreement or commitment not to enforce a patent against the party. 6033such an agreement or commitment not to enforce a patent against the party.
6048 6034
6049If you convey a covered work, knowingly relying on a patent license, and the 6035If you convey a covered work, knowingly relying on a patent license, and the
@@ -6053,7 +6039,7 @@ other readily accessible means, then you must either (1) cause the Corresponding
6053Source to be so available, or (2) arrange to deprive yourself of the benefit of the 6039Source to be so available, or (2) arrange to deprive yourself of the benefit of the
6054patent license for this particular work, or (3) arrange, in a manner consistent with 6040patent license for this particular work, or (3) arrange, in a manner consistent with
6055the requirements of this License, to extend the patent license to downstream 6041the requirements of this License, to extend the patent license to downstream
6056recipients. &rdquor;Knowingly relying&rdquo; means you have actual knowledge that, but 6042recipients. "Knowingly relying" means you have actual knowledge that, but
6057for the patent license, your conveying the covered work in a country, or your 6043for the patent license, your conveying the covered work in a country, or your
6058recipient's use of the covered work in a country, would infringe one or more 6044recipient's use of the covered work in a country, would infringe one or more
6059identifiable patents in that country that you have reason to believe are valid. 6045identifiable patents in that country that you have reason to believe are valid.
@@ -6065,7 +6051,7 @@ modify or convey a specific copy of the covered work, then the patent license yo
6065grant is automatically extended to all recipients of the covered work and works based 6051grant is automatically extended to all recipients of the covered work and works based
6066on it. 6052on it.
6067 6053
6068A patent license is &rdquor;discriminatory&rdquo; if it does not include within the 6054A patent license is "discriminatory" if it does not include within the
6069scope of its coverage, prohibits the exercise of, or is conditioned on the 6055scope of its coverage, prohibits the exercise of, or is conditioned on the
6070non-exercise of one or more of the rights that are specifically granted under this 6056non-exercise of one or more of the rights that are specifically granted under this
6071License. You may not convey a covered work if you are a party to an arrangement with a 6057License. You may not convey a covered work if you are a party to an arrangement with a
@@ -6106,8 +6092,8 @@ General Public License from time to time. Such new versions will be similar in s
6106to the present version, but may differ in detail to address new problems or concerns. 6092to the present version, but may differ in detail to address new problems or concerns.
6107 6093
6108Each version is given a distinguishing version number. If the Program specifies that a 6094Each version is given a distinguishing version number. If the Program specifies that a
6109certain numbered version of the GNU General Public License &rdquor;or any later 6095certain numbered version of the GNU General Public License "or any later
6110version&rdquo; applies to it, you have the option of following the terms and 6096version" applies to it, you have the option of following the terms and
6111conditions either of that numbered version or of any later version published by the 6097conditions either of that numbered version or of any later version published by the
6112Free Software Foundation. If the Program does not specify a version number of the GNU 6098Free Software Foundation. If the Program does not specify a version number of the GNU
6113General Public License, you may choose any version ever published by the Free Software 6099General Public License, you may choose any version ever published by the Free Software
@@ -6124,7 +6110,7 @@ your choosing to follow a later version.
6124 6110
6125THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. 6111THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
6126EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES 6112EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
6127PROVIDE THE PROGRAM &rdquor;AS IS&rdquo; WITHOUT WARRANTY OF ANY KIND, EITHER 6113PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER
6128EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 6114EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
6129MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE 6115MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE
6130QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE 6116QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE
@@ -6156,7 +6142,7 @@ can redistribute and change under these terms.
6156 6142
6157To do so, attach the following notices to the program. It is safest to attach them to 6143To do so, attach the following notices to the program. It is safest to attach them to
6158the start of each source file to most effectively state the exclusion of warranty; and 6144the start of each source file to most effectively state the exclusion of warranty; and
6159each file should have at least the &rdquor;copyright&rdquo; line and a pointer to 6145each file should have at least the "copyright" line and a pointer to
6160where the full notice is found. 6146where the full notice is found.
6161 6147
6162 &lt;one line to give the program's name and a brief idea of what it does.&gt; 6148 &lt;one line to give the program's name and a brief idea of what it does.&gt;
@@ -6187,10 +6173,10 @@ it starts in an interactive mode:
6187 6173
6188The hypothetical commands `show w' and `show c' should show the appropriate parts of 6174The hypothetical commands `show w' and `show c' should show the appropriate parts of
6189the General Public License. Of course, your program's commands might be different; for 6175the General Public License. Of course, your program's commands might be different; for
6190a GUI interface, you would use an &rdquor;about box&rdquo;. 6176a GUI interface, you would use an "about box".
6191 6177
6192You should also get your employer (if you work as a programmer) or school, if any, to 6178You should also get your employer (if you work as a programmer) or school, if any, to
6193sign a &rdquor;copyright disclaimer&rdquo; for the program, if necessary. For more 6179sign a "copyright disclaimer" for the program, if necessary. For more
6194information on this, and how to apply and follow the GNU GPL, see 6180information on this, and how to apply and follow the GNU GPL, see
6195&lt;http://www.gnu.org/licenses/&gt;. 6181&lt;http://www.gnu.org/licenses/&gt;.
6196 6182
@@ -7356,28 +7342,28 @@ conditions of version 3 of the GNU General Public License, supplemented by the
7356additional permissions listed below. 7342additional permissions listed below.
73570. Additional Definitions. 73430. Additional Definitions.
7358 7344
7359As used herein, &rdquor;this License&rdquo; refers to version 3 of the GNU Lesser 7345As used herein, "this License" refers to version 3 of the GNU Lesser
7360General Public License, and the &rdquor;GNU GPL&rdquo; refers to version 3 of the GNU 7346General Public License, and the "GNU GPL" refers to version 3 of the GNU
7361General Public License. 7347General Public License.
7362 7348
7363&rdquor;The Library&rdquo; refers to a covered work governed by this License, other 7349"The Library" refers to a covered work governed by this License, other
7364than an Application or a Combined Work as defined below. 7350than an Application or a Combined Work as defined below.
7365 7351
7366An &rdquor;Application&rdquo; is any work that makes use of an interface provided by 7352An "Application" is any work that makes use of an interface provided by
7367the Library, but which is not otherwise based on the Library. Defining a subclass of a 7353the Library, but which is not otherwise based on the Library. Defining a subclass of a
7368class defined by the Library is deemed a mode of using an interface provided by the 7354class defined by the Library is deemed a mode of using an interface provided by the
7369Library. 7355Library.
7370 7356
7371A &rdquor;Combined Work&rdquo; is a work produced by combining or linking an 7357A "Combined Work" is a work produced by combining or linking an
7372Application with the Library. The particular version of the Library with which the 7358Application with the Library. The particular version of the Library with which the
7373Combined Work was made is also called the &rdquor;Linked Version&rdquo;. 7359Combined Work was made is also called the "Linked Version".
7374 7360
7375The &rdquor;Minimal Corresponding Source&rdquo; for a Combined Work means the 7361The "Minimal Corresponding Source" for a Combined Work means the
7376Corresponding Source for the Combined Work, excluding any source code for portions of 7362Corresponding Source for the Combined Work, excluding any source code for portions of
7377the Combined Work that, considered in isolation, are based on the Application, and not 7363the Combined Work that, considered in isolation, are based on the Application, and not
7378on the Linked Version. 7364on the Linked Version.
7379 7365
7380The &rdquor;Corresponding Application Code&rdquo; for a Combined Work means the object 7366The "Corresponding Application Code" for a Combined Work means the object
7381code and/or source code for the Application, including any data and utility programs 7367code and/or source code for the Application, including any data and utility programs
7382needed for reproducing the Combined Work from the Application, but excluding the 7368needed for reproducing the Combined Work from the Application, but excluding the
7383System Libraries of the Combined Work. 7369System Libraries of the Combined Work.
@@ -7466,7 +7452,7 @@ to the present version, but may differ in detail to address new problems or conc
7466 7452
7467Each version is given a distinguishing version number. If the Library as you received 7453Each version is given a distinguishing version number. If the Library as you received
7468it specifies that a certain numbered version of the GNU Lesser General Public License 7454it specifies that a certain numbered version of the GNU Lesser General Public License
7469&rdquor;or any later version&rdquo; applies to it, you have the option of following 7455"or any later version" applies to it, you have the option of following
7470the terms and conditions either of that published version or of any later version 7456the terms and conditions either of that published version or of any later version
7471published by the Free Software Foundation. If the Library as you received it does not 7457published by the Free Software Foundation. If the Library as you received it does not
7472specify a version number of the GNU Lesser General Public License, you may choose any 7458specify a version number of the GNU Lesser General Public License, you may choose any
@@ -8731,38 +8717,38 @@ OpenSSL License
8731 8717
8732 ==================================================================== 8718 ====================================================================
8733 Copyright (c) 1998-2008 The OpenSSL Project. All rights reserved. 8719 Copyright (c) 1998-2008 The OpenSSL Project. All rights reserved.
8734 8720
8735 Redistribution and use in source and binary forms, with or without 8721 Redistribution and use in source and binary forms, with or without
8736 modification, are permitted provided that the following conditions 8722 modification, are permitted provided that the following conditions
8737 are met: 8723 are met:
8738 8724
8739 1. Redistributions of source code must retain the above copyright 8725 1. Redistributions of source code must retain the above copyright
8740 notice, this list of conditions and the following disclaimer. 8726 notice, this list of conditions and the following disclaimer.
8741 8727
8742 2. Redistributions in binary form must reproduce the above copyright 8728 2. Redistributions in binary form must reproduce the above copyright
8743 notice, this list of conditions and the following disclaimer in 8729 notice, this list of conditions and the following disclaimer in
8744 the documentation and/or other materials provided with the 8730 the documentation and/or other materials provided with the
8745 distribution. 8731 distribution.
8746 8732
8747 3. All advertising materials mentioning features or use of this 8733 3. All advertising materials mentioning features or use of this
8748 software must display the following acknowledgment: 8734 software must display the following acknowledgment:
8749 "This product includes software developed by the OpenSSL Project 8735 "This product includes software developed by the OpenSSL Project
8750 for use in the OpenSSL Toolkit. (http://www.openssl.org/)" 8736 for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
8751 8737
8752 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to 8738 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
8753 endorse or promote products derived from this software without 8739 endorse or promote products derived from this software without
8754 prior written permission. For written permission, please contact 8740 prior written permission. For written permission, please contact
8755 openssl-core@openssl.org. 8741 openssl-core@openssl.org.
8756 8742
8757 5. Products derived from this software may not be called "OpenSSL" 8743 5. Products derived from this software may not be called "OpenSSL"
8758 nor may "OpenSSL" appear in their names without prior written 8744 nor may "OpenSSL" appear in their names without prior written
8759 permission of the OpenSSL Project. 8745 permission of the OpenSSL Project.
8760 8746
8761 6. Redistributions of any form whatsoever must retain the following 8747 6. Redistributions of any form whatsoever must retain the following
8762 acknowledgment: 8748 acknowledgment:
8763 "This product includes software developed by the OpenSSL Project 8749 "This product includes software developed by the OpenSSL Project
8764 for use in the OpenSSL Toolkit (http://www.openssl.org/)" 8750 for use in the OpenSSL Toolkit (http://www.openssl.org/)"
8765 8751
8766 THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS`` AND ANY 8752 THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS`` AND ANY
8767 EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 8753 EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
8768 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 8754 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
@@ -8776,36 +8762,36 @@ OpenSSL License
8776 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 8762 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
8777 OF THE POSSIBILITY OF SUCH DAMAGE. 8763 OF THE POSSIBILITY OF SUCH DAMAGE.
8778 ==================================================================== 8764 ====================================================================
8779 8765
8780 This product includes cryptographic software written by Eric Young 8766 This product includes cryptographic software written by Eric Young
8781 (eay@cryptsoft.com). This product includes software written by Tim 8767 (eay@cryptsoft.com). This product includes software written by Tim
8782 Hudson (tjh@cryptsoft.com). 8768 Hudson (tjh@cryptsoft.com).
8783 8769
8784 8770
8785 Original SSLeay License 8771 Original SSLeay License
8786 ----------------------- 8772 -----------------------
8787 8773
8788Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 8774Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
8789All rights reserved. 8775All rights reserved.
8790 8776
8791 This package is an SSL implementation written 8777 This package is an SSL implementation written
8792 by Eric Young (eay@cryptsoft.com). 8778 by Eric Young (eay@cryptsoft.com).
8793 The implementation was written so as to conform with Netscapes SSL. 8779 The implementation was written so as to conform with Netscapes SSL.
8794 8780
8795 This library is free for commercial and non-commercial use as long as 8781 This library is free for commercial and non-commercial use as long as
8796 the following conditions are aheared to. The following conditions 8782 the following conditions are aheared to. The following conditions
8797 apply to all code found in this distribution, be it the RC4, RSA, 8783 apply to all code found in this distribution, be it the RC4, RSA,
8798 lhash, DES, etc., code; not just the SSL code. The SSL documentation 8784 lhash, DES, etc., code; not just the SSL code. The SSL documentation
8799 included with this distribution is covered by the same copyright terms 8785 included with this distribution is covered by the same copyright terms
8800 except that the holder is Tim Hudson (tjh@cryptsoft.com). 8786 except that the holder is Tim Hudson (tjh@cryptsoft.com).
8801 8787
8802 Copyright remains Eric Young`s, and as such any Copyright notices in 8788 Copyright remains Eric Young`s, and as such any Copyright notices in
8803 the code are not to be removed. 8789 the code are not to be removed.
8804 If this package is used in a product, Eric Young should be given attribution 8790 If this package is used in a product, Eric Young should be given attribution
8805 as the author of the parts of the library used. 8791 as the author of the parts of the library used.
8806 This can be in the form of a textual message at program startup or 8792 This can be in the form of a textual message at program startup or
8807 in documentation (online or textual) provided with the package. 8793 in documentation (online or textual) provided with the package.
8808 8794
8809 Redistribution and use in source and binary forms, with or without 8795 Redistribution and use in source and binary forms, with or without
8810 modification, are permitted provided that the following conditions 8796 modification, are permitted provided that the following conditions
8811 are met: 8797 are met:
@@ -8823,7 +8809,7 @@ All rights reserved.
8823 4. If you include any Windows specific code (or a derivative thereof) from 8809 4. If you include any Windows specific code (or a derivative thereof) from
8824 the apps directory (application code) you must include an acknowledgement: 8810 the apps directory (application code) you must include an acknowledgement:
8825 "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" 8811 "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
8826 8812
8827 THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS`` AND ANY EXPRESS OR IMPLIED 8813 THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS`` AND ANY EXPRESS OR IMPLIED
8828WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY 8814WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
8829AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR 8815AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR
@@ -8833,12 +8819,12 @@ OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
8833HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 8819HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
8834OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 8820OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
8835SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 8821SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
8836 8822
8837 The licence and distribution terms for any publically available version or 8823 The licence and distribution terms for any publically available version or
8838derivative of this code cannot be changed. i.e. this code cannot simply be copied and 8824derivative of this code cannot be changed. i.e. this code cannot simply be copied and
8839put under another distribution licence 8825put under another distribution licence
8840 [including the GNU Public Licence.] 8826 [including the GNU Public Licence.]
8841 8827
8842 8828
8843 8829
8844 8830
@@ -8846,10 +8832,320 @@ put under another distribution licence
8846 8832
8847<section id="lic_31"> 8833<section id="lic_31">
8848<title>PD</title> 8834<title>PD</title>
8835<para>
8836There is no generic text for the PD license. See instead the extracted texts for each package (<xref linkend="pd_licenses_packages"/>).
8837</para>
8838</section>
8839
8840<section id="lic_32">
8841<title>Python-2.0</title>
8842<para><programlisting>
8843
8844PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2
8845--------------------------------------------
8846
88471. This LICENSE AGREEMENT is between the Python Software Foundation
8848("PSF"), and the Individual or Organization ("Licensee") accessing and
8849otherwise using this software ("Python") in source or binary form and
8850its associated documentation.
8851
88522. Subject to the terms and conditions of this License Agreement, PSF
8853hereby grants Licensee a nonexclusive, royalty-free, world-wide
8854license to reproduce, analyze, test, perform and/or display publicly,
8855prepare derivative works, distribute, and otherwise use Python
8856alone or in any derivative version, provided, however, that PSF`s
8857License Agreement and PSF`s notice of copyright, i.e., "Copyright (c)
88582001, 2002, 2003, 2004, 2005, 2006 Python Software Foundation; All Rights
8859Reserved" are retained in Python alone or in any derivative version
8860prepared by Licensee.
8861
88623. In the event Licensee prepares a derivative work that is based on
8863or incorporates Python or any part thereof, and wants to make
8864the derivative work available to others as provided herein, then
8865Licensee hereby agrees to include in any such work a brief summary of
8866the changes made to Python.
8867
88684. PSF is making Python available to Licensee on an "AS IS"
8869basis. PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
8870IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND
8871DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
8872FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON WILL NOT
8873INFRINGE ANY THIRD PARTY RIGHTS.
8874
88755. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON
8876FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS
8877A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON,
8878OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
8879
88806. This License Agreement will automatically terminate upon a material
8881breach of its terms and conditions.
8882
88837. Nothing in this License Agreement shall be deemed to create any
8884relationship of agency, partnership, or joint venture between PSF and
8885Licensee. This License Agreement does not grant permission to use PSF
8886trademarks or trade name in a trademark sense to endorse or promote
8887products or services of Licensee, or any third party.
8888
88898. By copying, installing or otherwise using Python, Licensee
8890agrees to be bound by the terms and conditions of this License
8891Agreement.
8892
8893BEOPEN.COM LICENSE AGREEMENT FOR PYTHON 2.0
8894-------------------------------------------
8895
8896BEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1
8897
88981. This LICENSE AGREEMENT is between BeOpen.com ("BeOpen"), having an
8899office at 160 Saratoga Avenue, Santa Clara, CA 95051, and the
8900Individual or Organization ("Licensee") accessing and otherwise using
8901this software in source or binary form and its associated
8902documentation ("the Software").
8903
89042. Subject to the terms and conditions of this BeOpen Python License
8905Agreement, BeOpen hereby grants Licensee a non-exclusive,
8906royalty-free, world-wide license to reproduce, analyze, test, perform
8907and/or display publicly, prepare derivative works, distribute, and
8908otherwise use the Software alone or in any derivative version,
8909provided, however, that the BeOpen Python License is retained in the
8910Software, alone or in any derivative version prepared by Licensee.
8911
89123. BeOpen is making the Software available to Licensee on an "AS IS"
8913basis. BEOPEN MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
8914IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, BEOPEN MAKES NO AND
8915DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
8916FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE WILL NOT
8917INFRINGE ANY THIRD PARTY RIGHTS.
8918
89194. BEOPEN SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE
8920SOFTWARE FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS
8921AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THE SOFTWARE, OR ANY
8922DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
8923
89245. This License Agreement will automatically terminate upon a material
8925breach of its terms and conditions.
8926
89276. This License Agreement shall be governed by and interpreted in all
8928respects by the law of the State of California, excluding conflict of
8929law provisions. Nothing in this License Agreement shall be deemed to
8930create any relationship of agency, partnership, or joint venture
8931between BeOpen and Licensee. This License Agreement does not grant
8932permission to use BeOpen trademarks or trade names in a trademark
8933sense to endorse or promote products or services of Licensee, or any
8934third party. As an exception, the "BeOpen Python" logos available at
8935http://www.pythonlabs.com/logos.html may be used according to the
8936permissions granted on that web page.
8937
89387. By copying, installing or otherwise using the software, Licensee
8939agrees to be bound by the terms and conditions of this License
8940Agreement.
8941
8942CNRI LICENSE AGREEMENT FOR PYTHON 1.6.1
8943---------------------------------------
8944
89451. This LICENSE AGREEMENT is between the Corporation for National
8946Research Initiatives, having an office at 1895 Preston White Drive,
8947Reston, VA 20191 ("CNRI"), and the Individual or Organization
8948("Licensee") accessing and otherwise using Python 1.6.1 software in
8949source or binary form and its associated documentation.
8950
89512. Subject to the terms and conditions of this License Agreement, CNRI
8952hereby grants Licensee a nonexclusive, royalty-free, world-wide
8953license to reproduce, analyze, test, perform and/or display publicly,
8954prepare derivative works, distribute, and otherwise use Python 1.6.1
8955alone or in any derivative version, provided, however, that CNRI`s
8956License Agreement and CNRI`s notice of copyright, i.e., "Copyright (c)
89571995-2001 Corporation for National Research Initiatives; All Rights
8958Reserved" are retained in Python 1.6.1 alone or in any derivative
8959version prepared by Licensee. Alternately, in lieu of CNRI`s License
8960Agreement, Licensee may substitute the following text (omitting the
8961quotes): "Python 1.6.1 is made available subject to the terms and
8962conditions in CNRI`s License Agreement. This Agreement together with
8963Python 1.6.1 may be located on the Internet using the following
8964unique, persistent identifier (known as a handle): 1895.22/1013. This
8965Agreement may also be obtained from a proxy server on the Internet
8966using the following URL: http://hdl.handle.net/1895.22/1013".
8967
89683. In the event Licensee prepares a derivative work that is based on
8969or incorporates Python 1.6.1 or any part thereof, and wants to make
8970the derivative work available to others as provided herein, then
8971Licensee hereby agrees to include in any such work a brief summary of
8972the changes made to Python 1.6.1.
8973
89744. CNRI is making Python 1.6.1 available to Licensee on an "AS IS"
8975basis. CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
8976IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND
8977DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
8978FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON 1.6.1 WILL NOT
8979INFRINGE ANY THIRD PARTY RIGHTS.
8980
89815. CNRI SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON
89821.6.1 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS
8983A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 1.6.1,
8984OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
8985
89866. This License Agreement will automatically terminate upon a material
8987breach of its terms and conditions.
8988
89897. This License Agreement shall be governed by the federal
8990intellectual property law of the United States, including without
8991limitation the federal copyright law, and, to the extent such
8992U.S. federal law does not apply, by the law of the Commonwealth of
8993Virginia, excluding Virginia`s conflict of law provisions.
8994Notwithstanding the foregoing, with regard to derivative works based
8995on Python 1.6.1 that incorporate non-separable material that was
8996previously distributed under the GNU General Public License (GPL), the
8997law of the Commonwealth of Virginia shall govern this License
8998Agreement only as to issues arising under or with respect to
8999Paragraphs 4, 5, and 7 of this License Agreement. Nothing in this
9000License Agreement shall be deemed to create any relationship of
9001agency, partnership, or joint venture between CNRI and Licensee. This
9002License Agreement does not grant permission to use CNRI trademarks or
9003trade name in a trademark sense to endorse or promote products or
9004services of Licensee, or any third party.
9005
90068. By clicking on the "ACCEPT" button where indicated, or by copying,
9007installing or otherwise using Python 1.6.1, Licensee agrees to be
9008bound by the terms and conditions of this License Agreement.
9009
9010ACCEPT
9011
9012CWI LICENSE AGREEMENT FOR PYTHON 0.9.0 THROUGH 1.2
9013--------------------------------------------------
9014
9015Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam,
9016The Netherlands. All rights reserved.
9017
9018Permission to use, copy, modify, and distribute this software and its
9019documentation for any purpose and without fee is hereby granted,
9020provided that the above copyright notice appear in all copies and that
9021both that copyright notice and this permission notice appear in
9022supporting documentation, and that the name of Stichting Mathematisch
9023Centrum or CWI not be used in advertising or publicity pertaining to
9024distribution of the software without specific, written prior
9025permission.
9026
9027STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO
9028THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
9029FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE
9030FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
9031WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
9032ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
9033OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
9034
9035</programlisting></para></section>
9036
9037<section id="lic_33">
9038<title>Zlib</title>
9039<para><programlisting>
9040
9041zlib License
9042
9043
9044 This software is provided `as-is`, without any express or implied
9045 warranty. In no event will the authors be held liable for any damages
9046 arising from the use of this software.
9047
9048 Permission is granted to anyone to use this software for any purpose,
9049 including commercial applications, and to alter it and redistribute it
9050 freely, subject to the following restrictions:
9051
9052 1. The origin of this software must not be misrepresented; you must not
9053 claim that you wrote the original software. If you use this software
9054 in a product, an acknowledgment in the product documentation would be
9055 appreciated but is not required.
9056 2. Altered source versions must be plainly marked as such, and must not be
9057 misrepresented as being the original software.
9058 3. This notice may not be removed or altered from any source distribution.
9059
9060
9061</programlisting></para></section>
9062
9063<section id="lic_34">
9064<title>tcl</title>
9065<para><programlisting>
9066This software is copyrighted by the Regents of the University of
9067California, Sun Microsystems, Inc., Scriptics Corporation, ActiveState
9068Corporation and other parties. The following terms apply to all files
9069associated with the software unless explicitly disclaimed in
9070individual files.
9071
9072The authors hereby grant permission to use, copy, modify, distribute,
9073and license this software and its documentation for any purpose, provided
9074that existing copyright notices are retained in all copies and that this
9075notice is included verbatim in any distributions. No written agreement,
9076license, or royalty fee is required for any of the authorized uses.
9077Modifications to this software may be copyrighted by their authors
9078and need not follow the licensing terms described here, provided that
9079the new terms are clearly indicated on the first page of each file where
9080they apply.
9081
9082IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY
9083FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
9084ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY
9085DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE
9086POSSIBILITY OF SUCH DAMAGE.
9087
9088THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES,
9089INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY,
9090FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE
9091IS PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE
9092NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR
9093MODIFICATIONS.
9094
9095GOVERNMENT USE: If you are acquiring this software on behalf of the
9096U.S. government, the Government shall have only "Restricted Rights"
9097in the software and related documentation as defined in the Federal
9098Acquisition Regulations (FARs) in Clause 52.227.19 (c) (2). If you
9099are acquiring the software on behalf of the Department of Defense, the
9100software shall be classified as "Commercial Computer Software" and the
9101Government shall have only "Restricted Rights" as defined in Clause
9102252.227-7014 (b) (3) of DFARs. Notwithstanding the foregoing, the
9103authors grant the U.S. Government and others acting in its behalf
9104permission to use and distribute the software in accordance with the
9105terms specified in this license.
9106</programlisting></para></section>
9107
9108<section id="lic_35">
9109<title>unfs3</title>
8849<para><programlisting> 9110<para><programlisting>
8850Berkely Yacc Copying 9111UNFS3 user-space NFSv3 server
8851==================== 9112(C) 2003, Pascal Schmidt &lt;unfs3-server@ewetel.net&gt;
8852 9113
9114Redistribution and use in source and binary forms, with or without
9115modification, are permitted provided that the following conditions are met:
9116
91171. Redistributions of source code must retain the above copyright notice,
9118 this list of conditions and the following disclaimer.
91192. Redistributions in binary form must reproduce the above copyright notice,
9120 this list of conditions and the following disclaimer in the documentation
9121 and/or other materials provided with the distribution.
91223. The name of the author may not be used to endorse or promote products
9123 derived from this software without specific prior written permission.
9124
9125THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
9126WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
9127MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
9128EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
9129SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
9130PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
9131OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
9132WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
9133OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
9134ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
9135</programlisting></para></section>
9136
9137 </section>
9138<section id="pd_licenses_packages">
9139 <title>License statements for packages with PD license</title>
9140 <para>
9141 This section contains license texts extracted for packages that are declared
9142 to be entirely or partly public domain.
9143 </para>
9144 <section id="pd-byacc-20140422">
9145 <title>byacc, version 20140422</title>
9146 <section id="pd-byacc-20140422--1">
9147 <title>Text 1</title>
9148 <programlisting>
8853Upstream source http://dickey.his.com/byacc/byacc.html 9149Upstream source http://dickey.his.com/byacc/byacc.html
8854 9150
8855Berkeley Yacc is in the public domain; changes made to it by the current 9151Berkeley Yacc is in the public domain; changes made to it by the current
@@ -8891,7 +9187,7 @@ Licence: other-BSD
8891Copyright: 2004-2011,2012 by Thomas E. Dickey 9187Copyright: 2004-2011,2012 by Thomas E. Dickey
8892 Permission is hereby granted, free of charge, to any person obtaining a 9188 Permission is hereby granted, free of charge, to any person obtaining a
8893 copy of this software and associated documentation files (the 9189 copy of this software and associated documentation files (the
8894 &quot; Software &quot; ), to deal in the Software without restriction, including 9190 "Software"), to deal in the Software without restriction, including
8895 without limitation the rights to use, copy, modify, merge, publish, 9191 without limitation the rights to use, copy, modify, merge, publish,
8896 distribute, distribute with modifications, sublicense, and/or sell 9192 distribute, distribute with modifications, sublicense, and/or sell
8897 copies of the Software, and to permit persons to whom the Software is 9193 copies of the Software, and to permit persons to whom the Software is
@@ -8900,7 +9196,7 @@ Copyright: 2004-2011,2012 by Thomas E. Dickey
8900 The above copyright notice and this permission notice shall be included 9196 The above copyright notice and this permission notice shall be included
8901 in all copies or portions of the Software. 9197 in all copies or portions of the Software.
8902 9198
8903 THE SOFTWARE IS PROVIDED &quot; AS IS &quot; , WITHOUT WARRANTY OF ANY KIND, EXPRESS 9199 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
8904 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 9200 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
8905 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 9201 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
8906 IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 9202 IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
@@ -8917,7 +9213,7 @@ Files: install-sh
8917Copyright: 1994 X Consortium 9213Copyright: 1994 X Consortium
8918Licence: other-BSD 9214Licence: other-BSD
8919 Permission is hereby granted, free of charge, to any person obtaining a copy 9215 Permission is hereby granted, free of charge, to any person obtaining a copy
8920 of this software and associated documentation files (the &quot; Software &quot; ), to 9216 of this software and associated documentation files (the "Software"), to
8921 deal in the Software without restriction, including without limitation the 9217 deal in the Software without restriction, including without limitation the
8922 rights to use, copy, modify, merge, publish, distribute, sublicense, and/or 9218 rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
8923 sell copies of the Software, and to permit persons to whom the Software is 9219 sell copies of the Software, and to permit persons to whom the Software is
@@ -8926,7 +9222,7 @@ Licence: other-BSD
8926 The above copyright notice and this permission notice shall be included in 9222 The above copyright notice and this permission notice shall be included in
8927 all copies or substantial portions of the Software. 9223 all copies or substantial portions of the Software.
8928 9224
8929 THE SOFTWARE IS PROVIDED &quot; AS IS &quot; , WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 9225 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
8930 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 9226 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
8931 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 9227 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
8932 X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN 9228 X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
@@ -8941,12 +9237,12 @@ Licence: other-BSD
8941 FSF changes to this file are in the public domain. 9237 FSF changes to this file are in the public domain.
8942 9238
8943 Calling this script install-sh is preferred over install.sh, to prevent 9239 Calling this script install-sh is preferred over install.sh, to prevent
8944 `make &apos; implicit rules from creating a file called install from it 9240 `make' implicit rules from creating a file called install from it
8945 when there is no Makefile. 9241 when there is no Makefile.
8946 9242
8947 This script is compatible with the BSD install script, but was written 9243 This script is compatible with the BSD install script, but was written
8948 from scratch. It can only install one file at a time, a restriction 9244 from scratch. It can only install one file at a time, a restriction
8949 shared with many OS &apos; s install programs. 9245 shared with many OS's install programs.
8950 9246
8951Files: debian/* 9247Files: debian/*
8952Copyright: 2012 Thomas E. Dickey 9248Copyright: 2012 Thomas E. Dickey
@@ -8969,12 +9265,164 @@ Licence: other-BSD
8969 OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 9265 OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
8970 9266
8971On Debian systems, the complete text of the GNU General 9267On Debian systems, the complete text of the GNU General
8972Public License can be found in &apos; /usr/share/common-licenses/GPL-2 &apos; 9268Public License can be found in '/usr/share/common-licenses/GPL-2'
9269</programlisting>
9270 </section>
9271 </section>
9272 <section id="pd-dropbear-2014.63">
9273 <title>dropbear, version 2014.63</title>
9274 <section id="pd-dropbear-2014.63--1">
9275 <title>Text 1</title>
9276 <programlisting>
9277Dropbear contains a number of components from different sources, hence there
9278are a few licenses and authors involved. All licenses are fairly
9279non-restrictive.
9280
9281
9282The majority of code is written by Matt Johnston, under the license below.
9283
9284Portions of the client-mode work are (c) 2004 Mihnea Stoenescu, under the
9285same license:
9286
9287Copyright (c) 2002-2013 Matt Johnston
9288Portions copyright (c) 2004 Mihnea Stoenescu
9289All rights reserved.
9290
9291Permission is hereby granted, free of charge, to any person obtaining a copy
9292of this software and associated documentation files (the "Software"), to deal
9293in the Software without restriction, including without limitation the rights
9294to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9295copies of the Software, and to permit persons to whom the Software is
9296furnished to do so, subject to the following conditions:
9297
9298The above copyright notice and this permission notice shall be included in all
9299copies or substantial portions of the Software.
9300
9301THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
9302IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
9303FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
9304AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
9305LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
9306OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
9307SOFTWARE.
9308
9309=====
9310
9311LibTomCrypt and LibTomMath are written by Tom St Denis, and are Public Domain.
9312
9313=====
9314
9315sshpty.c is taken from OpenSSH 3.5p1,
9316 Copyright (c) 1995 Tatu Ylonen &lt;ylo@cs.hut.fi&gt;, Espoo, Finland
9317 All rights reserved
9318 "As far as I am concerned, the code I have written for this software
9319 can be used freely for any purpose. Any derived versions of this
9320 software must be clearly marked as such, and if the derived work is
9321 incompatible with the protocol description in the RFC file, it must be
9322 called by a name other than "ssh" or "Secure Shell". "
9323
9324=====
8973 9325
9326loginrec.c
9327loginrec.h
9328atomicio.h
9329atomicio.c
9330and strlcat() (included in util.c) are from OpenSSH 3.6.1p2, and are licensed
9331under the 2 point BSD license.
8974 9332
8975Encodings Copying 9333loginrec is written primarily by Andre Lucas, atomicio.c by Theo de Raadt.
8976=================
8977 9334
9335strlcat() is (c) Todd C. Miller
9336
9337=====
9338
9339Import code in keyimport.c is modified from PuTTY's import.c, licensed as
9340follows:
9341
9342PuTTY is copyright 1997-2003 Simon Tatham.
9343
9344Portions copyright Robert de Bath, Joris van Rantwijk, Delian
9345Delchev, Andreas Schultz, Jeroen Massar, Wez Furlong, Nicolas Barry,
9346Justin Bradford, and CORE SDI S.A.
9347
9348Permission is hereby granted, free of charge, to any person
9349obtaining a copy of this software and associated documentation files
9350(the "Software"), to deal in the Software without restriction,
9351including without limitation the rights to use, copy, modify, merge,
9352publish, distribute, sublicense, and/or sell copies of the Software,
9353and to permit persons to whom the Software is furnished to do so,
9354subject to the following conditions:
9355
9356The above copyright notice and this permission notice shall be
9357included in all copies or substantial portions of the Software.
9358
9359THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
9360EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
9361MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
9362NONINFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE
9363FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
9364CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
9365WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
9366
9367=====
9368
9369curve25519-donna:
9370
9371/* Copyright 2008, Google Inc.
9372 * All rights reserved.
9373 *
9374 * Redistribution and use in source and binary forms, with or without
9375 * modification, are permitted provided that the following conditions are
9376 * met:
9377 *
9378 * * Redistributions of source code must retain the above copyright
9379 * notice, this list of conditions and the following disclaimer.
9380 * * Redistributions in binary form must reproduce the above
9381 * copyright notice, this list of conditions and the following disclaimer
9382 * in the documentation and/or other materials provided with the
9383 * distribution.
9384 * * Neither the name of Google Inc. nor the names of its
9385 * contributors may be used to endorse or promote products derived from
9386 * this software without specific prior written permission.
9387 *
9388 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
9389 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
9390 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
9391 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
9392 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
9393 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
9394 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
9395 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
9396 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
9397 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
9398 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
9399 *
9400 * curve25519-donna: Curve25519 elliptic curve, public key function
9401 *
9402 * http://code.google.com/p/curve25519-donna/
9403 *
9404 * Adam Langley &lt;agl@imperialviolet.org&gt;
9405 *
9406 * Derived from public domain C code by Daniel J. Bernstein &lt;djb@cr.yp.to&gt;
9407 *
9408 * More information about curve25519 can be found here
9409 * http://cr.yp.to/ecdh.html
9410 *
9411 * djb's sample implementation of curve25519 is written in a special assembly
9412 * language called qhasm and uses the floating point registers.
9413 *
9414 * This is, almost, a clean room reimplementation from the curve25519 paper. It
9415 * uses many of the tricks described therein. Only the crecip function is taken
9416 * from the sample implementation.
9417 */
9418</programlisting>
9419 </section>
9420 </section>
9421 <section id="pd-encodings-1.0.4">
9422 <title>encodings, version 1.0.4</title>
9423 <section id="pd-encodings-1.0.4--1">
9424 <title>Text 1</title>
9425 <programlisting>
8978The XFree86/Xorg encoding files are in the public domain. 9426The XFree86/Xorg encoding files are in the public domain.
8979 9427
8980Most of these encoding files were generated by me in the winter of 1998/1998 9428Most of these encoding files were generated by me in the winter of 1998/1998
@@ -8986,10 +9434,15 @@ collection.
8986If you want to add a copyright statement to an encoding file, you need 9434If you want to add a copyright statement to an encoding file, you need
8987your brain examined. 9435your brain examined.
8988 9436
8989Expect Copying
8990==============
8991
8992 Juliusz Chroboczek 9437 Juliusz Chroboczek
9438</programlisting>
9439 </section>
9440 </section>
9441 <section id="pd-expect-5.45">
9442 <title>expect, version 5.45</title>
9443 <section id="pd-expect-5.45--1">
9444 <title>Text 1</title>
9445 <programlisting>
8993Expect 9446Expect
8994 9447
8995Written by: Don Libes, libes at nist.gov, NIST 9448Written by: Don Libes, libes at nist.gov, NIST
@@ -8997,18 +9450,106 @@ Written by: Don Libes, libes at nist.gov, NIST
8997Design and implementation of this program was paid for by U.S. tax 9450Design and implementation of this program was paid for by U.S. tax
8998dollars. Therefore it is public domain. However, the author and NIST 9451dollars. Therefore it is public domain. However, the author and NIST
8999would appreciate credit if this program or parts of it are used. 9452would appreciate credit if this program or parts of it are used.
9453</programlisting>
9454 </section>
9455 </section>
9456 <section id="pd-fontconfig-2.11.1">
9457 <title>fontconfig, version 2.11.1</title>
9458 <section id="pd-fontconfig-2.11.1--1">
9459 <title>Text 1</title>
9460 <programlisting>
9461fontconfig/COPYING
9462
9463Copyright © 2000,2001,2002,2003,2004,2006,2007 Keith Packard
9464Copyright © 2005 Patrick Lam
9465Copyright © 2009 Roozbeh Pournader
9466Copyright © 2008,2009 Red Hat, Inc.
9467Copyright © 2008 Danilo Šegan
9468Copyright © 2012 Google, Inc.
9469
9470
9471Permission to use, copy, modify, distribute, and sell this software and its
9472documentation for any purpose is hereby granted without fee, provided that
9473the above copyright notice appear in all copies and that both that
9474copyright notice and this permission notice appear in supporting
9475documentation, and that the name of the author(s) not be used in
9476advertising or publicity pertaining to distribution of the software without
9477specific, written prior permission. The authors make no
9478representations about the suitability of this software for any purpose. It
9479is provided "as is" without express or implied warranty.
9480
9481THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
9482INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
9483EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR
9484CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
9485DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
9486TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
9487PERFORMANCE OF THIS SOFTWARE.
9488
9489</programlisting>
9490 </section>
9491 <section id="pd-fontconfig-2.11.1--2">
9492 <title>Text 2</title>
9493 <programlisting>
9494/*
9495 * fontconfig/src/fcfreetype.c
9496 *
9497 * Copyright © 2001 Keith Packard
9498 *
9499 * Permission to use, copy, modify, distribute, and sell this software and its
9500 * documentation for any purpose is hereby granted without fee, provided that
9501 * the above copyright notice appear in all copies and that both that
9502 * copyright notice and this permission notice appear in supporting
9503 * documentation, and that the name of the author(s) not be used in
9504 * advertising or publicity pertaining to distribution of the software without
9505 * specific, written prior permission. The authors make no
9506 * representations about the suitability of this software for any purpose. It
9507 * is provided "as is" without express or implied warranty.
9508 *
9509 * THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
9510 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
9511 * EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR
9512 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
9513 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
9514 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
9515 * PERFORMANCE OF THIS SOFTWARE.
9516 */
9000 9517
9001Fontconfig Copying 9518/*
9002================== 9519 Copyright © 2002-2003 by Juliusz Chroboczek
9520
9521 Permission is hereby granted, free of charge, to any person obtaining a copy
9522 of this software and associated documentation files (the "Software"), to deal
9523 in the Software without restriction, including without limitation the rights
9524 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9525 copies of the Software, and to permit persons to whom the Software is
9526 furnished to do so, subject to the following conditions:
9527
9528 The above copyright notice and this permission notice shall be included in
9529 all copies or substantial portions of the Software.
9530
9531 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
9532 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
9533 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
9534 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
9535 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
9536 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
9537 THE SOFTWARE.
9538*/
9539</programlisting>
9540 </section>
9541 <section id="pd-fontconfig-2.11.1--3">
9542 <title>Text 3</title>
9543 <programlisting>
9003/* 9544/*
9004 * This code implements the MD5 message-digest algorithm. 9545 * This code implements the MD5 message-digest algorithm.
9005 * The algorithm is due to Ron Rivest. This code was 9546 * The algorithm is due to Ron Rivest. This code was
9006 * written by Colin Plumb in 1993, no copyright is claimed. 9547 * written by Colin Plumb in 1993, no copyright is claimed.
9007 * This code is in the public domain; do with it what you wish. 9548 * This code is in the public domain; do with it what you wish.
9008 * 9549 *
9009 * Equivalent code is available from RSA Data Security, Inc. 9550 * Equivalent code is available from RSA Data Security, Inc.
9010 * This code has been tested against that, and is equivalent, 9551 * This code has been tested against that, and is equivalent,
9011 * except that you don &apos; t need to include two pages of legalese 9552 * except that you don't need to include two pages of legalese
9012 * with every copy. 9553 * with every copy.
9013 * 9554 *
9014 * To compute the message digest of a chunk of bytes, declare an 9555 * To compute the message digest of a chunk of bytes, declare an
@@ -9016,10 +9557,54 @@ Fontconfig Copying
9016 * needed on buffers full of bytes, and then call MD5Final, which 9557 * needed on buffers full of bytes, and then call MD5Final, which
9017 * will fill a supplied 16-byte array with the digest. 9558 * will fill a supplied 16-byte array with the digest.
9018 */ 9559 */
9560</programlisting>
9561 </section>
9562 </section>
9563 <section id="pd-glib-2.0-2.40.0">
9564 <title>glib-2.0, version 2.40.0</title>
9565 <section id="pd-glib-2.0-2.40.0--1">
9566 <title>Text 1</title>
9567 <programlisting>
9568PCRE LICENCE
9569
9570Please see the file LICENCE in the PCRE distribution for licensing details.
9571
9572End
9573</programlisting>
9574 </section>
9575 <section id="pd-glib-2.0-2.40.0--2">
9576 <title>Text 2</title>
9577 <programlisting>
9578Redistribution and use in source and binary forms, with or without
9579modification, are permitted provided that the following conditions are met:
9019 9580
9020Glibc-2.0 Copying 9581 * Redistributions of source code must retain the above copyright notice,
9021================= 9582 this list of conditions and the following disclaimer.
9022 9583
9584 * Redistributions in binary form must reproduce the above copyright
9585 notice, this list of conditions and the following disclaimer in the
9586 documentation and/or other materials provided with the distribution.
9587
9588 * Neither the name of the University of Cambridge nor the names of its
9589 contributors may be used to endorse or promote products derived from
9590 this software without specific prior written permission.
9591
9592THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
9593AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
9594IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
9595ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
9596LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
9597CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
9598SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
9599INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
9600CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
9601ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
9602POSSIBILITY OF SUCH DAMAGE.
9603</programlisting>
9604 </section>
9605 <section id="pd-glib-2.0-2.40.0--3">
9606 <title>Text 3</title>
9607 <programlisting>
9023This work may be reproduced and distributed in whole or in part, in 9608This work may be reproduced and distributed in whole or in part, in
9024any medium, physical or electronic, so as long as this copyright 9609any medium, physical or electronic, so as long as this copyright
9025notice remains intact and unchanged on all copies. Commercial 9610notice remains intact and unchanged on all copies. Commercial
@@ -9037,7 +9622,7 @@ and may be used, modified and redistributed without restriction.
9037BECAUSE THIS WORK IS LICENSED FREE OF CHARGE, THERE IS NO 9622BECAUSE THIS WORK IS LICENSED FREE OF CHARGE, THERE IS NO
9038WARRANTY FOR THE WORK, TO THE EXTENT PERMITTED BY APPLICABLE LAW. 9623WARRANTY FOR THE WORK, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
9039EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR 9624EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
9040OTHER PARTIES PROVIDE THE WORK &quot; AS IS &quot; WITHOUT WARRANTY OF ANY 9625OTHER PARTIES PROVIDE THE WORK "AS IS" WITHOUT WARRANTY OF ANY
9041KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE 9626KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
9042IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 9627IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
9043PURPOSE. SHOULD THE WORK PROVE DEFECTIVE, YOU ASSUME 9628PURPOSE. SHOULD THE WORK PROVE DEFECTIVE, YOU ASSUME
@@ -9050,51 +9635,71 @@ FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
9050CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE 9635CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
9051WORK, EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE 9636WORK, EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
9052POSSIBILITY OF SUCH DAMAGES. 9637POSSIBILITY OF SUCH DAMAGES.
9638</programlisting>
9639 </section>
9640 </section>
9641 <section id="pd-mesa-demos-8.2.0">
9642 <title>mesa-demos, version 8.2.0</title>
9643 <section id="pd-mesa-demos-8.2.0--1">
9644 <title>Text 1</title>
9645 <programlisting>
9646/*
9647 * Copyright (C) 1999-2001 Brian Paul All Rights Reserved.
9648 *
9649 * Permission is hereby granted, free of charge, to any person obtaining a
9650 * copy of this software and associated documentation files (the "Software"),
9651 * to deal in the Software without restriction, including without limitation
9652 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9653 * and/or sell copies of the Software, and to permit persons to whom the
9654 * Software is furnished to do so, subject to the following conditions:
9655 *
9656 * The above copyright notice and this permission notice shall be included
9657 * in all copies or substantial portions of the Software.
9658 *
9659 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
9660 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
9661 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
9662 * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
9663 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
9664 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
9665 */
9666</programlisting>
9667 </section>
9668 <section id="pd-mesa-demos-8.2.0--2">
9669 <title>Text 2</title>
9670 <programlisting>
9053 9671
9054Libselinux Copying
9055==================
9056
9057This library (libselinux) is public domain software, i.e. not copyrighted.
9058
9059Warranty Exclusion
9060------------------
9061You agree that this software is a
9062non-commercially developed program that may contain &quot; bugs &quot; (as that
9063term is used in the industry) and that it may not function as intended.
9064The software is licensed &quot; as is &quot; . NSA makes no, and hereby expressly
9065disclaims all, warranties, express, implied, statutory, or otherwise
9066with respect to the software, including noninfringement and the implied
9067warranties of merchantability and fitness for a particular purpose.
9068
9069Limitation of Liability
9070-----------------------
9071In no event will NSA be liable for any damages, including loss of data,
9072lost profits, cost of cover, or other special, incidental,
9073consequential, direct or indirect damages arising from the software or
9074the use thereof, however caused and on any theory of liability. This
9075limitation will apply even if NSA has been advised of the possibility
9076of such damage. You acknowledge that this is a reasonable allocation of
9077risk.
9078
9079Mobile Broadband Provider Info Copying
9080======================================
9081 9672
9673/*
9674 * A demonstration of using the GLX functions. This program is in the
9675 * public domain.
9676 *
9677 * Brian Paul
9678 */
9679</programlisting>
9680 </section>
9681 </section>
9682 <section id="pd-mobile-broadband-provider-info-20140618">
9683 <title>mobile-broadband-provider-info, version 20140618</title>
9684 <section id="pd-mobile-broadband-provider-info-20140618--1">
9685 <title>Text 1</title>
9686 <programlisting>
9082THIS WORK IS IN PUBLIC DOMAIN: 9687THIS WORK IS IN PUBLIC DOMAIN:
9083The person or persons who have associated work with this document 9688The person or persons who have associated work with this document
9084(the &quot; Dedicator &quot; or &quot; Certifier &quot; ) hereby either (a) certifies that, to the best 9689(the "Dedicator" or "Certifier") hereby either (a) certifies that, to the best
9085of his knowledge, the work of authorship identified is in the public domain of 9690of his knowledge, the work of authorship identified is in the public domain of
9086the country from which the work is published, or (b) hereby dedicates whatever 9691the country from which the work is published, or (b) hereby dedicates whatever
9087copyright the dedicators holds in the work of authorship identified below 9692copyright the dedicators holds in the work of authorship identified below
9088(the &quot; Work &quot; ) to the public domain. A certifier, moreover, dedicates any 9693(the "Work") to the public domain. A certifier, moreover, dedicates any
9089copyright interest he may have in the associated work, and for these purposes, 9694copyright interest he may have in the associated work, and for these purposes,
9090is described as a &quot; dedicator &quot; below. 9695is described as a "dedicator" below.
9091 9696
9092A certifier has taken reasonable steps to verify the copyright status of this 9697A certifier has taken reasonable steps to verify the copyright status of this
9093work. Certifier recognizes that his good faith efforts may not shield him from 9698work. Certifier recognizes that his good faith efforts may not shield him from
9094liability if in fact the work certified is not in the public domain. 9699liability if in fact the work certified is not in the public domain.
9095 9700
9096Dedicator makes this dedication for the benefit of the public at large and to 9701Dedicator makes this dedication for the benefit of the public at large and to
9097the detriment of the Dedicator &apos; s heirs and successors. Dedicator intends this 9702the detriment of the Dedicator's heirs and successors. Dedicator intends this
9098dedication to be an overt act of relinquishment in perpetuity of all present 9703dedication to be an overt act of relinquishment in perpetuity of all present
9099and future rights under copyright law, whether vested or contingent, in the 9704and future rights under copyright law, whether vested or contingent, in the
9100Work. Dedicator understands that such relinquishment of all rights includes the 9705Work. Dedicator understands that such relinquishment of all rights includes the
@@ -9106,146 +9711,207 @@ freely reproduced, distributed, transmitted, used, modified, built upon, or
9106otherwise exploited by anyone for any purpose, commercial or non-commercial, 9711otherwise exploited by anyone for any purpose, commercial or non-commercial,
9107and in any way, including by methods that have not yet been invented or 9712and in any way, including by methods that have not yet been invented or
9108conceived. 9713conceived.
9109 9714</programlisting>
9110Modutils Initscripts Copying 9715 </section>
9111============================ 9716 </section>
9112 9717 <section id="pd-modutils-initscripts-1.0">
9718 <title>modutils-initscripts, version 1.0</title>
9719 <section id="pd-modutils-initscripts-1.0--1">
9720 <title>Text 1</title>
9721 <programlisting>
9113Public Domain 9722Public Domain
9723</programlisting>
9724 </section>
9725 </section>
9726 <section id="pd-pixman-0.32.6">
9727 <title>pixman, version 0.32.6</title>
9728 <section id="pd-pixman-0.32.6--1">
9729 <title>Text 1</title>
9730 <programlisting>
9731The following is the MIT license, agreed upon by most contributors.
9732Copyright holders of new code should use this license statement where
9733possible. They may also add themselves to the list below.
9114 9734
9115Pixman Copying
9116==============
9117(in install-sh)
9118 !/bin/sh
9119 install - install a program, script, or datafile
9120
9121scriptversion=2011-11-20.07; UTC
9122
9123 This originates from X11R5 (mit/util/scripts/install.sh), which was
9124 later released in X11R6 (xc/config/util/install.sh) with the
9125 following copyright and license.
9126
9127 Copyright (C) 1994 X Consortium
9128
9129 Permission is hereby granted, free of charge, to any person obtaining a copy
9130 of this software and associated documentation files (the &quot; Software &quot; ), to
9131 deal in the Software without restriction, including without limitation the
9132 rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
9133 sell copies of the Software, and to permit persons to whom the Software is
9134 furnished to do so, subject to the following conditions:
9135
9136 The above copyright notice and this permission notice shall be included in
9137 all copies or substantial portions of the Software.
9138
9139 THE SOFTWARE IS PROVIDED &quot; AS IS &quot; , WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
9140 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
9141 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
9142 X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
9143 AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-
9144 TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
9145
9146 Except as contained in this notice, the name of the X Consortium shall not
9147 be used in advertising or otherwise to promote the sale, use or other deal-
9148 ings in this Software without prior written authorization from the X Consor-
9149 tium.
9150
9151
9152 FSF changes to this file are in the public domain.
9153
9154 Calling this script install-sh is preferred over install.sh, to prevent
9155 &apos; make &apos; implicit rules from creating a file called install from it
9156 when there is no Makefile.
9157
9158 This script is compatible with the BSD install script, but was written
9159 from scratch.
9160
9161PPP Copying
9162===========
9163/* 9735/*
9164 * Chat -- a program for automatic session establishment (i.e. dial 9736 * Copyright 1987, 1988, 1989, 1998 The Open Group
9165 * the phone and log in). 9737 * Copyright 1987, 1988, 1989 Digital Equipment Corporation
9738 * Copyright 1999, 2004, 2008 Keith Packard
9739 * Copyright 2000 SuSE, Inc.
9740 * Copyright 2000 Keith Packard, member of The XFree86 Project, Inc.
9741 * Copyright 2004, 2005, 2007, 2008, 2009, 2010 Red Hat, Inc.
9742 * Copyright 2004 Nicholas Miell
9743 * Copyright 2005 Lars Knoll &amp; Zack Rusin, Trolltech
9744 * Copyright 2005 Trolltech AS
9745 * Copyright 2007 Luca Barbato
9746 * Copyright 2008 Aaron Plattner, NVIDIA Corporation
9747 * Copyright 2008 Rodrigo Kumpera
9748 * Copyright 2008 André Tupinambá
9749 * Copyright 2008 Mozilla Corporation
9750 * Copyright 2008 Frederic Plourde
9751 * Copyright 2009, Oracle and/or its affiliates. All rights reserved.
9752 * Copyright 2009, 2010 Nokia Corporation
9166 * 9753 *
9167 * Standard termination codes: 9754 * Permission is hereby granted, free of charge, to any person obtaining a
9168 * 0 - successful completion of the script 9755 * copy of this software and associated documentation files (the "Software"),
9169 * 1 - invalid argument, expect string too large, etc. 9756 * to deal in the Software without restriction, including without limitation
9170 * 2 - error on an I/O operation or fatal error condition. 9757 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9171 * 3 - timeout waiting for a simple string. 9758 * and/or sell copies of the Software, and to permit persons to whom the
9172 * 4 - the first string declared as &quot; ABORT &quot; 9759 * Software is furnished to do so, subject to the following conditions:
9173 * 5 - the second string declared as &quot; ABORT &quot;
9174 * 6 - ... and so on for successive ABORT strings.
9175 *
9176 * This software is in the public domain.
9177 *
9178 * -----------------
9179 * 22-May-99 added environment substitutuion, enabled with -E switch.
9180 * Andreas Arens &lt;andras@cityweb.de&gt;.
9181 * 9760 *
9182 * 12-May-99 added a feature to read data to be sent from a file, 9761 * The above copyright notice and this permission notice (including the next
9183 * if the send string starts with @. Idea from gpk &lt;gpk@onramp.net&gt;. 9762 * paragraph) shall be included in all copies or substantial portions of the
9763 * Software.
9184 * 9764 *
9185 * added -T and -U option and \T and \U substitution to pass a phone 9765 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
9186 * number into chat script. Two are needed for some ISDN TA applications. 9766 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
9187 * Keith Dart &lt;kdart@cisco.com&gt; 9767 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
9188 * 9768 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
9189 * 9769 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
9190 * Added SAY keyword to send output to stderr. 9770 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
9191 * This allows to turn ECHO OFF and to output specific, user selected, 9771 * DEALINGS IN THE SOFTWARE.
9192 * text to give progress messages. This best works when stderr 9772 */
9193 * exists (i.e.: pppd in nodetach mode). 9773</programlisting>
9194 * 9774 </section>
9195 * Added HANGUP directives to allow for us to be called 9775 <section id="pd-pixman-0.32.6--2">
9196 * back. When HANGUP is set to NO, chat will not hangup at HUP signal. 9776 <title>Text 2</title>
9197 * We rely on timeouts in that case. 9777 <programlisting>
9198 * 9778/*
9199 * Added CLR_ABORT to clear previously set ABORT string. This has been 9779 * Copyright © 2008 Keith Packard
9200 * dictated by the HANGUP above as &quot; NO CARRIER &quot; (for example) must be
9201 * an ABORT condition until we know the other host is going to close
9202 * the connection for call back. As soon as we have completed the
9203 * first stage of the call back sequence, &quot; NO CARRIER &quot; is a valid, non
9204 * fatal string. As soon as we got called back (probably get &quot; CONNECT &quot; ),
9205 * we should re-arm the ABORT &quot; NO CARRIER &quot; . Hence the CLR_ABORT command.
9206 * Note that CLR_ABORT packs the abort_strings[] array so that we do not
9207 * have unused entries not being reclaimed.
9208 *
9209 * In the same vein as above, added CLR_REPORT keyword.
9210 *
9211 * Allow for comments. Line starting with &apos; &apos; are comments and are
9212 * ignored. If a &apos; &apos; is to be expected as the first character, the
9213 * expect string must be quoted.
9214 * 9780 *
9781 * Permission to use, copy, modify, distribute, and sell this software and its
9782 * documentation for any purpose is hereby granted without fee, provided that
9783 * the above copyright notice appear in all copies and that both that copyright
9784 * notice and this permission notice appear in supporting documentation, and
9785 * that the name of the copyright holders not be used in advertising or
9786 * publicity pertaining to distribution of the software without specific,
9787 * written prior permission. The copyright holders make no representations
9788 * about the suitability of this software for any purpose. It is provided "as
9789 * is" without express or implied warranty.
9215 * 9790 *
9216 * Francis Demierre &lt;Francis@SwissMail.Com&gt; 9791 * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
9217 * Thu May 15 17:15:40 MET DST 1997 9792 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
9793 * EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
9794 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
9795 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
9796 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
9797 * OF THIS SOFTWARE.
9798 */
9799
9800/*
9801 * Matrix interfaces
9802 */
9803</programlisting>
9804 </section>
9805 </section>
9806 <section id="pd-ppp-2.4.6">
9807 <title>ppp, version 2.4.6</title>
9808 <section id="pd-ppp-2.4.6--1">
9809 <title>Text 1</title>
9810 <programlisting>
9811/*
9812 * ccp.c - PPP Compression Control Protocol.
9218 * 9813 *
9814 * Copyright (c) 1994-2002 Paul Mackerras. All rights reserved.
9219 * 9815 *
9220 * Added -r &quot; report file &quot; switch &amp; REPORT keyword. 9816 * Redistribution and use in source and binary forms, with or without
9221 * Robert Geer &lt;bgeer@xmission.com&gt; 9817 * modification, are permitted provided that the following conditions
9818 * are met:
9222 * 9819 *
9223 * Added -s &quot; use stderr &quot; and -S &quot; don &apos; t use syslog &quot; switches. 9820 * 1. Redistributions of source code must retain the above copyright
9224 * June 18, 1997 9821 * notice, this list of conditions and the following disclaimer.
9225 * Karl O. Pinc &lt;kop@meme.com&gt;
9226 * 9822 *
9823 * 2. The name(s) of the authors of this software must not be used to
9824 * endorse or promote products derived from this software without
9825 * prior written permission.
9227 * 9826 *
9228 * Added -e &quot; echo &quot; switch &amp; ECHO keyword 9827 * 3. Redistributions of any form whatsoever must retain the following
9229 * Dick Streefland &lt;dicks@tasking.nl&gt; 9828 * acknowledgment:
9829 * "This product includes software developed by Paul Mackerras
9830 * &lt;paulus@samba.org&gt;".
9230 * 9831 *
9832 * THE AUTHORS OF THIS SOFTWARE DISCLAIM ALL WARRANTIES WITH REGARD TO
9833 * THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
9834 * AND FITNESS, IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY
9835 * SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
9836 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
9837 * AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
9838 * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
9839 */
9840</programlisting>
9841 </section>
9842 <section id="pd-ppp-2.4.6--2">
9843 <title>Text 2</title>
9844 <programlisting>
9845/*
9846 * Chat -- a program for automatic session establishment (i.e. dial
9847 * the phone and log in).
9231 * 9848 *
9232 * Considerable updates and modifications by 9849 * Standard termination codes:
9233 * Al Longyear &lt;longyear@pobox.com&gt; 9850 * 0 - successful completion of the script
9234 * Paul Mackerras &lt;paulus@cs.anu.edu.au&gt; 9851 * 1 - invalid argument, expect string too large, etc.
9852 * 2 - error on an I/O operation or fatal error condition.
9853 * 3 - timeout waiting for a simple string.
9854 * 4 - the first string declared as "ABORT"
9855 * 5 - the second string declared as "ABORT"
9856 * 6 - ... and so on for successive ABORT strings.
9235 * 9857 *
9858 * This software is in the public domain.
9236 * 9859 *
9237 * The original author is: 9860</programlisting>
9861 </section>
9862 <section id="pd-ppp-2.4.6--3">
9863 <title>Text 3</title>
9864 <programlisting>
9865/*
9866 * passprompt.c - pppd plugin to invoke an external PAP password prompter
9238 * 9867 *
9239 * Karl Fox &lt;karl@MorningStar.Com&gt; 9868 * Copyright 1999 Paul Mackerras, Alan Curry.
9240 * Morning Star Technologies, Inc.
9241 * 1760 Zollinger Road
9242 * Columbus, OH 43221
9243 * (614)451-1883
9244 * 9869 *
9870 * This program is free software; you can redistribute it and/or
9871 * modify it under the terms of the GNU General Public License
9872 * as published by the Free Software Foundation; either version
9873 * 2 of the License, or (at your option) any later version.
9245 */ 9874 */
9246 9875</programlisting>
9247Sqlite3 Copying 9876 </section>
9248=============== 9877 <section id="pd-ppp-2.4.6--4">
9878 <title>Text 4</title>
9879 <programlisting>
9880 /*
9881 Unix SMB/CIFS implementation.
9882
9883 trivial database library
9884
9885 Copyright (C) Andrew Tridgell 1999-2004
9886 Copyright (C) Paul `Rusty' Russell 2000
9887 Copyright (C) Jeremy Allison 2000-2003
9888
9889 ** NOTE! The following LGPL license applies to the tdb
9890 ** library. This does NOT imply that all of Samba is released
9891 ** under the LGPL
9892
9893 This library is free software; you can redistribute it and/or
9894 modify it under the terms of the GNU Lesser General Public
9895 License as published by the Free Software Foundation; either
9896 version 2 of the License, or (at your option) any later version.
9897
9898 This library is distributed in the hope that it will be useful,
9899 but WITHOUT ANY WARRANTY; without even the implied warranty of
9900 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
9901 Lesser General Public License for more details.
9902
9903 You should have received a copy of the GNU Lesser General Public
9904 License along with this library; if not, write to the Free Software
9905 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
9906*/
9907</programlisting>
9908 </section>
9909 </section>
9910 <section id="pd-sqlite3-3.8.6.0">
9911 <title>sqlite3, version 3.8.6.0</title>
9912 <section id="pd-sqlite3-3.8.6.0--1">
9913 <title>Text 1</title>
9914 <programlisting>
9249/* 9915/*
9250** 2001 September 15 9916** 2001 September 15
9251** 9917**
@@ -9257,15 +9923,19 @@ Sqlite3 Copying
9257** May you share freely, never taking more than you give. 9923** May you share freely, never taking more than you give.
9258** 9924**
9259************************************************************************* 9925*************************************************************************
9260 9926</programlisting>
9261Tzcode Copying 9927 </section>
9262============== 9928 </section>
9263 9929 <section id="pd-tzcode-2015b">
9930 <title>tzcode, version 2015b</title>
9931 <section id="pd-tzcode-2015b--1">
9932 <title>Text 1</title>
9933 <programlisting>
9264README for the tz distribution 9934README for the tz distribution
9265 9935
9266 &quot; What time is it? &quot; -- Richard Deacon as The King 9936"What time is it?" -- Richard Deacon as The King
9267 &quot; Any time you want it to be. &quot; -- Frank Baxter as The Scientist 9937"Any time you want it to be." -- Frank Baxter as The Scientist
9268 (from the Bell System film &quot; About Time &quot; ) 9938 (from the Bell System film "About Time")
9269 9939
9270The Time Zone Database (often called tz or zoneinfo) contains code and 9940The Time Zone Database (often called tz or zoneinfo) contains code and
9271data that represent the history of local time for many representative 9941data that represent the history of local time for many representative
@@ -9282,14 +9952,14 @@ tz distribution on a GNU/Linux or similar host.
9282 9952
9283 mkdir tz 9953 mkdir tz
9284 cd tz 9954 cd tz
9285 wget --retr-symlinks &apos; ftp://ftp.iana.org/tz/tz*-latest.tar.gz &apos; 9955 wget --retr-symlinks 'ftp://ftp.iana.org/tz/tz*-latest.tar.gz'
9286 gzip -dc tzcode-latest.tar.gz | tar -xf - 9956 gzip -dc tzcode-latest.tar.gz | tar -xf -
9287 gzip -dc tzdata-latest.tar.gz | tar -xf - 9957 gzip -dc tzdata-latest.tar.gz | tar -xf -
9288 9958
9289Be sure to read the comments in &quot; Makefile &quot; and make any changes needed 9959Be sure to read the comments in "Makefile" and make any changes needed
9290to make things right for your system, especially if you are using some 9960to make things right for your system, especially if you are using some
9291platform other than GNU/Linux. Then run the following commands, 9961platform other than GNU/Linux. Then run the following commands,
9292substituting your desired installation directory for &quot; $HOME/tzdir &quot; : 9962substituting your desired installation directory for "$HOME/tzdir":
9293 9963
9294 make TOPDIR=$HOME/tzdir install 9964 make TOPDIR=$HOME/tzdir install
9295 $HOME/tzdir/etc/zdump -v America/Los_Angeles 9965 $HOME/tzdir/etc/zdump -v America/Los_Angeles
@@ -9297,7 +9967,7 @@ substituting your desired installation directory for &quot; $HOME/tzdir &quot;
9297Historical local time information has been included here to: 9967Historical local time information has been included here to:
9298 9968
9299* provide a compendium of data about the history of civil time 9969* provide a compendium of data about the history of civil time
9300 that is useful even if not 100 accurate; 9970 that is useful even if not 100% accurate;
9301 9971
9302* give an idea of the variety of local time rules that have 9972* give an idea of the variety of local time rules that have
9303 existed in the past and thus an idea of the variety that may be 9973 existed in the past and thus an idea of the variety that may be
@@ -9310,58 +9980,40 @@ The information in the time zone data files is by no means authoritative;
9310fixes and enhancements are welcome. Please see the file CONTRIBUTING 9980fixes and enhancements are welcome. Please see the file CONTRIBUTING
9311for details. 9981for details.
9312 9982
9313Thanks to these Time Zone Caballeros who &apos; ve made major contributions to the 9983Thanks to these Time Zone Caballeros who've made major contributions to the
9314time conversion package: Keith Bostic; Bob Devine; Paul Eggert; Robert Elz; 9984time conversion package: Keith Bostic; Bob Devine; Paul Eggert; Robert Elz;
9315Guy Harris; Mark Horton; John Mackin; and Bradley White. Thanks also to 9985Guy Harris; Mark Horton; John Mackin; and Bradley White. Thanks also to
9316Michael Bloom, Art Neilson, Stephen Prince, John Sovereign, and Frank Wales 9986Michael Bloom, Art Neilson, Stephen Prince, John Sovereign, and Frank Wales
9317for testing work, and to Gwillim Law for checking local mean time data. 9987for testing work, and to Gwillim Law for checking local mean time data.
9318Thanks in particular to Arthur David Olson, the project &apos; s founder and first 9988Thanks in particular to Arthur David Olson, the project's founder and first
9319maintainer, to whom the time zone community owes the greatest debt of all. 9989maintainer, to whom the time zone community owes the greatest debt of all.
9320None of them are responsible for remaining errors. 9990None of them are responsible for remaining errors.
9321 9991
9322Look in &lt;ftp://ftp.iana.org/tz/releases/&gt; for updated versions of these files. 9992Look in &lt;ftp://ftp.iana.org/tz/releases/&gt; for updated versions of these files.
9323 9993
9324Please send comments or information to tz@iana.org. 9994Please send comments or information to tz@iana.org.
9995</programlisting>
9996 </section>
9997 </section>
9998 <section id="pd-tzdata-2015b">
9999 <title>tzdata, version 2015b</title>
10000 <section id="pd-tzdata-2015b--1">
10001 <title>Text 1</title>
10002 <programlisting>
10003# This file is in the public domain, so clarified as of
10004# 2009-05-17 by Arthur David Olson.
10005
10006</programlisting>
10007 </section>
10008 </section>
10009 <section id="pd-xz-5.1.3alpha">
10010 <title>xz, version 5.1.3alpha</title>
10011 <section id="pd-xz-5.1.3alpha--1">
10012 <title>Text 1</title>
10013 <programlisting>
9325 10014
9326Tzdata Copying 10015XZ Utils Licensing
9327============== 10016==================
9328Same as Tzcode Copying
9329
9330Xorg Minimal Fonts Copying
9331==========================
9332
9333 This is version 1.0, dated 22 June 2009, of the GUST Font License.
9334 (GUST is the Polish TeX Users Group, http://www.gust.org.pl)
9335
9336 For the most recent version of this license see
9337 http://www.gust.org.pl/fonts/licenses/GUST-FONT-LICENSE.txt
9338 or
9339 http://tug.org/fonts/licenses/GUST-FONT-LICENSE.txt
9340
9341 This work may be distributed and/or modified under the conditions
9342 of the LaTeX Project Public License, either version 1.3c of this
9343 license or (at your option) any later version.
9344
9345 Please also observe the following clause:
9346 1) it is requested, but not legally required, that derived works be
9347 distributed only after changing the names of the fonts comprising this
9348 work and given in an accompanying &quot; manifest &quot; , and that the
9349 files comprising the Work, as listed in the manifest, also be given
9350 new names. Any exceptions to this request are also given in the
9351 manifest.
9352
9353 We recommend the manifest be given in a separate file named
9354 MANIFEST-&lt;fontid&gt;.txt, where &lt;fontid&gt; is some unique identification
9355 of the font family. If a separate &quot; readme &quot; file accompanies the Work,
9356 we recommend a name of the form README-&lt;fontid&gt;.txt.
9357
9358 The latest version of the LaTeX Project Public License is in
9359 http://www.latex-project.org/lppl.txt and version 1.3c or later
9360 is part of all distributions of LaTeX version 2006/05/20 or later.
9361
9362XZ Copying
9363==========
9364(XZ Utils Licensing)
9365 10017
9366 Different licenses apply to different files in this package. Here 10018 Different licenses apply to different files in this package. Here
9367 is a rough summary of which licenses apply to which parts of this 10019 is a rough summary of which licenses apply to which parts of this
@@ -9400,13 +10052,13 @@ XZ Copying
9400 the lack of copyright legally problematic, you have too many 10052 the lack of copyright legally problematic, you have too many
9401 lawyers. 10053 lawyers.
9402 10054
9403 As usual, this software is provided &quot; as is &quot; , without any warranty. 10055 As usual, this software is provided "as is", without any warranty.
9404 10056
9405 If you copy significant amounts of public domain code from XZ Utils 10057 If you copy significant amounts of public domain code from XZ Utils
9406 into your project, acknowledging this somewhere in your software is 10058 into your project, acknowledging this somewhere in your software is
9407 polite (especially if it is proprietary, non-free software), but 10059 polite (especially if it is proprietary, non-free software), but
9408 naturally it is not legally required. Here is an example of a good 10060 naturally it is not legally required. Here is an example of a good
9409 notice to put into &quot; about box &quot; or into documentation: 10061 notice to put into "about box" or into documentation:
9410 10062
9411 This software includes code from XZ Utils &lt;http://tukaani.org/xz/&gt;. 10063 This software includes code from XZ Utils &lt;http://tukaani.org/xz/&gt;.
9412 10064
@@ -9417,312 +10069,15 @@ XZ Copying
9417 10069
9418 Note that the toolchain (compiler, linker etc.) may add some code 10070 Note that the toolchain (compiler, linker etc.) may add some code
9419 pieces that are copyrighted. Thus, it is possible that e.g. liblzma 10071 pieces that are copyrighted. Thus, it is possible that e.g. liblzma
9420 binary wouldn &apos; t actually be in the public domain in its entirety 10072 binary wouldn't actually be in the public domain in its entirety
9421 even though it contains no copyrighted code from the XZ Utils source 10073 even though it contains no copyrighted code from the XZ Utils source
9422 package. 10074 package.
9423 10075
9424 If you have questions, don&apos;t hesitate to ask the author(s) for more 10076 If you have questions, don't hesitate to ask the author(s) for more
9425 information. 10077 information.
9426 10078
9427 10079</programlisting>
9428</programlisting></para></section> 10080 </section>
9429
9430<section id="lic_32">
9431<title>Python-2.0</title>
9432<para><programlisting>
9433
9434PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2
9435--------------------------------------------
9436
94371. This LICENSE AGREEMENT is between the Python Software Foundation
9438("PSF"), and the Individual or Organization ("Licensee") accessing and
9439otherwise using this software ("Python") in source or binary form and
9440its associated documentation.
9441
94422. Subject to the terms and conditions of this License Agreement, PSF
9443hereby grants Licensee a nonexclusive, royalty-free, world-wide
9444license to reproduce, analyze, test, perform and/or display publicly,
9445prepare derivative works, distribute, and otherwise use Python
9446alone or in any derivative version, provided, however, that PSF`s
9447License Agreement and PSF`s notice of copyright, i.e., "Copyright (c)
94482001, 2002, 2003, 2004, 2005, 2006 Python Software Foundation; All Rights
9449Reserved" are retained in Python alone or in any derivative version
9450prepared by Licensee.
9451
94523. In the event Licensee prepares a derivative work that is based on
9453or incorporates Python or any part thereof, and wants to make
9454the derivative work available to others as provided herein, then
9455Licensee hereby agrees to include in any such work a brief summary of
9456the changes made to Python.
9457
94584. PSF is making Python available to Licensee on an "AS IS"
9459basis. PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
9460IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND
9461DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
9462FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON WILL NOT
9463INFRINGE ANY THIRD PARTY RIGHTS.
9464
94655. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON
9466FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS
9467A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON,
9468OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
9469
94706. This License Agreement will automatically terminate upon a material
9471breach of its terms and conditions.
9472
94737. Nothing in this License Agreement shall be deemed to create any
9474relationship of agency, partnership, or joint venture between PSF and
9475Licensee. This License Agreement does not grant permission to use PSF
9476trademarks or trade name in a trademark sense to endorse or promote
9477products or services of Licensee, or any third party.
9478
94798. By copying, installing or otherwise using Python, Licensee
9480agrees to be bound by the terms and conditions of this License
9481Agreement.
9482
9483BEOPEN.COM LICENSE AGREEMENT FOR PYTHON 2.0
9484-------------------------------------------
9485
9486BEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1
9487
94881. This LICENSE AGREEMENT is between BeOpen.com ("BeOpen"), having an
9489office at 160 Saratoga Avenue, Santa Clara, CA 95051, and the
9490Individual or Organization ("Licensee") accessing and otherwise using
9491this software in source or binary form and its associated
9492documentation ("the Software").
9493
94942. Subject to the terms and conditions of this BeOpen Python License
9495Agreement, BeOpen hereby grants Licensee a non-exclusive,
9496royalty-free, world-wide license to reproduce, analyze, test, perform
9497and/or display publicly, prepare derivative works, distribute, and
9498otherwise use the Software alone or in any derivative version,
9499provided, however, that the BeOpen Python License is retained in the
9500Software, alone or in any derivative version prepared by Licensee.
9501
95023. BeOpen is making the Software available to Licensee on an "AS IS"
9503basis. BEOPEN MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
9504IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, BEOPEN MAKES NO AND
9505DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
9506FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE WILL NOT
9507INFRINGE ANY THIRD PARTY RIGHTS.
9508
95094. BEOPEN SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE
9510SOFTWARE FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS
9511AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THE SOFTWARE, OR ANY
9512DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
9513
95145. This License Agreement will automatically terminate upon a material
9515breach of its terms and conditions.
9516
95176. This License Agreement shall be governed by and interpreted in all
9518respects by the law of the State of California, excluding conflict of
9519law provisions. Nothing in this License Agreement shall be deemed to
9520create any relationship of agency, partnership, or joint venture
9521between BeOpen and Licensee. This License Agreement does not grant
9522permission to use BeOpen trademarks or trade names in a trademark
9523sense to endorse or promote products or services of Licensee, or any
9524third party. As an exception, the "BeOpen Python" logos available at
9525http://www.pythonlabs.com/logos.html may be used according to the
9526permissions granted on that web page.
9527
95287. By copying, installing or otherwise using the software, Licensee
9529agrees to be bound by the terms and conditions of this License
9530Agreement.
9531
9532CNRI LICENSE AGREEMENT FOR PYTHON 1.6.1
9533---------------------------------------
9534
95351. This LICENSE AGREEMENT is between the Corporation for National
9536Research Initiatives, having an office at 1895 Preston White Drive,
9537Reston, VA 20191 ("CNRI"), and the Individual or Organization
9538("Licensee") accessing and otherwise using Python 1.6.1 software in
9539source or binary form and its associated documentation.
9540
95412. Subject to the terms and conditions of this License Agreement, CNRI
9542hereby grants Licensee a nonexclusive, royalty-free, world-wide
9543license to reproduce, analyze, test, perform and/or display publicly,
9544prepare derivative works, distribute, and otherwise use Python 1.6.1
9545alone or in any derivative version, provided, however, that CNRI`s
9546License Agreement and CNRI`s notice of copyright, i.e., "Copyright (c)
95471995-2001 Corporation for National Research Initiatives; All Rights
9548Reserved" are retained in Python 1.6.1 alone or in any derivative
9549version prepared by Licensee. Alternately, in lieu of CNRI`s License
9550Agreement, Licensee may substitute the following text (omitting the
9551quotes): "Python 1.6.1 is made available subject to the terms and
9552conditions in CNRI`s License Agreement. This Agreement together with
9553Python 1.6.1 may be located on the Internet using the following
9554unique, persistent identifier (known as a handle): 1895.22/1013. This
9555Agreement may also be obtained from a proxy server on the Internet
9556using the following URL: http://hdl.handle.net/1895.22/1013".
9557
95583. In the event Licensee prepares a derivative work that is based on
9559or incorporates Python 1.6.1 or any part thereof, and wants to make
9560the derivative work available to others as provided herein, then
9561Licensee hereby agrees to include in any such work a brief summary of
9562the changes made to Python 1.6.1.
9563
95644. CNRI is making Python 1.6.1 available to Licensee on an "AS IS"
9565basis. CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
9566IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND
9567DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
9568FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON 1.6.1 WILL NOT
9569INFRINGE ANY THIRD PARTY RIGHTS.
9570
95715. CNRI SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON
95721.6.1 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS
9573A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 1.6.1,
9574OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
9575
95766. This License Agreement will automatically terminate upon a material
9577breach of its terms and conditions.
9578
95797. This License Agreement shall be governed by the federal
9580intellectual property law of the United States, including without
9581limitation the federal copyright law, and, to the extent such
9582U.S. federal law does not apply, by the law of the Commonwealth of
9583Virginia, excluding Virginia`s conflict of law provisions.
9584Notwithstanding the foregoing, with regard to derivative works based
9585on Python 1.6.1 that incorporate non-separable material that was
9586previously distributed under the GNU General Public License (GPL), the
9587law of the Commonwealth of Virginia shall govern this License
9588Agreement only as to issues arising under or with respect to
9589Paragraphs 4, 5, and 7 of this License Agreement. Nothing in this
9590License Agreement shall be deemed to create any relationship of
9591agency, partnership, or joint venture between CNRI and Licensee. This
9592License Agreement does not grant permission to use CNRI trademarks or
9593trade name in a trademark sense to endorse or promote products or
9594services of Licensee, or any third party.
9595
95968. By clicking on the "ACCEPT" button where indicated, or by copying,
9597installing or otherwise using Python 1.6.1, Licensee agrees to be
9598bound by the terms and conditions of this License Agreement.
9599
9600ACCEPT
9601
9602CWI LICENSE AGREEMENT FOR PYTHON 0.9.0 THROUGH 1.2
9603--------------------------------------------------
9604
9605Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam,
9606The Netherlands. All rights reserved.
9607
9608Permission to use, copy, modify, and distribute this software and its
9609documentation for any purpose and without fee is hereby granted,
9610provided that the above copyright notice appear in all copies and that
9611both that copyright notice and this permission notice appear in
9612supporting documentation, and that the name of Stichting Mathematisch
9613Centrum or CWI not be used in advertising or publicity pertaining to
9614distribution of the software without specific, written prior
9615permission.
9616
9617STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO
9618THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
9619FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE
9620FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
9621WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
9622ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
9623OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
9624
9625</programlisting></para></section>
9626
9627<section id="lic_33">
9628<title>Zlib</title>
9629<para><programlisting>
9630
9631zlib License
9632
9633
9634 This software is provided `as-is`, without any express or implied
9635 warranty. In no event will the authors be held liable for any damages
9636 arising from the use of this software.
9637
9638 Permission is granted to anyone to use this software for any purpose,
9639 including commercial applications, and to alter it and redistribute it
9640 freely, subject to the following restrictions:
9641
9642 1. The origin of this software must not be misrepresented; you must not
9643 claim that you wrote the original software. If you use this software
9644 in a product, an acknowledgment in the product documentation would be
9645 appreciated but is not required.
9646 2. Altered source versions must be plainly marked as such, and must not be
9647 misrepresented as being the original software.
9648 3. This notice may not be removed or altered from any source distribution.
9649
9650
9651</programlisting></para></section>
9652
9653<section id="lic_34">
9654<title>tcl</title>
9655<para><programlisting>
9656This software is copyrighted by the Regents of the University of
9657California, Sun Microsystems, Inc., Scriptics Corporation, ActiveState
9658Corporation and other parties. The following terms apply to all files
9659associated with the software unless explicitly disclaimed in
9660individual files.
9661
9662The authors hereby grant permission to use, copy, modify, distribute,
9663and license this software and its documentation for any purpose, provided
9664that existing copyright notices are retained in all copies and that this
9665notice is included verbatim in any distributions. No written agreement,
9666license, or royalty fee is required for any of the authorized uses.
9667Modifications to this software may be copyrighted by their authors
9668and need not follow the licensing terms described here, provided that
9669the new terms are clearly indicated on the first page of each file where
9670they apply.
9671
9672IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY
9673FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
9674ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY
9675DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE
9676POSSIBILITY OF SUCH DAMAGE.
9677
9678THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES,
9679INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY,
9680FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE
9681IS PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE
9682NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR
9683MODIFICATIONS.
9684
9685GOVERNMENT USE: If you are acquiring this software on behalf of the
9686U.S. government, the Government shall have only "Restricted Rights"
9687in the software and related documentation as defined in the Federal
9688Acquisition Regulations (FARs) in Clause 52.227.19 (c) (2). If you
9689are acquiring the software on behalf of the Department of Defense, the
9690software shall be classified as "Commercial Computer Software" and the
9691Government shall have only "Restricted Rights" as defined in Clause
9692252.227-7014 (b) (3) of DFARs. Notwithstanding the foregoing, the
9693authors grant the U.S. Government and others acting in its behalf
9694permission to use and distribute the software in accordance with the
9695terms specified in this license.
9696</programlisting></para></section>
9697
9698<section id="lic_35">
9699<title>unfs3</title>
9700<para><programlisting>
9701UNFS3 user-space NFSv3 server
9702(C) 2003, Pascal Schmidt &lt;unfs3-server@ewetel.net&gt;
9703
9704Redistribution and use in source and binary forms, with or without
9705modification, are permitted provided that the following conditions are met:
9706
97071. Redistributions of source code must retain the above copyright notice,
9708 this list of conditions and the following disclaimer.
97092. Redistributions in binary form must reproduce the above copyright notice,
9710 this list of conditions and the following disclaimer in the documentation
9711 and/or other materials provided with the distribution.
97123. The name of the author may not be used to endorse or promote products
9713 derived from this software without specific prior written permission.
9714
9715THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
9716WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
9717MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
9718EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
9719SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
9720PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
9721OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
9722WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
9723OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
9724ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
9725</programlisting></para></section>
9726
9727 </section> 10081 </section>
10082</section>
9728</chapter> 10083</chapter>
diff --git a/doc/book-enea-linux-open-source/swcomp.mk b/doc/book-enea-linux-open-source/swcomp.mk
new file mode 100644
index 0000000..d978b48
--- /dev/null
+++ b/doc/book-enea-linux-open-source/swcomp.mk
@@ -0,0 +1,10 @@
1# Component build specification
2
3# Version of THIS book
4BOOK_VER ?= $(REL_VER)-dev
5
6DOCBOOK_SRC := $(COMP)/swcomp.mk $(COMP)/doc/book.xml $(shell find $(COMP)/doc -type f \( -name "*.xml" -o -name "*.svg" -o -name "*.png" \) ! -name "book.xml" -print)
7
8BOOKPACKAGES := book-enea-linux-open-source
9BOOKDESC_$(BOOKPACKAGES) := "Enea Linux Open Source Report"
10BOOKDEFAULTCONDITION := $(DEFAULTCONDITIONS)
diff --git a/doc/book-enea-linux-release-info/doc/about_release.xml b/doc/book-enea-linux-release-info/doc/about_release.xml
new file mode 100644
index 0000000..99d6dba
--- /dev/null
+++ b/doc/book-enea-linux-release-info/doc/about_release.xml
@@ -0,0 +1,579 @@
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
3"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
4<chapter id="relinfo-about-release">
5 <title>About This Release</title>
6
7 <para>This release of Enea Linux <xi:include
8 href="../../s_docsrc_common/pardoc-distro.xml"
9 xmlns:xi="http://www.w3.org/2001/XInclude"
10 xpointer="element(EneaLinux_REL_VER/1)" /> provides a publicly available
11 Enea Linux distribution for a selected set of targets. This release is
12 generated from the yocto distribution using the branch <xi:include
13 href="../../s_docsrc_common/pardoc-distro.xml"
14 xmlns:xi="http://www.w3.org/2001/XInclude"
15 xpointer="element(Yocto_NAME/1)" />.<remark>INFO Yocto distro autopicked
16 from poky.ent as DISTRO_NAME_NO_CAP</remark></para>
17
18 <section id="relinfo-provided-contents">
19 <title>Provided Contents</title>
20
21 <informaltable>
22 <tgroup cols="1">
23 <thead>
24 <row>
25 <entry>Item</entry>
26 </row>
27 </thead>
28
29 <tbody>
30 <row>
31 <entry><para>Source code, recipes, scripts, etc for building the
32 distro and SDKs. See <xref
33 linkend="relinfo-getting-enea-linux" />.</para></entry>
34 </row>
35
36 <row>
37 <entry><para>Documentation. See <xref
38 linkend="relinfo-documentation" />.</para></entry>
39 </row>
40
41 <row>
42 <entry>Pre-built binaries (kernel image, dtb &amp; rootfs)</entry>
43 </row>
44
45 <row>
46 <entry>Pre-built packages (RPM)</entry>
47 </row>
48
49 <row>
50 <entry>Eclipse executable plus development tools for command line
51 and Eclipse</entry>
52 </row>
53 </tbody>
54 </tgroup>
55 </informaltable>
56 </section>
57
58 <section id="relinfo-supported-targets">
59 <title>Supported Targets</title>
60
61 <informaltable>
62 <tgroup cols="3">
63 <colspec align="left" colname="c1" colwidth="1*" />
64
65 <colspec align="left" colname="c2" colwidth="1*" />
66
67 <colspec align="left" colname="c3" colwidth="1*" />
68
69 <thead valign="bottom">
70 <row>
71 <entry>Target</entry>
72
73 <entry>Architecture</entry>
74
75 <entry>Specification</entry>
76 </row>
77 </thead>
78
79 <tbody>
80 <row>
81 <entry>P2041RDB</entry>
82
83 <entry><para>Power, e500mc</para></entry>
84
85 <entry><ulink
86 url="http://www.nxp.com/products/microcontrollers-and-processors/power-architecture-processors/qoriq-power-architecture-processors/p2041-qoriq-reference-design-board:RDP2041BOARD">See
87 link to NXP's datasheet</ulink></entry>
88 </row>
89
90 <row>
91 <entry>LS1021a-IoT</entry>
92
93 <entry><para>ARM Cortex-A7</para></entry>
94
95 <entry><ulink
96 url="http://www.nxp.com/products/microcontrollers-and-processors/arm-processors/qoriq-arm-processors/qoriq-ls1021a-iot-gateway-reference-design:LS1021A-IoT">See
97 link to NXP's datasheet</ulink></entry>
98 </row>
99
100 <row>
101 <entry>QEMUARM</entry>
102
103 <entry><para>ARM</para></entry>
104
105 <entry><ulink url="wiki.qemu.org/Main_Page">See link to QEmu web
106 page</ulink></entry>
107 </row>
108
109 <row>
110 <entry>QEMUPCC</entry>
111
112 <entry><para>PPC</para></entry>
113
114 <entry><ulink url="wiki.qemu.org/Main_Page">See link to QEmu web
115 page</ulink></entry>
116 </row>
117
118 <row>
119 <entry>QEMUX86</entry>
120
121 <entry><para>X86</para></entry>
122
123 <entry><ulink url="wiki.qemu.org/Main_Page">See link to QEmu web
124 page</ulink></entry>
125 </row>
126 </tbody>
127 </tgroup>
128 </informaltable>
129
130 <para><remark>FIXME should autocreate a list of targets, hopefully from
131 the generated README file, by using MAKEFILE to update pardoc-distro
132 AND/OR also auto-create an XML file to include here with description text
133 for each target etc..</remark></para>
134 </section>
135
136 <section id="relinfo-supported-host-environment">
137 <title>Supported Host Environment</title>
138
139 <itemizedlist>
140 <listitem>
141 <para>Ubuntu 14.04 LTS, 64-bit<remark>was
142 EneaLinux_HOST_VER</remark></para>
143 </listitem>
144 </itemizedlist>
145 </section>
146
147 <section id="relinfo-supported-versions">
148 <title>Supported Versions</title>
149
150 <informaltable>
151 <tgroup cols="2">
152 <thead valign="bottom">
153 <row>
154 <entry>Item</entry>
155
156 <entry>Version</entry>
157 </row>
158 </thead>
159
160 <tbody>
161 <row>
162 <entry><para>Yocto</para></entry>
163
164 <entry><xi:include href="../../s_docsrc_common/pardoc-distro.xml"
165 xmlns:xi="http://www.w3.org/2001/XInclude"
166 xpointer="element(Yocto_VER/1)" /> (<xi:include
167 href="../../s_docsrc_common/pardoc-distro.xml"
168 xmlns:xi="http://www.w3.org/2001/XInclude"
169 xpointer="element(Yocto_NAME/1)" />)<remark>INFO: Auto-fetched
170 from poky.ent via pardoc-distro.xml</remark></entry>
171 </row>
172
173 <row>
174 <entry>Poky source</entry>
175
176 <entry><xi:include href="../../s_docsrc_common/pardoc-distro.xml"
177 xmlns:xi="http://www.w3.org/2001/XInclude"
178 xpointer="element(Poky_VER/1)" /><remark>INFO: Auto-fetched from
179 poky.ent via pardoc-distro.xml</remark></entry>
180 </row>
181
182 <row>
183 <entry>GCC version</entry>
184
185 <entry>5.3<remark>was EneaLinux_GCC_VER Not in poky.ent
186 </remark></entry>
187 </row>
188
189 <row>
190 <entry>Linux kernel version<remark>was EneaLinux_KERNEL_VER Not in
191 poky.ent</remark></entry>
192
193 <entry><para>3.12 (P2041RDB &amp; LS1021a-IoT)</para><para>4.4
194 (QEmu targets)</para></entry>
195 </row>
196
197 <row>
198 <entry>Eclipse</entry>
199
200 <entry>4.5 (Mars)<remark>was Eclipse_VER and was Eclipse_NAME Not
201 in poky.ent</remark></entry>
202 </row>
203
204 <row>
205 <entry>Packages</entry>
206
207 <entry>See <xref linkend="relinfo-packages" /></entry>
208 </row>
209 </tbody>
210 </tgroup>
211 </informaltable>
212 </section>
213
214 <section id="relinfo-packages">
215 <title>Provided Packages</title>
216
217 <para><informaltable>
218 <tgroup cols="2">
219 <colspec align="left" colname="c1" colwidth="3*" />
220
221 <colspec align="left" colname="c2" colwidth="6*" />
222
223 <thead valign="bottom">
224 <row>
225 <entry>Type of Packages and Provider</entry>
226
227 <entry>Reference</entry>
228 </row>
229 </thead>
230
231 <tbody>
232 <row>
233 <entry>Packages in Enea Linux images</entry>
234
235 <entry><para>See the <olink
236 targetdoc="book_enea_linux_open_source"
237 targetptr="book_enea_linux_open_source"><trademark
238 class="registered">Enea</trademark> Linux Open Source
239 Report</olink></para></entry>
240 </row>
241
242 <row>
243 <entry>Tools in the Eclipse tarball provided with Enea
244 Linux</entry>
245
246 <entry><para>See the <olink
247 targetdoc="book_enea_linux_eclipse_open_source"
248 targetptr="book_enea_linux_eclipse_open_source"><trademark
249 class="registered">Enea</trademark> Linux Eclipse Open Source
250 Report</olink></para></entry>
251 </row>
252
253 <row>
254 <entry>Packages provided by Yocto</entry>
255
256 <entry><para>See the Yocto "Release Notes" <xi:include
257 href="../../docsrc_common/pardoc-distro.xml"
258 xmlns:xi="http://www.w3.org/2001/XInclude"
259 xpointer="element(ULINK_YOCTO_RELEASE_NOTES/1)" /></para></entry>
260 </row>
261 </tbody>
262 </tgroup>
263 </informaltable></para>
264 </section>
265
266 <section id="relinfo-provided-sdk">
267 <title>Provided Toolchain/s (SDK)</title>
268
269 <para>The SDK contains toolchains supporting cross-compilation of
270 applications for the targets on an x86_64 host. See the <olink
271 targetdoc="book_enea_linux_app_dev_guide"
272 targetptr="book_enea_linux_app_dev_guide"><trademark
273 class="registered">Enea</trademark> Linux Application Development
274 Guide</olink> for information on how to build and install a
275 toolchain.</para>
276 </section>
277
278 <section id="relinfo-provided-drivers">
279 <title>Supported Drivers</title>
280
281 <informaltable>
282 <tgroup cols="6">
283 <colspec align="left" colwidth="3*" />
284
285 <colspec align="center" colwidth="2*" />
286
287 <colspec align="center" colwidth="2*" />
288
289 <colspec align="center" colwidth="2*" />
290
291 <colspec align="center" colwidth="2*" />
292
293 <colspec align="center" colwidth="2*" />
294
295 <thead>
296 <row>
297 <entry>Driver</entry>
298
299 <entry>P2041RDB</entry>
300
301 <entry>LS1021a-IoT</entry>
302
303 <entry>QEMUARM</entry>
304
305 <entry>QEMUPCC</entry>
306
307 <entry>QEMUX86</entry>
308 </row>
309 </thead>
310
311 <tbody>
312 <row>
313 <entry>Ethernet</entry>
314
315 <entry></entry>
316
317 <entry></entry>
318
319 <entry></entry>
320
321 <entry></entry>
322
323 <entry></entry>
324 </row>
325
326 <row>
327 <entry>I2C</entry>
328
329 <entry></entry>
330
331 <entry></entry>
332
333 <entry></entry>
334
335 <entry></entry>
336
337 <entry></entry>
338 </row>
339
340 <row>
341 <entry>SPI</entry>
342
343 <entry></entry>
344
345 <entry></entry>
346
347 <entry></entry>
348
349 <entry></entry>
350
351 <entry></entry>
352 </row>
353
354 <row>
355 <entry>PCI Express</entry>
356
357 <entry></entry>
358
359 <entry></entry>
360
361 <entry></entry>
362
363 <entry></entry>
364
365 <entry></entry>
366 </row>
367
368 <row>
369 <entry>USB</entry>
370
371 <entry></entry>
372
373 <entry></entry>
374
375 <entry></entry>
376
377 <entry></entry>
378
379 <entry></entry>
380 </row>
381
382 <row>
383 <entry>Flash</entry>
384
385 <entry></entry>
386
387 <entry></entry>
388
389 <entry></entry>
390
391 <entry></entry>
392
393 <entry></entry>
394 </row>
395
396 <row>
397 <entry>SD/SDHC/SDXC</entry>
398
399 <entry>X</entry>
400
401 <entry></entry>
402
403 <entry></entry>
404
405 <entry></entry>
406
407 <entry></entry>
408 </row>
409
410 <row>
411 <entry>RTC</entry>
412
413 <entry></entry>
414
415 <entry></entry>
416
417 <entry></entry>
418
419 <entry></entry>
420
421 <entry></entry>
422 </row>
423 </tbody>
424 </tgroup>
425 </informaltable>
426 </section>
427
428 <section id="relinfo-documentation">
429 <title>Provided Documentation</title>
430
431 <para>The following Enea Linux manuals are available:</para>
432
433 <itemizedlist spacing="compact">
434 <listitem>
435 <para>README.htm - top page of the documentation<remark>FIXME Needs to
436 be fixed (= created and added to make dist). OR remove this
437 line?</remark></para>
438 </listitem>
439
440 <listitem>
441 <para>README - text files describing various details like build- and
442 boot-commands - the commands are also seen in <xref
443 linkend="relinfo-build-boot" />.</para>
444 </listitem>
445
446 <listitem>
447 <para><trademark class="registered">Enea</trademark> Linux Release
448 Information (this document)</para>
449 </listitem>
450
451 <listitem>
452 <para><olink targetdoc="book_enea_linux_open_source"
453 targetptr="book_enea_linux_open_source"><trademark
454 class="registered">Enea</trademark> Linux Open Source
455 Report</olink></para>
456 </listitem>
457
458 <listitem>
459 <para><olink targetdoc="book_enea_linux_eclipse_open_source"
460 targetptr="book_enea_linux_eclipse_open_source"><trademark
461 class="registered">Enea</trademark> Linux Eclipse Open Source
462 Report</olink></para>
463 </listitem>
464
465 <listitem>
466 <para><olink targetdoc="book_enea_linux_platforms_dev_guide"
467 targetptr="book_enea_linux_platforms_dev_guide"><trademark
468 class="registered">Enea</trademark> Linux Platforms Development
469 Guide</olink> - Generic version included in this distribution</para>
470 </listitem>
471
472 <listitem>
473 <para><olink targetdoc="book_enea_linux_app_dev_guide"
474 targetptr="book_enea_linux_app_dev_guide"><trademark
475 class="registered">Enea</trademark> Linux Application Development
476 Guide</olink> - Generic version included in this distribution</para>
477 </listitem>
478 </itemizedlist>
479
480 <para>In addition to the local versions of the generic guides reached via
481 the above links, you can also read the latest versions via the direct
482 online links below. When accessing them via the links below, you need to
483 logon to the portal.enea.com. These online versions may be
484 updated/improved asynchronously with the releases.<remark>INFO: Should be
485 accessable to all customer's with Enea Linux 6 or later</remark>
486 <remark>INFO: On portal, generic guides can NOT link TO the distro
487 specific guides, but the distro specific guides can link to the generic -
488 HOWEVER these links (found above) will go to the versions inside the
489 delivery, instead of to the latest versions.</remark></para>
490
491 <itemizedlist spacing="compact">
492 <listitem>
493 <para><ulink
494 url="https://portal.enea.com/wp-content/uploads/_mediavault/book-enea-linux-application-dev-guide.pdf">Enea
495 Linux Application Development Guide</ulink> - Latest generic version
496 online</para>
497 </listitem>
498
499 <listitem>
500 <para><ulink
501 url="https://portal.enea.com/wp-content/uploads/_mediavault/book-enea-linux-platforms-dev-guide.pdf">Enea
502 Linux Platforms Development Guide</ulink> - Latest generic version
503 online</para>
504 </listitem>
505 </itemizedlist>
506
507 <para>How to use Eclipse is described inside the Enea Linux user's guides.
508 Eclipse's own documentation is available in directory
509 <filename>eclipse/readme</filename>.</para>
510 </section>
511
512 <section id="relinfo-provided-other">
513 <title>Other Provided Functionality</title>
514
515 <para>The functionality in a distribution depends on included packages in
516 the default image. In addition to the supported features, the following
517 functionality is also available, among other:</para>
518
519 <itemizedlist spacing="compact">
520 <listitem>
521 <para>On target T4240RDB:</para>
522
523 <itemizedlist spacing="compact">
524 <listitem>
525 <para>SRIO support in user space (NWRITE, NREAD, msg,
526 doorbell)</para>
527 </listitem>
528
529 <listitem>
530 <para>USDPAA</para>
531 </listitem>
532 </itemizedlist>
533 </listitem>
534
535 <listitem>
536 <para>Smart Package Management</para>
537 </listitem>
538
539 <listitem>
540 <para>Eclipse ADT (excl. QEMU) and plug-ins for application
541 development: LTTng, Perf, LatencyTOP, PowerTOP, SystemTap</para>
542 </listitem>
543 </itemizedlist>
544 </section>
545
546 <section id="relinfo-security-fixes">
547 <title>Security Fixes</title>
548
549 <para>See <ulink
550 url="http://www.enea.com/solutions/Enea-Linux/Security/CVEs-list">List of
551 CVEs addressed in Enea Linux</ulink> and <ulink
552 url="http://www.enea.com/solutions/Enea-Linux/Security#how-to-get-security-updates">How
553 to Get Security Updates</ulink>.</para>
554 </section>
555
556 <section id="relinfo-excluded">
557 <title>Intentional Limitations</title>
558
559 <para>The following functionality supported in other Enea Linux releases
560 has been excluded in this release:<itemizedlist spacing="compact">
561 <listitem>
562 <para>Eclipse plug-ins for image creation (HOB)</para>
563 </listitem>
564
565 <listitem>
566 <para>Networking features: DPDK vSwitch, DPDK</para>
567 </listitem>
568
569 <listitem>
570 <para>Real-time features: Fully Preemptible Kernel (FPK) from the
571 PREEMPT_RT patch</para>
572 </listitem>
573
574 <listitem>
575 <para>Memory features: NUMA</para>
576 </listitem>
577 </itemizedlist></para>
578 </section>
579</chapter> \ No newline at end of file
diff --git a/doc/book-enea-linux-release-info/doc/book.xml b/doc/book-enea-linux-release-info/doc/book.xml
new file mode 100644
index 0000000..d1226b9
--- /dev/null
+++ b/doc/book-enea-linux-release-info/doc/book.xml
@@ -0,0 +1,18 @@
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
3"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd" [
4]>
5<book id="book_enea_linux_release_info">
6 <title><trademark class="registered">Enea</trademark> Linux Release Information</title>
7 <subtitle>Release Version
8 <xi:include href="../../s_docsrc_common/pardoc-distro.xml" xpointer="element(EneaLinux_REL_VER/1)"
9 xmlns:xi="http://www.w3.org/2001/XInclude" /></subtitle>
10 <xi:include href="../../s_docbuild/template/docsrc_common/bookinfo_userdoc.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
11 <xi:include href="about_release.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
12 <xi:include href="prerequisites.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
13 <xi:include href="getting_enea_linux.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
14 <xi:include href="build_boot_generated.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
15 <xi:include href="main_changes.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
16 <xi:include href="known_bugs_and_limitations.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
17 <xi:include href="../../s_docbuild/template/docsrc_common/contacting_enea_enea_linux.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
18</book>
diff --git a/doc/book-enea-linux-release-info/doc/build_boot_template.xml b/doc/book-enea-linux-release-info/doc/build_boot_template.xml
new file mode 100644
index 0000000..ca60932
--- /dev/null
+++ b/doc/book-enea-linux-release-info/doc/build_boot_template.xml
@@ -0,0 +1,26 @@
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
3"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
4<chapter id="relinfo-build-boot">
5 <title>Target Specific Build and Boot Instructions</title>
6
7 <para>If the source has been fetched (<xref
8 linkend="relinfo-getting-source" />), there will be a target specific README
9 file containing the build and boot instructions. To make it easier for the
10 reader, the contents of these build/boot instruction have been extracted
11 into the following sections.</para>
12
13 <para><remark>NOTE: Only EDIT THE TEMPLATE FILE! A new build_boot.xml file
14 is created from the template and sections are added below automatically from
15 the README files for each target when building the book! Only in the
16 template file you see a line below with SCRIPT_...._HERE and the text
17 telling that this is a template file.</remark></para>
18
19 <para>SCRIPT_INCLUDES_BUILD_BOOT_SECTIONS_HERE</para>
20
21 <para><emphasis role="bold">This is a template file which you can edit. When
22 the book is built, a new XML chapter file is created where the above part of
23 this file is copied to the new XML file and all from the line above is
24 replaced automatically by build and boot sections from the README
25 files!</emphasis></para>
26</chapter> \ No newline at end of file
diff --git a/doc/book-enea-linux-release-info/doc/extracted_info.xml b/doc/book-enea-linux-release-info/doc/extracted_info.xml
new file mode 100644
index 0000000..7156817
--- /dev/null
+++ b/doc/book-enea-linux-release-info/doc/extracted_info.xml
@@ -0,0 +1,18 @@
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
3"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
4<chapter id="extracted-info">
5 <title>TEST Extracted Info from git and from poky for Each Target</title>
6
7 <para>xxxx</para>
8
9
10<section id="someinfo">
11 <title>Some Info Extracted Using git Into the Manual</title>
12 <para>Current URL of the manifest git is: git@git.enea.se:linux/manifests/el6-standard.git</para>
13 <para>Current HASH of the manifest git is: 7d848c27c76b48442df23e5aeb174573f0aba6c5</para>
14 <para>Corresponding meta-el-X should be meta-el-standard translated from the URL</para>
15 <para>Tips: A few values can be added as BOOK_PARAM_X (X= 1,2,3,4,5) env.variables when the book it build instead</para>
16</section>
17 <xi:include href="targetscontain.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
18</chapter>
diff --git a/doc/book-enea-linux-release-info/doc/extracted_info_template.xml b/doc/book-enea-linux-release-info/doc/extracted_info_template.xml
new file mode 100644
index 0000000..5f8eda4
--- /dev/null
+++ b/doc/book-enea-linux-release-info/doc/extracted_info_template.xml
@@ -0,0 +1,10 @@
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
3"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
4<chapter id="extracted-info">
5 <title>TEST Extracted Info from git and from poky for Each Target</title>
6
7 <para>xxxx</para>
8
9
10</chapter> \ No newline at end of file
diff --git a/doc/book-enea-linux-release-info/doc/getting_enea_linux.xml b/doc/book-enea-linux-release-info/doc/getting_enea_linux.xml
new file mode 100644
index 0000000..b356435
--- /dev/null
+++ b/doc/book-enea-linux-release-info/doc/getting_enea_linux.xml
@@ -0,0 +1,132 @@
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
3"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
4<chapter id="relinfo-getting-enea-linux">
5 <title>Getting Enea Linux</title>
6
7 <section id="relinfo-getting-pre-built-images">
8 <title>Getting Pre-built Binaries</title>
9
10 <para>Application developers will download pre-complied images from the
11 Enea Portal or will receive prebuilt images from the platform developers.
12 For further information on this see <olink
13 targetdoc="book_enea_linux_app_dev_guide"
14 targetptr="book_enea_linux_app_dev_guide">Enea Linux Application
15 Development Guide</olink>.</para>
16 </section>
17
18 <section id="relinfo-getting-source">
19 <title>Getting the Source</title>
20
21 <para>The source for this Enea Linux release is available for cloning from
22 a set of Git repositories. To manage the different repositories, Google's
23 repo tool is used. The basic idea is to store a list with (repo-URL,
24 version) tuples in a separate file, known as the manifest. The repo tool
25 is then used to traverse the list and clone the specified versions of the
26 repositories. See <ulink
27 url="https://code.google.com/p/git-repo/">https://code.google.com/p/git-repo/</ulink>
28 for more info.</para>
29
30 <para>To use repo tool to download the source for Enea Linux, follow the
31 steps below:</para>
32
33 <orderedlist>
34 <listitem>
35 <para>Make sure that the repo tool is installed. If not, follow the
36 instructions below:</para>
37
38 <para><programlisting>$ curl https://storage.googleapis.com/git-repo-downloads/repo &gt; ~/bin/repo
39$ chmod a+x ~/bin/repo</programlisting>The instruction assumes that ~/bin
40 exists and is included in the PATH variable.</para>
41 </listitem>
42
43 <listitem>
44 <para>Use the repo tool to download the source:<remark>FIXME: Before
45 final release the tag for the manifest must be set in Makefile as
46 MANIFESTHASH, typically something like refs/tags/EL6. Before that, a
47 generic branch name is used instead, e.g. krogoth in
48 Makefile</remark></para>
49
50 <para><programlisting>$ mkdir enea-linux
51$ cd enea-linux
52$ repo init -u <xi:include href="../../s_docsrc_common/pardoc-distro.xml"
53 xmlns:xi="http://www.w3.org/2001/XInclude"
54 xpointer="element(EneaLinux_MANIFESTURL/1)" /> \
55 -b <xi:include href="../../s_docsrc_common/pardoc-distro.xml"
56 xmlns:xi="http://www.w3.org/2001/XInclude"
57 xpointer="element(EneaLinux_MANIFESTHASH/1)" /> \
58 -m &lt;manifest file&gt;
59$ repo sync</programlisting></para>
60
61 <para>The URI and 'refs/tags/EL6' specifies the location and version
62 of the repository where the manifest file is stored. The repo tool
63 assumes that the argument after '-b' is a branch, and to force
64 interpretation as a tag, the prefix refs/tags/ is needed.</para>
65
66 <para>The parameter &lt;manifest file&gt; depends on the target. See
67 the following table:</para>
68
69 <informaltable>
70 <tgroup cols="2">
71 <thead>
72 <row>
73 <entry align="center">Target</entry>
74
75 <entry align="center">Manifest file</entry>
76 </row>
77 </thead>
78
79 <tbody>
80 <row>
81 <entry>P2041RDB</entry>
82
83 <entry><para>p2041rdb/default.xml</para></entry>
84 </row>
85
86 <row>
87 <entry>LS1021a-IoT</entry>
88
89 <entry><para>ls1021aiot/default.xml</para></entry>
90 </row>
91
92 <row>
93 <entry>QEMUARM</entry>
94
95 <entry><para>qemuarm/default.xml</para></entry>
96 </row>
97
98 <row>
99 <entry>QEMUPCC</entry>
100
101 <entry><para>qemuppc/default.xml</para></entry>
102 </row>
103
104 <row>
105 <entry>QEMUX86</entry>
106
107 <entry><para>qemux86/default.xml</para></entry>
108 </row>
109 </tbody>
110 </tgroup>
111 </informaltable>
112 </listitem>
113 </orderedlist>
114
115 <para>The source code is now downloaded. Current directory will contain a
116 README file with instructions on how to build the distro and boot the
117 target. For convenience, these instructions are also copied into this
118 document. See <xref linkend="relinfo-build-boot" />.</para>
119
120 <para>It is not necessary to explicitly clone the manifest repository
121 since that is done automatically by the repo tool. To see the current
122 manifest, e.g. to get a list of the repositories, use the following
123 command:</para>
124
125 <programlisting>$ repo manifest</programlisting>
126
127 <remark>The UG should be updated with instructions on how to add
128 customisations. That section should also contain some more info about the
129 manifest: The manifest templates, using a branch instead of the tag EL6,
130 ... When this is done a reference from here should be added.</remark>
131 </section>
132</chapter> \ No newline at end of file
diff --git a/doc/book-enea-linux-release-info/doc/known_bugs_and_limitations.xml b/doc/book-enea-linux-release-info/doc/known_bugs_and_limitations.xml
new file mode 100644
index 0000000..5058404
--- /dev/null
+++ b/doc/book-enea-linux-release-info/doc/known_bugs_and_limitations.xml
@@ -0,0 +1,453 @@
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
3"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
4<chapter id="bugs-limitations">
5 <title>Known Problems in This Release</title>
6
7 <para>The open source projects are continuously working on correcting
8 reported problems. Corrections to bugs detected by Enea have been
9 upstreamed, and the corrections been included in Enea Linux regardless of
10 when they will be included by the open source project. Remaining issues are
11 listed below, and workarounds to some of the problems are described in
12 chapter <emphasis>Troubleshooting</emphasis> in the <olink
13 targetdoc="book_enea_linux_users_guide"
14 targetptr="book_enea_linux_users_guide"><trademark
15 class="registered">Enea</trademark> Linux User's Guide</olink>.</para>
16
17 <section id="bugs-limitations-yocto">
18 <title>Yocto</title>
19
20 <para>Open source projects often use bug databases for much more than
21 tracking bugs. The Yocto Project's Bugzilla database also functions as a
22 feature tracking program, both for the current release and for future
23 releases, and a way to track non-software issues, like documentation
24 changes.</para>
25
26 <para>The following page shows a sampling of the database: <ulink
27 url="https://www.yoctoproject.org/tools-resources/bugs">https://www.yoctoproject.org/tools-resources/bugs</ulink>.</para>
28
29 <para>For the full database, visit <ulink
30 url="https://bugzilla.yoctoproject.org">https://bugzilla.yoctoproject.org</ulink>.</para>
31 </section>
32
33 <section id="bugs-limitations-sdk">
34 <title>Toolchain / SDK</title>
35
36 <itemizedlist spacing="compact">
37 <listitem>
38 <para>Building the kernel might fail if GNU Make of version 3.82 has
39 been installed on the host. The mandatory recovery action is to revert
40 to version 3.81.</para>
41 </listitem>
42
43 <listitem>
44 <para>Installing a second toolchain in the same directory as a
45 previous one will break the $PATH variable of the first
46 one.<remark>LXCR-3624</remark></para>
47 </listitem>
48 </itemizedlist>
49 </section>
50
51 <section id="bugs-package-manager">
52 <title>Smart Package Manager</title>
53
54 <para>Installation of some packages might currently fail when installing
55 using the Smart Package Manager. An example is the qemu package. Errors
56 can e.g. be reported by smart about conflicts with files from other
57 packages.</para>
58
59 <para>The recommended solution to this problem is to install the failing
60 package using rpm, already available in enea-image-base. In order to
61 install it using rpm, first install rpm using the command <command>smart
62 install rpm</command>, then download the package to the target, and
63 finally on the target use <command>rpm -i
64 &lt;packagename&gt;.rpm</command>. If not installed, several dependencies
65 can be reported as "Failed dependencies" with lines "x is needed by y". In
66 that case, install the required packages "x" found by dependencies by
67 using the smart package manager. Add a channel to an accessible directory
68 containing all missing rpm packages. Add packages detected to be missing,
69 until all dependencies are resolved.<remark>FIXME It would be nice to add
70 also a PowerPC example with qemu failing, the example below is for
71 ARM.</remark></para>
72
73 <section>
74 <title>Example with Failing QEMU Package</title>
75
76 <para>As an example, the qemu installation can show the following
77 error.</para>
78
79 <note>
80 <para>The example below is for ARM, including the RPM names. For
81 PowerPC similar errors can occur and other packages are needed.</para>
82 </note>
83
84 <para><emphasis role="bold">error: file /var/run from install of
85 qemu-2.1.0+git0+541bbb07eb-r0.0.aarch64 conflicts with file from package
86 base-files-3.0.14-r89.0.hierofalcon</emphasis></para>
87
88 <para>A solution to this problem is to install the above qemu package
89 using rpm, already available in enea-image-base. In order to install it
90 using rpm, first install rpm using the command <command>smart install
91 rpm</command>, then download the above package from
92 &lt;build_dir&gt;/tmp/deploy/rpm/aarch64. On target, use <command>rpm -i
93 qemu-2.1.0+git0+541bbb07eb-r0.0.aarch64.rpm</command>. If not installed,
94 several dependencies can be seen, e.g.:</para>
95
96 <programlisting>error: Failed dependencies:
97 libpixman-1-0 &gt;= 0.32.6 is needed by qemu-2.1.0+git0+541bbb07eb-r0.0.aarch64
98 libpixman-1.so.0()(64bit) is needed by qemu-2.1.0+git0+541bbb07eb-r0.0.aarch64
99 libglib-2.0.so.0()(64bit) is needed by qemu-2.1.0+git0+541bbb07eb-r0.0.aarch64
100 libcap2 &gt;= 2.22 is needed by qemu-2.1.0+git0+541bbb07eb-r0.0.aarch64
101 libglib-2.0-0 &gt;= 2.40.0 is needed by qemu-2.1.0+git0+541bbb07eb-r0.0.aarch64
102 bluez4 &gt;= 4.101 is needed by qemu-2.1.0+git0+541bbb07eb-r0.0.aarch64
103 libbluetooth.so.3()(64bit) is needed by qemu-2.1.0+git0+541bbb07eb-r0.0.aarch64
104 libcap.so.2()(64bit) is needed by qemu-2.1.0+git0+541bbb07eb-r0.0.aarch64</programlisting>
105
106 <para>Install the required packages found by dependencies by using the
107 smart package manager, as specified in the User's Guide, by adding a
108 channel to an accessible directory containing all of the above rpm
109 packages. Suggestion for installing required packages, as in the
110 following example for qemu and ARM:</para>
111
112 <programlisting>smart install bash
113 smart install libcap
114 smart install bluez4
115 smart install libpixman-1-0
116 rpm -i qemu-2.1.0+git0+541bbb07eb-r0.0.aarch64.rpm</programlisting>
117
118 <para>Add packages detected to be missing until all dependencies are
119 resolved.</para>
120 </section>
121 </section>
122
123 <section id="bugs-limitations-eclipse">
124 <title>Eclipse Tools</title>
125
126 <para>The Eclipse tools provided together with Enea Linux are part of the
127 Yocto Application Development Toolkit (ADT) and are maintained by
128 different open source projects. The list below outlines current problems
129 with the plug-ins as such, as well as kernel limitations when using a tool
130 towards the mentioned target:</para>
131
132 <itemizedlist spacing="compact">
133 <listitem>
134 <para><emphasis role="bold">HOB</emphasis> is currently not supported
135 on Red Hat.<remark>LXCR-2994, LXCR-3222</remark></para>
136 </listitem>
137
138 <listitem>
139 <para><emphasis role="bold">SystemTap</emphasis> is currently not
140 supported on Red Hat.<remark>LXCR-3274</remark></para>
141 </listitem>
142
143 <listitem>
144 <para>When running <emphasis role="bold">SystemTap</emphasis> for the
145 first time on a target, you may need to manually ssh into the target
146 beforehand, in order to add the RSA key of the host to the file
147 known_hosts. Failing to do so will result in Eclipse freezing with the
148 progress window displayed, and a terminal message <literal>The
149 authenticity of host &lt;target_ip&gt; can't be
150 established</literal>.</para>
151 </listitem>
152
153 <listitem>
154 <para><emphasis role="bold">SystemTap</emphasis> scripts sometimes
155 result crosstap error messages about inaccessible variables. This is
156 not an issue with the tool itself, but stems from the compiler
157 optimizing away some of the variables. See workaround in the User's
158 Guide.<remark>LXCR-2204</remark></para>
159 </listitem>
160
161 <listitem>
162 <para>Currently <emphasis role="bold">BitBake Commander</emphasis>
163 projects can only be created for a local connection. Due to an
164 upstream bug, selecting a remote connection causes the Eclipse GUI to
165 freeze such that it must be killed.<remark>LXCR-2801</remark></para>
166 </listitem>
167
168 <listitem>
169 <para>A limitation currently makes <emphasis
170 role="bold">Eclipse</emphasis> non-responding when running a streaming
171 script, i.e. a script that runs continuously.</para>
172 </listitem>
173
174 <listitem>
175 <para>The <emphasis role="bold">LatencyTop</emphasis> plug-in for the
176 P2041 target reports some errors due to the permissions configuration
177 on the target, but it works correctly if the
178 <literal>latencytop</literal> command is issued from the Eclipse
179 console.<remark>LXCR-6303</remark></para>
180 </listitem>
181
182 <listitem>
183 <para>Currently <emphasis role="bold">LatencyTOP</emphasis> is not
184 available for ARM kernels built with SMP support due to an ARM
185 specific limitation in the Linux kernel.</para>
186 </listitem>
187
188 <listitem>
189 <para><emphasis role="bold">PowerTOP</emphasis> sometimes freezes
190 Eclipse after displaying a progress bar with message
191 <literal>Gathering powertop data file
192 remotely</literal>.<remark>LXCR-3143</remark></para>
193 </listitem>
194
195 <listitem>
196 <para>When running <emphasis role="bold">powertop</emphasis> from the
197 Eclipse terminal towards p2020rdb targets it is necessary to specify
198 the full path in order to find the
199 command.<remark>LXCR-2265</remark></para>
200 </listitem>
201
202 <listitem>
203 <para>When running <emphasis role="bold">powertop</emphasis> from the
204 Eclipse terminal towards zynq ZC702 targets it is necessary to specify
205 the full path in order to find the
206 command.<remark>LXCR-2265</remark></para>
207 </listitem>
208
209 <listitem>
210 <para>The <emphasis role="bold">PowerTOP</emphasis> console in Eclipse
211 might display messages like <literal>Cannot load
212 /var/cache/powertop/&lt;filename&gt;</literal>. As a workaround, run
213 <emphasis role="bold">powertop --calibrate</emphasis> for a while to
214 generate the missing files. See <ulink
215 url="https://bugzilla.redhat.com/show_bug.cgi?id=698020">Bugzilla
216 #698020</ulink>.<remark>LXCR-3575</remark></para>
217 </listitem>
218
219 <listitem>
220 <para><emphasis role="bold">ssh-only</emphasis> is currently the only
221 supported connection type when running Eclipse tools towards a
222 target.<remark>LXCR-2799</remark></para>
223 </listitem>
224
225 <listitem>
226 <para>Hyphen character '-' in the name of the <emphasis
227 role="bold">Yocto ADT AutoTools project</emphasis> can cause
228 configuration errors.<remark>LXCR-2290</remark></para>
229 </listitem>
230
231 <listitem>
232 <para>The <emphasis role="bold">LTTng</emphasis> tool does not work on
233 <emphasis role="bold">ARM</emphasis> targets, neither from within
234 Eclipse nor when run directly on target, due to a problem with
235 lttng-modules and gcc-4.8.x. See <ulink
236 url="https://bugzilla.yoctoproject.org/show_bug.cgi?id=6015">Bugzilla
237 #6015</ulink>.<remark>LXCR-2653, LXCR-3053</remark></para>
238 </listitem>
239
240 <listitem>
241 <para>When running <emphasis role="bold">LTTng</emphasis> from
242 Eclipse, it sometimes happens that a new session created in the
243 Control View does not immediately appear under Sessions for that
244 target. However, the session is created and will appear after
245 right-clicking "Sessions" and selecting "Refresh".</para>
246 </listitem>
247
248 <listitem>
249 <para>The<emphasis role="bold"> yocto-bsp</emphasis> properties page
250 has some problems in the graphical user interface. Occasionally it is
251 not possible to resize and scroll which makes it impossible to see the
252 lower part of the properties window.<remark>LXCR-3128</remark></para>
253 </listitem>
254
255 <listitem>
256 <para>When connecting an Eclipse project configured for <emphasis
257 role="bold">KGDB</emphasis> (GDB Hardware Debugging) to a 64-bit
258 PowerPC target, GDB fails to connect unless the architecture is
259 specified in <filename>.gdbinit</filename>. See <ulink
260 url="https://bugs.eclipse.org/bugs/show_bug.cgi?id=457697">Bugzilla
261 #457697</ulink>.<remark>LXCR-3984</remark></para>
262 </listitem>
263 </itemizedlist>
264 </section>
265
266 <section id="bugs-limitations-target-side-tools">
267 <title>Target-Side Tools</title>
268
269 <para>The target-side tools can be run stand-alone on target or from
270 Eclipse on host. The issues below are only observed when running the tools
271 directly on target:</para>
272
273 <itemizedlist spacing="compact">
274 <listitem>
275 <para>The <emphasis role="bold">perf report</emphasis> command hangs
276 or crashes due to segmentation fault on ARM
277 targets.<remark>LXCR-2708</remark></para>
278 </listitem>
279
280 <listitem>
281 <para>The <emphasis role="bold">perf report</emphasis> does not show
282 any output for the PandaBoard target.<remark>LXCR-2710</remark></para>
283 </listitem>
284
285 <listitem>
286 <para><emphasis role="bold">perf top</emphasis> displays for a few
287 seconds the error message <literal>Failed to open
288 /tmp/perf-388.map</literal>. Any attempt to exit the subsequent window
289 causes the system to hang.<remark>LXCR-3113</remark></para>
290 </listitem>
291
292 <listitem>
293 <para>When running the <command>perf top</command> command on the i.MX
294 6Quad SABRE Lite target, the console text may become red after running
295 for some time (~ 1 minute).<remark>LXCR-3631</remark></para>
296 </listitem>
297
298 <listitem>
299 <para>The <emphasis role="bold">LTTng</emphasis> tool does not work on
300 <emphasis role="bold">ARM</emphasis> targets, neither from within
301 Eclipse nor when run directly on target, due to a problem with
302 lttng-modules and gcc-4.8.x. See <ulink
303 url="https://bugzilla.yoctoproject.org/show_bug.cgi?id=6015">Bugzilla
304 #6015</ulink>.<remark>LXCR-2653, LXCR-3053</remark></para>
305 </listitem>
306
307 <listitem>
308 <para>The <emphasis role="bold">powertop --calibrate</emphasis>
309 command does not work on the Keystone k2hk-evm
310 target.<remark>LXCR-2660</remark></para>
311 </listitem>
312
313 <listitem>
314 <para>The <emphasis role="bold">powertop</emphasis> command run with
315 <emphasis role="bold">--calibrate</emphasis> or -<emphasis
316 role="bold">-time</emphasis> arguments may show some warnings on
317 PowerPC targets.</para>
318 </listitem>
319
320 <listitem>
321 <para>When running <emphasis role="bold">powertop</emphasis> on
322 <emphasis role="bold">ARM</emphasis> targets, the following
323 warning/error is repeated: <literal>clk_set_rate: failed to set
324 i2c0_aper rate</literal> . Then powertop stops and the statistics are
325 no longer updated. What probably happens here is that the cpufreq
326 governor tries to scale the CPU frequency, but since the I2C clock is
327 derived from the CPU frequency, the I2C driver implements some policy
328 to stay within legal frequency limits and rejects the frequency
329 changes, ending up with the warning message. A <ulink
330 url="https://github.com/Xilinx/linux-xlnx/commit/0fdd34575efae5c8eced09b6b0a1b723bff4d225">fix</ulink>
331 has been merged in the linux-xlnx kernel but is not yet propagated
332 into meta-xilinx.<remark>LXCR-3205, LXCR-3106,
333 LXCR-2660</remark></para>
334 </listitem>
335
336 <listitem>
337 <para>If you get an error message like <literal>Cannot load from file
338 /var/cache/powertop/saved_results.powertop</literal> when running
339 <emphasis role="bold">powertop</emphasis>, there is most likely not
340 enough measurement data collected yet. All you have to do is to keep
341 powertop running for a certain time.<remark>LXCR-2176, LXCR-2660,
342 LXCR-3106</remark></para>
343 </listitem>
344
345 <listitem>
346 <para>The message <literal>Model-specific registers (MSR) not found
347 (try enabling CONFIG_X86_MSR)</literal> appears when you run <emphasis
348 role="bold">powertop</emphasis> on <emphasis
349 role="bold">non-x86</emphasis> targets. powertop is mainly an x86n
350 tool, so it expects X*^_MSR config to be enabled in the kernel. For
351 non-x86 targets this config is not available in the kernel, hence,
352 powertop warns about it, but the message can be ignored on those
353 targets.<remark> LXCR-2176, LXCR-2660, LXCR-3106</remark></para>
354 </listitem>
355
356 <listitem>
357 <para><emphasis role="bold">powertop</emphasis> issues a message
358 <literal>sh: /usr/bin/xset: No such file or directory</literal> when
359 it tries to use xset to configure X display preferences but cannot
360 find the binary since the image by default contains no X system. The
361 message can simply be ignored.<remark>LXCR-2176</remark></para>
362 </listitem>
363 </itemizedlist>
364 </section>
365
366 <section id="bugs-limitations-virtualization">
367 <title>Virtualization</title>
368
369 <itemizedlist spacing="compact">
370 <listitem>
371 <para><emphasis role="bold">virtualization</emphasis>: CONFIG_BRIDGE
372 is not included in the default p2020rdb
373 kernel.<remark>LXVTCR-273</remark></para>
374 </listitem>
375
376 <listitem>
377 <para><emphasis role="bold">lxc</emphasis>:</para>
378
379 <itemizedlist spacing="compact">
380 <listitem>
381 <para>User namespace is not available on PowerPC targets as it is
382 an experimental feature in the 3.8 kernel.</para>
383 </listitem>
384
385 <listitem>
386 <para>If multiple Linux containers are started from the same
387 process and share resources, destroying the containers might
388 result in a race condition with error message "Error in
389 `./lxc-test-concurrent': double free or corruption (fasttop)"
390 followed by an application
391 crash."<remark>LXVTCR-365</remark></para>
392 </listitem>
393 </itemizedlist>
394 </listitem>
395
396 <listitem>
397 <para><emphasis role="bold">libvirt</emphasis>: Default network does
398 not start.<remark>LXVTCR-240</remark></para>
399 </listitem>
400 </itemizedlist>
401 </section>
402
403 <section id="bugs-limitations-doc">
404 <title>Documentation</title>
405
406 <itemizedlist spacing="compact">
407 <listitem>
408 <para><emphasis role="bold">PDF navigation</emphasis>: When using
409 links to open other PDFs, or jump to another place in the same PDF,
410 jumping back sometimes fails. This has been observed when opening a
411 PDF in Adobe Reader, inside a browser with PDF add-on, as well as when
412 the browser is configured to open PDF files in an external PDF reader.
413 As a workaround, open the HTML version of the
414 document.<remark>LXCR-3283</remark></para>
415 </listitem>
416
417 <listitem>
418 <para><emphasis role="bold">Internet Explorer (IE) cannot display some
419 web pages</emphasis>: It is recommended to use Firefox or another
420 non-IE browser for opening external links. If you prefer reading the
421 documentation in PDF format in Adobe Reader (not in an Adobe plug-in
422 in a browser), remember to configure a non-IE browser as default
423 browser to be able to follow all links from within Adobe Reader.
424 Example of a link that does not work in IE: <ulink
425 url="https://rt.wiki.kernel.org/">https://rt.wiki.kernel.org/</ulink>.
426 <remark>LXCR-3281</remark></para>
427 </listitem>
428 </itemizedlist>
429 </section>
430
431 <section id="bugs-limitations-other">
432 <title>Miscellaneous</title>
433
434 <itemizedlist spacing="compact">
435 <listitem>
436 <para>Running <emphasis role="bold">QEMU from an exported
437 rootfs</emphasis> requires sudo privileges on the host.</para>
438 </listitem>
439
440 <listitem>
441 <para><emphasis role="bold">menuconfig</emphasis> requires <emphasis
442 role="bold">Ncurses</emphasis>. If the terminal that pops up
443 immediately closes instead of showing the menuconfig interface, check
444 that the Ncurses development library is installed.</para>
445 </listitem>
446 </itemizedlist>
447 </section>
448
449 <!-- The file with a section below is autocreated by make init -->
450
451 <xi:include href="jiraissues_generated.xml"
452 xmlns:xi="http://www.w3.org/2001/XInclude" />
453</chapter> \ No newline at end of file
diff --git a/doc/book-enea-linux-release-info/doc/main_changes.xml b/doc/book-enea-linux-release-info/doc/main_changes.xml
new file mode 100644
index 0000000..b1e63f5
--- /dev/null
+++ b/doc/book-enea-linux-release-info/doc/main_changes.xml
@@ -0,0 +1,54 @@
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
3"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
4<chapter id="relinfo-changes">
5 <title>Main Changes</title>
6
7 <para>This chapter describes the major changes and additions in the Enea
8 Linux release compared to the previous release (Enea Linux 5.0-ppc).</para>
9
10 <section id="relinfo-changes-other">
11 <title>New Functionality/Enhancements</title>
12
13 <remark>Based in the Jira query: 'project = CPDX and fixVersion = "Enea
14 Linux 6"'</remark>
15
16 <itemizedlist spacing="compact">
17 <listitem>
18 <para>New Yocto version (<xi:include
19 href="../../s_docsrc_common/pardoc-distro.xml"
20 xmlns:xi="http://www.w3.org/2001/XInclude"
21 xpointer="element(Yocto_VER/1)" />). See <ulink
22 url="https://www.yoctoproject.org/downloads/core/krogoth21">https://www.yoctoproject.org/downloads/core/krogoth21</ulink>.</para>
23 </listitem>
24
25 <listitem>
26 <para>Introduction of the repo tool to manage the Git
27 repositories.</para>
28 </listitem>
29
30 <listitem>
31 <para>New targets: LS1021a-IoT &amp; QEMUX86.</para>
32 </listitem>
33 </itemizedlist>
34
35 <para>For details, see the Git logs for the repositories specified in the
36 manifest files. See <xref linkend="relinfo-getting-source" /> for more inf
37 on repos and the manifest.</para>
38 </section>
39
40 <section id="relinfo-fixed">
41 <title>Problems Fixed in this Release</title>
42
43 <para>TBD <remark>FIXME or set condition hidden</remark></para>
44 </section>
45
46 <section id="relinfo-added-drivers">
47 <title>Added Drivers</title>
48
49 <para>TBD <remark>FIXME or set condition hidden</remark></para>
50 </section>
51
52 <xi:include href="pkgdiff_generated.xml"
53 xmlns:xi="http://www.w3.org/2001/XInclude" />
54</chapter> \ No newline at end of file
diff --git a/doc/book-enea-linux-release-info/doc/prerequisites.xml b/doc/book-enea-linux-release-info/doc/prerequisites.xml
new file mode 100644
index 0000000..587b812
--- /dev/null
+++ b/doc/book-enea-linux-release-info/doc/prerequisites.xml
@@ -0,0 +1,49 @@
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
3"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
4<chapter id="prerequisites">
5 <title>Prerequisites</title>
6
7 <para>Building Enea Linux or compiling applications requires some packages
8 to be installed on your Linux development host. See the list of Required
9 Packages for Host Development System, found in the Yocto 2.1 document:
10 <ulink
11 url="https://www.yoctoproject.org/docs/2.1/ref-manual/ref-manual.html#required-packages-for-the-host-development-system">https://www.yoctoproject.org/docs/2.1/ref-manual/ref-manual.html#required-packages-for-the-host-development-system</ulink>.
12 If needed, replace 2.1 with the actual Yocto version in your Enea Linux
13 distribution.<remark>Sorry by the list in the Yocto document do not seem to
14 be enough at all at least for platform building! Therefore we need to add a
15 complete list here, and we actually have a bigger list than we needed, but
16 it's better to have more and not be needed than to lack
17 information.</remark></para>
18
19 <para>Install Host Packages</para>
20
21 <note>
22 <para>The list below is generic and might contain packages that are not
23 necessary. Additional packages might be required to build for some
24 targets. See the Enea Linux Release Information if more packages are
25 needed and which hosts have been tested by Enea for this Enea Linux
26 release.<remark>QUEST: Are the lists below ok? The lists below try to
27 cover ALL normal use cases for both ApplGuide and PlatfGuide, incl.
28 Eclipse, instead of limiting to some use case. Easier to keep
29 updated.</remark></para>
30 </note>
31
32 <section id="inst-host-packages-ubuntu-debian">
33 <title>Ubuntu 14.04 LTS, 64-bit</title>
34
35 <para>Ensure the system is up-to-date:</para>
36
37 <programlisting>$ sudo apt-get update</programlisting>
38
39 <para>For a supported <emphasis role="bold">Ubuntu</emphasis><indexterm>
40 <primary>Ubuntu</primary>
41 </indexterm> distribution you need the following packages:</para>
42
43 <programlisting># sudo apt-get install sed wget subversion git-core
44 coreutils unzip texi2html texinfo libsdl1.2-dev docbook-utils fop gawk
45 python-pysqlite2 diffstat make gcc build-essential xsltproc g++
46 desktop-file-utils chrpath libgl1-mesa-dev libglu1-mesa-dev autoconf automake
47 groff libtool xterm libxml-parser-perl</programlisting>
48 </section>
49</chapter> \ No newline at end of file
diff --git a/doc/book-enea-linux-release-info/doc/targetscontain.xml b/doc/book-enea-linux-release-info/doc/targetscontain.xml
new file mode 100644
index 0000000..42522ae
--- /dev/null
+++ b/doc/book-enea-linux-release-info/doc/targetscontain.xml
@@ -0,0 +1,867 @@
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE section PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
3"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
4<section id="targetscontain">
5 <title>DEMO-Autogenerated chapter - Poky Components in this
6 Distribution</title>
7
8 <note>
9 <para>JUST A DEMO, Examples what could be autoextracted from poky if we
10 want to</para>
11 </note>
12
13 <section>
14 <title>Various Config Files extracted from ls1021atwr/poky</title>
15 <para>poky contains</para>
16 <programlisting>
17bitbake/
18documentation/
19LICENSE
20meta/
21meta-el-common/
22meta-el-standard/
23meta-enea-base-arm/
24meta-enea-bsp-arm/
25meta-enea-bsp-common/
26meta-fsl-arm/
27meta-openembedded/
28meta-poky/
29meta-selftest/
30meta-skeleton/
31meta-yocto/
32meta-yocto-bsp/
33oe-init-build-env*
34oe-init-build-env-memres*
35README
36README.hardware
37scripts/
38</programlisting>
39 <para>Main version information in enea.conf is</para>
40 <programlisting>
41DISTRO_VERSION_MAJOR = "6.0"
42DISTRO_VERSION_MINOR ??= ""
43</programlisting>
44 <para>meta-el-* is meta-el-standard</para>
45 <para>Configuration files in template.p2041rdb</para>
46 <para>
47<programlisting>_____ template.p2041rdb/bblayers.conf.sample ____
48POKY_BBLAYERS_CONF_VERSION = "1"
49BBPATH = "${TOPDIR}"
50BBFILES ?= ""
51BBLAYERS ?= " \
52 ##OEROOT##/meta \
53 ##OEROOT##/meta-el-common \
54 ##OEROOT##/meta-el-standard \
55 ##OEROOT##/meta-enea-bsp-common \
56 ##OEROOT##/meta-enea-bsp-ppc \
57 ##OEROOT##/meta-fsl-ppc \
58 ##OEROOT##/meta-openembedded/meta-oe \
59 ##OEROOT##/meta-openembedded/meta-networking \
60 ##OEROOT##/meta-openembedded/meta-filesystems \
61 ##OEROOT##/meta-openembedded/meta-python \
62 ##OEROOT##/meta-poky \
63 "
64</programlisting>
65<programlisting>_____ template.p2041rdb/conf-notes.txt ____
66Common targets are:
67 enea-image-standard
68 enea-image-standard-sdk
69</programlisting>
70<programlisting>_____ template.p2041rdb/local.conf.sample ____
71MACHINE ?= "p2041rdb"
72DISTRO ?= "enea"
73PACKAGE_CLASSES ?= "package_rpm"
74EXTRA_IMAGE_FEATURES = "debug-tweaks"
75USER_CLASSES ?= "buildstats image-mklibs image-prelink"
76PATCHRESOLVE = "noop"
77BB_DISKMON_DIRS = "\
78 STOPTASKS,${TMPDIR},1G,100K \
79 STOPTASKS,${DL_DIR},1G,100K \
80 STOPTASKS,${SSTATE_DIR},1G,100K \
81 STOPTASKS,/tmp,100M,100K \
82 ABORT,${TMPDIR},100M,1K \
83 ABORT,${DL_DIR},100M,1K \
84 ABORT,${SSTATE_DIR},100M,1K \
85 ABORT,/tmp,10M,1K"
86PACKAGECONFIG_append_pn-qemu-native = " sdl"
87PACKAGECONFIG_append_pn-nativesdk-qemu = " sdl"
88CONF_VERSION = "1"
89</programlisting>
90 </para>
91 <para>Configuration files in template.qemuarm</para>
92 <para>
93<programlisting>_____ template.qemuarm/bblayers.conf.sample ____
94POKY_BBLAYERS_CONF_VERSION = "1"
95BBPATH = "${TOPDIR}"
96BBFILES ?= ""
97BBLAYERS ?= " \
98 ##OEROOT##/meta \
99 ##OEROOT##/meta-el-common \
100 ##OEROOT##/meta-el-standard \
101 ##OEROOT##/meta-enea-bsp-common \
102 ##OEROOT##/meta-openembedded/meta-oe \
103 ##OEROOT##/meta-openembedded/meta-networking \
104 ##OEROOT##/meta-openembedded/meta-filesystems \
105 ##OEROOT##/meta-openembedded/meta-python \
106 ##OEROOT##/meta-poky \
107 "
108</programlisting>
109<programlisting>_____ template.qemuarm/conf-notes.txt ____
110Common targets are:
111 enea-image-standard
112 enea-image-standard-sdk
113</programlisting>
114<programlisting>_____ template.qemuarm/local.conf.sample ____
115MACHINE ?= "qemuarm"
116DISTRO ?= "enea"
117PACKAGE_CLASSES ?= "package_rpm"
118EXTRA_IMAGE_FEATURES = "debug-tweaks"
119USER_CLASSES ?= "buildstats image-mklibs image-prelink"
120PATCHRESOLVE = "noop"
121BB_DISKMON_DIRS = "\
122 STOPTASKS,${TMPDIR},1G,100K \
123 STOPTASKS,${DL_DIR},1G,100K \
124 STOPTASKS,${SSTATE_DIR},1G,100K \
125 STOPTASKS,/tmp,100M,100K \
126 ABORT,${TMPDIR},100M,1K \
127 ABORT,${DL_DIR},100M,1K \
128 ABORT,${SSTATE_DIR},100M,1K \
129 ABORT,/tmp,10M,1K"
130PACKAGECONFIG_append_pn-qemu-native = " sdl"
131PACKAGECONFIG_append_pn-nativesdk-qemu = " sdl"
132CONF_VERSION = "1"
133</programlisting>
134 </para>
135 <para>Configuration files in template.qemuppc</para>
136 <para>
137<programlisting>_____ template.qemuppc/bblayers.conf.sample ____
138POKY_BBLAYERS_CONF_VERSION = "1"
139BBPATH = "${TOPDIR}"
140BBFILES ?= ""
141BBLAYERS ?= " \
142 ##OEROOT##/meta \
143 ##OEROOT##/meta-el-common \
144 ##OEROOT##/meta-el-standard \
145 ##OEROOT##/meta-enea-bsp-common \
146 ##OEROOT##/meta-openembedded/meta-oe \
147 ##OEROOT##/meta-openembedded/meta-networking \
148 ##OEROOT##/meta-openembedded/meta-filesystems \
149 ##OEROOT##/meta-openembedded/meta-python \
150 ##OEROOT##/meta-poky \
151 "
152</programlisting>
153<programlisting>_____ template.qemuppc/conf-notes.txt ____
154Common targets are:
155 enea-image-standard
156 enea-image-standard-sdk
157</programlisting>
158<programlisting>_____ template.qemuppc/local.conf.sample ____
159MACHINE ?= "qemuppc"
160DISTRO ?= "enea"
161PACKAGE_CLASSES ?= "package_rpm"
162EXTRA_IMAGE_FEATURES = "debug-tweaks"
163USER_CLASSES ?= "buildstats image-mklibs image-prelink"
164PATCHRESOLVE = "noop"
165BB_DISKMON_DIRS = "\
166 STOPTASKS,${TMPDIR},1G,100K \
167 STOPTASKS,${DL_DIR},1G,100K \
168 STOPTASKS,${SSTATE_DIR},1G,100K \
169 STOPTASKS,/tmp,100M,100K \
170 ABORT,${TMPDIR},100M,1K \
171 ABORT,${DL_DIR},100M,1K \
172 ABORT,${SSTATE_DIR},100M,1K \
173 ABORT,/tmp,10M,1K"
174PACKAGECONFIG_append_pn-qemu-native = " sdl"
175PACKAGECONFIG_append_pn-nativesdk-qemu = " sdl"
176CONF_VERSION = "1"
177</programlisting>
178 </para>
179 <para>Images</para>
180 <programlisting>
181enea-image-standard.bb
182enea-image-standard-sdk.bb
183</programlisting>
184 </section>
185 <section>
186 <title>Various Config Files extracted from p2041rdb/poky</title>
187 <para>poky contains</para>
188 <programlisting>
189bitbake/
190documentation/
191LICENSE
192meta/
193meta-el-common/
194meta-el-standard/
195meta-enea-base-ppc/
196meta-enea-bsp-common/
197meta-enea-bsp-ppc/
198meta-fsl-ppc/
199meta-openembedded/
200meta-poky/
201meta-selftest/
202meta-skeleton/
203meta-yocto/
204meta-yocto-bsp/
205oe-init-build-env*
206oe-init-build-env-memres*
207README
208README.hardware
209scripts/
210</programlisting>
211 <para>Main version information in enea.conf is</para>
212 <programlisting>
213DISTRO_VERSION_MAJOR = "6.0"
214DISTRO_VERSION_MINOR ??= ""
215</programlisting>
216 <para>meta-el-* is meta-el-standard</para>
217 <para>Configuration files in template.p2041rdb</para>
218 <para>
219<programlisting>_____ template.p2041rdb/bblayers.conf.sample ____
220POKY_BBLAYERS_CONF_VERSION = "1"
221BBPATH = "${TOPDIR}"
222BBFILES ?= ""
223BBLAYERS ?= " \
224 ##OEROOT##/meta \
225 ##OEROOT##/meta-el-common \
226 ##OEROOT##/meta-el-standard \
227 ##OEROOT##/meta-enea-bsp-common \
228 ##OEROOT##/meta-enea-bsp-ppc \
229 ##OEROOT##/meta-fsl-ppc \
230 ##OEROOT##/meta-openembedded/meta-oe \
231 ##OEROOT##/meta-openembedded/meta-networking \
232 ##OEROOT##/meta-openembedded/meta-filesystems \
233 ##OEROOT##/meta-openembedded/meta-python \
234 ##OEROOT##/meta-poky \
235 "
236</programlisting>
237<programlisting>_____ template.p2041rdb/conf-notes.txt ____
238Common targets are:
239 enea-image-standard
240 enea-image-standard-sdk
241</programlisting>
242<programlisting>_____ template.p2041rdb/local.conf.sample ____
243MACHINE ?= "p2041rdb"
244DISTRO ?= "enea"
245PACKAGE_CLASSES ?= "package_rpm"
246EXTRA_IMAGE_FEATURES = "debug-tweaks"
247USER_CLASSES ?= "buildstats image-mklibs image-prelink"
248PATCHRESOLVE = "noop"
249BB_DISKMON_DIRS = "\
250 STOPTASKS,${TMPDIR},1G,100K \
251 STOPTASKS,${DL_DIR},1G,100K \
252 STOPTASKS,${SSTATE_DIR},1G,100K \
253 STOPTASKS,/tmp,100M,100K \
254 ABORT,${TMPDIR},100M,1K \
255 ABORT,${DL_DIR},100M,1K \
256 ABORT,${SSTATE_DIR},100M,1K \
257 ABORT,/tmp,10M,1K"
258PACKAGECONFIG_append_pn-qemu-native = " sdl"
259PACKAGECONFIG_append_pn-nativesdk-qemu = " sdl"
260CONF_VERSION = "1"
261</programlisting>
262 </para>
263 <para>Configuration files in template.qemuarm</para>
264 <para>
265<programlisting>_____ template.qemuarm/bblayers.conf.sample ____
266POKY_BBLAYERS_CONF_VERSION = "1"
267BBPATH = "${TOPDIR}"
268BBFILES ?= ""
269BBLAYERS ?= " \
270 ##OEROOT##/meta \
271 ##OEROOT##/meta-el-common \
272 ##OEROOT##/meta-el-standard \
273 ##OEROOT##/meta-enea-bsp-common \
274 ##OEROOT##/meta-openembedded/meta-oe \
275 ##OEROOT##/meta-openembedded/meta-networking \
276 ##OEROOT##/meta-openembedded/meta-filesystems \
277 ##OEROOT##/meta-openembedded/meta-python \
278 ##OEROOT##/meta-poky \
279 "
280</programlisting>
281<programlisting>_____ template.qemuarm/conf-notes.txt ____
282Common targets are:
283 enea-image-standard
284 enea-image-standard-sdk
285</programlisting>
286<programlisting>_____ template.qemuarm/local.conf.sample ____
287MACHINE ?= "qemuarm"
288DISTRO ?= "enea"
289PACKAGE_CLASSES ?= "package_rpm"
290EXTRA_IMAGE_FEATURES = "debug-tweaks"
291USER_CLASSES ?= "buildstats image-mklibs image-prelink"
292PATCHRESOLVE = "noop"
293BB_DISKMON_DIRS = "\
294 STOPTASKS,${TMPDIR},1G,100K \
295 STOPTASKS,${DL_DIR},1G,100K \
296 STOPTASKS,${SSTATE_DIR},1G,100K \
297 STOPTASKS,/tmp,100M,100K \
298 ABORT,${TMPDIR},100M,1K \
299 ABORT,${DL_DIR},100M,1K \
300 ABORT,${SSTATE_DIR},100M,1K \
301 ABORT,/tmp,10M,1K"
302PACKAGECONFIG_append_pn-qemu-native = " sdl"
303PACKAGECONFIG_append_pn-nativesdk-qemu = " sdl"
304CONF_VERSION = "1"
305</programlisting>
306 </para>
307 <para>Configuration files in template.qemuppc</para>
308 <para>
309<programlisting>_____ template.qemuppc/bblayers.conf.sample ____
310POKY_BBLAYERS_CONF_VERSION = "1"
311BBPATH = "${TOPDIR}"
312BBFILES ?= ""
313BBLAYERS ?= " \
314 ##OEROOT##/meta \
315 ##OEROOT##/meta-el-common \
316 ##OEROOT##/meta-el-standard \
317 ##OEROOT##/meta-enea-bsp-common \
318 ##OEROOT##/meta-openembedded/meta-oe \
319 ##OEROOT##/meta-openembedded/meta-networking \
320 ##OEROOT##/meta-openembedded/meta-filesystems \
321 ##OEROOT##/meta-openembedded/meta-python \
322 ##OEROOT##/meta-poky \
323 "
324</programlisting>
325<programlisting>_____ template.qemuppc/conf-notes.txt ____
326Common targets are:
327 enea-image-standard
328 enea-image-standard-sdk
329</programlisting>
330<programlisting>_____ template.qemuppc/local.conf.sample ____
331MACHINE ?= "qemuppc"
332DISTRO ?= "enea"
333PACKAGE_CLASSES ?= "package_rpm"
334EXTRA_IMAGE_FEATURES = "debug-tweaks"
335USER_CLASSES ?= "buildstats image-mklibs image-prelink"
336PATCHRESOLVE = "noop"
337BB_DISKMON_DIRS = "\
338 STOPTASKS,${TMPDIR},1G,100K \
339 STOPTASKS,${DL_DIR},1G,100K \
340 STOPTASKS,${SSTATE_DIR},1G,100K \
341 STOPTASKS,/tmp,100M,100K \
342 ABORT,${TMPDIR},100M,1K \
343 ABORT,${DL_DIR},100M,1K \
344 ABORT,${SSTATE_DIR},100M,1K \
345 ABORT,/tmp,10M,1K"
346PACKAGECONFIG_append_pn-qemu-native = " sdl"
347PACKAGECONFIG_append_pn-nativesdk-qemu = " sdl"
348CONF_VERSION = "1"
349</programlisting>
350 </para>
351 <para>Images</para>
352 <programlisting>
353enea-image-standard.bb
354enea-image-standard-sdk.bb
355</programlisting>
356 </section>
357 <section>
358 <title>Various Config Files extracted from qemuarm/poky</title>
359 <para>poky contains</para>
360 <programlisting>
361bitbake/
362documentation/
363LICENSE
364meta/
365meta-el-common/
366meta-el-standard/
367meta-enea-base-arm/
368meta-enea-bsp-common/
369meta-openembedded/
370meta-poky/
371meta-selftest/
372meta-skeleton/
373meta-yocto/
374meta-yocto-bsp/
375oe-init-build-env*
376oe-init-build-env-memres*
377README
378README.hardware
379scripts/
380</programlisting>
381 <para>Main version information in enea.conf is</para>
382 <programlisting>
383DISTRO_VERSION_MAJOR = "6.0"
384DISTRO_VERSION_MINOR ??= ""
385</programlisting>
386 <para>meta-el-* is meta-el-standard</para>
387 <para>Configuration files in template.p2041rdb</para>
388 <para>
389<programlisting>_____ template.p2041rdb/bblayers.conf.sample ____
390POKY_BBLAYERS_CONF_VERSION = "1"
391BBPATH = "${TOPDIR}"
392BBFILES ?= ""
393BBLAYERS ?= " \
394 ##OEROOT##/meta \
395 ##OEROOT##/meta-el-common \
396 ##OEROOT##/meta-el-standard \
397 ##OEROOT##/meta-enea-bsp-common \
398 ##OEROOT##/meta-enea-bsp-ppc \
399 ##OEROOT##/meta-fsl-ppc \
400 ##OEROOT##/meta-openembedded/meta-oe \
401 ##OEROOT##/meta-openembedded/meta-networking \
402 ##OEROOT##/meta-openembedded/meta-filesystems \
403 ##OEROOT##/meta-openembedded/meta-python \
404 ##OEROOT##/meta-poky \
405 "
406</programlisting>
407<programlisting>_____ template.p2041rdb/conf-notes.txt ____
408Common targets are:
409 enea-image-standard
410 enea-image-standard-sdk
411</programlisting>
412<programlisting>_____ template.p2041rdb/local.conf.sample ____
413MACHINE ?= "p2041rdb"
414DISTRO ?= "enea"
415PACKAGE_CLASSES ?= "package_rpm"
416EXTRA_IMAGE_FEATURES = "debug-tweaks"
417USER_CLASSES ?= "buildstats image-mklibs image-prelink"
418PATCHRESOLVE = "noop"
419BB_DISKMON_DIRS = "\
420 STOPTASKS,${TMPDIR},1G,100K \
421 STOPTASKS,${DL_DIR},1G,100K \
422 STOPTASKS,${SSTATE_DIR},1G,100K \
423 STOPTASKS,/tmp,100M,100K \
424 ABORT,${TMPDIR},100M,1K \
425 ABORT,${DL_DIR},100M,1K \
426 ABORT,${SSTATE_DIR},100M,1K \
427 ABORT,/tmp,10M,1K"
428PACKAGECONFIG_append_pn-qemu-native = " sdl"
429PACKAGECONFIG_append_pn-nativesdk-qemu = " sdl"
430CONF_VERSION = "1"
431</programlisting>
432 </para>
433 <para>Configuration files in template.qemuarm</para>
434 <para>
435<programlisting>_____ template.qemuarm/bblayers.conf.sample ____
436POKY_BBLAYERS_CONF_VERSION = "1"
437BBPATH = "${TOPDIR}"
438BBFILES ?= ""
439BBLAYERS ?= " \
440 ##OEROOT##/meta \
441 ##OEROOT##/meta-el-common \
442 ##OEROOT##/meta-el-standard \
443 ##OEROOT##/meta-enea-bsp-common \
444 ##OEROOT##/meta-openembedded/meta-oe \
445 ##OEROOT##/meta-openembedded/meta-networking \
446 ##OEROOT##/meta-openembedded/meta-filesystems \
447 ##OEROOT##/meta-openembedded/meta-python \
448 ##OEROOT##/meta-poky \
449 "
450</programlisting>
451<programlisting>_____ template.qemuarm/conf-notes.txt ____
452Common targets are:
453 enea-image-standard
454 enea-image-standard-sdk
455</programlisting>
456<programlisting>_____ template.qemuarm/local.conf.sample ____
457MACHINE ?= "qemuarm"
458DISTRO ?= "enea"
459PACKAGE_CLASSES ?= "package_rpm"
460EXTRA_IMAGE_FEATURES = "debug-tweaks"
461USER_CLASSES ?= "buildstats image-mklibs image-prelink"
462PATCHRESOLVE = "noop"
463BB_DISKMON_DIRS = "\
464 STOPTASKS,${TMPDIR},1G,100K \
465 STOPTASKS,${DL_DIR},1G,100K \
466 STOPTASKS,${SSTATE_DIR},1G,100K \
467 STOPTASKS,/tmp,100M,100K \
468 ABORT,${TMPDIR},100M,1K \
469 ABORT,${DL_DIR},100M,1K \
470 ABORT,${SSTATE_DIR},100M,1K \
471 ABORT,/tmp,10M,1K"
472PACKAGECONFIG_append_pn-qemu-native = " sdl"
473PACKAGECONFIG_append_pn-nativesdk-qemu = " sdl"
474CONF_VERSION = "1"
475</programlisting>
476 </para>
477 <para>Configuration files in template.qemuppc</para>
478 <para>
479<programlisting>_____ template.qemuppc/bblayers.conf.sample ____
480POKY_BBLAYERS_CONF_VERSION = "1"
481BBPATH = "${TOPDIR}"
482BBFILES ?= ""
483BBLAYERS ?= " \
484 ##OEROOT##/meta \
485 ##OEROOT##/meta-el-common \
486 ##OEROOT##/meta-el-standard \
487 ##OEROOT##/meta-enea-bsp-common \
488 ##OEROOT##/meta-openembedded/meta-oe \
489 ##OEROOT##/meta-openembedded/meta-networking \
490 ##OEROOT##/meta-openembedded/meta-filesystems \
491 ##OEROOT##/meta-openembedded/meta-python \
492 ##OEROOT##/meta-poky \
493 "
494</programlisting>
495<programlisting>_____ template.qemuppc/conf-notes.txt ____
496Common targets are:
497 enea-image-standard
498 enea-image-standard-sdk
499</programlisting>
500<programlisting>_____ template.qemuppc/local.conf.sample ____
501MACHINE ?= "qemuppc"
502DISTRO ?= "enea"
503PACKAGE_CLASSES ?= "package_rpm"
504EXTRA_IMAGE_FEATURES = "debug-tweaks"
505USER_CLASSES ?= "buildstats image-mklibs image-prelink"
506PATCHRESOLVE = "noop"
507BB_DISKMON_DIRS = "\
508 STOPTASKS,${TMPDIR},1G,100K \
509 STOPTASKS,${DL_DIR},1G,100K \
510 STOPTASKS,${SSTATE_DIR},1G,100K \
511 STOPTASKS,/tmp,100M,100K \
512 ABORT,${TMPDIR},100M,1K \
513 ABORT,${DL_DIR},100M,1K \
514 ABORT,${SSTATE_DIR},100M,1K \
515 ABORT,/tmp,10M,1K"
516PACKAGECONFIG_append_pn-qemu-native = " sdl"
517PACKAGECONFIG_append_pn-nativesdk-qemu = " sdl"
518CONF_VERSION = "1"
519</programlisting>
520 </para>
521 <para>Images</para>
522 <programlisting>
523enea-image-standard.bb
524enea-image-standard-sdk.bb
525</programlisting>
526 </section>
527 <section>
528 <title>Various Config Files extracted from qemuppc/poky</title>
529 <para>poky contains</para>
530 <programlisting>
531bitbake/
532documentation/
533LICENSE
534meta/
535meta-el-common/
536meta-el-standard/
537meta-enea-base-ppc/
538meta-enea-bsp-common/
539meta-openembedded/
540meta-poky/
541meta-selftest/
542meta-skeleton/
543meta-yocto/
544meta-yocto-bsp/
545oe-init-build-env*
546oe-init-build-env-memres*
547README
548README.hardware
549scripts/
550</programlisting>
551 <para>Main version information in enea.conf is</para>
552 <programlisting>
553DISTRO_VERSION_MAJOR = "6.0"
554DISTRO_VERSION_MINOR ??= ""
555</programlisting>
556 <para>meta-el-* is meta-el-standard</para>
557 <para>Configuration files in template.p2041rdb</para>
558 <para>
559<programlisting>_____ template.p2041rdb/bblayers.conf.sample ____
560POKY_BBLAYERS_CONF_VERSION = "1"
561BBPATH = "${TOPDIR}"
562BBFILES ?= ""
563BBLAYERS ?= " \
564 ##OEROOT##/meta \
565 ##OEROOT##/meta-el-common \
566 ##OEROOT##/meta-el-standard \
567 ##OEROOT##/meta-enea-bsp-common \
568 ##OEROOT##/meta-enea-bsp-ppc \
569 ##OEROOT##/meta-fsl-ppc \
570 ##OEROOT##/meta-openembedded/meta-oe \
571 ##OEROOT##/meta-openembedded/meta-networking \
572 ##OEROOT##/meta-openembedded/meta-filesystems \
573 ##OEROOT##/meta-openembedded/meta-python \
574 ##OEROOT##/meta-poky \
575 "
576</programlisting>
577<programlisting>_____ template.p2041rdb/conf-notes.txt ____
578Common targets are:
579 enea-image-standard
580 enea-image-standard-sdk
581</programlisting>
582<programlisting>_____ template.p2041rdb/local.conf.sample ____
583MACHINE ?= "p2041rdb"
584DISTRO ?= "enea"
585PACKAGE_CLASSES ?= "package_rpm"
586EXTRA_IMAGE_FEATURES = "debug-tweaks"
587USER_CLASSES ?= "buildstats image-mklibs image-prelink"
588PATCHRESOLVE = "noop"
589BB_DISKMON_DIRS = "\
590 STOPTASKS,${TMPDIR},1G,100K \
591 STOPTASKS,${DL_DIR},1G,100K \
592 STOPTASKS,${SSTATE_DIR},1G,100K \
593 STOPTASKS,/tmp,100M,100K \
594 ABORT,${TMPDIR},100M,1K \
595 ABORT,${DL_DIR},100M,1K \
596 ABORT,${SSTATE_DIR},100M,1K \
597 ABORT,/tmp,10M,1K"
598PACKAGECONFIG_append_pn-qemu-native = " sdl"
599PACKAGECONFIG_append_pn-nativesdk-qemu = " sdl"
600CONF_VERSION = "1"
601</programlisting>
602 </para>
603 <para>Configuration files in template.qemuarm</para>
604 <para>
605<programlisting>_____ template.qemuarm/bblayers.conf.sample ____
606POKY_BBLAYERS_CONF_VERSION = "1"
607BBPATH = "${TOPDIR}"
608BBFILES ?= ""
609BBLAYERS ?= " \
610 ##OEROOT##/meta \
611 ##OEROOT##/meta-el-common \
612 ##OEROOT##/meta-el-standard \
613 ##OEROOT##/meta-enea-bsp-common \
614 ##OEROOT##/meta-openembedded/meta-oe \
615 ##OEROOT##/meta-openembedded/meta-networking \
616 ##OEROOT##/meta-openembedded/meta-filesystems \
617 ##OEROOT##/meta-openembedded/meta-python \
618 ##OEROOT##/meta-poky \
619 "
620</programlisting>
621<programlisting>_____ template.qemuarm/conf-notes.txt ____
622Common targets are:
623 enea-image-standard
624 enea-image-standard-sdk
625</programlisting>
626<programlisting>_____ template.qemuarm/local.conf.sample ____
627MACHINE ?= "qemuarm"
628DISTRO ?= "enea"
629PACKAGE_CLASSES ?= "package_rpm"
630EXTRA_IMAGE_FEATURES = "debug-tweaks"
631USER_CLASSES ?= "buildstats image-mklibs image-prelink"
632PATCHRESOLVE = "noop"
633BB_DISKMON_DIRS = "\
634 STOPTASKS,${TMPDIR},1G,100K \
635 STOPTASKS,${DL_DIR},1G,100K \
636 STOPTASKS,${SSTATE_DIR},1G,100K \
637 STOPTASKS,/tmp,100M,100K \
638 ABORT,${TMPDIR},100M,1K \
639 ABORT,${DL_DIR},100M,1K \
640 ABORT,${SSTATE_DIR},100M,1K \
641 ABORT,/tmp,10M,1K"
642PACKAGECONFIG_append_pn-qemu-native = " sdl"
643PACKAGECONFIG_append_pn-nativesdk-qemu = " sdl"
644CONF_VERSION = "1"
645</programlisting>
646 </para>
647 <para>Configuration files in template.qemuppc</para>
648 <para>
649<programlisting>_____ template.qemuppc/bblayers.conf.sample ____
650POKY_BBLAYERS_CONF_VERSION = "1"
651BBPATH = "${TOPDIR}"
652BBFILES ?= ""
653BBLAYERS ?= " \
654 ##OEROOT##/meta \
655 ##OEROOT##/meta-el-common \
656 ##OEROOT##/meta-el-standard \
657 ##OEROOT##/meta-enea-bsp-common \
658 ##OEROOT##/meta-openembedded/meta-oe \
659 ##OEROOT##/meta-openembedded/meta-networking \
660 ##OEROOT##/meta-openembedded/meta-filesystems \
661 ##OEROOT##/meta-openembedded/meta-python \
662 ##OEROOT##/meta-poky \
663 "
664</programlisting>
665<programlisting>_____ template.qemuppc/conf-notes.txt ____
666Common targets are:
667 enea-image-standard
668 enea-image-standard-sdk
669</programlisting>
670<programlisting>_____ template.qemuppc/local.conf.sample ____
671MACHINE ?= "qemuppc"
672DISTRO ?= "enea"
673PACKAGE_CLASSES ?= "package_rpm"
674EXTRA_IMAGE_FEATURES = "debug-tweaks"
675USER_CLASSES ?= "buildstats image-mklibs image-prelink"
676PATCHRESOLVE = "noop"
677BB_DISKMON_DIRS = "\
678 STOPTASKS,${TMPDIR},1G,100K \
679 STOPTASKS,${DL_DIR},1G,100K \
680 STOPTASKS,${SSTATE_DIR},1G,100K \
681 STOPTASKS,/tmp,100M,100K \
682 ABORT,${TMPDIR},100M,1K \
683 ABORT,${DL_DIR},100M,1K \
684 ABORT,${SSTATE_DIR},100M,1K \
685 ABORT,/tmp,10M,1K"
686PACKAGECONFIG_append_pn-qemu-native = " sdl"
687PACKAGECONFIG_append_pn-nativesdk-qemu = " sdl"
688CONF_VERSION = "1"
689</programlisting>
690 </para>
691 <para>Images</para>
692 <programlisting>
693enea-image-standard.bb
694enea-image-standard-sdk.bb
695</programlisting>
696 </section>
697 <section>
698 <title>Various Config Files extracted from qemux86/poky</title>
699 <para>poky contains</para>
700 <programlisting>
701bitbake/
702documentation/
703LICENSE
704meta/
705meta-el-common/
706meta-el-standard/
707meta-enea-base-x86/
708meta-enea-bsp-common/
709meta-openembedded/
710meta-poky/
711meta-selftest/
712meta-skeleton/
713meta-yocto/
714meta-yocto-bsp/
715oe-init-build-env*
716oe-init-build-env-memres*
717README
718README.hardware
719scripts/
720</programlisting>
721 <para>Main version information in enea.conf is</para>
722 <programlisting>
723DISTRO_VERSION_MAJOR = "6.0"
724DISTRO_VERSION_MINOR ??= ""
725</programlisting>
726 <para>meta-el-* is meta-el-standard</para>
727 <para>Configuration files in template.p2041rdb</para>
728 <para>
729<programlisting>_____ template.p2041rdb/bblayers.conf.sample ____
730POKY_BBLAYERS_CONF_VERSION = "1"
731BBPATH = "${TOPDIR}"
732BBFILES ?= ""
733BBLAYERS ?= " \
734 ##OEROOT##/meta \
735 ##OEROOT##/meta-el-common \
736 ##OEROOT##/meta-el-standard \
737 ##OEROOT##/meta-enea-bsp-common \
738 ##OEROOT##/meta-enea-bsp-ppc \
739 ##OEROOT##/meta-fsl-ppc \
740 ##OEROOT##/meta-openembedded/meta-oe \
741 ##OEROOT##/meta-openembedded/meta-networking \
742 ##OEROOT##/meta-openembedded/meta-filesystems \
743 ##OEROOT##/meta-openembedded/meta-python \
744 ##OEROOT##/meta-poky \
745 "
746</programlisting>
747<programlisting>_____ template.p2041rdb/conf-notes.txt ____
748Common targets are:
749 enea-image-standard
750 enea-image-standard-sdk
751</programlisting>
752<programlisting>_____ template.p2041rdb/local.conf.sample ____
753MACHINE ?= "p2041rdb"
754DISTRO ?= "enea"
755PACKAGE_CLASSES ?= "package_rpm"
756EXTRA_IMAGE_FEATURES = "debug-tweaks"
757USER_CLASSES ?= "buildstats image-mklibs image-prelink"
758PATCHRESOLVE = "noop"
759BB_DISKMON_DIRS = "\
760 STOPTASKS,${TMPDIR},1G,100K \
761 STOPTASKS,${DL_DIR},1G,100K \
762 STOPTASKS,${SSTATE_DIR},1G,100K \
763 STOPTASKS,/tmp,100M,100K \
764 ABORT,${TMPDIR},100M,1K \
765 ABORT,${DL_DIR},100M,1K \
766 ABORT,${SSTATE_DIR},100M,1K \
767 ABORT,/tmp,10M,1K"
768PACKAGECONFIG_append_pn-qemu-native = " sdl"
769PACKAGECONFIG_append_pn-nativesdk-qemu = " sdl"
770CONF_VERSION = "1"
771</programlisting>
772 </para>
773 <para>Configuration files in template.qemuarm</para>
774 <para>
775<programlisting>_____ template.qemuarm/bblayers.conf.sample ____
776POKY_BBLAYERS_CONF_VERSION = "1"
777BBPATH = "${TOPDIR}"
778BBFILES ?= ""
779BBLAYERS ?= " \
780 ##OEROOT##/meta \
781 ##OEROOT##/meta-el-common \
782 ##OEROOT##/meta-el-standard \
783 ##OEROOT##/meta-enea-bsp-common \
784 ##OEROOT##/meta-openembedded/meta-oe \
785 ##OEROOT##/meta-openembedded/meta-networking \
786 ##OEROOT##/meta-openembedded/meta-filesystems \
787 ##OEROOT##/meta-openembedded/meta-python \
788 ##OEROOT##/meta-poky \
789 "
790</programlisting>
791<programlisting>_____ template.qemuarm/conf-notes.txt ____
792Common targets are:
793 enea-image-standard
794 enea-image-standard-sdk
795</programlisting>
796<programlisting>_____ template.qemuarm/local.conf.sample ____
797MACHINE ?= "qemuarm"
798DISTRO ?= "enea"
799PACKAGE_CLASSES ?= "package_rpm"
800EXTRA_IMAGE_FEATURES = "debug-tweaks"
801USER_CLASSES ?= "buildstats image-mklibs image-prelink"
802PATCHRESOLVE = "noop"
803BB_DISKMON_DIRS = "\
804 STOPTASKS,${TMPDIR},1G,100K \
805 STOPTASKS,${DL_DIR},1G,100K \
806 STOPTASKS,${SSTATE_DIR},1G,100K \
807 STOPTASKS,/tmp,100M,100K \
808 ABORT,${TMPDIR},100M,1K \
809 ABORT,${DL_DIR},100M,1K \
810 ABORT,${SSTATE_DIR},100M,1K \
811 ABORT,/tmp,10M,1K"
812PACKAGECONFIG_append_pn-qemu-native = " sdl"
813PACKAGECONFIG_append_pn-nativesdk-qemu = " sdl"
814CONF_VERSION = "1"
815</programlisting>
816 </para>
817 <para>Configuration files in template.qemuppc</para>
818 <para>
819<programlisting>_____ template.qemuppc/bblayers.conf.sample ____
820POKY_BBLAYERS_CONF_VERSION = "1"
821BBPATH = "${TOPDIR}"
822BBFILES ?= ""
823BBLAYERS ?= " \
824 ##OEROOT##/meta \
825 ##OEROOT##/meta-el-common \
826 ##OEROOT##/meta-el-standard \
827 ##OEROOT##/meta-enea-bsp-common \
828 ##OEROOT##/meta-openembedded/meta-oe \
829 ##OEROOT##/meta-openembedded/meta-networking \
830 ##OEROOT##/meta-openembedded/meta-filesystems \
831 ##OEROOT##/meta-openembedded/meta-python \
832 ##OEROOT##/meta-poky \
833 "
834</programlisting>
835<programlisting>_____ template.qemuppc/conf-notes.txt ____
836Common targets are:
837 enea-image-standard
838 enea-image-standard-sdk
839</programlisting>
840<programlisting>_____ template.qemuppc/local.conf.sample ____
841MACHINE ?= "qemuppc"
842DISTRO ?= "enea"
843PACKAGE_CLASSES ?= "package_rpm"
844EXTRA_IMAGE_FEATURES = "debug-tweaks"
845USER_CLASSES ?= "buildstats image-mklibs image-prelink"
846PATCHRESOLVE = "noop"
847BB_DISKMON_DIRS = "\
848 STOPTASKS,${TMPDIR},1G,100K \
849 STOPTASKS,${DL_DIR},1G,100K \
850 STOPTASKS,${SSTATE_DIR},1G,100K \
851 STOPTASKS,/tmp,100M,100K \
852 ABORT,${TMPDIR},100M,1K \
853 ABORT,${DL_DIR},100M,1K \
854 ABORT,${SSTATE_DIR},100M,1K \
855 ABORT,/tmp,10M,1K"
856PACKAGECONFIG_append_pn-qemu-native = " sdl"
857PACKAGECONFIG_append_pn-nativesdk-qemu = " sdl"
858CONF_VERSION = "1"
859</programlisting>
860 </para>
861 <para>Images</para>
862 <programlisting>
863enea-image-standard.bb
864enea-image-standard-sdk.bb
865</programlisting>
866 </section>
867</section>
diff --git a/doc/book-enea-linux-release-info/doc/targetscontain_template.xml b/doc/book-enea-linux-release-info/doc/targetscontain_template.xml
new file mode 100644
index 0000000..b91350b
--- /dev/null
+++ b/doc/book-enea-linux-release-info/doc/targetscontain_template.xml
@@ -0,0 +1,12 @@
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE section PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
3"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
4<section id="targetscontain">
5 <title>DEMO-Autogenerated chapter - Poky Components in this
6 Distribution</title>
7
8 <note>
9 <para>JUST A DEMO, Examples what could be autoextracted from poky if we
10 want to</para>
11 </note>
12</section> \ No newline at end of file
diff --git a/doc/book-enea-linux-release-info/swcomp.mk b/doc/book-enea-linux-release-info/swcomp.mk
new file mode 100644
index 0000000..6e86ff1
--- /dev/null
+++ b/doc/book-enea-linux-release-info/swcomp.mk
@@ -0,0 +1,10 @@
1# Component build specification
2
3# Version of THIS book
4BOOK_VER ?= $(REL_VER)-dev
5
6DOCBOOK_SRC := $(COMP)/swcomp.mk $(COMP)/doc/book.xml $(shell find $(COMP)/doc -type f \( -name "*.xml" -o -name "*.svg" -o -name "*.png" \) ! -name "book.xml" -print)
7
8BOOKPACKAGES := book-enea-linux-release-info
9BOOKDESC_$(BOOKPACKAGES) := "Enea Linux $(PROD_VER) Release Information"
10BOOKDEFAULTCONDITION := $(DEFAULTCONDITIONS)
diff --git a/doc/docsrc_common/pardoc-distro.xml b/doc/docsrc_common/pardoc-distro.xml
new file mode 100644
index 0000000..2693c97
--- /dev/null
+++ b/doc/docsrc_common/pardoc-distro.xml
@@ -0,0 +1,40 @@
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
3"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd" [
4<!-- Version and name entities
5==============================
6-->
7<!-- Distribution and release -->
8<!ENTITY ENEA_LINUX_REL_VER "MAJOR.MINOR"> <!-- TEMPLATE LINE, IS PATCHED by Makefile with values from enea.conf in poky/ -->
9<!ENTITY % common_poky_entities SYSTEM "../s_targets/qemuarm/poky/documentation/poky.ent">
10%common_poky_entities;
11]>
12
13<!-- Declarations to inherit by xi:include
14========================================== -->
15<section id="pardoc_names">
16 <title>Enea Linux DocBook XML Based UserDoc Names and Parameters</title>
17
18 <para>NOTE: DO NOT EDIT THIS FILE IN xmlmind but you can open it to see any errors, don't save!!!!</para>
19
20 <para>NOTE: Use xi:include to include parameters into a docbook XML file.
21 Note: Only full elements can be included and the included element must
22 be allowed in that place. Example: For ulink, entire ulink elements
23 must be included, not just parts of them.</para>
24
25 <para>**** The phrase elements below can be used as variables in several
26 places in XML files ****</para>
27
28 <para>You can add more elements using ENTITY lines in poky.ent, e.g. like Poky_VER below</para>
29
30<!-- Distribution and release -->
31<para id="EneaLinux_REL_VER"><phrase>&ENEA_LINUX_REL_VER;</phrase></para>
32<para id="ULINK_ENEA_LINUX_URL"><ulink url='https://linux.enea.com/&ENEA_LINUX_REL_VER;'>https://linux.enea.com/&ENEA_LINUX_REL_VER;</ulink></para>
33<para id="Poky_VER"><phrase>&POKYVERSION;</phrase></para>
34<para id="Yocto_VER"><phrase>&DISTRO;</phrase></para>
35<para id="Yocto_NAME"><phrase>&DISTRO_NAME_NO_CAP;</phrase></para>
36<para id="ULINK_YOCTO_RELEASE_NOTES"><ulink url='&YOCTO_RELEASE_NOTES;'>&YOCTO_RELEASE_NOTES;</ulink></para>
37<para id="prev_baseline"><phrase>EL5</phrase></para>
38<para id="prev_lic_file"><phrase>doc/book-enea-linux-open-source/doc/licenses.xml</phrase></para>
39<para id="new_lic_file"><phrase>doc/book-enea-linux-open-source/doc/licenses.xml</phrase></para>
40</section>
diff --git a/doc/gen_known_issues.py b/doc/gen_known_issues.py
new file mode 100644
index 0000000..a400577
--- /dev/null
+++ b/doc/gen_known_issues.py
@@ -0,0 +1,91 @@
1#!/usr/bin/python
2
3from subprocess import check_output
4import json, re, datetime
5import time
6
7jd = json.JSONDecoder()
8
9def jira_query(query):
10 jira_url = "http://eneaissues.enea.com"
11 fields = "key,summary"
12 query = query.replace(" ", "+")
13
14 cmd = ["curl",
15 "-s",
16 "-D-",
17 "-u", "rest_reader:jira123",
18 "-X", "GET",
19 "-H", "Content-Type: application/json",
20 jira_url + "/rest/api/2/search?jql=" + query + "&fields=" + fields
21 ]
22
23 tmp = check_output(cmd).splitlines()
24 tmp = jd.decode(tmp[-1])
25 return tmp["issues"]
26
27conditions = ("project=LXCR",
28 "issueType=bug",
29 "resolution=Unresolved",
30 'affectedversion="Enea Linux 6"'
31 )
32
33bugs = []
34
35time_str = time.strftime("%Y-%m-%d, %H:%M:%S (%Z)")
36
37for issue in jira_query(" and ".join(conditions)):
38 bugs.append((issue["key"], issue["fields"]["summary"]))
39
40print '<?xml version="1.0" encoding="ISO-8859-1"?>'
41print '<!DOCTYPE section PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"'
42print '"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">'
43print '<section id="relinfo-extracted-from-jira">'
44print ' <title>Extracted from Jira</title>'
45print
46print ' <para>'
47print ' This section lists open bugs in Jira. Extracted at %s.' % time_str
48print ' </para>'
49print
50print ' <remark>Jira query: (%s)</remark>' % "\n and ".join(conditions)
51print
52print ' <informaltable>'
53print ' <tgroup cols="2">'
54print ' <colspec colwidth="6*" colname="c1"/>'
55print
56print ' <colspec align="center" colwidth="1*" colname="c2"/>'
57print
58print ' <thead>'
59print ' <row>'
60print ' <entry align="center">Summary</entry>'
61print
62print ' <entry>Enea Ref</entry>'
63print ' </row>'
64print ' </thead>'
65print
66print ' <tbody>',
67
68if bugs:
69 for bug in sorted(bugs):
70 print
71 print ' <row>'
72 print ' <entry>%s</entry>' % bug[1]
73 print
74 print ' <entry>%s</entry>' % bug[0]
75 print ' </row>'
76
77else:
78 print ' <row>'
79 print ' <entry namest="c1" nameend="c2" align="center">'
80 print ' No issues found'
81 print ' </entry>'
82 print ' </row>'
83
84print ' </tbody>'
85print ' </tgroup>'
86print ' </informaltable>'
87
88if bugs:
89 print ' <para>Number of open bugs: %d</para>' % len(bugs)
90
91print '</section>'
diff --git a/doc/gen_pkgdiff.py b/doc/gen_pkgdiff.py
new file mode 100644
index 0000000..ddacf44
--- /dev/null
+++ b/doc/gen_pkgdiff.py
@@ -0,0 +1,222 @@
1#!/bin/python
2###############################################################################
3#
4# Diff two licenses.xml files. There are two cases:
5# * Two arguments
6# In this case, the two arguments are the two files to compare
7#
8# * No arguments
9# In this casem the license files are specified by the following
10# parameters in pardoc-distro.xml:
11# - prev_baseline
12# - prev_lic_file
13# - new_lic_file
14#
15# The result is presented as three sets:
16# 1) Removed
17# Packages present in the previous file, but not in the new.
18#
19# 2) Added
20# Packages present in the new file, but not in the previous.
21#
22# 3) Changed
23# Packages present in both files, but with different versions. If more than
24# one version of a package is included, then all difference in the version
25# set causes the package to be listed as changed.
26# E.g.
27# (v1) -> (v2)
28# (v1, v2) -> (v2, v3)
29#
30# Note that packages with the unchanged version is not listed.
31#
32# The output is presented as XML code printed to stdout. A summary is printed
33# to STDERR at the end.
34#
35###############################################################################
36
37import os
38import sys
39import subprocess as sp
40import xml.etree.ElementTree as ET
41import re
42
43repo_root = sp.check_output(["git", "rev-parse", "--show-toplevel"]).rstrip()
44script_root = os.path.dirname(os.path.realpath(__file__))
45param_file = os.path.join(script_root, "docsrc_common/pardoc-distro.xml")
46
47def get_param(param_name):
48 pat = re.compile("%s.*>([^<>]+)</" % param_name)
49
50 with open(param_file) as f:
51 for line in f:
52 m = pat.search(line)
53 if m:
54 return m.group(1)
55
56 return None
57
58def get_pkgs(file_spec):
59 if file_spec.find(":") >= 0:
60 s = sp.check_output(("git", "show", file_spec))
61 else:
62 f = open(file_spec)
63 s = f.read()
64 f.close()
65 del f
66
67 # ET can't handle some special quotes
68 for old, new in (("&rdquor;", "&quot;"), ("&rdquo;", "&quot;")):
69 s = s.replace(old, new)
70
71 root = ET.fromstring(s)
72
73 for node in root.iter("section"):
74 if "id" in node.attrib:
75 if node.attrib["id"] == "licenses_packages":
76 break
77
78 else:
79 return None
80
81 for node in node:
82 if node.tag == "informaltable":
83 break
84 else:
85 return None
86
87 tab = node[0][-1]
88
89 plist = dict()
90 for row in tab:
91 pname = row[0].text
92 pver = row[1].text
93 if not pname in plist:
94 plist[pname] = set()
95
96 plist[pname].add(pver)
97
98 return set(plist), plist
99
100#----------------------------------------
101
102
103if len(sys.argv) == 3:
104 new_file, prev_file = sys.argv[1:3]
105
106elif len(sys.argv) == 1:
107 prev_baseline = get_param("prev_baseline")
108 prev_lic_file = get_param("prev_lic_file")
109 new_lic_file = get_param("new_lic_file")
110
111 new_file = os.path.relpath(os.path.join(repo_root, new_lic_file))
112 prev_file = "%s:%s" % (prev_baseline, prev_lic_file)
113
114else:
115 sys.stderr.write("Usage:\n")
116 sys.stderr.write(" 1) %s\n" % sys.argv[0])
117 sys.stderr.write(" 2) %s " % sys.argv[0])
118 sys.stderr.write("<new license file> <old license file>\n")
119 sys.stderr.write("\n")
120 sys.stderr.write("In case 1, the files are specified using the following\n")
121 sys.stderr.write("parameters in pardoc-distro.xml:\n")
122 sys.stderr.write(" - prev_baseline\n")
123 sys.stderr.write(" - prev_lic_file\n")
124 sys.stderr.write(" - new_lic_file\n")
125 exit()
126
127sys.stderr.write("New license file : %s\n" % new_file)
128sys.stderr.write("Prev license file : %s\n" % prev_file)
129
130old_pset, old_pdict = get_pkgs(prev_file)
131new_pset, new_pdict = get_pkgs(new_file)
132
133added = new_pset - old_pset # Set subtraction
134removed = old_pset - new_pset # Set subtraction
135common = old_pset & new_pset
136changed = [ p for p in common if old_pdict[p] != new_pdict[p] ]
137
138print '<?xml version="1.0" encoding="ISO-8859-1"?>'
139print '<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"'
140print '"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">'
141print '<section id="relinfo-package-set-changes">'
142print ' <title>Changes in the Set of Provided Package</title>'
143print ' <para>'
144print ' This section describes changes in the provided packages.'
145print ' </para>'
146print ' <section id="relinfo-added-packages">'
147print ' <title>Added Packages</title>'
148print ' <informaltable>'
149print ' <tgroup cols="2">'
150print ' <thead>'
151print ' <row>'
152print ' <entry>Package</entry>'
153print ' <entry>Version(s)</entry>'
154print ' </row>'
155print ' </thead>'
156print ' <tbody>'
157
158for p in sorted(list(added)):
159 print ' <row>'
160 print ' <entry>%s</entry>' % p
161 print ' <entry>%s</entry>' % ", ".join(sorted(new_pdict[p]))
162 print ' </row>'
163
164print ' </tbody>'
165print ' </tgroup>'
166print ' </informaltable>'
167print ' </section>'
168
169print ' <section id="relinfo-removed-packages">'
170print ' <title>Removed Packages</title>'
171print ' <informaltable>'
172print ' <tgroup cols="2">'
173print ' <thead>'
174print ' <row>'
175print ' <entry>Package</entry>'
176print ' <entry>Version(s)</entry>'
177print ' </row>'
178print ' </thead>'
179print ' <tbody>'
180for p in sorted(list(removed)):
181 print ' <row>'
182 print ' <entry>%s</entry>' % p
183 print ' <entry>%s</entry>' % ", ".join(sorted(old_pdict[p]))
184 print ' </row>'
185print ' </tbody>'
186print ' </tgroup>'
187print ' </informaltable>'
188print ' </section>'
189
190print ' <section id="relinfo-changed-packages">'
191print ' <title>Changed Package Versions</title>'
192print ' <informaltable>'
193print ' <tgroup cols="3">'
194print ' <thead>'
195print ' <row>'
196print ' <entry>Package</entry>'
197print ' <entry>Previous Version(s)</entry>'
198print ' <entry>New Version(s)</entry>'
199print ' </row>'
200print ' </thead>'
201print ' <tbody>'
202for p in sorted(list(changed)):
203 print ' <row>'
204 print ' <entry>%s</entry>' % p
205 print ' <entry>%s</entry>' % ", ".join(sorted(old_pdict[p]))
206 print ' <entry>%s</entry>' % ", ".join(sorted(new_pdict[p]))
207 print ' </row>'
208
209print ' </tbody>'
210print ' </tgroup>'
211print ' </informaltable>'
212print ' </section>'
213print '</section>'
214
215sys.stderr.write("Package Summary:\n")
216sys.stderr.write(" Prev file : %3d\n" % len(old_pset))
217sys.stderr.write(" New file : %3d\n" % len(new_pset))
218sys.stderr.write(" Added : %3d\n" % len(added))
219sys.stderr.write(" Removed : %3d\n" % len(removed))
220sys.stderr.write(" Changed : %3d\n" % len(changed))
221sys.stderr.write(" Unchanged : %3d\n" % (len(common) - len(changed)))
222sys.stderr.write("Done\n")
diff --git a/doc/init.mk b/doc/init.mk
new file mode 100644
index 0000000..252409c
--- /dev/null
+++ b/doc/init.mk
@@ -0,0 +1,98 @@
1# Makefile including this should first set nondefault BRANCH_DOCENEACOMMON before including it
2# and should have targets init: s_docbuild and optional initcommon: s_doceneacommon
3# Typically let doc: depend on init and initcommon inside Makefile
4# Manually optionally set GLOBALTMPCLONEROOT to yes or to a parent dir for tmpcommon
5# This init.mk file ver R1.00/2016-04-29
6
7ifeq ($(VERBOSE),yes)
8VERB :=
9else
10VERB := @
11endif
12
13#Git repositories to be cloned
14REPO_DOCBUILD := build/docbuild.git
15NAME_DOCBUILD := docbuild
16REPO_DOCENEACOMMON := linux/documentation.git
17NAME_DOCENEACOMMON := doceneacommon
18
19# Set nondefault BRANCH_DOCENEACOMMON in Makefile
20BRANCH_DOCENEACOMMON ?= master-enea
21# Separate clones of documentation.git with different branches, needed if cloned globally with risk that different distros can be at same place
22ifneq ($(BRANCH_DOCENEACOMMON),master-enea)
23NAME_DOCENEACOMMON := doceneacommon_$(BRANCH_DOCENEACOMMON)
24endif
25
26GLOBALTMPCLONEROOT = ../../tmpcommon
27ifeq ($(BOOK_GLOBALCLONEROOT),)
28 TMPCLONEROOT := tmpcommon
29else
30 ifeq ($(BOOK_GLOBALCLONEROOT),yes)
31 TMPCLONEROOT := $(GLOBALTMPCLONEROOT)
32 else
33 TMPCLONEROOT := $(BOOK_GLOBALCLONEROOT)/tmpcommon
34 endif
35endif
36DIR_TMPCLONEROOT := $(dir $(TMPCLONEROOT))
37ifeq ($(wildcard $(DIR_TMPCLONEROOT)),)
38$(error Parent of selected clone root does not exist ($(DIR_TMPCLONEROOT)))
39endif
40
41.PHONY: initbuild initcommon usageinit cleaninit
42# Keep usageinit as default target here to avoid init by mistake
43
44usageinit: docusage
45 @echo 'make initbuild Create s_docbuild and if not exists, clone docbuild.git'
46 @echo 'make initcommon Create s_doceneacommon and if not exists, clone documentation.git'
47 @echo ' Default clone in tmpcommon'
48 @echo ' BOOK_GLOBALCLONEROOT=yes Clone in $(GLOBALTMPCLONEROOT)'
49 @echo ' BOOK_GLOBALCLONEROOT=parentdir Clone in parentdir/tmpcommon'
50 @echo ' Default branch for documentation.git is master-enea'
51 @echo ' BRANCH_DOCENEACOMMON=... If another branch, Makefile should set this'
52 @echo 'make pullbuild git pull in s_docbuild'
53 @echo 'make pullcommon git pull in s_doceneacommon'
54 @echo 'make cleaninit Delete all s_* symlinks and local tmpcommon/'
55
56
57# MOVE these to Makefile and set also non-default BRANCH_DOCENEACOMMON in Makefile
58initbuild: s_docbuild
59initcommon: s_doceneacommon
60pullbuild:
61 $(VERB)if [ ! -d s_docbuild ]; then echo "ERROR: No s_docbuild exists?" ; exit 10 ; fi
62 $(VERB)cd s_docbuild ; git pull
63pullcommon:
64 $(VERB)if [ ! -d s_doceneacommon ]; then echo "ERROR: No s_doceneacommon exists?" ; exit 10 ; fi
65 $(VERB)cd s_doceneacommon ; git pull
66
67s_docbuild: $(TMPCLONEROOT)/$(NAME_DOCBUILD)
68 $(VERB)rm s_docbuild 2>/dev/null; ln -s $(TMPCLONEROOT)/$(NAME_DOCBUILD) s_docbuild
69
70s_doceneacommon: $(TMPCLONEROOT)/$(NAME_DOCENEACOMMON)
71 $(VERB)rm s_doceneacommon 2>/dev/null; ln -s $(TMPCLONEROOT)/$(NAME_DOCENEACOMMON) s_doceneacommon
72
73$(TMPCLONEROOT)/$(NAME_DOCBUILD):
74 $(VERB)if [ ! -d "$(TMPCLONEROOT)" ] ; then mkdir -p "$(TMPCLONEROOT)" ; fi
75 $(VERB)if [ -d "$(TMPCLONEROOT)/$(NAME_DOCBUILD)" ] ; then \
76 echo "Already exists $(TMPCLONEROOT)/$(NAME_DOCBUILD)" ; \
77 echo "Doing git pull instead"; cd $(TMPCLONEROOT)/$(NAME_DOCBUILD) ; git pull ; \
78 else \
79 echo "Cloning $(REPO_DOCBUILD) in $(TMPCLONEROOT)" ; \
80 cd "$(TMPCLONEROOT)" ; \
81 git clone -b master-enea git@git.enea.se:$(REPO_DOCBUILD) $(NAME_DOCBUILD) ; \
82 fi
83
84$(TMPCLONEROOT)/$(NAME_DOCENEACOMMON):
85 $(VERB)if [ ! -d "$(TMPCLONEROOT)" ] ; then mkdir -p "$(TMPCLONEROOT)" ; fi
86 $(VERB)if [ -d "$(TMPCLONEROOT)/$(NAME_DOCENEACOMMON)" ] ; then \
87 echo "Already exists $(TMPCLONEROOT)/$(NAME_DOCENEACOMMON)" ; \
88 echo "Doing git pull instead"; cd $(TMPCLONEROOT)/$(NAME_DOCENEACOMMON) ; git pull ; \
89 else \
90 echo "Cloning $(REPO_DOCENEACOMMON) in $(TMPCLONEROOT) as $(NAME_DOCENEACOMMON)" ; \
91 cd "$(TMPCLONEROOT)"; \
92 git clone -b $(BRANCH_DOCENEACOMMON) git@git.enea.se:$(REPO_DOCENEACOMMON) $(NAME_DOCENEACOMMON) ; \
93 fi
94
95cleaninit:
96 @echo "Clean only local tmpcommon/ and all local temporary symlinks s_docbuild s_targets etc."
97 $(VERB)rm -rf tmpcommon 2>/dev/null ; true
98 $(VERB)rm s_* 2>/dev/null ; true
diff --git a/doc/initbuildboot.sh b/doc/initbuildboot.sh
new file mode 100644
index 0000000..72606a6
--- /dev/null
+++ b/doc/initbuildboot.sh
@@ -0,0 +1,111 @@
1#!/bin/sh
2VER="R0.06"
3
4BBTEMPLATE=
5BBXML=
6
7USAGE="`basename $0` -xml buildbootxml-to-create -template templatexml-file ($VER)
8 Currently only supports sequence types Build-command: and Boot-command:
9 Both files should have path book-*release-info/doc/
10 Creates the XML file from the template, inserting build/boot commands
11 from the various s_targets/XXXtargetXXX/README files
12 at the place in template with >SCRIPT_INCLUDES_BUILD_BOOT_SECTIONS_HERE<
13 ignoring rest of template
14 The code tries to fold too long lines, but this is not perfect. Best would
15 be if the command lines already in README are short enough, e.g. by
16 using short variables, which work both on shell and uboot command lines"
17
18while echo "x$1" | egrep '^x-' >/dev/null 2>&1
19do
20 OPT="$1" ; shift
21 if [ "$OPT" = "--help" -o "$OPT" = "-h" -o "$OPT" = "-help" ] ; then echo "$USAGE" ; exit ; fi
22 if [ "$OPT" = "-xml" ] ; then BBXML="$1" ; shift; fi
23 if [ "$OPT" = "-template" ] ; then BBTEMPLATE="$1" ; shift; fi
24done
25if [ "$BBTEMPLATE" = "" ]; then echo "ERROR: Missing option -template templatefile"; exit ; fi
26if [ "$BBXML" = "" ]; then echo "ERROR: Missing option -xml buildbootxml-to-create"; exit ; fi
27if [ ! -f "$BBTEMPLATE" ]; then echo "ERROR: Missing templatefile '$BBTEMPLATE'"; exit; fi
28if [ ! -d "`dirname \"$BBXML\"`" ]; then echo "ERROR: Missing parent directory for '$BBXML'"; exit ; fi
29
30echo "`basename $0` Creating $BBXML from"
31TARGETREADMES=`cd s_targets ; ls -d */README | tr '\n' ' '`
32echo " $TARGETREADMES"
33
34# README file formats:
35# a) Sequence starts: ___ XXXX:yyyy or ___ XXXX:yyyy conffile
36# where XXXX is a type, yyyy is text to be in title
37# b) Inside sequence: ___ END ends the sequence (ignore rest of line)
38# c) Inside sequence: # Documentation line
39# d) Inside sequence: Anything else is command or config lines
40# Conv.to XML: ">" "<" "&" and put all inside <programlisting>
41# *) Anywhere ____xxxx Leading 4 underlines or more, always ignored
42# unless one of the recognized XXXX
43# *) Anywhere outside sequence, ignore all
44# *) There can be multiple of each type of sequence in each README file
45# with different yyyy
46
47
48cat $BBTEMPLATE | awk '
49 />SCRIPT_INCLUDES_BUILD_BOOT_SECTIONS_HERE</ {exit 0; }
50 { print $0; }
51' >$BBXML
52
53
54# Long command lines: The awk code below breaks too long lines, but this is not perfect.
55extractcmds_filter() {
56 echo " <programlisting>" | tr -d '\n'
57 sed '/^___/d;s/\&/\&amp;/g' | sed 's/</\&lt;/g;s/>/\&gt;/g;/^$/d' | \
58 awk 'BEGIN { MAX=90; }
59 ( length($0) > MAX ) {
60 LINE=$0;
61 while (length(LINE) > MAX) {
62 if (index(LINE," ") == 0 ) {
63 print "ERROR: PROBLEM: No space in too long line:" LINE > "/dev/stderr";
64 print $LINE;
65 next;
66 }
67 i=MAX; while ( substr(LINE,i,1) != " " ) { i=i-1; if (i==0) {break;} }
68 print substr(LINE,0,i) "\\";
69 REST=substr(LINE,i+1);
70 if ( length(REST) == 0 ) { next ; }
71 LINE=" " REST;
72 }
73 if ( length(LINE) > 0 ) { print LINE; next ; }
74 }
75 { print;}'
76 echo "</programlisting>"
77}
78
79extractcmds_for_type() { # target/README BOOTorBUILD
80 README=s_targets/"$1"
81 CMDTYPE="$2"
82 COMMANDSFOR=`egrep "___$CMDTYPE:" $README`
83 for CMDS in $COMMANDSFOR
84 do
85 cmdsfor=`echo "$CMDS" | sed 's/[^:]*://'`
86 echo " <para>$CMDTYPE for $cmdsfor</para>"
87 cat "$README" | sed -n "/$COMMANDSFOR/,/___END/p" | extractcmds_filter
88 done
89}
90
91for targetreadme in $TARGETREADMES
92do
93 TARGET=`dirname $targetreadme`
94 echo "" >>$BBXML
95 echo " <section id=\"target_$TARGET\">" >>$BBXML
96 echo " <title>Target $TARGET - Build and Boot Instructions</title>" >>$BBXML
97 echo " <remark>NOTE: DO NOT EDIT THIS GENERATED FILE! Only edit the template file.</remark>" >>$BBXML
98 echo " <section>" >>$BBXML
99 echo " <title>Build Instructions</title>" >>$BBXML
100 extractcmds_for_type $targetreadme Build-command >>$BBXML
101 echo " </section>" >>$BBXML
102 echo "" >>$BBXML
103 echo " <section>" >>$BBXML
104 echo " <title>Boot Instructions</title>" >>$BBXML
105 extractcmds_for_type $targetreadme Boot-command >>$BBXML
106 echo " </section>" >>$BBXML
107 echo " </section>" >>$BBXML
108done
109
110echo "</chapter>" >>$BBXML
111echo "Ready created $BBXML"