1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
|
This package was debianized by Boris Kolpackov <boris@codesynthesis.com> on
Mon, 18 Jul 2005 19:56:52 -0200.
It was downloaded from http://www.codesynthesis.com/projects/xsd/
Copyright Holder: Code Synthesis Tools CC <info@codesynthesis.com>
License:
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
02111-1307, USA.
On Debian systems, the complete text of the GNU General
Public License can be found in `/usr/share/common-licenses/GPL'.
In addition, as a special exception, Code Synthesis Tools CC gives
permission to link this program with the Xerces-C++ library (or with
modified versions of Xerces-C++ that use the same license as Xerces-C++),
and distribute linked combinations including the two. You must obey
the GNU General Public License version 2 in all respects for all of
the code used other than Xerces-C++. If you modify this copy of the
program, you may extend this exception to your version of the program,
but you are not obligated to do so. If you do not wish to do so, delete
this exception statement from your version.
In addition, Code Synthesis Tools CC makes a special exception for
the Free/Libre and Open Source Software (FLOSS) which is described
below.
1. Intent
We want specified Free/Libre and Open Source Software ("FLOSS")
to be able to use the specified GPL-licensed xsd runtime library
and xsd generated code (collectively called the "Program") despite
the fact that not all FLOSS licenses are compatible with version 2
of the GNU General Public License (the "GPL").
It is our intent to allow distribution of the entire Derivative
Work (including the Program) under one or more of the FLOSS licenses
listed in section 3 (section 2.a). It is also our intent to disallow
simple relicensing of the Program for the sole purpose of using it in
proprietary applications (section 2.b and 2.c). As an example, consider
two hypothetical scenarios:
a) You created a program that uses the xsd generated code and the xsd
runtime library to access information in XML instance documents.
Your program performs useful computations based on this information
(sections 2.b and 2.c are satisfied). You distribute your program,
including the xsd generated code and the xsd runtime library under
the BSD license and make it available at no charge to all third
parties (section 2.a is satisfied). Later you (or someone else) may
choose to base their proprietary application on your code since the
BSD license does not prohibit it.
This scenario falls under this FLOSS Exception.
b) You created a library that uses the xsd generated code and the xsd
runtime library to access information in XML instance documents. You
did not add to the library any other useful code that uses the xsd
generated code or the xsd runtime library (neither section 2.b nor
2.c is satisfied). You distribute your library, including the xsd
generated code and the xsd runtime library under the BSD license and
make it available at no charge to all third parties (section 2.a
is satisfied). Later you base your proprietary application on this
library since the BSD license does not prohibit it.
This scenario does not fall under this FLOSS Exception (neither
section 2.b nor 2.c is satisfied). You created the library for the
sole purpose of making the xsd generated code and the xsd runtime
library available to your proprietary application.
2. Legal Terms and Conditions
As a special exception to the terms and conditions of version 2 of
the GPL you are free to distribute a verbatim copy of the Program
as part of the Derivative Work that is formed from the Program or
any part thereof and one or more works (each, a "FLOSS Work") as
long as you also meet all of these conditions:
a) You must cause the Derivative Work 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 one or more of the licenses listed in
section 3.
b) The Derivative Work should contain one or more FLOSS Work that
can be reasonably considered as derived from the Program or some
part thereof.
c) The Derivative Work should not contain any part of the Program
that cannot be reasonably considered as a base of one or more
FLOSS Work.
3. FLOSS License List
a) Any license listed in the "GPL-Compatible Free Software Licenses"
and the "GPL-Incompatible Free Software Licenses" sections of the
License List as published by the Free Software Foundation (FSF):
http://www.gnu.org/licenses/license-list.html
4. Definitions
Terms used, but not defined, herein shall have the meaning
provided in the GPL.
Derivative Work means a derivative work under copyright law.
5. Applicability
You may choose to redistribute a copy of the Program exclusively under
the terms of the GPL by removing the FLOSS Exception notice from that
copy of the Program.
|