mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
Explicitly refer to the license in :license: tags.
This commit is contained in:
parent
5975e6c0f6
commit
26d7aafaae
56
LICENSE
56
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.
|
||||
|
@ -5,7 +5,7 @@
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
:copyright: 2007-2008 by Georg Brandl.
|
||||
:license: BSD.
|
||||
:license: BSD, see LICENSE for details.
|
||||
"""
|
||||
|
||||
import sys
|
||||
|
@ -5,7 +5,7 @@
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
:copyright: 2008 by Georg Brandl.
|
||||
:license: BSD.
|
||||
:license: BSD, see LICENSE for details.
|
||||
"""
|
||||
|
||||
import sys
|
||||
|
@ -6,7 +6,7 @@
|
||||
The Sphinx documentation toolchain.
|
||||
|
||||
:copyright: 2007-2008 by Georg Brandl.
|
||||
:license: BSD.
|
||||
:license: BSD, see LICENSE for details.
|
||||
"""
|
||||
|
||||
import sys
|
||||
|
@ -6,7 +6,7 @@
|
||||
Jinja glue.
|
||||
|
||||
:copyright: 2007-2008 by Georg Brandl, Horst Gutmann.
|
||||
:license: BSD.
|
||||
:license: BSD, see LICENSE for details.
|
||||
"""
|
||||
|
||||
import codecs
|
||||
|
@ -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
|
||||
|
@ -9,7 +9,7 @@
|
||||
|
||||
|
||||
:copyright: 2008 by Georg Brandl, Armin Ronacher.
|
||||
:license: BSD.
|
||||
:license: BSD, see LICENSE for details.
|
||||
"""
|
||||
|
||||
import sys
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -6,7 +6,7 @@
|
||||
Changelog builder.
|
||||
|
||||
:copyright: 2008 by Georg Brandl.
|
||||
:license: BSD.
|
||||
:license: BSD, see LICENSE for details.
|
||||
"""
|
||||
|
||||
import codecs
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -6,7 +6,7 @@
|
||||
LaTeX builder.
|
||||
|
||||
:copyright: 2008 by Georg Brandl.
|
||||
:license: BSD.
|
||||
:license: BSD, see LICENSE for details.
|
||||
"""
|
||||
|
||||
import os
|
||||
|
@ -6,7 +6,7 @@
|
||||
The CheckExternalLinksBuilder class.
|
||||
|
||||
:copyright: 2008 by Georg Brandl, Thomas Lamb.
|
||||
:license: BSD.
|
||||
:license: BSD, see LICENSE for details.
|
||||
"""
|
||||
|
||||
import socket
|
||||
|
@ -6,7 +6,7 @@
|
||||
Plain-text Sphinx builder.
|
||||
|
||||
:copyright: 2008 by Georg Brandl.
|
||||
:license: BSD.
|
||||
:license: BSD, see LICENSE for details.
|
||||
"""
|
||||
|
||||
import codecs
|
||||
|
@ -6,7 +6,7 @@
|
||||
sphinx-build command-line handling.
|
||||
|
||||
:copyright: 2008 by Georg Brandl.
|
||||
:license: BSD.
|
||||
:license: BSD, see LICENSE for details.
|
||||
"""
|
||||
|
||||
import os
|
||||
|
@ -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
|
||||
|
@ -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 *
|
||||
|
@ -4,7 +4,7 @@
|
||||
~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
:copyright: 2007-2008 by Georg Brandl.
|
||||
:license: BSD.
|
||||
:license: BSD, see LICENSE for details.
|
||||
"""
|
||||
|
||||
import sys
|
||||
|
@ -4,7 +4,7 @@
|
||||
~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
:copyright: 2007-2008 by Georg Brandl.
|
||||
:license: BSD.
|
||||
:license: BSD, see LICENSE for details.
|
||||
"""
|
||||
|
||||
import re
|
||||
|
@ -4,7 +4,7 @@
|
||||
~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
:copyright: 2007-2008 by Georg Brandl.
|
||||
:license: BSD.
|
||||
:license: BSD, see LICENSE for details.
|
||||
"""
|
||||
|
||||
import re
|
||||
|
@ -6,7 +6,7 @@
|
||||
Global creation environment.
|
||||
|
||||
:copyright: 2007-2008 by Georg Brandl.
|
||||
:license: BSD.
|
||||
:license: BSD, see LICENSE for details.
|
||||
"""
|
||||
|
||||
import re
|
||||
|
@ -6,5 +6,5 @@
|
||||
Contains Sphinx features not activated by default.
|
||||
|
||||
:copyright: 2008 by Georg Brandl.
|
||||
:license: BSD.
|
||||
:license: BSD, see LICENSE for details.
|
||||
"""
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -7,7 +7,7 @@
|
||||
their results.
|
||||
|
||||
:copyright: 2008 by Georg Brandl.
|
||||
:license: BSD.
|
||||
:license: BSD, see LICENSE for details.
|
||||
"""
|
||||
|
||||
import re
|
||||
|
@ -17,7 +17,7 @@
|
||||
are available.)
|
||||
|
||||
:copyright: 2008 by Georg Brandl.
|
||||
:license: BSD.
|
||||
:license: BSD, see LICENSE for details.
|
||||
"""
|
||||
|
||||
from docutils import nodes
|
||||
|
@ -21,7 +21,7 @@
|
||||
without Internet access.
|
||||
|
||||
:copyright: 2008 by Georg Brandl.
|
||||
:license: BSD.
|
||||
:license: BSD, see LICENSE for details.
|
||||
"""
|
||||
|
||||
import time
|
||||
|
@ -7,7 +7,7 @@
|
||||
via JavaScript.
|
||||
|
||||
:copyright: 2008 by Georg Brandl.
|
||||
:license: BSD.
|
||||
:license: BSD, see LICENSE for details.
|
||||
"""
|
||||
|
||||
from docutils import nodes
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -10,7 +10,7 @@
|
||||
count data file.
|
||||
|
||||
:copyright: 2008 by Georg Brandl.
|
||||
:license: BSD.
|
||||
:license: BSD, see LICENSE for details.
|
||||
"""
|
||||
|
||||
from os import path
|
||||
|
@ -9,7 +9,7 @@
|
||||
original location.
|
||||
|
||||
:copyright: 2008 Daniel Bültmann.
|
||||
:license: BSD.
|
||||
:license: BSD, see LICENSE for details.
|
||||
"""
|
||||
|
||||
from docutils import nodes
|
||||
|
@ -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
|
||||
|
@ -6,7 +6,7 @@
|
||||
Locale utilities.
|
||||
|
||||
:copyright: 2008 by Georg Brandl.
|
||||
:license: BSD.
|
||||
:license: BSD, see LICENSE for details.
|
||||
"""
|
||||
|
||||
_ = lambda x: x
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -6,7 +6,7 @@
|
||||
Utility functions for Sphinx.
|
||||
|
||||
:copyright: 2007-2008 by Georg Brandl.
|
||||
:license: BSD.
|
||||
:license: BSD, see LICENSE for details.
|
||||
"""
|
||||
|
||||
import os
|
||||
|
@ -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
|
||||
|
@ -6,7 +6,7 @@
|
||||
Format colored console output.
|
||||
|
||||
:copyright: 2007-2008 by Georg Brandl.
|
||||
:license: BSD.
|
||||
:license: BSD, see LICENSE for details.
|
||||
"""
|
||||
|
||||
import os
|
||||
|
@ -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
|
||||
|
@ -6,7 +6,7 @@
|
||||
PNG image manipulation helpers.
|
||||
|
||||
:copyright: 2008 by Georg Brandl.
|
||||
:license: BSD.
|
||||
:license: BSD, see LICENSE for details.
|
||||
"""
|
||||
|
||||
import struct
|
||||
|
@ -6,7 +6,7 @@
|
||||
TeX escaping helper.
|
||||
|
||||
:copyright: 2008 by Georg Brandl.
|
||||
:license: BSD.
|
||||
:license: BSD, see LICENSE for details.
|
||||
"""
|
||||
|
||||
tex_replacements = [
|
||||
|
@ -6,5 +6,5 @@
|
||||
Custom docutils writers.
|
||||
|
||||
:copyright: 2008 by Georg Brandl.
|
||||
:license: BSD.
|
||||
:license: BSD, see LICENSE for details.
|
||||
"""
|
||||
|
@ -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
|
||||
|
@ -9,7 +9,7 @@
|
||||
docutils sandbox.
|
||||
|
||||
:copyright: 2007-2008 by Georg Brandl, Dave Kuhlman.
|
||||
:license: BSD.
|
||||
:license: BSD, see LICENSE for details.
|
||||
"""
|
||||
|
||||
import re
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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 *
|
||||
|
@ -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
|
||||
|
@ -7,7 +7,7 @@
|
||||
Application class.
|
||||
|
||||
:copyright: 2008 by Georg Brandl.
|
||||
:license: BSD.
|
||||
:license: BSD, see LICENSE for details.
|
||||
"""
|
||||
|
||||
from util import *
|
||||
|
@ -6,7 +6,7 @@
|
||||
Test the coverage builder.
|
||||
|
||||
:copyright: 2008 by Georg Brandl.
|
||||
:license: BSD.
|
||||
:license: BSD, see LICENSE for details.
|
||||
"""
|
||||
|
||||
import pickle
|
||||
|
@ -6,7 +6,7 @@
|
||||
Test the BuildEnvironment class.
|
||||
|
||||
:copyright: 2008 by Georg Brandl.
|
||||
:license: BSD.
|
||||
:license: BSD, see LICENSE for details.
|
||||
"""
|
||||
|
||||
from util import *
|
||||
|
@ -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 *
|
||||
|
@ -6,7 +6,7 @@
|
||||
Test locale features.
|
||||
|
||||
:copyright: 2008 by Georg Brandl.
|
||||
:license: BSD.
|
||||
:license: BSD, see LICENSE for details.
|
||||
"""
|
||||
|
||||
from util import *
|
||||
|
@ -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
|
||||
|
@ -6,7 +6,7 @@
|
||||
Test the sphinx.quickstart module.
|
||||
|
||||
:copyright: 2008 by Georg Brandl.
|
||||
:license: BSD.
|
||||
:license: BSD, see LICENSE for details.
|
||||
"""
|
||||
|
||||
import sys
|
||||
|
@ -4,7 +4,7 @@
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
:copyright: 2008 by Georg Brandl.
|
||||
:license: BSD.
|
||||
:license: BSD, see LICENSE for details.
|
||||
"""
|
||||
|
||||
import sys
|
||||
|
Loading…
Reference in New Issue
Block a user