isbn 1.4.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +4 -0
- data/README +9 -0
- data/Rakefile +13 -0
- data/VERSION +1 -0
- data/isbn.gemspec +329 -0
- data/lib/isbn.rb +90 -0
- data/src/gocr-0.48/.cvsignore +6 -0
- data/src/gocr-0.48/AUTHORS +7 -0
- data/src/gocr-0.48/BUGS +55 -0
- data/src/gocr-0.48/CREDITS +17 -0
- data/src/gocr-0.48/HISTORY +243 -0
- data/src/gocr-0.48/INSTALL +83 -0
- data/src/gocr-0.48/Makefile +193 -0
- data/src/gocr-0.48/Makefile.in +193 -0
- data/src/gocr-0.48/README +165 -0
- data/src/gocr-0.48/READMEde.txt +80 -0
- data/src/gocr-0.48/REMARK.txt +18 -0
- data/src/gocr-0.48/REVIEW +538 -0
- data/src/gocr-0.48/TODO +65 -0
- data/src/gocr-0.48/bin/.cvsignore +2 -0
- data/src/gocr-0.48/bin/create_db +38 -0
- data/src/gocr-0.48/bin/gocr.tcl +527 -0
- data/src/gocr-0.48/bin/gocr_chk.sh +44 -0
- data/src/gocr-0.48/configure +4689 -0
- data/src/gocr-0.48/configure.in +71 -0
- data/src/gocr-0.48/doc/.#Makefile.1.6 +39 -0
- data/src/gocr-0.48/doc/.cvsignore +2 -0
- data/src/gocr-0.48/doc/Makefile +39 -0
- data/src/gocr-0.48/doc/Makefile.in +39 -0
- data/src/gocr-0.48/doc/example.dtd +53 -0
- data/src/gocr-0.48/doc/example.xml +21 -0
- data/src/gocr-0.48/doc/examples.txt +67 -0
- data/src/gocr-0.48/doc/gocr.html +578 -0
- data/src/gocr-0.48/doc/unicode.txt +57 -0
- data/src/gocr-0.48/examples/.#Makefile.1.22 +166 -0
- data/src/gocr-0.48/examples/4x6.png +0 -0
- data/src/gocr-0.48/examples/4x6.txt +2 -0
- data/src/gocr-0.48/examples/5x7.png +0 -0
- data/src/gocr-0.48/examples/5x7.png.txt +2 -0
- data/src/gocr-0.48/examples/5x8.png +0 -0
- data/src/gocr-0.48/examples/5x8.png.txt +2 -0
- data/src/gocr-0.48/examples/Makefile +166 -0
- data/src/gocr-0.48/examples/color.fig +20 -0
- data/src/gocr-0.48/examples/ex.fig +16 -0
- data/src/gocr-0.48/examples/font.tex +22 -0
- data/src/gocr-0.48/examples/font1.tex +46 -0
- data/src/gocr-0.48/examples/font2.fig +27 -0
- data/src/gocr-0.48/examples/font_nw.tex +24 -0
- data/src/gocr-0.48/examples/handwrt1.jpg +0 -0
- data/src/gocr-0.48/examples/handwrt1.txt +10 -0
- data/src/gocr-0.48/examples/inverse.fig +20 -0
- data/src/gocr-0.48/examples/matrix.jpg +0 -0
- data/src/gocr-0.48/examples/ocr-a-subset.png +0 -0
- data/src/gocr-0.48/examples/ocr-a-subset.png.txt +4 -0
- data/src/gocr-0.48/examples/ocr-a.png +0 -0
- data/src/gocr-0.48/examples/ocr-a.txt +6 -0
- data/src/gocr-0.48/examples/ocr-b.png +0 -0
- data/src/gocr-0.48/examples/ocr-b.png.txt +4 -0
- data/src/gocr-0.48/examples/polish.tex +28 -0
- data/src/gocr-0.48/examples/rotate45.fig +14 -0
- data/src/gocr-0.48/examples/score +36 -0
- data/src/gocr-0.48/examples/text.tex +28 -0
- data/src/gocr-0.48/gocr.spec +143 -0
- data/src/gocr-0.48/gpl.html +537 -0
- data/src/gocr-0.48/include/.cvsignore +2 -0
- data/src/gocr-0.48/include/config.h +36 -0
- data/src/gocr-0.48/include/config.h.in +36 -0
- data/src/gocr-0.48/include/version.h +2 -0
- data/src/gocr-0.48/install-sh +3 -0
- data/src/gocr-0.48/make.bat +57 -0
- data/src/gocr-0.48/man/.cvsignore +2 -0
- data/src/gocr-0.48/man/Makefile +29 -0
- data/src/gocr-0.48/man/Makefile.in +29 -0
- data/src/gocr-0.48/man/man1/gocr.1 +166 -0
- data/src/gocr-0.48/src/.cvsignore +4 -0
- data/src/gocr-0.48/src/Makefile +132 -0
- data/src/gocr-0.48/src/Makefile.in +132 -0
- data/src/gocr-0.48/src/amiga.h +31 -0
- data/src/gocr-0.48/src/barcode.c +846 -0
- data/src/gocr-0.48/src/barcode.c.orig +593 -0
- data/src/gocr-0.48/src/barcode.h +11 -0
- data/src/gocr-0.48/src/box.c +372 -0
- data/src/gocr-0.48/src/database.c +462 -0
- data/src/gocr-0.48/src/detect.c +943 -0
- data/src/gocr-0.48/src/gocr.c +373 -0
- data/src/gocr-0.48/src/gocr.h +288 -0
- data/src/gocr-0.48/src/jconv.c +168 -0
- data/src/gocr-0.48/src/job.c +84 -0
- data/src/gocr-0.48/src/lines.c +350 -0
- data/src/gocr-0.48/src/list.c +334 -0
- data/src/gocr-0.48/src/list.h +90 -0
- data/src/gocr-0.48/src/ocr0.c +6756 -0
- data/src/gocr-0.48/src/ocr0.h +63 -0
- data/src/gocr-0.48/src/ocr0n.c +1475 -0
- data/src/gocr-0.48/src/ocr1.c +85 -0
- data/src/gocr-0.48/src/ocr1.h +3 -0
- data/src/gocr-0.48/src/otsu.c +289 -0
- data/src/gocr-0.48/src/otsu.h +23 -0
- data/src/gocr-0.48/src/output.c +289 -0
- data/src/gocr-0.48/src/output.h +37 -0
- data/src/gocr-0.48/src/pcx.c +153 -0
- data/src/gocr-0.48/src/pcx.h +9 -0
- data/src/gocr-0.48/src/pgm2asc.c +2893 -0
- data/src/gocr-0.48/src/pgm2asc.h +105 -0
- data/src/gocr-0.48/src/pixel.c +537 -0
- data/src/gocr-0.48/src/pnm.c +533 -0
- data/src/gocr-0.48/src/pnm.h +35 -0
- data/src/gocr-0.48/src/progress.c +87 -0
- data/src/gocr-0.48/src/progress.h +42 -0
- data/src/gocr-0.48/src/remove.c +703 -0
- data/src/gocr-0.48/src/tga.c +87 -0
- data/src/gocr-0.48/src/tga.h +6 -0
- data/src/gocr-0.48/src/unicode.c +1314 -0
- data/src/gocr-0.48/src/unicode.h +1257 -0
- data/src/jpeg-7/Makefile.am +133 -0
- data/src/jpeg-7/Makefile.in +1089 -0
- data/src/jpeg-7/README +322 -0
- data/src/jpeg-7/aclocal.m4 +8990 -0
- data/src/jpeg-7/ansi2knr.1 +36 -0
- data/src/jpeg-7/ansi2knr.c +739 -0
- data/src/jpeg-7/cderror.h +132 -0
- data/src/jpeg-7/cdjpeg.c +181 -0
- data/src/jpeg-7/cdjpeg.h +187 -0
- data/src/jpeg-7/change.log +270 -0
- data/src/jpeg-7/cjpeg.1 +325 -0
- data/src/jpeg-7/cjpeg.c +616 -0
- data/src/jpeg-7/ckconfig.c +402 -0
- data/src/jpeg-7/coderules.txt +118 -0
- data/src/jpeg-7/config.guess +1561 -0
- data/src/jpeg-7/config.sub +1686 -0
- data/src/jpeg-7/configure +17139 -0
- data/src/jpeg-7/configure.ac +317 -0
- data/src/jpeg-7/depcomp +630 -0
- data/src/jpeg-7/djpeg.1 +251 -0
- data/src/jpeg-7/djpeg.c +617 -0
- data/src/jpeg-7/example.c +433 -0
- data/src/jpeg-7/filelist.txt +215 -0
- data/src/jpeg-7/install-sh +520 -0
- data/src/jpeg-7/install.txt +1097 -0
- data/src/jpeg-7/jaricom.c +148 -0
- data/src/jpeg-7/jcapimin.c +282 -0
- data/src/jpeg-7/jcapistd.c +161 -0
- data/src/jpeg-7/jcarith.c +921 -0
- data/src/jpeg-7/jccoefct.c +453 -0
- data/src/jpeg-7/jccolor.c +459 -0
- data/src/jpeg-7/jcdctmgr.c +482 -0
- data/src/jpeg-7/jchuff.c +1612 -0
- data/src/jpeg-7/jcinit.c +65 -0
- data/src/jpeg-7/jcmainct.c +293 -0
- data/src/jpeg-7/jcmarker.c +667 -0
- data/src/jpeg-7/jcmaster.c +770 -0
- data/src/jpeg-7/jcomapi.c +106 -0
- data/src/jpeg-7/jconfig.bcc +48 -0
- data/src/jpeg-7/jconfig.cfg +45 -0
- data/src/jpeg-7/jconfig.dj +38 -0
- data/src/jpeg-7/jconfig.mac +43 -0
- data/src/jpeg-7/jconfig.manx +43 -0
- data/src/jpeg-7/jconfig.mc6 +52 -0
- data/src/jpeg-7/jconfig.sas +43 -0
- data/src/jpeg-7/jconfig.st +42 -0
- data/src/jpeg-7/jconfig.txt +155 -0
- data/src/jpeg-7/jconfig.vc +45 -0
- data/src/jpeg-7/jconfig.vms +37 -0
- data/src/jpeg-7/jconfig.wat +38 -0
- data/src/jpeg-7/jcparam.c +632 -0
- data/src/jpeg-7/jcprepct.c +358 -0
- data/src/jpeg-7/jcsample.c +545 -0
- data/src/jpeg-7/jctrans.c +381 -0
- data/src/jpeg-7/jdapimin.c +396 -0
- data/src/jpeg-7/jdapistd.c +275 -0
- data/src/jpeg-7/jdarith.c +762 -0
- data/src/jpeg-7/jdatadst.c +151 -0
- data/src/jpeg-7/jdatasrc.c +212 -0
- data/src/jpeg-7/jdcoefct.c +736 -0
- data/src/jpeg-7/jdcolor.c +396 -0
- data/src/jpeg-7/jdct.h +393 -0
- data/src/jpeg-7/jddctmgr.c +382 -0
- data/src/jpeg-7/jdhuff.c +1309 -0
- data/src/jpeg-7/jdinput.c +384 -0
- data/src/jpeg-7/jdmainct.c +512 -0
- data/src/jpeg-7/jdmarker.c +1360 -0
- data/src/jpeg-7/jdmaster.c +663 -0
- data/src/jpeg-7/jdmerge.c +400 -0
- data/src/jpeg-7/jdpostct.c +290 -0
- data/src/jpeg-7/jdsample.c +361 -0
- data/src/jpeg-7/jdtrans.c +136 -0
- data/src/jpeg-7/jerror.c +252 -0
- data/src/jpeg-7/jerror.h +304 -0
- data/src/jpeg-7/jfdctflt.c +174 -0
- data/src/jpeg-7/jfdctfst.c +230 -0
- data/src/jpeg-7/jfdctint.c +4348 -0
- data/src/jpeg-7/jidctflt.c +242 -0
- data/src/jpeg-7/jidctfst.c +368 -0
- data/src/jpeg-7/jidctint.c +5137 -0
- data/src/jpeg-7/jinclude.h +91 -0
- data/src/jpeg-7/jmemansi.c +167 -0
- data/src/jpeg-7/jmemdos.c +638 -0
- data/src/jpeg-7/jmemdosa.asm +379 -0
- data/src/jpeg-7/jmemmac.c +289 -0
- data/src/jpeg-7/jmemmgr.c +1118 -0
- data/src/jpeg-7/jmemname.c +276 -0
- data/src/jpeg-7/jmemnobs.c +109 -0
- data/src/jpeg-7/jmemsys.h +198 -0
- data/src/jpeg-7/jmorecfg.h +369 -0
- data/src/jpeg-7/jpegint.h +395 -0
- data/src/jpeg-7/jpeglib.h +1135 -0
- data/src/jpeg-7/jpegtran.1 +272 -0
- data/src/jpeg-7/jpegtran.c +546 -0
- data/src/jpeg-7/jquant1.c +856 -0
- data/src/jpeg-7/jquant2.c +1310 -0
- data/src/jpeg-7/jutils.c +179 -0
- data/src/jpeg-7/jversion.h +14 -0
- data/src/jpeg-7/libjpeg.map +4 -0
- data/src/jpeg-7/libjpeg.txt +3067 -0
- data/src/jpeg-7/ltmain.sh +8406 -0
- data/src/jpeg-7/makcjpeg.st +36 -0
- data/src/jpeg-7/makdjpeg.st +36 -0
- data/src/jpeg-7/makeadsw.vc6 +77 -0
- data/src/jpeg-7/makeasln.vc9 +33 -0
- data/src/jpeg-7/makecdep.vc6 +82 -0
- data/src/jpeg-7/makecdsp.vc6 +130 -0
- data/src/jpeg-7/makecmak.vc6 +159 -0
- data/src/jpeg-7/makecvcp.vc9 +186 -0
- data/src/jpeg-7/makeddep.vc6 +82 -0
- data/src/jpeg-7/makeddsp.vc6 +130 -0
- data/src/jpeg-7/makedmak.vc6 +159 -0
- data/src/jpeg-7/makedvcp.vc9 +186 -0
- data/src/jpeg-7/makefile.ansi +220 -0
- data/src/jpeg-7/makefile.bcc +291 -0
- data/src/jpeg-7/makefile.dj +226 -0
- data/src/jpeg-7/makefile.manx +220 -0
- data/src/jpeg-7/makefile.mc6 +255 -0
- data/src/jpeg-7/makefile.mms +224 -0
- data/src/jpeg-7/makefile.sas +258 -0
- data/src/jpeg-7/makefile.unix +234 -0
- data/src/jpeg-7/makefile.vc +217 -0
- data/src/jpeg-7/makefile.vms +142 -0
- data/src/jpeg-7/makefile.wat +239 -0
- data/src/jpeg-7/makejdep.vc6 +423 -0
- data/src/jpeg-7/makejdsp.vc6 +285 -0
- data/src/jpeg-7/makejdsw.vc6 +29 -0
- data/src/jpeg-7/makejmak.vc6 +425 -0
- data/src/jpeg-7/makejsln.vc9 +17 -0
- data/src/jpeg-7/makejvcp.vc9 +328 -0
- data/src/jpeg-7/makeproj.mac +213 -0
- data/src/jpeg-7/makerdep.vc6 +6 -0
- data/src/jpeg-7/makerdsp.vc6 +78 -0
- data/src/jpeg-7/makermak.vc6 +110 -0
- data/src/jpeg-7/makervcp.vc9 +133 -0
- data/src/jpeg-7/maketdep.vc6 +43 -0
- data/src/jpeg-7/maketdsp.vc6 +122 -0
- data/src/jpeg-7/maketmak.vc6 +131 -0
- data/src/jpeg-7/maketvcp.vc9 +178 -0
- data/src/jpeg-7/makewdep.vc6 +6 -0
- data/src/jpeg-7/makewdsp.vc6 +78 -0
- data/src/jpeg-7/makewmak.vc6 +110 -0
- data/src/jpeg-7/makewvcp.vc9 +133 -0
- data/src/jpeg-7/makljpeg.st +68 -0
- data/src/jpeg-7/maktjpeg.st +30 -0
- data/src/jpeg-7/makvms.opt +4 -0
- data/src/jpeg-7/missing +376 -0
- data/src/jpeg-7/rdbmp.c +439 -0
- data/src/jpeg-7/rdcolmap.c +253 -0
- data/src/jpeg-7/rdgif.c +38 -0
- data/src/jpeg-7/rdjpgcom.1 +63 -0
- data/src/jpeg-7/rdjpgcom.c +515 -0
- data/src/jpeg-7/rdppm.c +459 -0
- data/src/jpeg-7/rdrle.c +387 -0
- data/src/jpeg-7/rdswitch.c +365 -0
- data/src/jpeg-7/rdtarga.c +500 -0
- data/src/jpeg-7/structure.txt +945 -0
- data/src/jpeg-7/testimg.bmp +0 -0
- data/src/jpeg-7/testimg.jpg +0 -0
- data/src/jpeg-7/testimg.ppm +4 -0
- data/src/jpeg-7/testimgp.jpg +0 -0
- data/src/jpeg-7/testorig.jpg +0 -0
- data/src/jpeg-7/testprog.jpg +0 -0
- data/src/jpeg-7/transupp.c +1533 -0
- data/src/jpeg-7/transupp.h +205 -0
- data/src/jpeg-7/usage.txt +605 -0
- data/src/jpeg-7/wizard.txt +211 -0
- data/src/jpeg-7/wrbmp.c +442 -0
- data/src/jpeg-7/wrgif.c +399 -0
- data/src/jpeg-7/wrjpgcom.1 +103 -0
- data/src/jpeg-7/wrjpgcom.c +583 -0
- data/src/jpeg-7/wrppm.c +269 -0
- data/src/jpeg-7/wrrle.c +305 -0
- data/src/jpeg-7/wrtarga.c +253 -0
- data/test/isbn_test.rb +7 -0
- data/test/test_helper.rb +7 -0
- metadata +345 -0
@@ -0,0 +1,537 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//IETF//DTD HTML 2.0//EN">
|
2
|
+
<HTML>
|
3
|
+
<HEAD>
|
4
|
+
<TITLE>GNU General Public License - GNU Project - Free Software Foundation (FSF)</TITLE>
|
5
|
+
<LINK REV="made" HREF="mailto:webmasters@www.gnu.org">
|
6
|
+
</HEAD>
|
7
|
+
<BODY BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#1F00FF" ALINK="#FF0000" VLINK="#9900DD">
|
8
|
+
<H1>GNU General Public License</H1>
|
9
|
+
<A HREF="/graphics/philosophicalgnu.html"><IMG SRC="/graphics/philosophical-gnu-sm.jpg"
|
10
|
+
ALT=" [image of a Philosophical GNU] "
|
11
|
+
WIDTH="160" HEIGHT="200"></A>
|
12
|
+
|
13
|
+
<P>
|
14
|
+
<UL>
|
15
|
+
<!-- It is best to not enumerate the translations here in a menu bar, -->
|
16
|
+
<!-- It is best to have the users follow this link, so they have the FSF' -->
|
17
|
+
<!-- explanation about translations being unofficial, etc. -->
|
18
|
+
<LI><A HREF="/copyleft/gpl-violation.html">What to do if you see a possible
|
19
|
+
GPL violation</A>
|
20
|
+
<LI><A HREF="/copyleft/copyleft.html#translations">Translations
|
21
|
+
of the GPL</A>
|
22
|
+
</UL>
|
23
|
+
<P>
|
24
|
+
<HR>
|
25
|
+
|
26
|
+
<P>
|
27
|
+
|
28
|
+
<H2>Table of Contents</H2>
|
29
|
+
<UL>
|
30
|
+
|
31
|
+
<LI><A NAME="TOC1" HREF="gpl.html#SEC1">GNU GENERAL PUBLIC LICENSE</A>
|
32
|
+
<UL>
|
33
|
+
<LI><A NAME="TOC2" HREF="gpl.html#SEC2">Preamble</A>
|
34
|
+
<LI><A NAME="TOC3" HREF="gpl.html#SEC3">TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION</A>
|
35
|
+
<LI><A NAME="TOC4" HREF="gpl.html#SEC4">How to Apply These Terms to Your New Programs</A>
|
36
|
+
|
37
|
+
</UL>
|
38
|
+
</UL>
|
39
|
+
|
40
|
+
<P>
|
41
|
+
|
42
|
+
<HR>
|
43
|
+
|
44
|
+
<P>
|
45
|
+
|
46
|
+
|
47
|
+
|
48
|
+
<H2><A NAME="SEC1" HREF="gpl.html#TOC1">GNU GENERAL PUBLIC LICENSE</A></H2>
|
49
|
+
<P>
|
50
|
+
Version 2, June 1991
|
51
|
+
|
52
|
+
</P>
|
53
|
+
|
54
|
+
<PRE>
|
55
|
+
Copyright (C) 1989, 1991 Free Software Foundation, Inc.
|
56
|
+
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
57
|
+
|
58
|
+
Everyone is permitted to copy and distribute verbatim copies
|
59
|
+
of this license document, but changing it is not allowed.
|
60
|
+
</PRE>
|
61
|
+
|
62
|
+
|
63
|
+
|
64
|
+
<H2><A NAME="SEC2" HREF="gpl.html#TOC2">Preamble</A></H2>
|
65
|
+
|
66
|
+
<P>
|
67
|
+
The licenses for most software are designed to take away your
|
68
|
+
freedom to share and change it. By contrast, the GNU General Public
|
69
|
+
License is intended to guarantee your freedom to share and change free
|
70
|
+
software--to make sure the software is free for all its users. This
|
71
|
+
General Public License applies to most of the Free Software
|
72
|
+
Foundation's software and to any other program whose authors commit to
|
73
|
+
using it. (Some other Free Software Foundation software is covered by
|
74
|
+
the GNU Library General Public License instead.) You can apply it to
|
75
|
+
your programs, too.
|
76
|
+
|
77
|
+
</P>
|
78
|
+
<P>
|
79
|
+
When we speak of free software, we are referring to freedom, not
|
80
|
+
price. Our General Public Licenses are designed to make sure that you
|
81
|
+
have the freedom to distribute copies of free software (and charge for
|
82
|
+
this service if you wish), that you receive source code or can get it
|
83
|
+
if you want it, that you can change the software or use pieces of it
|
84
|
+
in new free programs; and that you know you can do these things.
|
85
|
+
|
86
|
+
</P>
|
87
|
+
<P>
|
88
|
+
To protect your rights, we need to make restrictions that forbid
|
89
|
+
anyone to deny you these rights or to ask you to surrender the rights.
|
90
|
+
These restrictions translate to certain responsibilities for you if you
|
91
|
+
distribute copies of the software, or if you modify it.
|
92
|
+
|
93
|
+
</P>
|
94
|
+
<P>
|
95
|
+
For example, if you distribute copies of such a program, whether
|
96
|
+
gratis or for a fee, you must give the recipients all the rights that
|
97
|
+
you have. You must make sure that they, too, receive or can get the
|
98
|
+
source code. And you must show them these terms so they know their
|
99
|
+
rights.
|
100
|
+
|
101
|
+
</P>
|
102
|
+
<P>
|
103
|
+
We protect your rights with two steps: (1) copyright the software, and
|
104
|
+
(2) offer you this license which gives you legal permission to copy,
|
105
|
+
distribute and/or modify the software.
|
106
|
+
|
107
|
+
</P>
|
108
|
+
<P>
|
109
|
+
Also, for each author's protection and ours, we want to make certain
|
110
|
+
that everyone understands that there is no warranty for this free
|
111
|
+
software. If the software is modified by someone else and passed on, we
|
112
|
+
want its recipients to know that what they have is not the original, so
|
113
|
+
that any problems introduced by others will not reflect on the original
|
114
|
+
authors' reputations.
|
115
|
+
|
116
|
+
</P>
|
117
|
+
<P>
|
118
|
+
Finally, any free program is threatened constantly by software
|
119
|
+
patents. We wish to avoid the danger that redistributors of a free
|
120
|
+
program will individually obtain patent licenses, in effect making the
|
121
|
+
program proprietary. To prevent this, we have made it clear that any
|
122
|
+
patent must be licensed for everyone's free use or not licensed at all.
|
123
|
+
|
124
|
+
</P>
|
125
|
+
<P>
|
126
|
+
The precise terms and conditions for copying, distribution and
|
127
|
+
modification follow.
|
128
|
+
|
129
|
+
</P>
|
130
|
+
|
131
|
+
|
132
|
+
<H2><A NAME="SEC3" HREF="gpl.html#TOC3">TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION</A></H2>
|
133
|
+
|
134
|
+
|
135
|
+
<P>
|
136
|
+
|
137
|
+
<STRONG>0.</STRONG>
|
138
|
+
This License applies to any program or other work which contains
|
139
|
+
a notice placed by the copyright holder saying it may be distributed
|
140
|
+
under the terms of this General Public License. The "Program", below,
|
141
|
+
refers to any such program or work, and a "work based on the Program"
|
142
|
+
means either the Program or any derivative work under copyright law:
|
143
|
+
that is to say, a work containing the Program or a portion of it,
|
144
|
+
either verbatim or with modifications and/or translated into another
|
145
|
+
language. (Hereinafter, translation is included without limitation in
|
146
|
+
the term "modification".) Each licensee is addressed as "you".
|
147
|
+
<P>
|
148
|
+
|
149
|
+
Activities other than copying, distribution and modification are not
|
150
|
+
covered by this License; they are outside its scope. The act of
|
151
|
+
running the Program is not restricted, and the output from the Program
|
152
|
+
is covered only if its contents constitute a work based on the
|
153
|
+
Program (independent of having been made by running the Program).
|
154
|
+
Whether that is true depends on what the Program does.
|
155
|
+
|
156
|
+
<P>
|
157
|
+
|
158
|
+
<STRONG>1.</STRONG>
|
159
|
+
You may copy and distribute verbatim copies of the Program's
|
160
|
+
source code as you receive it, in any medium, provided that you
|
161
|
+
conspicuously and appropriately publish on each copy an appropriate
|
162
|
+
copyright notice and disclaimer of warranty; keep intact all the
|
163
|
+
notices that refer to this License and to the absence of any warranty;
|
164
|
+
and give any other recipients of the Program a copy of this License
|
165
|
+
along with the Program.
|
166
|
+
<P>
|
167
|
+
|
168
|
+
You may charge a fee for the physical act of transferring a copy, and
|
169
|
+
you may at your option offer warranty protection in exchange for a fee.
|
170
|
+
<P>
|
171
|
+
|
172
|
+
<STRONG>2.</STRONG>
|
173
|
+
You may modify your copy or copies of the Program or any portion
|
174
|
+
of it, thus forming a work based on the Program, and copy and
|
175
|
+
distribute such modifications or work under the terms of Section 1
|
176
|
+
above, provided that you also meet all of these conditions:
|
177
|
+
<P>
|
178
|
+
|
179
|
+
<UL>
|
180
|
+
|
181
|
+
<LI><STRONG>a)</STRONG>
|
182
|
+
You must cause the modified files to carry prominent notices
|
183
|
+
stating that you changed the files and the date of any change.
|
184
|
+
|
185
|
+
<P>
|
186
|
+
<LI><STRONG>b)</STRONG>
|
187
|
+
You must cause any work that you distribute or publish, that in
|
188
|
+
whole or in part contains or is derived from the Program or any
|
189
|
+
part thereof, to be licensed as a whole at no charge to all third
|
190
|
+
parties under the terms of this License.
|
191
|
+
|
192
|
+
<P>
|
193
|
+
<LI><STRONG>c)</STRONG>
|
194
|
+
If the modified program normally reads commands interactively
|
195
|
+
when run, you must cause it, when started running for such
|
196
|
+
interactive use in the most ordinary way, to print or display an
|
197
|
+
announcement including an appropriate copyright notice and a
|
198
|
+
notice that there is no warranty (or else, saying that you provide
|
199
|
+
a warranty) and that users may redistribute the program under
|
200
|
+
these conditions, and telling the user how to view a copy of this
|
201
|
+
License. (Exception: if the Program itself is interactive but
|
202
|
+
does not normally print such an announcement, your work based on
|
203
|
+
the Program is not required to print an announcement.)
|
204
|
+
</UL>
|
205
|
+
|
206
|
+
These requirements apply to the modified work as a whole. If
|
207
|
+
identifiable sections of that work are not derived from the Program,
|
208
|
+
and can be reasonably considered independent and separate works in
|
209
|
+
themselves, then this License, and its terms, do not apply to those
|
210
|
+
sections when you distribute them as separate works. But when you
|
211
|
+
distribute the same sections as part of a whole which is a work based
|
212
|
+
on the Program, the distribution of the whole must be on the terms of
|
213
|
+
this License, whose permissions for other licensees extend to the
|
214
|
+
entire whole, and thus to each and every part regardless of who wrote it.
|
215
|
+
<P>
|
216
|
+
|
217
|
+
Thus, it is not the intent of this section to claim rights or contest
|
218
|
+
your rights to work written entirely by you; rather, the intent is to
|
219
|
+
exercise the right to control the distribution of derivative or
|
220
|
+
collective works based on the Program.
|
221
|
+
<P>
|
222
|
+
|
223
|
+
In addition, mere aggregation of another work not based on the Program
|
224
|
+
with the Program (or with a work based on the Program) on a volume of
|
225
|
+
a storage or distribution medium does not bring the other work under
|
226
|
+
the scope of this License.
|
227
|
+
|
228
|
+
<P>
|
229
|
+
|
230
|
+
<STRONG>3.</STRONG>
|
231
|
+
You may copy and distribute the Program (or a work based on it,
|
232
|
+
under Section 2) in object code or executable form under the terms of
|
233
|
+
Sections 1 and 2 above provided that you also do one of the following:
|
234
|
+
|
235
|
+
|
236
|
+
<!-- we use this doubled UL to get the sub-sections indented, -->
|
237
|
+
<!-- while making the bullets as unobvious as possible. -->
|
238
|
+
<UL>
|
239
|
+
|
240
|
+
<LI><STRONG>a)</STRONG>
|
241
|
+
Accompany it with the complete corresponding machine-readable
|
242
|
+
source code, which must be distributed under the terms of Sections
|
243
|
+
1 and 2 above on a medium customarily used for software interchange; or,
|
244
|
+
|
245
|
+
<P>
|
246
|
+
<LI><STRONG>b)</STRONG>
|
247
|
+
Accompany it with a written offer, valid for at least three
|
248
|
+
years, to give any third party, for a charge no more than your
|
249
|
+
cost of physically performing source distribution, a complete
|
250
|
+
machine-readable copy of the corresponding source code, to be
|
251
|
+
distributed under the terms of Sections 1 and 2 above on a medium
|
252
|
+
customarily used for software interchange; or,
|
253
|
+
|
254
|
+
<P>
|
255
|
+
<LI><STRONG>c)</STRONG>
|
256
|
+
Accompany it with the information you received as to the offer
|
257
|
+
to distribute corresponding source code. (This alternative is
|
258
|
+
allowed only for noncommercial distribution and only if you
|
259
|
+
received the program in object code or executable form with such
|
260
|
+
an offer, in accord with Subsection b above.)
|
261
|
+
</UL>
|
262
|
+
|
263
|
+
The source code for a work means the preferred form of the work for
|
264
|
+
making modifications to it. For an executable work, complete source
|
265
|
+
code means all the source code for all modules it contains, plus any
|
266
|
+
associated interface definition files, plus the scripts used to
|
267
|
+
control compilation and installation of the executable. However, as a
|
268
|
+
special exception, the source code distributed need not include
|
269
|
+
anything that is normally distributed (in either source or binary
|
270
|
+
form) with the major components (compiler, kernel, and so on) of the
|
271
|
+
operating system on which the executable runs, unless that component
|
272
|
+
itself accompanies the executable.
|
273
|
+
<P>
|
274
|
+
|
275
|
+
If distribution of executable or object code is made by offering
|
276
|
+
access to copy from a designated place, then offering equivalent
|
277
|
+
access to copy the source code from the same place counts as
|
278
|
+
distribution of the source code, even though third parties are not
|
279
|
+
compelled to copy the source along with the object code.
|
280
|
+
<P>
|
281
|
+
|
282
|
+
<STRONG>4.</STRONG>
|
283
|
+
You may not copy, modify, sublicense, or distribute the Program
|
284
|
+
except as expressly provided under this License. Any attempt
|
285
|
+
otherwise to copy, modify, sublicense or distribute the Program is
|
286
|
+
void, and will automatically terminate your rights under this License.
|
287
|
+
However, parties who have received copies, or rights, from you under
|
288
|
+
this License will not have their licenses terminated so long as such
|
289
|
+
parties remain in full compliance.
|
290
|
+
|
291
|
+
<P>
|
292
|
+
|
293
|
+
<STRONG>5.</STRONG>
|
294
|
+
You are not required to accept this License, since you have not
|
295
|
+
signed it. However, nothing else grants you permission to modify or
|
296
|
+
distribute the Program or its derivative works. These actions are
|
297
|
+
prohibited by law if you do not accept this License. Therefore, by
|
298
|
+
modifying or distributing the Program (or any work based on the
|
299
|
+
Program), you indicate your acceptance of this License to do so, and
|
300
|
+
all its terms and conditions for copying, distributing or modifying
|
301
|
+
the Program or works based on it.
|
302
|
+
|
303
|
+
<P>
|
304
|
+
|
305
|
+
<STRONG>6.</STRONG>
|
306
|
+
Each time you redistribute the Program (or any work based on the
|
307
|
+
Program), the recipient automatically receives a license from the
|
308
|
+
original licensor to copy, distribute or modify the Program subject to
|
309
|
+
these terms and conditions. You may not impose any further
|
310
|
+
restrictions on the recipients' exercise of the rights granted herein.
|
311
|
+
You are not responsible for enforcing compliance by third parties to
|
312
|
+
this License.
|
313
|
+
|
314
|
+
<P>
|
315
|
+
|
316
|
+
<STRONG>7.</STRONG>
|
317
|
+
If, as a consequence of a court judgment or allegation of patent
|
318
|
+
infringement or for any other reason (not limited to patent issues),
|
319
|
+
conditions are imposed on you (whether by court order, agreement or
|
320
|
+
otherwise) that contradict the conditions of this License, they do not
|
321
|
+
excuse you from the conditions of this License. If you cannot
|
322
|
+
distribute so as to satisfy simultaneously your obligations under this
|
323
|
+
License and any other pertinent obligations, then as a consequence you
|
324
|
+
may not distribute the Program at all. For example, if a patent
|
325
|
+
license would not permit royalty-free redistribution of the Program by
|
326
|
+
all those who receive copies directly or indirectly through you, then
|
327
|
+
the only way you could satisfy both it and this License would be to
|
328
|
+
refrain entirely from distribution of the Program.
|
329
|
+
<P>
|
330
|
+
|
331
|
+
If any portion of this section is held invalid or unenforceable under
|
332
|
+
any particular circumstance, the balance of the section is intended to
|
333
|
+
apply and the section as a whole is intended to apply in other
|
334
|
+
circumstances.
|
335
|
+
<P>
|
336
|
+
|
337
|
+
It is not the purpose of this section to induce you to infringe any
|
338
|
+
patents or other property right claims or to contest validity of any
|
339
|
+
such claims; this section has the sole purpose of protecting the
|
340
|
+
integrity of the free software distribution system, which is
|
341
|
+
implemented by public license practices. Many people have made
|
342
|
+
generous contributions to the wide range of software distributed
|
343
|
+
through that system in reliance on consistent application of that
|
344
|
+
system; it is up to the author/donor to decide if he or she is willing
|
345
|
+
to distribute software through any other system and a licensee cannot
|
346
|
+
impose that choice.
|
347
|
+
<P>
|
348
|
+
|
349
|
+
This section is intended to make thoroughly clear what is believed to
|
350
|
+
be a consequence of the rest of this License.
|
351
|
+
|
352
|
+
<P>
|
353
|
+
|
354
|
+
<STRONG>8.</STRONG>
|
355
|
+
If the distribution and/or use of the Program is restricted in
|
356
|
+
certain countries either by patents or by copyrighted interfaces, the
|
357
|
+
original copyright holder who places the Program under this License
|
358
|
+
may add an explicit geographical distribution limitation excluding
|
359
|
+
those countries, so that distribution is permitted only in or among
|
360
|
+
countries not thus excluded. In such case, this License incorporates
|
361
|
+
the limitation as if written in the body of this License.
|
362
|
+
|
363
|
+
<P>
|
364
|
+
|
365
|
+
<STRONG>9.</STRONG>
|
366
|
+
The Free Software Foundation may publish revised and/or new versions
|
367
|
+
of the General Public License from time to time. Such new versions will
|
368
|
+
be similar in spirit to the present version, but may differ in detail to
|
369
|
+
address new problems or concerns.
|
370
|
+
<P>
|
371
|
+
|
372
|
+
Each version is given a distinguishing version number. If the Program
|
373
|
+
specifies a version number of this License which applies to it and "any
|
374
|
+
later version", you have the option of following the terms and conditions
|
375
|
+
either of that version or of any later version published by the Free
|
376
|
+
Software Foundation. If the Program does not specify a version number of
|
377
|
+
this License, you may choose any version ever published by the Free Software
|
378
|
+
Foundation.
|
379
|
+
|
380
|
+
<P>
|
381
|
+
|
382
|
+
|
383
|
+
<STRONG>10.</STRONG>
|
384
|
+
If you wish to incorporate parts of the Program into other free
|
385
|
+
programs whose distribution conditions are different, write to the author
|
386
|
+
to ask for permission. For software which is copyrighted by the Free
|
387
|
+
Software Foundation, write to the Free Software Foundation; we sometimes
|
388
|
+
make exceptions for this. Our decision will be guided by the two goals
|
389
|
+
of preserving the free status of all derivatives of our free software and
|
390
|
+
of promoting the sharing and reuse of software generally.
|
391
|
+
|
392
|
+
|
393
|
+
|
394
|
+
<P><STRONG>NO WARRANTY</STRONG></P>
|
395
|
+
|
396
|
+
<P>
|
397
|
+
|
398
|
+
<STRONG>11.</STRONG>
|
399
|
+
BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
|
400
|
+
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
|
401
|
+
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
|
402
|
+
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
|
403
|
+
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
404
|
+
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
|
405
|
+
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
|
406
|
+
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
|
407
|
+
REPAIR OR CORRECTION.
|
408
|
+
|
409
|
+
<P>
|
410
|
+
|
411
|
+
<STRONG>12.</STRONG>
|
412
|
+
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
413
|
+
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
|
414
|
+
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
|
415
|
+
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
|
416
|
+
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
|
417
|
+
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
|
418
|
+
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
|
419
|
+
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
|
420
|
+
POSSIBILITY OF SUCH DAMAGES.
|
421
|
+
|
422
|
+
<P>
|
423
|
+
|
424
|
+
|
425
|
+
<H2>END OF TERMS AND CONDITIONS</H2>
|
426
|
+
|
427
|
+
|
428
|
+
|
429
|
+
<H2><A NAME="SEC4" HREF="gpl.html#TOC4">How to Apply These Terms to Your New Programs</A></H2>
|
430
|
+
|
431
|
+
<P>
|
432
|
+
If you develop a new program, and you want it to be of the greatest
|
433
|
+
possible use to the public, the best way to achieve this is to make it
|
434
|
+
free software which everyone can redistribute and change under these terms.
|
435
|
+
|
436
|
+
</P>
|
437
|
+
<P>
|
438
|
+
To do so, attach the following notices to the program. It is safest
|
439
|
+
to attach them to the start of each source file to most effectively
|
440
|
+
convey the exclusion of warranty; and each file should have at least
|
441
|
+
the "copyright" line and a pointer to where the full notice is found.
|
442
|
+
|
443
|
+
</P>
|
444
|
+
|
445
|
+
<PRE>
|
446
|
+
<VAR>one line to give the program's name and an idea of what it does.</VAR>
|
447
|
+
Copyright (C) <VAR>yyyy</VAR> <VAR>name of author</VAR>
|
448
|
+
|
449
|
+
This program is free software; you can redistribute it and/or
|
450
|
+
modify it under the terms of the GNU General Public License
|
451
|
+
as published by the Free Software Foundation; either version 2
|
452
|
+
of the License, or (at your option) any later version.
|
453
|
+
|
454
|
+
This program is distributed in the hope that it will be useful,
|
455
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
456
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
457
|
+
GNU General Public License for more details.
|
458
|
+
|
459
|
+
You should have received a copy of the GNU General Public License
|
460
|
+
along with this program; if not, write to the Free Software
|
461
|
+
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
462
|
+
</PRE>
|
463
|
+
|
464
|
+
<P>
|
465
|
+
Also add information on how to contact you by electronic and paper mail.
|
466
|
+
|
467
|
+
</P>
|
468
|
+
<P>
|
469
|
+
If the program is interactive, make it output a short notice like this
|
470
|
+
when it starts in an interactive mode:
|
471
|
+
|
472
|
+
</P>
|
473
|
+
|
474
|
+
<PRE>
|
475
|
+
Gnomovision version 69, Copyright (C) <VAR>year</VAR> <VAR>name of author</VAR>
|
476
|
+
Gnomovision comes with ABSOLUTELY NO WARRANTY; for details
|
477
|
+
type `show w'. This is free software, and you are welcome
|
478
|
+
to redistribute it under certain conditions; type `show c'
|
479
|
+
for details.
|
480
|
+
</PRE>
|
481
|
+
|
482
|
+
<P>
|
483
|
+
The hypothetical commands <SAMP>`show w'</SAMP> and <SAMP>`show c'</SAMP> should show
|
484
|
+
the appropriate parts of the General Public License. Of course, the
|
485
|
+
commands you use may be called something other than <SAMP>`show w'</SAMP> and
|
486
|
+
<SAMP>`show c'</SAMP>; they could even be mouse-clicks or menu items--whatever
|
487
|
+
suits your program.
|
488
|
+
|
489
|
+
</P>
|
490
|
+
<P>
|
491
|
+
You should also get your employer (if you work as a programmer) or your
|
492
|
+
school, if any, to sign a "copyright disclaimer" for the program, if
|
493
|
+
necessary. Here is a sample; alter the names:
|
494
|
+
|
495
|
+
</P>
|
496
|
+
|
497
|
+
<PRE>
|
498
|
+
Yoyodyne, Inc., hereby disclaims all copyright
|
499
|
+
interest in the program `Gnomovision'
|
500
|
+
(which makes passes at compilers) written
|
501
|
+
by James Hacker.
|
502
|
+
|
503
|
+
<VAR>signature of Ty Coon</VAR>, 1 April 1989
|
504
|
+
Ty Coon, President of Vice
|
505
|
+
</PRE>
|
506
|
+
|
507
|
+
<P>
|
508
|
+
This General Public License does not permit incorporating your program into
|
509
|
+
proprietary programs. If your program is a subroutine library, you may
|
510
|
+
consider it more useful to permit linking proprietary applications with the
|
511
|
+
library. If this is what you want to do, use the GNU Library General
|
512
|
+
Public License instead of this License.
|
513
|
+
|
514
|
+
<HR>
|
515
|
+
|
516
|
+
Return to <A HREF="/home.html">GNU's home page</A>.
|
517
|
+
<P>
|
518
|
+
FSF & GNU inquiries & questions to
|
519
|
+
<A HREF="mailto:gnu@gnu.org"><EM>gnu@gnu.org</EM></A>.
|
520
|
+
Other <A HREF="/home.html#ContactInfo">ways to contact</A> the FSF.
|
521
|
+
<P>
|
522
|
+
Comments on these web pages to
|
523
|
+
<A HREF="mailto:webmasters@www.gnu.org"><EM>webmasters@www.gnu.org</EM></A>,
|
524
|
+
send other questions to
|
525
|
+
<A HREF="mailto:gnu@gnu.org"><EM>gnu@gnu.org</EM></A>.
|
526
|
+
<P>
|
527
|
+
Copyright notice above.<BR>
|
528
|
+
Free Software Foundation, Inc.,
|
529
|
+
59 Temple Place - Suite 330, Boston, MA 02111, USA
|
530
|
+
<P>
|
531
|
+
Updated:
|
532
|
+
<!-- hhmts start -->
|
533
|
+
12 Mar 2000 tower
|
534
|
+
<!-- hhmts end -->
|
535
|
+
<HR>
|
536
|
+
</BODY>
|
537
|
+
</HTML>
|