forked from mwlang/pdf-writer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
LICENCE
131 lines (109 loc) · 6.17 KB
/
LICENCE
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
131
= PDF::Writer for Ruby
Homepage:: http://rubyforge.org/projects/ruby-pdf/
Copyright:: Copyright © 2003—2005 Austin Ziegler.
Summary:: MIT-style
This project had a change of maintainers in November, 2007.
New developments are now copyrighted by Gregory Brown and Michael Milner,
unless otherwise noted.
---
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
* The names of its contributors may not be used to endorse or promote
products derived from this software without specific prior written
permission.
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
== Works Included Under Other Licences
=== pdf/writer/graphics/imageinfo.rb
PDF::Writer includes a derivative of Keisuke Minami's ImageSize library,
which can be found at rubycgi[http://www.rubycgi.org/tools/index.en.htm].
This work—and only this or other named works—may be treated as under the Ruby
licensing scheme (GPL 2 or later, Ruby's licence) as well as the overall
PDF::Writer licence.
=== Ruby Quick Reference Sheets
PDF::Writer has demo programs that will create Quick Reference cards for
Ruby. The content and output of these programs is copyright 2003–2005 Ryan
Davis and is licensed under the Creative Commons
Attribution-NonCommercial-ShareAlike[http://creativecommons.org/licenses/by-nc-sa/2.0/]
licence.
=== Images from "Why's (Poignant) Guide to Ruby"
One of the demo programs uses images originally from "Why's (Poignant) Guide
to Ruby"[http://poignantguide.net/ruby], with permission. These immages are
released under the Creative Commons
Attributions ShareAlike[http://creativecommons.org/licenses/by-sa/2.0/]
licence.
=== Adobe PostScript AFM Files
pdf/writer/fonts/MustRead.html and the 14 PostScript(R) AFM files it
accompanies may be used, copied, and distributed for any purpose and without
charge, with or without modification, provided that all copyright notices are
retained; that the AFM files are not distributed without this file; that all
modifications to this file or any of the AFM files are prominently noted in
the modified file(s); and that this paragraph is not modified. Adobe Systems
has no responsibility or obligation to support the use of the AFM files.
== Other Credits
=== PDF::Writer
PDF::Writer is based originally on the R & OS PDF class for
PHP[http://www.ros.co.nz/pdf/], which is released as public domain.
=== Standard Deviation Chart
The standard deviation chart (pdf/charts/stddev.rb) class is based on
work by Cris Ewing[mailto:[email protected]] of the University of
Washington School of Medicine, originally created for the R & OS PDF class
for PHP. He has graciously donated the code for PDF::Writer for Ruby.
=== bluesmoke.jpg
The logo image for PDF::Writer, bluesmoke.jpg, is modified from a picture
taken by Matthew "TheSaint" Bowden[mailto:[email protected]] and is
available on the stock.xchng(R) at
<http://www.sxc.hu/browse.phtml?f=view&id=275430>. Many thanks to Matthew for
the use of this image.
== Patents Covering the Adobe PDF Format
=== ADOBE PATENTS
This software is based on Adobe's PDF Reference, Third Edition, version 1.6.
There may be limitations on the use of this library based on patent
restrictions from Adobe. See bewlow for more information.
=== UNISYS LZW PATENT
This software does not fully conform to the Adobe PDF specification because
no support for LZW is included in this software. At the time of original
development of this software (2003), the Unisys LZW patent was still in
effect outside of the United States. This will be modified in a future
version of this software.
== Patent Clarification Notice: Reading and Writing PDF Files
Adobe has a number of patents covering technology that is disclosed in the
Portable Document Format (PDF) Specification, version 1.6 and later, as
documented in PDF Reference and associated Technical Notes (the
"Specification". Adobe desires to promote the use of PDF for information
interchange among diverse products and applications.
Accordingly, the following patents are licensed on a royalty-free, non-
exclusive basis for the term of each patent and for the sole purpose of
developing software that produces, consumes, and interprets PDF files that
are compliant with the Specification:
U.S. Patent Numbers: 5,634,064; 5,737,599; 5,781,785; 5,819,301; 6,028,583;
6,289,364; 6,421,460
In addition, the following patent is licensed on a royalty-free, non-
exclusive basis for its term and for the sole purpose of developing software
that produces PDF files that are compliant with the Specification
(specifically excluding, however, software that consumes and/or interprets
PDF files):
U.S. Patent Numbers: 5,860,074
The above licenses are limited to only those rights required to implement the
Specification and no others. That is to say, Adobe grants only those rights
in the above patent(s) necessarily practiced to implement the Specification,
and does not grant any rights not required to implement the Specification.
The licenses do not grant the right to practice any patent covering other
technologies, such as implementation techniques that are not explicitly
disclosed in the Specification, nor does it allow the use of any patented
feature for any purpose other than as set forth in the applicable license
grant. Adobe has other patents in various fields, none of which are hereby
licensed.
$Id$
# vim: sts=2 sw=2 ts=4 et ai tw=77