diff options
author | milde <milde@929543f6-e4f2-0310-98a6-ba3bd3dd1d04> | 2020-09-04 16:52:11 +0000 |
---|---|---|
committer | milde <milde@929543f6-e4f2-0310-98a6-ba3bd3dd1d04> | 2020-09-04 16:52:11 +0000 |
commit | 37a23520737b748ee98a9417e2df49f788041d80 (patch) | |
tree | d8cbf29a64207ca3f06ddddae91072c537084197 | |
parent | e28968fbb239a97417aaf839e52e9a04ae744b12 (diff) | |
download | docutils-37a23520737b748ee98a9417e2df49f788041d80.tar.gz |
Fix link to 2-Clause BSD license.
git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk@8554 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
-rw-r--r-- | docutils/COPYING.txt | 2 | ||||
-rw-r--r-- | docutils/HISTORY.txt | 2 | ||||
-rw-r--r-- | docutils/docs/dev/policies.txt | 12 | ||||
-rw-r--r-- | docutils/docs/user/smartquotes.txt | 2 | ||||
-rw-r--r-- | docutils/docutils/utils/error_reporting.py | 2 | ||||
-rw-r--r-- | docutils/docutils/utils/math/__init__.py | 2 | ||||
-rw-r--r-- | docutils/docutils/utils/math/latex2mathml.py | 2 | ||||
-rw-r--r-- | docutils/docutils/utils/math/math2html.py | 2 | ||||
-rw-r--r-- | docutils/docutils/utils/math/tex2mathml_extern.py | 2 | ||||
-rw-r--r-- | docutils/docutils/utils/punctuation_chars.py | 2 | ||||
-rw-r--r-- | docutils/docutils/utils/smartquotes.py | 4 | ||||
-rw-r--r-- | docutils/docutils/writers/_html_base.py | 2 | ||||
-rw-r--r-- | docutils/docutils/writers/xetex/__init__.py | 2 | ||||
-rw-r--r-- | docutils/test/test_transforms/test_smartquotes.py | 2 | ||||
-rw-r--r-- | docutils/tools/dev/generate_punctuation_chars.py | 4 | ||||
-rwxr-xr-x | docutils/tools/rst2html5.py | 2 | ||||
-rw-r--r-- | sandbox/code-block-directive/docs/syntax-highlight.txt | 2 | ||||
-rwxr-xr-x | sandbox/html4strict/rst2xhtml.py | 2 | ||||
-rw-r--r-- | sandbox/html4strict/xhtml11/__init__.py | 2 |
19 files changed, 26 insertions, 26 deletions
diff --git a/docutils/COPYING.txt b/docutils/COPYING.txt index 609cd6e4b..5fef895b9 100644 --- a/docutils/COPYING.txt +++ b/docutils/COPYING.txt @@ -129,7 +129,7 @@ licenses_ directory. .. _licenses: licenses/ .. _Python 2.1.1 license: http://www.python.org/2.1.1/license.html .. _GNU General Public License: http://www.gnu.org/copyleft/gpl.html -.. _2-Clause BSD license: http://www.spdx.org/licenses/BSD-2-Clause +.. _2-Clause BSD license: http://opensource.org/licenses/BSD-2-Clause .. _OSI-approved: http://opensource.org/licenses/ .. _license-list: .. _GPL-compatible: http://www.gnu.org/licenses/license-list.html diff --git a/docutils/HISTORY.txt b/docutils/HISTORY.txt index effd12754..dbb659c97 100644 --- a/docutils/HISTORY.txt +++ b/docutils/HISTORY.txt @@ -881,7 +881,7 @@ Release 0.8 (2011-07-07) * docs/dev/policies.txt: - Recommend the 2-Clause BSD license - (http://www.spdx.org/licenses/BSD-2-Clause) + (http://opensource.org/licenses/BSD-2-Clause) for code that is kept under the author's copyright. * tools/buildhtml.py: diff --git a/docutils/docs/dev/policies.txt b/docutils/docs/dev/policies.txt index eefaa0613..731800115 100644 --- a/docutils/docs/dev/policies.txt +++ b/docutils/docs/dev/policies.txt @@ -248,14 +248,14 @@ Pros: GNU. References: - * http://www.freebsd.org/copyright/freebsd-license.html - * http://www.opensource.org/licenses/BSD-2-Clause - * http://www.spdx.org/licenses/BSD-2-Clause + * https://www.freebsd.org/copyright/freebsd-license.html + * https://opensource.org/licenses/BSD-2-Clause + * https://spdx.org/licenses/BSD-2-Clause.html .. _Various Licenses and Comments about Them: - http://www.gnu.org/licenses/license-list.html -.. _OSI Approved Licenses: http://www.opensource.org/licenses/category -.. _SPDX Open Source License Registry: http://www.spdx.org/licenses/ + https://www.gnu.org/licenses/license-list.html +.. _OSI Approved Licenses: https://www.opensource.org/licenses/category +.. _SPDX Open Source License Registry: https://www.spdx.org/licenses/ .. _Subversion Repository: diff --git a/docutils/docs/user/smartquotes.txt b/docutils/docs/user/smartquotes.txt index 4f91184b3..50677b840 100644 --- a/docutils/docs/user/smartquotes.txt +++ b/docutils/docs/user/smartquotes.txt @@ -10,7 +10,7 @@ Smart Quotes for Docutils :License: Released under the terms of the `2-Clause BSD license`_ :Abstract: This document describes the Docutils `smartquotes` module. -.. _2-Clause BSD license: http://www.spdx.org/licenses/BSD-2-Clause +.. _2-Clause BSD license: http://opensource.org/licenses/BSD-2-Clause .. contents:: diff --git a/docutils/docutils/utils/error_reporting.py b/docutils/docutils/utils/error_reporting.py index ec98837ee..2a4a39866 100644 --- a/docutils/docutils/utils/error_reporting.py +++ b/docutils/docutils/utils/error_reporting.py @@ -10,7 +10,7 @@ # notice and this notice are preserved. # This file is offered as-is, without any warranty. # -# .. _2-Clause BSD license: http://www.spdx.org/licenses/BSD-2-Clause +# .. _2-Clause BSD license: https://opensource.org/licenses/BSD-2-Clause """ Error reporting should be safe from encoding/decoding errors. diff --git a/docutils/docutils/utils/math/__init__.py b/docutils/docutils/utils/math/__init__.py index d9d19570b..5ea532a10 100644 --- a/docutils/docutils/utils/math/__init__.py +++ b/docutils/docutils/utils/math/__init__.py @@ -7,7 +7,7 @@ # notice and this notice are preserved. # This file is offered as-is, without any warranty. # -# .. _2-Clause BSD license: http://www.spdx.org/licenses/BSD-2-Clause +# .. _2-Clause BSD license: https://opensource.org/licenses/BSD-2-Clause """ This is the Docutils (Python Documentation Utilities) "math" sub-package. diff --git a/docutils/docutils/utils/math/latex2mathml.py b/docutils/docutils/utils/math/latex2mathml.py index f037a8e56..dfc65027c 100644 --- a/docutils/docutils/utils/math/latex2mathml.py +++ b/docutils/docutils/utils/math/latex2mathml.py @@ -12,7 +12,7 @@ # notice and this notice are preserved. # This file is offered as-is, without any warranty. # -# .. _2-Clause BSD license: http://www.spdx.org/licenses/BSD-2-Clause +# .. _2-Clause BSD license: https://opensource.org/licenses/BSD-2-Clause """Convert LaTex math code into presentational MathML""" diff --git a/docutils/docutils/utils/math/math2html.py b/docutils/docutils/utils/math/math2html.py index ca7092c2f..85f5c3521 100644 --- a/docutils/docutils/utils/math/math2html.py +++ b/docutils/docutils/utils/math/math2html.py @@ -11,7 +11,7 @@ # notice and this notice are preserved. # This file is offered as-is, without any warranty. # -# .. _2-Clause BSD license: http://www.spdx.org/licenses/BSD-2-Clause +# .. _2-Clause BSD license: https://opensource.org/licenses/BSD-2-Clause # Based on eLyXer: convert LyX source files to HTML output. # http://alexfernandez.github.io/elyxer/ diff --git a/docutils/docutils/utils/math/tex2mathml_extern.py b/docutils/docutils/utils/math/tex2mathml_extern.py index 2b9e1632d..2cb9a6e3a 100644 --- a/docutils/docutils/utils/math/tex2mathml_extern.py +++ b/docutils/docutils/utils/math/tex2mathml_extern.py @@ -10,7 +10,7 @@ # notice and this notice are preserved. # This file is offered as-is, without any warranty. # -# .. _2-Clause BSD license: http://www.spdx.org/licenses/BSD-2-Clause +# .. _2-Clause BSD license: https://opensource.org/licenses/BSD-2-Clause # Wrappers for TeX->MathML conversion by external tools # ===================================================== diff --git a/docutils/docutils/utils/punctuation_chars.py b/docutils/docutils/utils/punctuation_chars.py index 80224e367..e2b0879e5 100644 --- a/docutils/docutils/utils/punctuation_chars.py +++ b/docutils/docutils/utils/punctuation_chars.py @@ -9,7 +9,7 @@ # notice and this notice are preserved. # This file is offered as-is, without any warranty. # -# .. _2-Clause BSD license: http://www.spdx.org/licenses/BSD-2-Clause +# .. _2-Clause BSD license: https://opensource.org/licenses/BSD-2-Clause # # This file is generated by # ``docutils/tools/dev/generate_punctuation_chars.py``. diff --git a/docutils/docutils/utils/smartquotes.py b/docutils/docutils/utils/smartquotes.py index 48873011a..24d2d8d3c 100644 --- a/docutils/docutils/utils/smartquotes.py +++ b/docutils/docutils/utils/smartquotes.py @@ -13,7 +13,7 @@ # notices and this notice are preserved. # This file is offered as-is, without any warranty. # -# .. _2-Clause BSD license: http://www.spdx.org/licenses/BSD-2-Clause +# .. _2-Clause BSD license: https://opensource.org/licenses/BSD-2-Clause r""" @@ -133,7 +133,7 @@ smartypants.py license (2-Clause BSD license): .. _Pyblosxom: http://pyblosxom.bluesock.org/ .. _SmartyPants: http://daringfireball.net/projects/smartypants/ .. _Movable Type: http://www.movabletype.org/ -.. _2-Clause BSD license: http://www.spdx.org/licenses/BSD-2-Clause +.. _2-Clause BSD license: https://opensource.org/licenses/BSD-2-Clause .. _Docutils: http://docutils.sf.net/ Description diff --git a/docutils/docutils/writers/_html_base.py b/docutils/docutils/writers/_html_base.py index 0f57665bc..4352eb346 100644 --- a/docutils/docutils/writers/_html_base.py +++ b/docutils/docutils/writers/_html_base.py @@ -13,7 +13,7 @@ # notice and this notice are preserved. # This file is offered as-is, without any warranty. # -# .. _2-Clause BSD license: http://www.spdx.org/licenses/BSD-2-Clause +# .. _2-Clause BSD license: https://opensource.org/licenses/BSD-2-Clause """common definitions for Docutils HTML writers""" diff --git a/docutils/docutils/writers/xetex/__init__.py b/docutils/docutils/writers/xetex/__init__.py index c64c27e7e..3c7fc985e 100644 --- a/docutils/docutils/writers/xetex/__init__.py +++ b/docutils/docutils/writers/xetex/__init__.py @@ -12,7 +12,7 @@ # notice and this notice are preserved. # This file is offered as-is, without any warranty. # -# .. _2-Clause BSD license: http://www.spdx.org/licenses/BSD-2-Clause +# .. _2-Clause BSD license: https://opensource.org/licenses/BSD-2-Clause """ XeLaTeX document tree Writer. diff --git a/docutils/test/test_transforms/test_smartquotes.py b/docutils/test/test_transforms/test_smartquotes.py index 10bec27f7..1ed8880b5 100644 --- a/docutils/test/test_transforms/test_smartquotes.py +++ b/docutils/test/test_transforms/test_smartquotes.py @@ -11,7 +11,7 @@ # notice and this notice are preserved. # This file is offered as-is, without any warranty. # -# .. _2-Clause BSD license: http://www.spdx.org/licenses/BSD-2-Clause +# .. _2-Clause BSD license: https://opensource.org/licenses/BSD-2-Clause """ Test module for universal.SmartQuotes transform. diff --git a/docutils/tools/dev/generate_punctuation_chars.py b/docutils/tools/dev/generate_punctuation_chars.py index 76bcdc941..0e9d4e2ec 100644 --- a/docutils/tools/dev/generate_punctuation_chars.py +++ b/docutils/tools/dev/generate_punctuation_chars.py @@ -8,7 +8,7 @@ # notice and this notice are preserved. # This file is offered as-is, without any warranty. # -# .. _2-Clause BSD license: http://www.spdx.org/licenses/BSD-2-Clause +# .. _2-Clause BSD license: https://opensource.org/licenses/BSD-2-Clause # :Id: $Id$ # @@ -61,7 +61,7 @@ module_template = u'''#!/usr/bin/env python # notice and this notice are preserved. # This file is offered as-is, without any warranty. # -# .. _2-Clause BSD license: http://www.spdx.org/licenses/BSD-2-Clause +# .. _2-Clause BSD license: https://opensource.org/licenses/BSD-2-Clause # # This file is generated by # ``docutils/tools/dev/generate_punctuation_chars.py``. diff --git a/docutils/tools/rst2html5.py b/docutils/tools/rst2html5.py index e4bee6fe2..ce395fadb 100755 --- a/docutils/tools/rst2html5.py +++ b/docutils/tools/rst2html5.py @@ -8,7 +8,7 @@ # notice and this notice are preserved. # This file is offered as-is, without any warranty. # -# .. _2-Clause BSD license: http://www.spdx.org/licenses/BSD-2-Clause +# .. _2-Clause BSD license: https://opensource.org/licenses/BSD-2-Clause # # Revision: $Revision$ # Date: $Date$ diff --git a/sandbox/code-block-directive/docs/syntax-highlight.txt b/sandbox/code-block-directive/docs/syntax-highlight.txt index 85c320494..beb6250ab 100644 --- a/sandbox/code-block-directive/docs/syntax-highlight.txt +++ b/sandbox/code-block-directive/docs/syntax-highlight.txt @@ -14,7 +14,7 @@ Syntax Highlight notice and this notice are preserved. This file is offered as-is, without any warranty. -.. _2-Clause BSD license: http://www.spdx.org/licenses/BSD-2-Clause +.. _2-Clause BSD license: http://opensource.org/licenses/BSD-2-Clause :Abstract: Proposal to add syntax highlight of code blocks to the capabilities of Docutils_. diff --git a/sandbox/html4strict/rst2xhtml.py b/sandbox/html4strict/rst2xhtml.py index ab700a27c..e0c7a779a 100755 --- a/sandbox/html4strict/rst2xhtml.py +++ b/sandbox/html4strict/rst2xhtml.py @@ -8,7 +8,7 @@ # notice and this notice are preserved. # This file is offered as-is, without any warranty. # -# .. _2-Clause BSD license: http://www.spdx.org/licenses/BSD-2-Clause +# .. _2-Clause BSD license: https://opensource.org/licenses/BSD-2-Clause # # Revision: $Revision$ # Date: $Date$ diff --git a/sandbox/html4strict/xhtml11/__init__.py b/sandbox/html4strict/xhtml11/__init__.py index 2664eef8f..475719183 100644 --- a/sandbox/html4strict/xhtml11/__init__.py +++ b/sandbox/html4strict/xhtml11/__init__.py @@ -10,7 +10,7 @@ # notice and this notice are preserved. # This file is offered as-is, without any warranty. # -# .. _2-Clause BSD license: http://www.spdx.org/licenses/BSD-2-Clause +# .. _2-Clause BSD license: https://opensource.org/licenses/BSD-2-Clause """ Strict eXtensible HyperText Markup Language (XHTML) document Writer. |