~ubuntu-branches/ubuntu/karmic/python-docutils/karmic

« back to all changes in this revision

Viewing changes to COPYING-orig.txt

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Urlichs
  • Date: 2004-05-18 08:36:50 UTC
  • Revision ID: james.westby@ubuntu.com-20040518083650-ife8gdsk0s95m8k1
Tags: 0.3.3-1
* New Upstream release.
  - Closes: #249246
* De-right-aligned the Closes: entries in the changelog.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
==================
 
2
 Copying Docutils
 
3
==================
 
4
 
 
5
:Author: David Goodger
 
6
:Contact: goodger@users.sourceforge.net
 
7
:Date: $Date: 2003/06/16 03:26:53 $
 
8
:Web site: http://docutils.sourceforge.net/
 
9
:Copyright: This document has been placed in the public domain.
 
10
 
 
11
Most of the files included in this project have been placed in the
 
12
public domain, and therefore have no license requirements and no
 
13
restrictions on copying or usage; see the `Public Domain Dedication`_
 
14
below.  There are a few exceptions_, listed below.
 
15
 
 
16
One goal of the Docutils project is to be included in the Python
 
17
standard library distribution, at which time it is expected that
 
18
copyright will be asserted by the `Python Software Foundation
 
19
<http://www.python.org/psf/>`_.
 
20
 
 
21
 
 
22
Public Domain Dedication
 
23
========================
 
24
 
 
25
The persons who have associated their work with this project (the
 
26
"Dedicator": David Goodger and the many contributors to the Docutils
 
27
project) hereby dedicate the entire copyright, less the exceptions_
 
28
listed below, in the work of authorship known as "Docutils" identified
 
29
below (the "Work") to the public domain.
 
30
 
 
31
The primary repository for the Work is the Internet World Wide Web
 
32
site <http://docutils.sourceforge.net/>.  The Work consists of the
 
33
files within the "docutils" module of the Docutils project CVS
 
34
repository (Internet host cvs.sourceforge.net, filesystem path
 
35
/cvsroot/docutils), whose Internet web interface is located at
 
36
<http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/docutils/docutils/>.
 
37
Files dedicated to the public domain may be identified by the
 
38
inclusion, near the beginning of each file, of a declaration of the
 
39
form::
 
40
 
 
41
    Copyright: This document/module/DTD/stylesheet/file/etc. has been
 
42
               placed in the public domain.
 
43
 
 
44
Dedicator makes this dedication for the benefit of the public at large
 
45
and to the detriment of Dedicator's heirs and successors.  Dedicator
 
46
intends this dedication to be an overt act of relinquishment in
 
47
perpetuity of all present and future rights under copyright law,
 
48
whether vested or contingent, in the Work.  Dedicator understands that
 
49
such relinquishment of all rights includes the relinquishment of all
 
50
rights to enforce (by lawsuit or otherwise) those copyrights in the
 
51
Work.
 
52
 
 
53
Dedicator recognizes that, once placed in the public domain, the Work
 
54
may be freely reproduced, distributed, transmitted, used, modified,
 
55
built upon, or otherwise exploited by anyone for any purpose,
 
56
commercial or non-commercial, and in any way, including by methods
 
57
that have not yet been invented or conceived.
 
58
 
 
59
(This dedication is derived from the text of the `Creative Commons
 
60
Public Domain Dedication
 
61
<http://creativecommons.org/licenses/publicdomain>`_.)
 
62
 
 
63
 
 
64
Exceptions
 
65
==========
 
66
 
 
67
The exceptions to the `Public Domain Dedication`_ above are:
 
68
 
 
69
* extras/optparse.py, copyright by Gregory P. Ward, released under a
 
70
  BSD-style license (which can be found in the module's source code).
 
71
 
 
72
* extras/textwrap.py, copyright by Gregory P. Ward and the Python
 
73
  Software Foundation, released under the `Python 2.3 license`_
 
74
  (`local copy`__).
 
75
 
 
76
  __ licenses/python-2-3.txt
 
77
 
 
78
* extras/roman.py, copyright by Mark Pilgrim, released under the
 
79
  `Python 2.1.1 license`_ (`local copy`__).
 
80
 
 
81
  __ licenses/python-2-1-1.txt
 
82
 
 
83
* test/difflib.py, copyright by the Python Software Foundation,
 
84
  released under the `Python 2.2 license`_ (`local copy`__).  This
 
85
  file is included for compatibility with Python versions less than
 
86
  2.2; if you have Python 2.2 or higher, difflib.py is not needed and
 
87
  may be removed.  (It's only used to report test failures anyhow; it
 
88
  isn't installed anywhere.  The included file is a pre-generator
 
89
  version of the difflib.py module included in Python 2.2.)
 
90
 
 
91
  __ licenses/python-2-2.txt
 
92
 
 
93
* tools/pep2html.py, copyright by the Python Software Foundation,
 
94
  released under the `Python 2.2 license`_ (`local copy`__).
 
95
 
 
96
  __ licenses/python-2-2.txt
 
97
 
 
98
* tools/editors/emacs/rst-html.el, copyright by Martin Blais, released
 
99
  under the `GNU General Public License`_ (`local copy`__).
 
100
 
 
101
  __ licenses/gpl.txt
 
102
 
 
103
* tools/editors/emacs/rst-mode.el, copyright by Stefan Merten,
 
104
  released under the `GNU General Public License`_ (`local copy`__).
 
105
 
 
106
  __ licenses/gpl.txt
 
107
 
 
108
(Disclaimer: I am not a lawyer.)  The BSD license and the Python
 
109
licenses are OSI-approved_ and GPL-compatible_.  Although complicated
 
110
by multiple owners and lots of legalese, the Python license basically
 
111
lets you copy, use, modify, and redistribute files as long as you keep
 
112
the copyright attribution intact, note any changes you make, and don't
 
113
use the owner's name in vain.  The BSD license is similar.
 
114
 
 
115
Plaintext versions of all the linked-to licenses are provided in the
 
116
licenses_ directory.
 
117
 
 
118
.. _licenses: licenses/
 
119
.. _Python 2.1.1 license: http://www.python.org/2.1.1/license.html
 
120
.. _Python 2.2 license: http://www.python.org/2.2/license.html
 
121
.. _Python 2.3 license: http://www.python.org/2.3/license.html
 
122
.. _GNU General Public License: http://www.gnu.org/copyleft/gpl.html
 
123
.. _OSI-approved: http://opensource.org/licenses/
 
124
.. _GPL-compatible: http://www.gnu.org/philosophy/license-list.html