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
commit864ef748749dca37a68e626a59e1bb48b8c704f0 (patch)
treeb8f2f2fd26e5b1586fe684814f5c64f0510e43a2
parent3d10990eab0105c516516ff3ba3f45eecce10656 (diff)
downloadsphinx-864ef748749dca37a68e626a59e1bb48b8c704f0.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 2db70e5f..fd441170 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 4e2a868d..228c5b7b 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 579b3558..768adf41 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 43343ff2..ee0034ff 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 654e0c52..34917701 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 ad4909e0..a9135b0a 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 91a724dc..c990edc1 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 a8f8497d..6012cbbf 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 03e835af..c9286a27 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 28805738..8665b6e7 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 553092e1..a86eaed8 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 b1c7fbc5..68d3de28 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 916430db..2301c7ac 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 9dbfc913..a8536f43 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 c6f232e8..e3eadcbc 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 1add8193..558d2e0a 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 1d50fa5c..7eb2fb41 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 462b2cff..ed85dc77 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 5ea47763..b4364535 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 09d19c9f..e6337f84 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 6262531e..8a4224a9 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 10d88cb7..cbedad47 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 d111f11b..402dd578 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 1a46ac8a..bb717e0e 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 dfe01419..af6031fd 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 8651526e..5ea1dde9 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 204178f2..10cab525 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 85733ac4..e94b3d67 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 bd2579de..4bc38b51 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 fc002c60..825eabef 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 e3c812a1..047af9bb 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 c6e5a76f..e42e7e2c 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 f4bed740..4c1b142c 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 c18c397b..e347d01e 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 bedade3c..37c714b4 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 91213f32..8c5ffa3d 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 d2811238..1557085e 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 46ff986d..a823c8f3 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 13b53ac7..04be80d1 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 208b8218..05a1c416 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 d6ebcb94..a783f700 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 3d246d0c..d7f8f5a8 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 a22acba2..feafc463 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 8412a3a3..41fc042c 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 902f04d3..454f54eb 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 529a8a3f..b9db98db 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 3b847bd2..101476f2 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 a557e250..cd8a464a 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 f67a3432..e8f6e86d 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 e00e990f..b4029d3b 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 facb275a..fb4d4f8b 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 4f7d59a2..d307818a 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 53cba59c..f49eb4fb 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 82279f50..64bba45f 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 9f5f3286..c8a8364b 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 067c37cb..1d16b982 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 da0af246..636b7007 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 a4b7cf77..86889a2a 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 a76a1cdf..02954525 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 c3c97a66..01ef5503 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