summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-12-27 12:19:17 +0100
committerGeorg Brandl <georg@python.org>2008-12-27 12:19:17 +0100
commit26d7aafaaef096c706b563fa3cc17aae322896be (patch)
treeb8f2f2fd26e5b1586fe684814f5c64f0510e43a2
parent5975e6c0f621c1664b6f18c9c06628cb080e4b12 (diff)
downloadsphinx-git-26d7aafaaef096c706b563fa3cc17aae322896be.tar.gz
Explicitly refer to the license in :license: tags.
-rw-r--r--LICENSE56
-rwxr-xr-xsphinx-build.py2
-rwxr-xr-xsphinx-quickstart.py2
-rw-r--r--sphinx/__init__.py2
-rw-r--r--sphinx/_jinja.py2
-rw-r--r--sphinx/addnodes.py2
-rw-r--r--sphinx/application.py2
-rw-r--r--sphinx/builder.py2
-rw-r--r--sphinx/builders/__init__.py2
-rw-r--r--sphinx/builders/changes.py2
-rw-r--r--sphinx/builders/html.py2
-rw-r--r--sphinx/builders/htmlhelp.py2
-rw-r--r--sphinx/builders/latex.py2
-rw-r--r--sphinx/builders/linkcheck.py2
-rw-r--r--sphinx/builders/text.py2
-rw-r--r--sphinx/cmdline.py2
-rw-r--r--sphinx/config.py2
-rw-r--r--sphinx/directives/__init__.py2
-rw-r--r--sphinx/directives/code.py2
-rw-r--r--sphinx/directives/desc.py2
-rw-r--r--sphinx/directives/other.py2
-rw-r--r--sphinx/environment.py2
-rw-r--r--sphinx/ext/__init__.py2
-rw-r--r--sphinx/ext/autodoc.py2
-rw-r--r--sphinx/ext/coverage.py2
-rw-r--r--sphinx/ext/doctest.py2
-rw-r--r--sphinx/ext/ifconfig.py2
-rw-r--r--sphinx/ext/intersphinx.py2
-rw-r--r--sphinx/ext/jsmath.py2
-rw-r--r--sphinx/ext/mathbase.py2
-rw-r--r--sphinx/ext/pngmath.py2
-rw-r--r--sphinx/ext/refcounting.py2
-rw-r--r--sphinx/ext/todo.py2
-rw-r--r--sphinx/highlighting.py2
-rw-r--r--sphinx/locale/__init__.py2
-rw-r--r--sphinx/quickstart.py2
-rw-r--r--sphinx/roles.py2
-rw-r--r--sphinx/search.py2
-rw-r--r--sphinx/util/__init__.py2
-rw-r--r--sphinx/util/compat.py2
-rw-r--r--sphinx/util/console.py2
-rw-r--r--sphinx/util/jsdump.py2
-rw-r--r--sphinx/util/png.py2
-rw-r--r--sphinx/util/texescape.py2
-rw-r--r--sphinx/writers/__init__.py2
-rw-r--r--sphinx/writers/html.py2
-rw-r--r--sphinx/writers/latex.py2
-rw-r--r--sphinx/writers/text.py2
-rwxr-xr-xtests/run.py2
-rw-r--r--tests/test_application.py2
-rw-r--r--tests/test_autodoc.py2
-rw-r--r--tests/test_build.py2
-rw-r--r--tests/test_config.py2
-rw-r--r--tests/test_coverage.py2
-rw-r--r--tests/test_env.py2
-rw-r--r--tests/test_highlighting.py2
-rw-r--r--tests/test_i18n.py2
-rw-r--r--tests/test_markup.py2
-rw-r--r--tests/test_quickstart.py2
-rw-r--r--tests/util.py2
60 files changed, 85 insertions, 89 deletions
diff --git a/LICENSE b/LICENSE
index 2db70e5f1..fd4411703 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,30 +1,26 @@
-Copyright (c) 2007-2008 by the respective authors (see AUTHORS file).
-All rights reserved.
-
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions are
-met:
-
- * Redistributions of source code must retain the above copyright
- notice, this list of conditions and the following disclaimer.
-
- * 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.
-
- * The names of the contributors may not be used to endorse or
- promote products derived from this software without specific
- prior written permission.
-
-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.
+Copyright (c) 2007-2008 by the respective authors (see AUTHORS file).
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are
+met:
+
+ * Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+
+ * 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.
+
+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.
diff --git a/sphinx-build.py b/sphinx-build.py
index 4e2a868d9..228c5b7b2 100755
--- a/sphinx-build.py
+++ b/sphinx-build.py
@@ -5,7 +5,7 @@
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
:copyright: 2007-2008 by Georg Brandl.
- :license: BSD.
+ :license: BSD, see LICENSE for details.
"""
import sys
diff --git a/sphinx-quickstart.py b/sphinx-quickstart.py
index 579b35587..768adf410 100755
--- a/sphinx-quickstart.py
+++ b/sphinx-quickstart.py
@@ -5,7 +5,7 @@
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
:copyright: 2008 by Georg Brandl.
- :license: BSD.
+ :license: BSD, see LICENSE for details.
"""
import sys
diff --git a/sphinx/__init__.py b/sphinx/__init__.py
index 43343ff29..ee0034ff5 100644
--- a/sphinx/__init__.py
+++ b/sphinx/__init__.py
@@ -6,7 +6,7 @@
The Sphinx documentation toolchain.
:copyright: 2007-2008 by Georg Brandl.
- :license: BSD.
+ :license: BSD, see LICENSE for details.
"""
import sys
diff --git a/sphinx/_jinja.py b/sphinx/_jinja.py
index 654e0c525..349177011 100644
--- a/sphinx/_jinja.py
+++ b/sphinx/_jinja.py
@@ -6,7 +6,7 @@
Jinja glue.
:copyright: 2007-2008 by Georg Brandl, Horst Gutmann.
- :license: BSD.
+ :license: BSD, see LICENSE for details.
"""
import codecs
diff --git a/sphinx/addnodes.py b/sphinx/addnodes.py
index ad4909e05..a9135b0ab 100644
--- a/sphinx/addnodes.py
+++ b/sphinx/addnodes.py
@@ -6,7 +6,7 @@
Additional docutils nodes.
:copyright: 2007-2008 by Georg Brandl.
- :license: BSD.
+ :license: BSD, see LICENSE for details.
"""
from docutils import nodes
diff --git a/sphinx/application.py b/sphinx/application.py
index 91a724dc8..c990edc19 100644
--- a/sphinx/application.py
+++ b/sphinx/application.py
@@ -9,7 +9,7 @@
:copyright: 2008 by Georg Brandl, Armin Ronacher.
- :license: BSD.
+ :license: BSD, see LICENSE for details.
"""
import sys
diff --git a/sphinx/builder.py b/sphinx/builder.py
index a8f8497dd..6012cbbf8 100644
--- a/sphinx/builder.py
+++ b/sphinx/builder.py
@@ -9,7 +9,7 @@
import these classes directly from the sphinx.builders package.
:copyright: 2008 by Georg Brandl.
- :license: BSD.
+ :license: BSD, see LICENSE for details.
"""
import warnings
diff --git a/sphinx/builders/__init__.py b/sphinx/builders/__init__.py
index 03e835aff..c9286a278 100644
--- a/sphinx/builders/__init__.py
+++ b/sphinx/builders/__init__.py
@@ -6,7 +6,7 @@
Builder superclass for all builders.
:copyright: 2007-2008 by Georg Brandl, Sebastian Wiesner, Horst Gutmann.
- :license: BSD.
+ :license: BSD, see LICENSE for details.
"""
import os
diff --git a/sphinx/builders/changes.py b/sphinx/builders/changes.py
index 28805738b..8665b6e77 100644
--- a/sphinx/builders/changes.py
+++ b/sphinx/builders/changes.py
@@ -6,7 +6,7 @@
Changelog builder.
:copyright: 2008 by Georg Brandl.
- :license: BSD.
+ :license: BSD, see LICENSE for details.
"""
import codecs
diff --git a/sphinx/builders/html.py b/sphinx/builders/html.py
index 553092e1b..a86eaed86 100644
--- a/sphinx/builders/html.py
+++ b/sphinx/builders/html.py
@@ -6,7 +6,7 @@
Several HTML builders.
:copyright: 2007-2008 by Georg Brandl, Armin Ronacher.
- :license: BSD.
+ :license: BSD, see LICENSE for details.
"""
import os
diff --git a/sphinx/builders/htmlhelp.py b/sphinx/builders/htmlhelp.py
index b1c7fbc5f..68d3de288 100644
--- a/sphinx/builders/htmlhelp.py
+++ b/sphinx/builders/htmlhelp.py
@@ -7,7 +7,7 @@
Parts adapted from Python's Doc/tools/prechm.py.
:copyright: 2007-2008 by Georg Brandl.
- :license: BSD.
+ :license: BSD, see LICENSE for details.
"""
import os
diff --git a/sphinx/builders/latex.py b/sphinx/builders/latex.py
index 916430dbb..2301c7ac3 100644
--- a/sphinx/builders/latex.py
+++ b/sphinx/builders/latex.py
@@ -6,7 +6,7 @@
LaTeX builder.
:copyright: 2008 by Georg Brandl.
- :license: BSD.
+ :license: BSD, see LICENSE for details.
"""
import os
diff --git a/sphinx/builders/linkcheck.py b/sphinx/builders/linkcheck.py
index 9dbfc913e..a8536f432 100644
--- a/sphinx/builders/linkcheck.py
+++ b/sphinx/builders/linkcheck.py
@@ -6,7 +6,7 @@
The CheckExternalLinksBuilder class.
:copyright: 2008 by Georg Brandl, Thomas Lamb.
- :license: BSD.
+ :license: BSD, see LICENSE for details.
"""
import socket
diff --git a/sphinx/builders/text.py b/sphinx/builders/text.py
index c6f232e86..e3eadcbc0 100644
--- a/sphinx/builders/text.py
+++ b/sphinx/builders/text.py
@@ -6,7 +6,7 @@
Plain-text Sphinx builder.
:copyright: 2008 by Georg Brandl.
- :license: BSD.
+ :license: BSD, see LICENSE for details.
"""
import codecs
diff --git a/sphinx/cmdline.py b/sphinx/cmdline.py
index 1add81934..558d2e0a9 100644
--- a/sphinx/cmdline.py
+++ b/sphinx/cmdline.py
@@ -6,7 +6,7 @@
sphinx-build command-line handling.
:copyright: 2008 by Georg Brandl.
- :license: BSD.
+ :license: BSD, see LICENSE for details.
"""
import os
diff --git a/sphinx/config.py b/sphinx/config.py
index 1d50fa5c2..7eb2fb410 100644
--- a/sphinx/config.py
+++ b/sphinx/config.py
@@ -6,7 +6,7 @@
Build configuration file handling.
:copyright: 2008 by Georg Brandl.
- :license: BSD license.
+ :license: BSD, see LICENSE for details license.
"""
import os
diff --git a/sphinx/directives/__init__.py b/sphinx/directives/__init__.py
index 462b2cffc..ed85dc770 100644
--- a/sphinx/directives/__init__.py
+++ b/sphinx/directives/__init__.py
@@ -6,7 +6,7 @@
Handlers for additional ReST directives.
:copyright: 2008 by Georg Brandl.
- :license: BSD.
+ :license: BSD, see LICENSE for details.
"""
from sphinx.directives.desc import *
diff --git a/sphinx/directives/code.py b/sphinx/directives/code.py
index 5ea477635..b43645355 100644
--- a/sphinx/directives/code.py
+++ b/sphinx/directives/code.py
@@ -4,7 +4,7 @@
~~~~~~~~~~~~~~~~~~~~~~
:copyright: 2007-2008 by Georg Brandl.
- :license: BSD.
+ :license: BSD, see LICENSE for details.
"""
import sys
diff --git a/sphinx/directives/desc.py b/sphinx/directives/desc.py
index 09d19c9fd..e6337f844 100644
--- a/sphinx/directives/desc.py
+++ b/sphinx/directives/desc.py
@@ -4,7 +4,7 @@
~~~~~~~~~~~~~~~~~~~~~~
:copyright: 2007-2008 by Georg Brandl.
- :license: BSD.
+ :license: BSD, see LICENSE for details.
"""
import re
diff --git a/sphinx/directives/other.py b/sphinx/directives/other.py
index 6262531e8..8a4224a95 100644
--- a/sphinx/directives/other.py
+++ b/sphinx/directives/other.py
@@ -4,7 +4,7 @@
~~~~~~~~~~~~~~~~~~~~~~~
:copyright: 2007-2008 by Georg Brandl.
- :license: BSD.
+ :license: BSD, see LICENSE for details.
"""
import re
diff --git a/sphinx/environment.py b/sphinx/environment.py
index 10d88cb78..cbedad472 100644
--- a/sphinx/environment.py
+++ b/sphinx/environment.py
@@ -6,7 +6,7 @@
Global creation environment.
:copyright: 2007-2008 by Georg Brandl.
- :license: BSD.
+ :license: BSD, see LICENSE for details.
"""
import re
diff --git a/sphinx/ext/__init__.py b/sphinx/ext/__init__.py
index d111f11b9..402dd578d 100644
--- a/sphinx/ext/__init__.py
+++ b/sphinx/ext/__init__.py
@@ -6,5 +6,5 @@
Contains Sphinx features not activated by default.
:copyright: 2008 by Georg Brandl.
- :license: BSD.
+ :license: BSD, see LICENSE for details.
"""
diff --git a/sphinx/ext/autodoc.py b/sphinx/ext/autodoc.py
index 1a46ac8a1..bb717e0e4 100644
--- a/sphinx/ext/autodoc.py
+++ b/sphinx/ext/autodoc.py
@@ -8,7 +8,7 @@
for those who like elaborate docstrings.
:copyright: 2008 by Georg Brandl, Pauli Virtanen, Martin Hans.
- :license: BSD.
+ :license: BSD, see LICENSE for details.
"""
import re
diff --git a/sphinx/ext/coverage.py b/sphinx/ext/coverage.py
index dfe01419d..af6031fdf 100644
--- a/sphinx/ext/coverage.py
+++ b/sphinx/ext/coverage.py
@@ -7,7 +7,7 @@
Dzolonga for the Google Highly Open Participation contest.
:copyright: 2008 by Josip Dzolonga, Georg Brandl.
- :license: BSD.
+ :license: BSD, see LICENSE for details.
"""
import re
diff --git a/sphinx/ext/doctest.py b/sphinx/ext/doctest.py
index 8651526e4..5ea1dde95 100644
--- a/sphinx/ext/doctest.py
+++ b/sphinx/ext/doctest.py
@@ -7,7 +7,7 @@
their results.
:copyright: 2008 by Georg Brandl.
- :license: BSD.
+ :license: BSD, see LICENSE for details.
"""
import re
diff --git a/sphinx/ext/ifconfig.py b/sphinx/ext/ifconfig.py
index 204178f2f..10cab525e 100644
--- a/sphinx/ext/ifconfig.py
+++ b/sphinx/ext/ifconfig.py
@@ -17,7 +17,7 @@
are available.)
:copyright: 2008 by Georg Brandl.
- :license: BSD.
+ :license: BSD, see LICENSE for details.
"""
from docutils import nodes
diff --git a/sphinx/ext/intersphinx.py b/sphinx/ext/intersphinx.py
index 85733ac4a..e94b3d674 100644
--- a/sphinx/ext/intersphinx.py
+++ b/sphinx/ext/intersphinx.py
@@ -21,7 +21,7 @@
without Internet access.
:copyright: 2008 by Georg Brandl.
- :license: BSD.
+ :license: BSD, see LICENSE for details.
"""
import time
diff --git a/sphinx/ext/jsmath.py b/sphinx/ext/jsmath.py
index bd2579de5..4bc38b516 100644
--- a/sphinx/ext/jsmath.py
+++ b/sphinx/ext/jsmath.py
@@ -7,7 +7,7 @@
via JavaScript.
:copyright: 2008 by Georg Brandl.
- :license: BSD.
+ :license: BSD, see LICENSE for details.
"""
from docutils import nodes
diff --git a/sphinx/ext/mathbase.py b/sphinx/ext/mathbase.py
index fc002c604..825eabef6 100644
--- a/sphinx/ext/mathbase.py
+++ b/sphinx/ext/mathbase.py
@@ -6,7 +6,7 @@
Set up math support in source files and LaTeX/text output.
:copyright: 2008 by Georg Brandl.
- :license: BSD.
+ :license: BSD, see LICENSE for details.
"""
from docutils import nodes, utils
diff --git a/sphinx/ext/pngmath.py b/sphinx/ext/pngmath.py
index e3c812a1a..047af9bbc 100644
--- a/sphinx/ext/pngmath.py
+++ b/sphinx/ext/pngmath.py
@@ -6,7 +6,7 @@
Render math in HTML via dvipng.
:copyright: 2008 by Georg Brandl.
- :license: BSD.
+ :license: BSD, see LICENSE for details.
"""
import re
diff --git a/sphinx/ext/refcounting.py b/sphinx/ext/refcounting.py
index c6e5a76fc..e42e7e2cb 100644
--- a/sphinx/ext/refcounting.py
+++ b/sphinx/ext/refcounting.py
@@ -10,7 +10,7 @@
count data file.
:copyright: 2008 by Georg Brandl.
- :license: BSD.
+ :license: BSD, see LICENSE for details.
"""
from os import path
diff --git a/sphinx/ext/todo.py b/sphinx/ext/todo.py
index f4bed7401..4c1b142c6 100644
--- a/sphinx/ext/todo.py
+++ b/sphinx/ext/todo.py
@@ -9,7 +9,7 @@
original location.
:copyright: 2008 Daniel Bültmann.
- :license: BSD.
+ :license: BSD, see LICENSE for details.
"""
from docutils import nodes
diff --git a/sphinx/highlighting.py b/sphinx/highlighting.py
index c18c397bb..e347d01e3 100644
--- a/sphinx/highlighting.py
+++ b/sphinx/highlighting.py
@@ -6,7 +6,7 @@
Highlight code blocks using Pygments.
:copyright: 2007-2008 by Georg Brandl.
- :license: BSD.
+ :license: BSD, see LICENSE for details.
"""
import sys
diff --git a/sphinx/locale/__init__.py b/sphinx/locale/__init__.py
index bedade3c9..37c714b46 100644
--- a/sphinx/locale/__init__.py
+++ b/sphinx/locale/__init__.py
@@ -6,7 +6,7 @@
Locale utilities.
:copyright: 2008 by Georg Brandl.
- :license: BSD.
+ :license: BSD, see LICENSE for details.
"""
_ = lambda x: x
diff --git a/sphinx/quickstart.py b/sphinx/quickstart.py
index 91213f322..8c5ffa3db 100644
--- a/sphinx/quickstart.py
+++ b/sphinx/quickstart.py
@@ -6,7 +6,7 @@
Quickly setup documentation source to work with Sphinx.
:copyright: 2008 by Georg Brandl.
- :license: BSD.
+ :license: BSD, see LICENSE for details.
"""
import sys, os, time
diff --git a/sphinx/roles.py b/sphinx/roles.py
index d28112384..1557085e1 100644
--- a/sphinx/roles.py
+++ b/sphinx/roles.py
@@ -6,7 +6,7 @@
Handlers for additional ReST roles.
:copyright: 2007-2008 by Georg Brandl.
- :license: BSD.
+ :license: BSD, see LICENSE for details.
"""
import re
diff --git a/sphinx/search.py b/sphinx/search.py
index 46ff986dd..a823c8f33 100644
--- a/sphinx/search.py
+++ b/sphinx/search.py
@@ -6,7 +6,7 @@
Create a search index for offline search.
:copyright: 2007-2008 by Armin Ronacher.
- :license: BSD.
+ :license: BSD, see LICENSE for details.
"""
import re
import cPickle as pickle
diff --git a/sphinx/util/__init__.py b/sphinx/util/__init__.py
index 13b53ac7f..04be80d11 100644
--- a/sphinx/util/__init__.py
+++ b/sphinx/util/__init__.py
@@ -6,7 +6,7 @@
Utility functions for Sphinx.
:copyright: 2007-2008 by Georg Brandl.
- :license: BSD.
+ :license: BSD, see LICENSE for details.
"""
import os
diff --git a/sphinx/util/compat.py b/sphinx/util/compat.py
index 208b8218d..05a1c4169 100644
--- a/sphinx/util/compat.py
+++ b/sphinx/util/compat.py
@@ -6,7 +6,7 @@
Stuff for docutils compatibility.
:copyright: 2008 by Georg Brandl.
- :license: BSD.
+ :license: BSD, see LICENSE for details.
"""
from docutils import nodes
diff --git a/sphinx/util/console.py b/sphinx/util/console.py
index d6ebcb947..a783f7005 100644
--- a/sphinx/util/console.py
+++ b/sphinx/util/console.py
@@ -6,7 +6,7 @@
Format colored console output.
:copyright: 2007-2008 by Georg Brandl.
- :license: BSD.
+ :license: BSD, see LICENSE for details.
"""
import os
diff --git a/sphinx/util/jsdump.py b/sphinx/util/jsdump.py
index 3d246d0cc..d7f8f5a81 100644
--- a/sphinx/util/jsdump.py
+++ b/sphinx/util/jsdump.py
@@ -7,7 +7,7 @@
Uses the basestring encode function from simplejson.
:copyright: 2008 by Armin Ronacher, Bob Ippolito, Georg Brandl.
- :license: BSD.
+ :license: BSD, see LICENSE for details.
"""
import re
diff --git a/sphinx/util/png.py b/sphinx/util/png.py
index a22acba2e..feafc4634 100644
--- a/sphinx/util/png.py
+++ b/sphinx/util/png.py
@@ -6,7 +6,7 @@
PNG image manipulation helpers.
:copyright: 2008 by Georg Brandl.
- :license: BSD.
+ :license: BSD, see LICENSE for details.
"""
import struct
diff --git a/sphinx/util/texescape.py b/sphinx/util/texescape.py
index 8412a3a3f..41fc042c9 100644
--- a/sphinx/util/texescape.py
+++ b/sphinx/util/texescape.py
@@ -6,7 +6,7 @@
TeX escaping helper.
:copyright: 2008 by Georg Brandl.
- :license: BSD.
+ :license: BSD, see LICENSE for details.
"""
tex_replacements = [
diff --git a/sphinx/writers/__init__.py b/sphinx/writers/__init__.py
index 902f04d39..454f54eb7 100644
--- a/sphinx/writers/__init__.py
+++ b/sphinx/writers/__init__.py
@@ -6,5 +6,5 @@
Custom docutils writers.
:copyright: 2008 by Georg Brandl.
- :license: BSD.
+ :license: BSD, see LICENSE for details.
"""
diff --git a/sphinx/writers/html.py b/sphinx/writers/html.py
index 529a8a3f0..b9db98db8 100644
--- a/sphinx/writers/html.py
+++ b/sphinx/writers/html.py
@@ -6,7 +6,7 @@
docutils writers handling Sphinx' custom nodes.
:copyright: 2007-2008 by Georg Brandl.
- :license: BSD.
+ :license: BSD, see LICENSE for details.
"""
import sys
diff --git a/sphinx/writers/latex.py b/sphinx/writers/latex.py
index 3b847bd25..101476f27 100644
--- a/sphinx/writers/latex.py
+++ b/sphinx/writers/latex.py
@@ -9,7 +9,7 @@
docutils sandbox.
:copyright: 2007-2008 by Georg Brandl, Dave Kuhlman.
- :license: BSD.
+ :license: BSD, see LICENSE for details.
"""
import re
diff --git a/sphinx/writers/text.py b/sphinx/writers/text.py
index a557e2507..cd8a464a3 100644
--- a/sphinx/writers/text.py
+++ b/sphinx/writers/text.py
@@ -6,7 +6,7 @@
Custom docutils writer for plain text.
:copyright: 2008 by Georg Brandl.
- :license: BSD.
+ :license: BSD, see LICENSE for details.
"""
import re
diff --git a/tests/run.py b/tests/run.py
index f67a34327..e8f6e86d8 100755
--- a/tests/run.py
+++ b/tests/run.py
@@ -7,7 +7,7 @@
This script runs the Sphinx unit test suite.
:copyright: 2008 by Georg Brandl.
- :license: BSD.
+ :license: BSD, see LICENSE for details.
"""
import sys
diff --git a/tests/test_application.py b/tests/test_application.py
index e00e990f6..b4029d3bd 100644
--- a/tests/test_application.py
+++ b/tests/test_application.py
@@ -6,7 +6,7 @@
Test the Sphinx class.
:copyright: 2008 by Benjamin Peterson.
- :license: BSD.
+ :license: BSD, see LICENSE for details.
"""
from StringIO import StringIO
diff --git a/tests/test_autodoc.py b/tests/test_autodoc.py
index facb275a7..fb4d4f8b4 100644
--- a/tests/test_autodoc.py
+++ b/tests/test_autodoc.py
@@ -7,7 +7,7 @@
directives are tested in a test source file translated by test_build.
:copyright: 2008 by Georg Brandl.
- :license: BSD.
+ :license: BSD, see LICENSE for details.
"""
from util import *
diff --git a/tests/test_build.py b/tests/test_build.py
index 4f7d59a27..d307818a1 100644
--- a/tests/test_build.py
+++ b/tests/test_build.py
@@ -6,7 +6,7 @@
Test the entire build process with the test root.
:copyright: 2008 by Georg Brandl.
- :license: BSD.
+ :license: BSD, see LICENSE for details.
"""
import os
diff --git a/tests/test_config.py b/tests/test_config.py
index 53cba59c6..f49eb4fb0 100644
--- a/tests/test_config.py
+++ b/tests/test_config.py
@@ -7,7 +7,7 @@
Application class.
:copyright: 2008 by Georg Brandl.
- :license: BSD.
+ :license: BSD, see LICENSE for details.
"""
from util import *
diff --git a/tests/test_coverage.py b/tests/test_coverage.py
index 82279f50d..64bba45f5 100644
--- a/tests/test_coverage.py
+++ b/tests/test_coverage.py
@@ -6,7 +6,7 @@
Test the coverage builder.
:copyright: 2008 by Georg Brandl.
- :license: BSD.
+ :license: BSD, see LICENSE for details.
"""
import pickle
diff --git a/tests/test_env.py b/tests/test_env.py
index 9f5f32864..c8a8364b6 100644
--- a/tests/test_env.py
+++ b/tests/test_env.py
@@ -6,7 +6,7 @@
Test the BuildEnvironment class.
:copyright: 2008 by Georg Brandl.
- :license: BSD.
+ :license: BSD, see LICENSE for details.
"""
from util import *
diff --git a/tests/test_highlighting.py b/tests/test_highlighting.py
index 067c37cba..1d16b9827 100644
--- a/tests/test_highlighting.py
+++ b/tests/test_highlighting.py
@@ -6,7 +6,7 @@
Test the Pygments highlighting bridge.
:copyright: 2008 by Georg Brandl.
- :license: BSD.
+ :license: BSD, see LICENSE for details.
"""
from util import *
diff --git a/tests/test_i18n.py b/tests/test_i18n.py
index da0af246d..636b7007d 100644
--- a/tests/test_i18n.py
+++ b/tests/test_i18n.py
@@ -6,7 +6,7 @@
Test locale features.
:copyright: 2008 by Georg Brandl.
- :license: BSD.
+ :license: BSD, see LICENSE for details.
"""
from util import *
diff --git a/tests/test_markup.py b/tests/test_markup.py
index a4b7cf773..86889a2ac 100644
--- a/tests/test_markup.py
+++ b/tests/test_markup.py
@@ -6,7 +6,7 @@
Test various Sphinx-specific markup extensions.
:copyright: 2008 by Georg Brandl.
- :license: BSD.
+ :license: BSD, see LICENSE for details.
"""
import re
diff --git a/tests/test_quickstart.py b/tests/test_quickstart.py
index a76a1cdfd..02954525c 100644
--- a/tests/test_quickstart.py
+++ b/tests/test_quickstart.py
@@ -6,7 +6,7 @@
Test the sphinx.quickstart module.
:copyright: 2008 by Georg Brandl.
- :license: BSD.
+ :license: BSD, see LICENSE for details.
"""
import sys
diff --git a/tests/util.py b/tests/util.py
index c3c97a665..01ef5503b 100644
--- a/tests/util.py
+++ b/tests/util.py
@@ -4,7 +4,7 @@
~~~~~~~~~~~~~~~~~~~~~~~~~~~
:copyright: 2008 by Georg Brandl.
- :license: BSD.
+ :license: BSD, see LICENSE for details.
"""
import sys