From 0f36a31d522573174f2cc9c5f6a793c278fa7c95 Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+aa-turner@users.noreply.github.com> Date: Sun, 16 Jan 2022 17:57:56 +0000 Subject: [PATCH 1/7] Add GHA scripts --- .github/workflows/linting.yml | 20 +++++++++ .github/workflows/test.yml | 35 +++++++++++++++ docutils/.flake8 | 85 +++++++++++++++++++++++++++++++++++ 3 files changed, 140 insertions(+) create mode 100644 .github/workflows/linting.yml create mode 100644 .github/workflows/test.yml create mode 100644 docutils/.flake8 diff --git a/.github/workflows/linting.yml b/.github/workflows/linting.yml new file mode 100644 index 000000000..0b5435fea --- /dev/null +++ b/.github/workflows/linting.yml @@ -0,0 +1,20 @@ +name: 🎨 linting + +on: [push, pull_request] + +jobs: + linting: + name: lint using flake8 + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-python@v2 + with: + python-version: 3 + - name: Install dependencies + run: pip install flake8 + - name: Run flake8 + run: | + cd docutils + flake8 docutils diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 000000000..ea0be727f --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,35 @@ +name: ✅ tests #and coverage + +on: [push, pull_request] + +jobs: + tests: + name: test with Python ${{ matrix.python-version }} + runs-on: ubuntu-latest + strategy: + matrix: + python-version: + - "3.7" + - "3.8" + - "3.9" + - "3.10" + - "3.11-dev" + + steps: + - uses: actions/checkout@v2 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v2 + with: + python-version: ${{ matrix.python-version }} + + - name: Install dependencies + run: | + cd docutils + python -m pip install --upgrade pip + python -m pip install -e . + python -m pip install pygments + + - name: Run test suite + run: | + cd docutils + python test/alltests.py diff --git a/docutils/.flake8 b/docutils/.flake8 new file mode 100644 index 000000000..d40602322 --- /dev/null +++ b/docutils/.flake8 @@ -0,0 +1,85 @@ +[flake8] +# The following rules are ignored as they're stylistic and can be addressed at +# a later point: +# +# E101 indentation contains mixed spaces and tabs +# E111 indentation is not a multiple of four +# E114 indentation is not a multiple of four (comment) +# E115 expected an indented block (comment) +# E116 unexpected indentation (comment) +# E117 over-indented +# E121 continuation line under-indented for hanging indent +# E122 continuation line missing indentation or outdented +# E123 closing bracket does not match indentation of opening bracket's line +# E124 closing bracket does not match visual indentation +# E125 continuation line with same indent as next logical line +# E126 continuation line over-indented for hanging indent +# E127 continuation line over-indented for visual indent +# E128 continuation line under-indented for visual indent +# E129 visually indented line with same indent as next logical line +# E131 continuation line unaligned for hanging indent +# E201 whitespace after '(' +# E202 whitespace before '}' +# E203 whitespace before ':' +# E211 whitespace before '(' +# E221 multiple spaces before operator +# E222 multiple spaces after operator +# E225 missing whitespace around operator +# E226 missing whitespace around arithmetic operator +# E228 missing whitespace around modulo operator +# E231 missing whitespace after ',' +# E241 multiple spaces after ':' +# E251 unexpected spaces around keyword / parameter equals +# E261 at least two spaces before inline comment +# E262 inline comment should start with '# ' +# E265 block comment should start with '# ' +# E266 too many leading '#' for block comment +# E271 multiple spaces after keyword +# E301 expected 1 blank line, found 0 +# E302 expected 2 blank lines, found 1 +# E303 too many blank lines (N) +# E305 expected 2 blank lines after class or function definition, found 1 +# E306 expected 1 blank line before a nested definition, found 0 +# E401 multiple imports on one line +# E402 module level import not at top of file +# E501 line too long (N > 79 characters) +# E502 the backslash is redundant between brackets +# E701 multiple statements on one line (colon) +# E704 multiple statements on one line (def) +# E711 comparison to None should be 'if cond is not None:' +# E713 test for membership should be 'not in' +# E721 do not compare types, use 'isinstance()' +# E722 do not use bare 'except' +# E731 do not assign a lambda expression, use a def +# E741 ambiguous variable name 'a' +# W191 indentation contains tabs +# W291 trailing whitespace +# W293 blank line contains whitespace +# W391 blank line at end of file +# W503 line break before binary operator +# W504 line break after binary operator +# F401 'foo' imported but unused +# F841 local variable 'foo' is assigned to but never used +# +# The following rules are required for Python 3 support and so are not +# disabled +# +# W605 invalid escape sequence '\ ' +# W601 .has_key() is deprecated, use 'in' +# W602 deprecated form of raising exception +# F811 redefinition of unused 'foo' from line 79 +# +# Similarly, the following are straight up bugs that should be addressed +# immediately: +# +# E999 SyntaxError: invalid syntax +# F404 from __future__ imports must occur at the beginning of the file +# F821 undefined name 'foo' +ignore = E101,E111,E114,E115,E116,E117,E121,E122,E123,E124,E125,E126,E127,E128,E129,E131,E201,E202,E203,E211,E221,E222,E225,E226,E228,E231,E241,E251,E261,E262,E265,E266,E271,E301,E302,E303,E305,E306,E401,E402,E501,E502,E701,E704,E711,E713,E721,E722,E731,E741,W191,W291,W293,W391,W503,W504,W605,F401,F841 +exclude = .venv,.tox,dist,*egg,build +max-complexity = 35 +# Some rules are disabled for specific files (requires flake8 3.7.0) +# +# F821, disabled due to use of 'settings_overrides' +per-file-ignores = + docutils/test/functional/tests/*:F821 From 3db67b23ec9644b447020569558e80c1415265a2 Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+AA-Turner@users.noreply.github.com> Date: Thu, 20 Jan 2022 03:08:01 +0000 Subject: [PATCH 2/7] http://docutils.sf.net -> https://docutils.sourceforge.io --- docutils/BUGS.txt | 2 +- docutils/FAQ.txt | 2 +- docutils/docs/dev/enthought-plan.txt | 8 ++++---- docutils/docs/dev/enthought-rfp.txt | 2 +- docutils/docs/dev/policies.txt | 2 +- docutils/docs/dev/rst/alternatives.txt | 8 ++++---- docutils/docs/dev/todo.txt | 2 +- docutils/docs/dev/website.txt | 4 ++-- docutils/docs/howto/rst-directives.txt | 2 +- docutils/docs/user/emacs.txt | 4 ++-- docutils/docs/user/latex.txt | 4 ++-- docutils/docs/user/links.txt | 8 ++++---- docutils/docs/user/rst/cheatsheet.txt | 10 +++++----- docutils/docs/user/rst/quickref.html | 4 ++-- docutils/docs/user/slide-shows.txt | 4 ++-- docutils/docutils/core.py | 6 +++--- docutils/docutils/frontend.py | 2 +- docutils/docutils/languages/__init__.py | 2 +- docutils/docutils/languages/af.py | 2 +- docutils/docutils/languages/ar.py | 2 +- docutils/docutils/languages/ca.py | 2 +- docutils/docutils/languages/cs.py | 2 +- docutils/docutils/languages/da.py | 2 +- docutils/docutils/languages/de.py | 2 +- docutils/docutils/languages/en.py | 2 +- docutils/docutils/languages/eo.py | 2 +- docutils/docutils/languages/es.py | 2 +- docutils/docutils/languages/fa.py | 2 +- docutils/docutils/languages/fi.py | 2 +- docutils/docutils/languages/fr.py | 2 +- docutils/docutils/languages/gl.py | 2 +- docutils/docutils/languages/he.py | 2 +- docutils/docutils/languages/it.py | 2 +- docutils/docutils/languages/ja.py | 2 +- docutils/docutils/languages/ko.py | 2 +- docutils/docutils/languages/lt.py | 2 +- docutils/docutils/languages/lv.py | 2 +- docutils/docutils/languages/nl.py | 2 +- docutils/docutils/languages/pl.py | 2 +- docutils/docutils/languages/pt_br.py | 2 +- docutils/docutils/languages/ru.py | 2 +- docutils/docutils/languages/sk.py | 2 +- docutils/docutils/languages/sv.py | 2 +- docutils/docutils/languages/zh_cn.py | 2 +- docutils/docutils/languages/zh_tw.py | 2 +- docutils/docutils/parsers/rst/__init__.py | 2 +- docutils/docutils/parsers/rst/directives/tables.py | 2 +- docutils/docutils/parsers/rst/include/README.txt | 4 ++-- docutils/docutils/parsers/rst/languages/__init__.py | 2 +- docutils/docutils/parsers/rst/languages/af.py | 2 +- docutils/docutils/parsers/rst/languages/ar.py | 2 +- docutils/docutils/parsers/rst/languages/ca.py | 2 +- docutils/docutils/parsers/rst/languages/cs.py | 2 +- docutils/docutils/parsers/rst/languages/da.py | 2 +- docutils/docutils/parsers/rst/languages/de.py | 2 +- docutils/docutils/parsers/rst/languages/en.py | 2 +- docutils/docutils/parsers/rst/languages/eo.py | 2 +- docutils/docutils/parsers/rst/languages/es.py | 2 +- docutils/docutils/parsers/rst/languages/fa.py | 2 +- docutils/docutils/parsers/rst/languages/fi.py | 2 +- docutils/docutils/parsers/rst/languages/fr.py | 2 +- docutils/docutils/parsers/rst/languages/gl.py | 2 +- docutils/docutils/parsers/rst/languages/he.py | 2 +- docutils/docutils/parsers/rst/languages/ja.py | 2 +- docutils/docutils/parsers/rst/languages/ko.py | 2 +- docutils/docutils/parsers/rst/languages/lt.py | 2 +- docutils/docutils/parsers/rst/languages/lv.py | 2 +- docutils/docutils/parsers/rst/languages/nl.py | 2 +- docutils/docutils/parsers/rst/languages/pl.py | 2 +- docutils/docutils/parsers/rst/languages/pt_br.py | 2 +- docutils/docutils/parsers/rst/languages/ru.py | 2 +- docutils/docutils/parsers/rst/languages/sk.py | 2 +- docutils/docutils/parsers/rst/languages/sv.py | 2 +- docutils/docutils/parsers/rst/languages/zh_cn.py | 2 +- docutils/docutils/parsers/rst/languages/zh_tw.py | 2 +- docutils/docutils/transforms/frontmatter.py | 6 +++--- docutils/docutils/utils/punctuation_chars.py | 2 +- docutils/docutils/utils/smartquotes.py | 2 +- docutils/docutils/writers/html4css1/html4css1.css | 2 +- .../docutils/writers/s5_html/themes/default/slides.js | 2 +- docutils/test/functional/expected/ui/default/slides.js | 2 +- .../test/functional/expected/ui/small-black/slides.js | 2 +- docutils/test/local_dummy_lang.py | 2 +- .../test/test_readers/test_pep/test_inline_markup.py | 6 +++--- docutils/tools/dev/create_unimap.py | 2 +- docutils/tools/dev/generate_punctuation_chars.py | 2 +- docutils/tools/editors/README.txt | 2 +- 87 files changed, 112 insertions(+), 112 deletions(-) diff --git a/docutils/BUGS.txt b/docutils/BUGS.txt index dc50c72ca..62b3bdbb2 100644 --- a/docutils/BUGS.txt +++ b/docutils/BUGS.txt @@ -121,7 +121,7 @@ __ http://svn.collab.net/viewcvs/svn/trunk/BUGS?view=markup .. _snapshot: http://docutils.sourceforge.net/#download .. _documentation: docs/ .. _FAQ: FAQ.html -.. _mailing list archives: http://docutils.sf.net/#mailing-lists +.. _mailing list archives: https://docutils.sourceforge.io/#mailing-lists .. _Docutils-users: docs/user/mailing-lists.html#docutils-users .. _SourceForge Bug Tracker: http://sourceforge.net/p/docutils/bugs/ diff --git a/docutils/FAQ.txt b/docutils/FAQ.txt index 6d270abec..0c7d1a709 100644 --- a/docutils/FAQ.txt +++ b/docutils/FAQ.txt @@ -421,7 +421,7 @@ There are several, with various degrees of completeness. With no implied endorsement or recommendation, and in no particular order: * `Ian Bicking's experimental code - `__ + `__ * `MoinMoin `__ has some support; `here's a sample `__ diff --git a/docutils/docs/dev/enthought-plan.txt b/docutils/docs/dev/enthought-plan.txt index 380161709..5c0d36587 100644 --- a/docutils/docs/dev/enthought-plan.txt +++ b/docutils/docs/dev/enthought-plan.txt @@ -9,7 +9,7 @@ :Copyright: 2004 by `Enthought, Inc. `_ :License: `Enthought License`_ (BSD-style) -.. _Enthought License: http://docutils.sf.net/licenses/enthought.txt +.. _Enthought License: https://docutils.sourceforge.io/licenses/enthought.txt This document should be read in conjunction with the `Enthought API Documentation Tool RFP`__ prepared by Janet Swisher. @@ -55,7 +55,7 @@ the community will benefit from the end result, which will be great. All that's left now is to actually do the work! .. _PyCon 2004: http://pycon.org/dc2004/ -.. _reStructuredText: http://docutils.sf.net/rst.html +.. _reStructuredText: https://docutils.sourceforge.io/rst.html .. _SciPy: http://www.scipy.org/ @@ -72,7 +72,7 @@ Development Plan .. _Epydoc: http://epydoc.sourceforge.net/ .. _HappyDoc: http://happydoc.sourceforge.net/ .. _PEP 258: - http://docutils.sf.net/docs/peps/pep-0258.html#python-source-reader + https://docutils.sourceforge.io/docs/peps/pep-0258.html#python-source-reader 2. Decide on a base platform. The best way to achieve Enthought's goals in a reasonable time frame may be to extend Epydoc or @@ -156,7 +156,7 @@ A section describing all of this will be added to the Docutils If another project is chosen as the base project, similar changes would be made to their files, subject to negotiation. -__ http://docutils.sf.net/COPYING.html +__ https://docutils.sourceforge.io/COPYING.html Proposed Changes to reStructuredText diff --git a/docutils/docs/dev/enthought-rfp.txt b/docutils/docs/dev/enthought-rfp.txt index 986f5604f..5fb72b390 100644 --- a/docutils/docs/dev/enthought-rfp.txt +++ b/docutils/docs/dev/enthought-rfp.txt @@ -10,7 +10,7 @@ :Copyright: 2004 by Enthought, Inc. :License: `Enthought License`_ (BSD Style) -.. _Enthought License: http://docutils.sf.net/licenses/enthought.txt +.. _Enthought License: https://docutils.sourceforge.io/licenses/enthought.txt The following is excerpted from the full RFP, and is published here with permission from `Enthought, Inc.`_ See the `Plan for Enthought diff --git a/docutils/docs/dev/policies.txt b/docutils/docs/dev/policies.txt index d12bf9bd3..992744946 100644 --- a/docutils/docs/dev/policies.txt +++ b/docutils/docs/dev/policies.txt @@ -624,7 +624,7 @@ Some sandbox projects are destined to move to the Docutils core once completed. Others, such as add-ons to Docutils or applications of Docutils, may graduate to become `parallel projects`_. -.. _sandbox README: http://docutils.sf.net/sandbox/README.html +.. _sandbox README: https://docutils.sourceforge.io/sandbox/README.html .. _sandbox directory: http://sourceforge.net/p/docutils/code/HEAD/tree/trunk/sandbox/ diff --git a/docutils/docs/dev/rst/alternatives.txt b/docutils/docs/dev/rst/alternatives.txt index 949d03a9c..4aa648049 100644 --- a/docutils/docs/dev/rst/alternatives.txt +++ b/docutils/docs/dev/rst/alternatives.txt @@ -2191,7 +2191,7 @@ syntax, this directive becomes low priority. As described in the FAQ__, no special syntax or directive is needed for this application. -__ http://docutils.sf.net/FAQ.html +__ https://docutils.sourceforge.io/FAQ.html #how-can-i-mark-up-a-faq-or-other-list-of-questions-answers @@ -3016,9 +3016,9 @@ character entities can be defined and used. `A set of character entity set definition files have been defined`__ (`tarball`__). There's also `a description and instructions for use`__. -__ http://docutils.sf.net/tmp/charents/ -__ http://docutils.sf.net/tmp/charents.tgz -__ http://docutils.sf.net/tmp/charents/README.html +__ https://docutils.sourceforge.io/tmp/charents/ +__ https://docutils.sourceforge.io/tmp/charents.tgz +__ https://docutils.sourceforge.io/tmp/charents/README.html To allow for `character-level inline markup`_, a limited form of character processing has been added to the spec and parser: escaped diff --git a/docutils/docs/dev/todo.txt b/docutils/docs/dev/todo.txt index 168ebc230..552e854d6 100644 --- a/docutils/docs/dev/todo.txt +++ b/docutils/docs/dev/todo.txt @@ -64,7 +64,7 @@ Many of these are now handled by Sphinx_ * Plugin support. * Suitability for `Python module documentation - `_. + `_. .. _Sphinx: http://www.sphinx-doc.org/ diff --git a/docutils/docs/dev/website.txt b/docutils/docs/dev/website.txt index 6851b30b8..b3acbf580 100644 --- a/docutils/docs/dev/website.txt +++ b/docutils/docs/dev/website.txt @@ -34,13 +34,13 @@ __ `Adding .txt Files`_ The docutils-update.local__ script is located at ``sandbox/infrastructure/docutils-update.local``. -__ http://docutils.sf.net/sandbox/infrastructure/docutils-update.local +__ https://docutils.sourceforge.io/sandbox/infrastructure/docutils-update.local If you want to share files via the web, you can upload them using the uploaddocutils.sh__ script (``sandbox/infrastructure/uploaddocutils.sh``). -__ http://docutils.sf.net/sandbox/infrastructure/uploaddocutils.sh +__ https://docutils.sourceforge.io/sandbox/infrastructure/uploaddocutils.sh Setting Up diff --git a/docutils/docs/howto/rst-directives.txt b/docutils/docs/howto/rst-directives.txt index 42e1618a2..16af02e15 100644 --- a/docutils/docs/howto/rst-directives.txt +++ b/docutils/docs/howto/rst-directives.txt @@ -427,4 +427,4 @@ of the ``contents`` directive in docutils.parsers.rst.directives.parts__. .. _transform: ../ref/transforms.html -__ http://docutils.sf.net/docutils/parsers/rst/directives/parts.py +__ https://docutils.sourceforge.io/docutils/parsers/rst/directives/parts.py diff --git a/docutils/docs/user/emacs.txt b/docutils/docs/user/emacs.txt index 0d890ffbd..51878890d 100644 --- a/docutils/docs/user/emacs.txt +++ b/docutils/docs/user/emacs.txt @@ -940,8 +940,8 @@ Most of the code has been modified, enhanced and extended by Stefan Merten who also is the current maintainer of ``rst.el``. .. _Emacs: http://www.gnu.org/software/emacs/emacs.html -.. _reStructuredText: http://docutils.sf.net/rst.html -.. _Docutils: http://docutils.sf.net/ +.. _reStructuredText: https://docutils.sourceforge.io/rst.html +.. _Docutils: https://docutils.sourceforge.io/ diff --git a/docutils/docs/user/latex.txt b/docutils/docs/user/latex.txt index 8af8821d6..7942b4721 100644 --- a/docutils/docs/user/latex.txt +++ b/docutils/docs/user/latex.txt @@ -1585,7 +1585,7 @@ Example: \marginpar cannot be used, e.g., inside floats, footnotes, or in frames made with the framed package (see marginnote_). -__ http://docutils.sf.net/docutils/docs/ref/rst/directives.html#sidebar +__ https://docutils.sourceforge.io/docutils/docs/ref/rst/directives.html#sidebar size of a pixel --------------- @@ -1842,7 +1842,7 @@ Example 2: \newcommand*{\DUtransition}{\vspace{2ex}} -__ http://docutils.sf.net/docutils/docs/ref/rst/restructuredtext.html#transitions +__ https://docutils.sourceforge.io/docutils/docs/ref/rst/restructuredtext.html#transitions .. _transition-stars.sty: ../../../sandbox/stylesheets/transition-stars.sty diff --git a/docutils/docs/user/links.txt b/docutils/docs/user/links.txt index 5700367e2..6b3e0be44 100644 --- a/docutils/docs/user/links.txt +++ b/docutils/docs/user/links.txt @@ -29,7 +29,7 @@ Editors Advanced text editors with reStructuredText support, IDEs, and docutils GUIs: -* Emacs `rst mode `__. +* Emacs `rst mode `__. * `Vim `__: @@ -282,7 +282,7 @@ Convert other formats to reStructuredText: .. _PySource: https://docutils.sourceforge.io/sandbox/tibs/pysource/ .. _pysource_reader: https://docutils.sourceforge.io/sandbox/davidg/pysource_reader/ - .. _Python Source Reader: http://docutils.sf.net/docs/dev/pysource.html + .. _Python Source Reader: https://docutils.sourceforge.io/docs/dev/pysource.html Extensions @@ -329,9 +329,9 @@ Applications using docutils/reStructuredText and helper applications. * `Project Gutenberg`_ uses a customized version of Docutils with it's own xetex- and nroff-writer and epub generator. -.. _FAQ entry about Wikis: http://docutils.sf.net/FAQ.html +.. _FAQ entry about Wikis: https://docutils.sourceforge.io/FAQ.html #are-there-any-wikis-that-use-restructuredtext-syntax -.. _FAQ entry about Blogs: http://docutils.sf.net/FAQ.html +.. _FAQ entry about Blogs: https://docutils.sourceforge.io/FAQ.html #are-there-any-weblog-blog-projects-that-use-restructuredtext-syntax .. _Project Gutenberg: http://www.gutenberg.org diff --git a/docutils/docs/user/rst/cheatsheet.txt b/docutils/docs/user/rst/cheatsheet.txt index 1a3f3e27a..1cf4321e1 100644 --- a/docutils/docs/user/rst/cheatsheet.txt +++ b/docutils/docs/user/rst/cheatsheet.txt @@ -1,7 +1,7 @@ ===================================================== The reStructuredText_ Cheat Sheet: Syntax Reminders ===================================================== -:Info: See for introductory docs. +:Info: See for introductory docs. :Author: David Goodger :Date: $Date$ :Revision: $Revision$ @@ -52,10 +52,10 @@ Explicit Markup Examples (visible in the `text source`_) Footnote .. [1] Manually numbered or [#] auto-numbered (even [#labelled]) or [*] auto-symbol Citation .. [CIT2002] A citation. -Hyperlink Target .. _reStructuredText: http://docutils.sf.net/rst.html +Hyperlink Target .. _reStructuredText: https://docutils.sourceforge.io/rst.html .. _indirect target: reStructuredText_ .. _internal target: -Anonymous Target __ http://docutils.sf.net/docs/ref/rst/restructuredtext.html +Anonymous Target __ https://docutils.sourceforge.io/docs/ref/rst/restructuredtext.html Directive ("::") .. image:: images/biohazard.png Substitution Def .. |substitution| replace:: like an inline directive Comment .. is anything else @@ -73,7 +73,7 @@ http://docutils.sourceforge.net; named reference, reStructuredText_; Directive Quick Reference ========================= -See for full info. +See for full info. ================ ============================================================ Directive Name Description (Docutils version added to, in [brackets]) @@ -114,7 +114,7 @@ title Set the metadata document title [0.3.10] Interpreted Text Role Quick Reference ===================================== -See for full info. +See for full info. ================ ============================================================ Role Name Description diff --git a/docutils/docs/user/rst/quickref.html b/docutils/docs/user/rst/quickref.html index c265f0a7b..c6515fefa 100644 --- a/docutils/docs/user/rst/quickref.html +++ b/docutils/docs/user/rst/quickref.html @@ -165,8 +165,8 @@

See Citations. - http://docutils.sf.net/ - http://docutils.sf.net/ + https://docutils.sourceforge.io/ + https://docutils.sourceforge.io/ A standalone hyperlink. diff --git a/docutils/docs/user/slide-shows.txt b/docutils/docs/user/slide-shows.txt index aa7c1e130..58eb0e4fc 100644 --- a/docutils/docs/user/slide-shows.txt +++ b/docutils/docs/user/slide-shows.txt @@ -18,7 +18,7 @@ of the s5_html.py writer and the rst2s5.py front end. To view this document as a slide show see - http://docutils.sf.net/docs/user/slide-shows.s5.html (or `your + https://docutils.sourceforge.io/docs/user/slide-shows.s5.html (or `your local copy `__). .. contents:: @@ -986,7 +986,7 @@ That's All, Folks! .. class:: huge Further information: - http://docutils.sf.net + https://docutils.sourceforge.io Docutils users' mailing list: docutils-users@lists.sf.net diff --git a/docutils/docutils/core.py b/docutils/docutils/core.py index 035c310c0..d9035eba9 100644 --- a/docutils/docutils/core.py +++ b/docutils/docutils/core.py @@ -9,7 +9,7 @@ custom component objects first, and pass *them* to ``publish_*``/`Publisher`. See `The Docutils Publisher`_. -.. _The Docutils Publisher: http://docutils.sf.net/docs/api/publisher.html +.. _The Docutils Publisher: https://docutils.sourceforge.io/docs/api/publisher.html """ __docformat__ = 'reStructuredText' @@ -318,7 +318,7 @@ def report_UnicodeError(self, error): default_usage = '%prog [options] [ []]' default_description = ('Reads from (default is stdin) and writes to ' ' (default is stdout). See ' - ' for ' + ' for ' 'the full reference.') def publish_cmdline(reader=None, reader_name='standalone', @@ -562,7 +562,7 @@ def publish_programmatically(source_class, source, source_path, Applications should not need to call this function directly. If it does seem to be necessary to call this function directly, please write to the Docutils-develop mailing list - . + . Parameters: diff --git a/docutils/docutils/frontend.py b/docutils/docutils/frontend.py index ea269477e..1a4394b04 100644 --- a/docutils/docutils/frontend.py +++ b/docutils/docutils/frontend.py @@ -748,7 +748,7 @@ class ConfigParser(RawConfigParser): old_warning = """ The "[option]" section is deprecated. Support for old-format configuration files will be removed in Docutils 0.21 or later. Please revise your -configuration files. See , +configuration files. See , section "Old-Format Configuration Files". """ diff --git a/docutils/docutils/languages/__init__.py b/docutils/docutils/languages/__init__.py index 561be4b7f..c556f7e88 100644 --- a/docutils/docutils/languages/__init__.py +++ b/docutils/docutils/languages/__init__.py @@ -3,7 +3,7 @@ # Copyright: This module has been placed in the public domain. # Internationalization details are documented in -# . +# . """ This package contains modules for language-dependent features of Docutils. diff --git a/docutils/docutils/languages/af.py b/docutils/docutils/languages/af.py index 1fe561e99..87ab1234d 100644 --- a/docutils/docutils/languages/af.py +++ b/docutils/docutils/languages/af.py @@ -3,7 +3,7 @@ # Copyright: This module has been placed in the public domain. # New language mappings are welcome. Before doing a new translation, please -# read . Two files must be +# read . Two files must be # translated for each language: one in docutils/languages, the other in # docutils/parsers/rst/languages. diff --git a/docutils/docutils/languages/ar.py b/docutils/docutils/languages/ar.py index 360557192..5f269b104 100644 --- a/docutils/docutils/languages/ar.py +++ b/docutils/docutils/languages/ar.py @@ -3,7 +3,7 @@ # Copyright: This module has been placed in the public domain. # New language mappings are welcome. Before doing a new translation, please -# read . Two files must be +# read . Two files must be # translated for each language: one in docutils/languages, the other in # docutils/parsers/rst/languages. diff --git a/docutils/docutils/languages/ca.py b/docutils/docutils/languages/ca.py index 1661866e4..db3614cf6 100644 --- a/docutils/docutils/languages/ca.py +++ b/docutils/docutils/languages/ca.py @@ -3,7 +3,7 @@ # Copyright: This module has been placed in the public domain. # New language mappings are welcome. Before doing a new translation, please -# read . Two files must be +# read . Two files must be # translated for each language: one in docutils/languages, the other in # docutils/parsers/rst/languages. diff --git a/docutils/docutils/languages/cs.py b/docutils/docutils/languages/cs.py index b33a54bf5..67d0fae8b 100644 --- a/docutils/docutils/languages/cs.py +++ b/docutils/docutils/languages/cs.py @@ -3,7 +3,7 @@ # Copyright: This module has been placed in the public domain. # New language mappings are welcome. Before doing a new translation, please -# read . Two files must be +# read . Two files must be # translated for each language: one in docutils/languages, the other in # docutils/parsers/rst/languages. diff --git a/docutils/docutils/languages/da.py b/docutils/docutils/languages/da.py index c05a5dc5b..14c98083b 100644 --- a/docutils/docutils/languages/da.py +++ b/docutils/docutils/languages/da.py @@ -3,7 +3,7 @@ # Copyright: This module has been placed in the public domain. # New language mappings are welcome. Before doing a new translation, please -# read . Two files must be +# read . Two files must be # translated for each language: one in docutils/languages, the other in # docutils/parsers/rst/languages. diff --git a/docutils/docutils/languages/de.py b/docutils/docutils/languages/de.py index 674f6566f..97b85bff9 100644 --- a/docutils/docutils/languages/de.py +++ b/docutils/docutils/languages/de.py @@ -3,7 +3,7 @@ # Copyright: This module has been placed in the public domain. # New language mappings are welcome. Before doing a new translation, please -# read . Two files must be +# read . Two files must be # translated for each language: one in docutils/languages, the other in # docutils/parsers/rst/languages. diff --git a/docutils/docutils/languages/en.py b/docutils/docutils/languages/en.py index 410f70903..31dee12b5 100644 --- a/docutils/docutils/languages/en.py +++ b/docutils/docutils/languages/en.py @@ -3,7 +3,7 @@ # Copyright: This module has been placed in the public domain. # New language mappings are welcome. Before doing a new translation, please -# read . Two files must be +# read . Two files must be # translated for each language: one in docutils/languages, the other in # docutils/parsers/rst/languages. diff --git a/docutils/docutils/languages/eo.py b/docutils/docutils/languages/eo.py index e57b1d4fc..8671a90e2 100644 --- a/docutils/docutils/languages/eo.py +++ b/docutils/docutils/languages/eo.py @@ -3,7 +3,7 @@ # Copyright: This module has been placed in the public domain. # New language mappings are welcome. Before doing a new translation, please -# read . Two files must be +# read . Two files must be # translated for each language: one in docutils/languages, the other in # docutils/parsers/rst/languages. diff --git a/docutils/docutils/languages/es.py b/docutils/docutils/languages/es.py index bbefd272c..7e4a5e3f3 100644 --- a/docutils/docutils/languages/es.py +++ b/docutils/docutils/languages/es.py @@ -3,7 +3,7 @@ # Copyright: This module has been placed in the public domain. # New language mappings are welcome. Before doing a new translation, please -# read . Two files must be +# read . Two files must be # translated for each language: one in docutils/languages, the other in # docutils/parsers/rst/languages. diff --git a/docutils/docutils/languages/fa.py b/docutils/docutils/languages/fa.py index a4f05cdf1..82a160797 100644 --- a/docutils/docutils/languages/fa.py +++ b/docutils/docutils/languages/fa.py @@ -3,7 +3,7 @@ # Copyright: This module has been placed in the public domain. # New language mappings are welcome. Before doing a new translation, please -# read . Two files must be +# read . Two files must be # translated for each language: one in docutils/languages, the other in # docutils/parsers/rst/languages. diff --git a/docutils/docutils/languages/fi.py b/docutils/docutils/languages/fi.py index 546d0291f..f95208e78 100644 --- a/docutils/docutils/languages/fi.py +++ b/docutils/docutils/languages/fi.py @@ -3,7 +3,7 @@ # Copyright: This module has been placed in the public domain. # New language mappings are welcome. Before doing a new translation, please -# read . Two files must be +# read . Two files must be # translated for each language: one in docutils/languages, the other in # docutils/parsers/rst/languages. diff --git a/docutils/docutils/languages/fr.py b/docutils/docutils/languages/fr.py index a3228b1f4..0164dc53d 100644 --- a/docutils/docutils/languages/fr.py +++ b/docutils/docutils/languages/fr.py @@ -3,7 +3,7 @@ # Copyright: This module has been placed in the public domain. # New language mappings are welcome. Before doing a new translation, please -# read . Two files must be +# read . Two files must be # translated for each language: one in docutils/languages, the other in # docutils/parsers/rst/languages. diff --git a/docutils/docutils/languages/gl.py b/docutils/docutils/languages/gl.py index 40ba1bab5..0226b06c5 100644 --- a/docutils/docutils/languages/gl.py +++ b/docutils/docutils/languages/gl.py @@ -5,7 +5,7 @@ # Copyright: This module has been placed in the public domain. # New language mappings are welcome. Before doing a new translation, please -# read . Two files must be +# read . Two files must be # translated for each language: one in docutils/languages, the other in # docutils/parsers/rst/languages. diff --git a/docutils/docutils/languages/he.py b/docutils/docutils/languages/he.py index 9fb57d4dc..fc3bdd3e0 100644 --- a/docutils/docutils/languages/he.py +++ b/docutils/docutils/languages/he.py @@ -3,7 +3,7 @@ # Copyright: This module has been placed in the public domain. # New language mappings are welcome. Before doing a new translation, please -# read . Two files must be +# read . Two files must be # translated for each language: one in docutils/languages, the other in # docutils/parsers/rst/languages. diff --git a/docutils/docutils/languages/it.py b/docutils/docutils/languages/it.py index 726424742..d17e9a678 100644 --- a/docutils/docutils/languages/it.py +++ b/docutils/docutils/languages/it.py @@ -3,7 +3,7 @@ # Copyright: This module has been placed in the public domain. # New language mappings are welcome. Before doing a new translation, please -# read . Two files must be +# read . Two files must be # translated for each language: one in docutils/languages, the other in # docutils/parsers/rst/languages. diff --git a/docutils/docutils/languages/ja.py b/docutils/docutils/languages/ja.py index 1b73a9461..e6587bfcf 100644 --- a/docutils/docutils/languages/ja.py +++ b/docutils/docutils/languages/ja.py @@ -3,7 +3,7 @@ # Copyright: This module has been placed in the public domain. # New language mappings are welcome. Before doing a new translation, please -# read . Two files must be +# read . Two files must be # translated for each language: one in docutils/languages, the other in # docutils/parsers/rst/languages. diff --git a/docutils/docutils/languages/ko.py b/docutils/docutils/languages/ko.py index d1be965a3..2a5a42167 100644 --- a/docutils/docutils/languages/ko.py +++ b/docutils/docutils/languages/ko.py @@ -3,7 +3,7 @@ # Copyright: This module has been placed in the public domain. # New language mappings are welcome. Before doing a new translation, please -# read . Two files must be +# read . Two files must be # translated for each language: one in docutils/languages, the other in # docutils/parsers/rst/languages. diff --git a/docutils/docutils/languages/lt.py b/docutils/docutils/languages/lt.py index 8259ea898..99d3cb1ef 100644 --- a/docutils/docutils/languages/lt.py +++ b/docutils/docutils/languages/lt.py @@ -3,7 +3,7 @@ # Copyright: This module has been placed in the public domain. # New language mappings are welcome. Before doing a new translation, please -# read . Two files must be +# read . Two files must be # translated for each language: one in docutils/languages, the other in # docutils/parsers/rst/languages. diff --git a/docutils/docutils/languages/lv.py b/docutils/docutils/languages/lv.py index 83c4c19ca..8b544784f 100644 --- a/docutils/docutils/languages/lv.py +++ b/docutils/docutils/languages/lv.py @@ -2,7 +2,7 @@ # Copyright: This module has been placed in the public domain. # New language mappings are welcome. Before doing a new translation, please -# read . Two files must be +# read . Two files must be # translated for each language: one in docutils/languages, the other in # docutils/parsers/rst/languages. diff --git a/docutils/docutils/languages/nl.py b/docutils/docutils/languages/nl.py index 6254ea942..204512992 100644 --- a/docutils/docutils/languages/nl.py +++ b/docutils/docutils/languages/nl.py @@ -3,7 +3,7 @@ # Copyright: This module has been placed in the public domain. # New language mappings are welcome. Before doing a new translation, please -# read . Two files must be +# read . Two files must be # translated for each language: one in docutils/languages, the other in # docutils/parsers/rst/languages. diff --git a/docutils/docutils/languages/pl.py b/docutils/docutils/languages/pl.py index dfe86ecee..b6e17df32 100644 --- a/docutils/docutils/languages/pl.py +++ b/docutils/docutils/languages/pl.py @@ -3,7 +3,7 @@ # Copyright: This module has been placed in the public domain. # New language mappings are welcome. Before doing a new translation, please -# read . Two files must be +# read . Two files must be # translated for each language: one in docutils/languages, the other in # docutils/parsers/rst/languages. diff --git a/docutils/docutils/languages/pt_br.py b/docutils/docutils/languages/pt_br.py index f4adfbbf6..c27a94d38 100644 --- a/docutils/docutils/languages/pt_br.py +++ b/docutils/docutils/languages/pt_br.py @@ -3,7 +3,7 @@ # Copyright: This module has been placed in the public domain. # New language mappings are welcome. Before doing a new translation, please -# read . Two files must be +# read . Two files must be # translated for each language: one in docutils/languages, the other in # docutils/parsers/rst/languages. diff --git a/docutils/docutils/languages/ru.py b/docutils/docutils/languages/ru.py index 2f7cc96b6..eed76e6bb 100644 --- a/docutils/docutils/languages/ru.py +++ b/docutils/docutils/languages/ru.py @@ -3,7 +3,7 @@ # Copyright: This module has been placed in the public domain. # New language mappings are welcome. Before doing a new translation, please -# read . Two files must be +# read . Two files must be # translated for each language: one in docutils/languages, the other in # docutils/parsers/rst/languages. diff --git a/docutils/docutils/languages/sk.py b/docutils/docutils/languages/sk.py index ad3f9c81a..3de048817 100644 --- a/docutils/docutils/languages/sk.py +++ b/docutils/docutils/languages/sk.py @@ -3,7 +3,7 @@ # Copyright: This module has been placed in the public domain. # New language mappings are welcome. Before doing a new translation, please -# read . Two files must be +# read . Two files must be # translated for each language: one in docutils/languages, the other in # docutils/parsers/rst/languages. diff --git a/docutils/docutils/languages/sv.py b/docutils/docutils/languages/sv.py index 4010d6059..f16a18d9d 100644 --- a/docutils/docutils/languages/sv.py +++ b/docutils/docutils/languages/sv.py @@ -3,7 +3,7 @@ # Copyright: This module has been placed in the public domain. # New language mappings are welcome. Before doing a new translation, please -# read . Two files must be +# read . Two files must be # translated for each language: one in docutils/languages, the other in # docutils/parsers/rst/languages. diff --git a/docutils/docutils/languages/zh_cn.py b/docutils/docutils/languages/zh_cn.py index e18ba7e75..b4ba1ef31 100644 --- a/docutils/docutils/languages/zh_cn.py +++ b/docutils/docutils/languages/zh_cn.py @@ -3,7 +3,7 @@ # Copyright: This module has been placed in the public domain. # New language mappings are welcome. Before doing a new translation, please -# read . Two files must be +# read . Two files must be # translated for each language: one in docutils/languages, the other in # docutils/parsers/rst/languages. diff --git a/docutils/docutils/languages/zh_tw.py b/docutils/docutils/languages/zh_tw.py index 3548da8e3..1c0837aa0 100644 --- a/docutils/docutils/languages/zh_tw.py +++ b/docutils/docutils/languages/zh_tw.py @@ -3,7 +3,7 @@ # Copyright: This module has been placed in the public domain. # New language mappings are welcome. Before doing a new translation, please -# read . Two files must be +# read . Two files must be # translated for each language: one in docutils/languages, the other in # docutils/parsers/rst/languages. diff --git a/docutils/docutils/parsers/rst/__init__.py b/docutils/docutils/parsers/rst/__init__.py index 02016ea56..281a1d660 100644 --- a/docutils/docutils/parsers/rst/__init__.py +++ b/docutils/docutils/parsers/rst/__init__.py @@ -294,7 +294,7 @@ class Directive(object): """ # There is a "Creating reStructuredText Directives" how-to at - # . If you + # . If you # update this docstring, please update the how-to as well. required_arguments = 0 diff --git a/docutils/docutils/parsers/rst/directives/tables.py b/docutils/docutils/parsers/rst/directives/tables.py index 6053d976c..4a01fc6e8 100644 --- a/docutils/docutils/parsers/rst/directives/tables.py +++ b/docutils/docutils/parsers/rst/directives/tables.py @@ -394,7 +394,7 @@ class ListTable(Table): """ Implement tables whose data is encoded as a uniform two-level bullet list. For further ideas, see - http://docutils.sf.net/docs/dev/rst/alternatives.html#list-driven-tables + https://docutils.sourceforge.io/docs/dev/rst/alternatives.html#list-driven-tables """ option_spec = {'header-rows': directives.nonnegative_int, diff --git a/docutils/docutils/parsers/rst/include/README.txt b/docutils/docutils/parsers/rst/include/README.txt index adee0c2ee..a51328fb3 100644 --- a/docutils/docutils/parsers/rst/include/README.txt +++ b/docutils/docutils/parsers/rst/include/README.txt @@ -13,5 +13,5 @@ See the documentation for the `"include" directive`__ and `reStructuredText Standard Definition Files`__ for details. -__ http://docutils.sf.net/docs/ref/rst/directives.html#include -__ http://docutils.sf.net/docs/ref/rst/definitions.html +__ https://docutils.sourceforge.io/docs/ref/rst/directives.html#include +__ https://docutils.sourceforge.io/docs/ref/rst/definitions.html diff --git a/docutils/docutils/parsers/rst/languages/__init__.py b/docutils/docutils/parsers/rst/languages/__init__.py index f99901243..35aed8543 100644 --- a/docutils/docutils/parsers/rst/languages/__init__.py +++ b/docutils/docutils/parsers/rst/languages/__init__.py @@ -3,7 +3,7 @@ # Copyright: This module has been placed in the public domain. # Internationalization details are documented in -# . +# . """ This package contains modules for language-dependent features of diff --git a/docutils/docutils/parsers/rst/languages/af.py b/docutils/docutils/parsers/rst/languages/af.py index 792bfca21..70cd1b355 100644 --- a/docutils/docutils/parsers/rst/languages/af.py +++ b/docutils/docutils/parsers/rst/languages/af.py @@ -3,7 +3,7 @@ # Copyright: This module has been placed in the public domain. # New language mappings are welcome. Before doing a new translation, please -# read . Two files must be +# read . Two files must be # translated for each language: one in docutils/languages, the other in # docutils/parsers/rst/languages. diff --git a/docutils/docutils/parsers/rst/languages/ar.py b/docutils/docutils/parsers/rst/languages/ar.py index 69eff3e80..2edfdef94 100644 --- a/docutils/docutils/parsers/rst/languages/ar.py +++ b/docutils/docutils/parsers/rst/languages/ar.py @@ -3,7 +3,7 @@ # Copyright: This module has been placed in the public domain. # New language mappings are welcome. Before doing a new translation, please -# read . Two files must be +# read . Two files must be # translated for each language: one in docutils/languages, the other in # docutils/parsers/rst/languages. diff --git a/docutils/docutils/parsers/rst/languages/ca.py b/docutils/docutils/parsers/rst/languages/ca.py index 78159ec05..b487a561d 100644 --- a/docutils/docutils/parsers/rst/languages/ca.py +++ b/docutils/docutils/parsers/rst/languages/ca.py @@ -3,7 +3,7 @@ # Copyright: This module has been placed in the public domain. # New language mappings are welcome. Before doing a new translation, please -# read . Two files must be +# read . Two files must be # translated for each language: one in docutils/languages, the other in # docutils/parsers/rst/languages. diff --git a/docutils/docutils/parsers/rst/languages/cs.py b/docutils/docutils/parsers/rst/languages/cs.py index 55e037cfa..2bde6ec0e 100644 --- a/docutils/docutils/parsers/rst/languages/cs.py +++ b/docutils/docutils/parsers/rst/languages/cs.py @@ -3,7 +3,7 @@ # Copyright: This module has been placed in the public domain. # New language mappings are welcome. Before doing a new translation, please -# read . Two files must be +# read . Two files must be # translated for each language: one in docutils/languages, the other in # docutils/parsers/rst/languages. diff --git a/docutils/docutils/parsers/rst/languages/da.py b/docutils/docutils/parsers/rst/languages/da.py index 07c4d1f24..064f2ccb5 100644 --- a/docutils/docutils/parsers/rst/languages/da.py +++ b/docutils/docutils/parsers/rst/languages/da.py @@ -3,7 +3,7 @@ # Copyright: This module has been placed in the public domain. # New language mappings are welcome. Before doing a new translation, please -# read . Two files must be +# read . Two files must be # translated for each language: one in docutils/languages, the other in # docutils/parsers/rst/languages. diff --git a/docutils/docutils/parsers/rst/languages/de.py b/docutils/docutils/parsers/rst/languages/de.py index 16fcfbb12..518f1f76e 100644 --- a/docutils/docutils/parsers/rst/languages/de.py +++ b/docutils/docutils/parsers/rst/languages/de.py @@ -4,7 +4,7 @@ # Copyright: This module has been placed in the public domain. # New language mappings are welcome. Before doing a new translation, please -# read . Two files must be +# read . Two files must be # translated for each language: one in docutils/languages, the other in # docutils/parsers/rst/languages. diff --git a/docutils/docutils/parsers/rst/languages/en.py b/docutils/docutils/parsers/rst/languages/en.py index 0cbfc78d5..8a2348d0d 100644 --- a/docutils/docutils/parsers/rst/languages/en.py +++ b/docutils/docutils/parsers/rst/languages/en.py @@ -3,7 +3,7 @@ # Copyright: This module has been placed in the public domain. # New language mappings are welcome. Before doing a new translation, please -# read . Two files must be +# read . Two files must be # translated for each language: one in docutils/languages, the other in # docutils/parsers/rst/languages. diff --git a/docutils/docutils/parsers/rst/languages/eo.py b/docutils/docutils/parsers/rst/languages/eo.py index b47240c80..a88c9e41c 100644 --- a/docutils/docutils/parsers/rst/languages/eo.py +++ b/docutils/docutils/parsers/rst/languages/eo.py @@ -3,7 +3,7 @@ # Copyright: This module has been placed in the public domain. # New language mappings are welcome. Before doing a new translation, please -# read . Two files must be +# read . Two files must be # translated for each language: one in docutils/languages, the other in # docutils/parsers/rst/languages. diff --git a/docutils/docutils/parsers/rst/languages/es.py b/docutils/docutils/parsers/rst/languages/es.py index 392d559e4..ef5bc6914 100644 --- a/docutils/docutils/parsers/rst/languages/es.py +++ b/docutils/docutils/parsers/rst/languages/es.py @@ -3,7 +3,7 @@ # Copyright: This module has been placed in the public domain. # New language mappings are welcome. Before doing a new translation, please -# read . Two files must be +# read . Two files must be # translated for each language: one in docutils/languages, the other in # docutils/parsers/rst/languages. diff --git a/docutils/docutils/parsers/rst/languages/fa.py b/docutils/docutils/parsers/rst/languages/fa.py index 33c6d5c77..4d449b1b7 100644 --- a/docutils/docutils/parsers/rst/languages/fa.py +++ b/docutils/docutils/parsers/rst/languages/fa.py @@ -3,7 +3,7 @@ # Copyright: This module has been placed in the public domain. # New language mappings are welcome. Before doing a new translation, please -# read . Two files must be +# read . Two files must be # translated for each language: one in docutils/languages, the other in # docutils/parsers/rst/languages. diff --git a/docutils/docutils/parsers/rst/languages/fi.py b/docutils/docutils/parsers/rst/languages/fi.py index b2ee180aa..c38d5cb86 100644 --- a/docutils/docutils/parsers/rst/languages/fi.py +++ b/docutils/docutils/parsers/rst/languages/fi.py @@ -3,7 +3,7 @@ # Copyright: This module has been placed in the public domain. # New language mappings are welcome. Before doing a new translation, please -# read . Two files must be +# read . Two files must be # translated for each language: one in docutils/languages, the other in # docutils/parsers/rst/languages. diff --git a/docutils/docutils/parsers/rst/languages/fr.py b/docutils/docutils/parsers/rst/languages/fr.py index 8328e542a..e524f51a5 100644 --- a/docutils/docutils/parsers/rst/languages/fr.py +++ b/docutils/docutils/parsers/rst/languages/fr.py @@ -3,7 +3,7 @@ # Copyright: This module has been placed in the public domain. # New language mappings are welcome. Before doing a new translation, please -# read . Two files must be +# read . Two files must be # translated for each language: one in docutils/languages, the other in # docutils/parsers/rst/languages. diff --git a/docutils/docutils/parsers/rst/languages/gl.py b/docutils/docutils/parsers/rst/languages/gl.py index 1cb7af3b9..23a525695 100644 --- a/docutils/docutils/parsers/rst/languages/gl.py +++ b/docutils/docutils/parsers/rst/languages/gl.py @@ -5,7 +5,7 @@ # Copyright: This module has been placed in the public domain. # New language mappings are welcome. Before doing a new translation, please -# read . Two files must be +# read . Two files must be # translated for each language: one in docutils/languages, the other in # docutils/parsers/rst/languages. diff --git a/docutils/docutils/parsers/rst/languages/he.py b/docutils/docutils/parsers/rst/languages/he.py index c23f677e4..89b190cec 100644 --- a/docutils/docutils/parsers/rst/languages/he.py +++ b/docutils/docutils/parsers/rst/languages/he.py @@ -3,7 +3,7 @@ # Copyright: This module has been placed in the public domain. # New language mappings are welcome. Before doing a new translation, please -# read . Two files must be +# read . Two files must be # translated for each language: one in docutils/languages, the other in # docutils/parsers/rst/languages. diff --git a/docutils/docutils/parsers/rst/languages/ja.py b/docutils/docutils/parsers/rst/languages/ja.py index 6ca79a4c2..bf20a754b 100644 --- a/docutils/docutils/parsers/rst/languages/ja.py +++ b/docutils/docutils/parsers/rst/languages/ja.py @@ -3,7 +3,7 @@ # Copyright: This module has been placed in the public domain. # New language mappings are welcome. Before doing a new translation, please -# read . Two files must be +# read . Two files must be # translated for each language: one in docutils/languages, the other in # docutils/parsers/rst/languages. diff --git a/docutils/docutils/parsers/rst/languages/ko.py b/docutils/docutils/parsers/rst/languages/ko.py index 089c47e51..096751d17 100644 --- a/docutils/docutils/parsers/rst/languages/ko.py +++ b/docutils/docutils/parsers/rst/languages/ko.py @@ -3,7 +3,7 @@ # Copyright: This module has been placed in the public domain. # New language mappings are welcome. Before doing a new translation, please -# read . Two files must be +# read . Two files must be # translated for each language: one in docutils/languages, the other in # docutils/parsers/rst/languages. diff --git a/docutils/docutils/parsers/rst/languages/lt.py b/docutils/docutils/parsers/rst/languages/lt.py index b10c9484d..d5d81804b 100644 --- a/docutils/docutils/parsers/rst/languages/lt.py +++ b/docutils/docutils/parsers/rst/languages/lt.py @@ -3,7 +3,7 @@ # Copyright: This module has been placed in the public domain. # New language mappings are welcome. Before doing a new translation, please -# read . Two files must be +# read . Two files must be # translated for each language: one in docutils/languages, the other in # docutils/parsers/rst/languages. diff --git a/docutils/docutils/parsers/rst/languages/lv.py b/docutils/docutils/parsers/rst/languages/lv.py index 471d332ea..84b47888a 100644 --- a/docutils/docutils/parsers/rst/languages/lv.py +++ b/docutils/docutils/parsers/rst/languages/lv.py @@ -2,7 +2,7 @@ # Copyright: This module has been placed in the public domain. # New language mappings are welcome. Before doing a new translation, please -# read . Two files must be +# read . Two files must be # translated for each language: one in docutils/languages, the other in # docutils/parsers/rst/languages. diff --git a/docutils/docutils/parsers/rst/languages/nl.py b/docutils/docutils/parsers/rst/languages/nl.py index 3538e9de2..0052fa30a 100644 --- a/docutils/docutils/parsers/rst/languages/nl.py +++ b/docutils/docutils/parsers/rst/languages/nl.py @@ -3,7 +3,7 @@ # Copyright: This module has been placed in the public domain. # New language mappings are welcome. Before doing a new translation, please -# read . Two files must be +# read . Two files must be # translated for each language: one in docutils/languages, the other in # docutils/parsers/rst/languages. diff --git a/docutils/docutils/parsers/rst/languages/pl.py b/docutils/docutils/parsers/rst/languages/pl.py index 9cd7ddbf6..ee1fe0336 100644 --- a/docutils/docutils/parsers/rst/languages/pl.py +++ b/docutils/docutils/parsers/rst/languages/pl.py @@ -3,7 +3,7 @@ # Copyright: This module has been placed in the public domain. # New language mappings are welcome. Before doing a new translation, please -# read . Two files must be +# read . Two files must be # translated for each language: one in docutils/languages, the other in # docutils/parsers/rst/languages. diff --git a/docutils/docutils/parsers/rst/languages/pt_br.py b/docutils/docutils/parsers/rst/languages/pt_br.py index b0b116759..4c8a6ac59 100644 --- a/docutils/docutils/parsers/rst/languages/pt_br.py +++ b/docutils/docutils/parsers/rst/languages/pt_br.py @@ -3,7 +3,7 @@ # Copyright: This module has been placed in the public domain. # New language mappings are welcome. Before doing a new translation, please -# read . Two files must be +# read . Two files must be # translated for each language: one in docutils/languages, the other in # docutils/parsers/rst/languages. diff --git a/docutils/docutils/parsers/rst/languages/ru.py b/docutils/docutils/parsers/rst/languages/ru.py index 7591cdeed..e4492f726 100644 --- a/docutils/docutils/parsers/rst/languages/ru.py +++ b/docutils/docutils/parsers/rst/languages/ru.py @@ -3,7 +3,7 @@ # Copyright: This module has been placed in the public domain. # New language mappings are welcome. Before doing a new translation, please -# read . Two files must be +# read . Two files must be # translated for each language: one in docutils/languages, the other in # docutils/parsers/rst/languages. diff --git a/docutils/docutils/parsers/rst/languages/sk.py b/docutils/docutils/parsers/rst/languages/sk.py index 15a72bf49..86b6807f9 100644 --- a/docutils/docutils/parsers/rst/languages/sk.py +++ b/docutils/docutils/parsers/rst/languages/sk.py @@ -3,7 +3,7 @@ # Copyright: This module has been placed in the public domain. # New language mappings are welcome. Before doing a new translation, please -# read . Two files must be +# read . Two files must be # translated for each language: one in docutils/languages, the other in # docutils/parsers/rst/languages. diff --git a/docutils/docutils/parsers/rst/languages/sv.py b/docutils/docutils/parsers/rst/languages/sv.py index e4ee2017b..611457ea4 100644 --- a/docutils/docutils/parsers/rst/languages/sv.py +++ b/docutils/docutils/parsers/rst/languages/sv.py @@ -3,7 +3,7 @@ # Copyright: This module has been placed in the public domain. # New language mappings are welcome. Before doing a new translation, please -# read . Two files must be +# read . Two files must be # translated for each language: one in docutils/languages, the other in # docutils/parsers/rst/languages. diff --git a/docutils/docutils/parsers/rst/languages/zh_cn.py b/docutils/docutils/parsers/rst/languages/zh_cn.py index 007f75ff3..d45f3f35c 100644 --- a/docutils/docutils/parsers/rst/languages/zh_cn.py +++ b/docutils/docutils/parsers/rst/languages/zh_cn.py @@ -3,7 +3,7 @@ # Copyright: This module has been placed in the public domain. # New language mappings are welcome. Before doing a new translation, please -# read . Two files must be +# read . Two files must be # translated for each language: one in docutils/languages, the other in # docutils/parsers/rst/languages. diff --git a/docutils/docutils/parsers/rst/languages/zh_tw.py b/docutils/docutils/parsers/rst/languages/zh_tw.py index 739efba52..f5c010c67 100644 --- a/docutils/docutils/parsers/rst/languages/zh_tw.py +++ b/docutils/docutils/parsers/rst/languages/zh_tw.py @@ -3,7 +3,7 @@ # Copyright: This module has been placed in the public domain. # New language mappings are welcome. Before doing a new translation, please -# read . Two files must be +# read . Two files must be # translated for each language: one in docutils/languages, the other in # docutils/parsers/rst/languages. diff --git a/docutils/docutils/transforms/frontmatter.py b/docutils/docutils/transforms/frontmatter.py index d8be367bd..cdd1d8676 100644 --- a/docutils/docutils/transforms/frontmatter.py +++ b/docutils/docutils/transforms/frontmatter.py @@ -216,7 +216,7 @@ class DocTitle(TitlePromoter): This transform also sets the document's metadata title (document['title']). - .. _reStructuredText: http://docutils.sf.net/rst.html + .. _reStructuredText: https://docutils.sourceforge.io/rst.html """ default_priority = 320 @@ -355,9 +355,9 @@ class DocInfo(Transform): being expanded. Only the "RCSfile" keyword is stable; its expansion text changes only if the file name changes.) - .. _reStructuredText: http://docutils.sf.net/rst.html + .. _reStructuredText: https://docutils.sourceforge.io/rst.html .. _reStructuredText Markup Specification: - http://docutils.sf.net/docs/ref/rst/restructuredtext.html + https://docutils.sourceforge.io/docs/ref/rst/restructuredtext.html """ default_priority = 340 diff --git a/docutils/docutils/utils/punctuation_chars.py b/docutils/docutils/utils/punctuation_chars.py index 40727daf2..593efc186 100644 --- a/docutils/docutils/utils/punctuation_chars.py +++ b/docutils/docutils/utils/punctuation_chars.py @@ -39,7 +39,7 @@ "unicodedata" module of Python 2.7.13 (based on Unicode version 5.2.0). .. _inline markup recognition rules: - http://docutils.sf.net/docs/ref/rst/restructuredtext.html#inline-markup-recognition-rules + https://docutils.sourceforge.io/docs/ref/rst/restructuredtext.html#inline-markup-recognition-rules """ openers = (u'"\'(<\\[{\u0f3a\u0f3c\u169b\u2045\u207d\u208d\u2329\u2768' diff --git a/docutils/docutils/utils/smartquotes.py b/docutils/docutils/utils/smartquotes.py index 57693d68b..74a8537ec 100644 --- a/docutils/docutils/utils/smartquotes.py +++ b/docutils/docutils/utils/smartquotes.py @@ -132,7 +132,7 @@ .. _SmartyPants: http://daringfireball.net/projects/smartypants/ .. _Movable Type: http://www.movabletype.org/ .. _2-Clause BSD license: https://opensource.org/licenses/BSD-2-Clause -.. _Docutils: http://docutils.sf.net/ +.. _Docutils: https://docutils.sourceforge.io/ Description =========== diff --git a/docutils/docutils/writers/html4css1/html4css1.css b/docutils/docutils/writers/html4css1/html4css1.css index e896f90de..737b8ac2f 100644 --- a/docutils/docutils/writers/html4css1/html4css1.css +++ b/docutils/docutils/writers/html4css1/html4css1.css @@ -5,7 +5,7 @@ Default cascading style sheet for the HTML output of Docutils. -See http://docutils.sf.net/docs/howto/html-stylesheets.html for how to +See https://docutils.sourceforge.io/docs/howto/html-stylesheets.html for how to customize this style sheet. */ diff --git a/docutils/docutils/writers/s5_html/themes/default/slides.js b/docutils/docutils/writers/s5_html/themes/default/slides.js index 81e04e5d4..c793b5560 100644 --- a/docutils/docutils/writers/s5_html/themes/default/slides.js +++ b/docutils/docutils/writers/s5_html/themes/default/slides.js @@ -1,5 +1,5 @@ // S5 v1.1 slides.js -- released into the Public Domain -// Modified for Docutils (http://docutils.sf.net) by David Goodger +// Modified for Docutils (https://docutils.sourceforge.io) by David Goodger // // Please see http://www.meyerweb.com/eric/tools/s5/credits.html for // information about all the wonderful and talented contributors to this code! diff --git a/docutils/test/functional/expected/ui/default/slides.js b/docutils/test/functional/expected/ui/default/slides.js index 81e04e5d4..c793b5560 100644 --- a/docutils/test/functional/expected/ui/default/slides.js +++ b/docutils/test/functional/expected/ui/default/slides.js @@ -1,5 +1,5 @@ // S5 v1.1 slides.js -- released into the Public Domain -// Modified for Docutils (http://docutils.sf.net) by David Goodger +// Modified for Docutils (https://docutils.sourceforge.io) by David Goodger // // Please see http://www.meyerweb.com/eric/tools/s5/credits.html for // information about all the wonderful and talented contributors to this code! diff --git a/docutils/test/functional/expected/ui/small-black/slides.js b/docutils/test/functional/expected/ui/small-black/slides.js index d628dfeaf..02b6523e5 100644 --- a/docutils/test/functional/expected/ui/small-black/slides.js +++ b/docutils/test/functional/expected/ui/small-black/slides.js @@ -1,5 +1,5 @@ // S5 v1.1 slides.js -- released into the Public Domain -// Modified for Docutils (http://docutils.sf.net) by David Goodger +// Modified for Docutils (https://docutils.sourceforge.io) by David Goodger // // Please see http://www.meyerweb.com/eric/tools/s5/credits.html for // information about all the wonderful and talented contributors to this code! diff --git a/docutils/test/local_dummy_lang.py b/docutils/test/local_dummy_lang.py index c30ea219d..2c01769ce 100644 --- a/docutils/test/local_dummy_lang.py +++ b/docutils/test/local_dummy_lang.py @@ -3,7 +3,7 @@ # Copyright: This module has been placed in the public domain. # New language mappings are welcome. Before doing a new translation, please -# read . Two files must be +# read . Two files must be # translated for each language: one in docutils/languages, the other in # docutils/parsers/rst/languages. diff --git a/docutils/test/test_readers/test_pep/test_inline_markup.py b/docutils/test/test_readers/test_pep/test_inline_markup.py index e8f2cd82f..1baa05acc 100755 --- a/docutils/test/test_readers/test_pep/test_inline_markup.py +++ b/docutils/test/test_readers/test_pep/test_inline_markup.py @@ -96,7 +96,7 @@ def suite(): For *completeness*, _`let's` ``test`` **other** forms_ |of| `inline markup` [*]_. -.. [*] See http://docutils.sf.net/docs/ref/rst/restructuredtext.html. +.. [*] See https://docutils.sourceforge.io/docs/ref/rst/restructuredtext.html. """, """\ @@ -128,8 +128,8 @@ def suite(): See \n\ - - http://docutils.sf.net/docs/ref/rst/restructuredtext.html + + https://docutils.sourceforge.io/docs/ref/rst/restructuredtext.html . """], ] diff --git a/docutils/tools/dev/create_unimap.py b/docutils/tools/dev/create_unimap.py index 9bc7fa595..f1522cc8a 100755 --- a/docutils/tools/dev/create_unimap.py +++ b/docutils/tools/dev/create_unimap.py @@ -69,6 +69,6 @@ def call_visitor(node, visitor=Visitor()): print('# David Carlisle and Sebastian Rahtz.') print('#') print('# The extraction has been done by the "create_unimap.py" script') -print('# located at .') +print('# located at .') print('') print('unicode_map = %s' % pprint.pformat(unicode_map, indent=0)) diff --git a/docutils/tools/dev/generate_punctuation_chars.py b/docutils/tools/dev/generate_punctuation_chars.py index 16df487b5..8d5838fa0 100644 --- a/docutils/tools/dev/generate_punctuation_chars.py +++ b/docutils/tools/dev/generate_punctuation_chars.py @@ -82,7 +82,7 @@ "unicodedata" module of Python %(python_version)s (based on Unicode version %(unidata_version)s). .. _inline markup recognition rules: - http://docutils.sf.net/docs/ref/rst/restructuredtext.html#inline-markup-recognition-rules + https://docutils.sourceforge.io/docs/ref/rst/restructuredtext.html#inline-markup-recognition-rules """ %(openers)s diff --git a/docutils/tools/editors/README.txt b/docutils/tools/editors/README.txt index 893e0e427..f54f8febf 100644 --- a/docutils/tools/editors/README.txt +++ b/docutils/tools/editors/README.txt @@ -23,5 +23,5 @@ External links: Additions are welcome. -.. _reStructuredText: http://docutils.sf.net/rst.html +.. _reStructuredText: https://docutils.sourceforge.io/rst.html .. _JED: http://www.jedsoft.org/jed/ From b1970aa0e598c938ecff84c45f181cefbdbfbbd1 Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+AA-Turner@users.noreply.github.com> Date: Thu, 20 Jan 2022 03:08:45 +0000 Subject: [PATCH 3/7] users.sf.net -> users.sourceforge.net --- docutils/FAQ.txt | 2 +- docutils/docutils/writers/html5_polyglot/__init__.py | 2 +- .../test/test_parsers/test_rst/test_directives/test_math.py | 2 +- docutils/test/test_transforms/test_strip_elements_with_class.py | 2 +- docutils/tools/rst2man.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docutils/FAQ.txt b/docutils/FAQ.txt index 0c7d1a709..ff80e3fac 100644 --- a/docutils/FAQ.txt +++ b/docutils/FAQ.txt @@ -861,7 +861,7 @@ If you have any questions/problems/bugs related to bidi with docutils, ask `Beni Cherniavsky`__ directly or the `Docutils-users`_ mailing list. -__ mailto:cben@users.sf.net +__ mailto:cben@users.sourceforge.net What's the official MIME type for reStructuredText data? diff --git a/docutils/docutils/writers/html5_polyglot/__init__.py b/docutils/docutils/writers/html5_polyglot/__init__.py index 5ef759c0a..6363d1a66 100644 --- a/docutils/docutils/writers/html5_polyglot/__init__.py +++ b/docutils/docutils/writers/html5_polyglot/__init__.py @@ -1,5 +1,5 @@ # $Id$ -# :Author: Günter Milde +# :Author: Günter Milde # Based on the html4css1 writer by David Goodger. # :Maintainer: docutils-develop@lists.sourceforge.net # :Copyright: © 2005, 2009, 2015 Günter Milde, diff --git a/docutils/test/test_parsers/test_rst/test_directives/test_math.py b/docutils/test/test_parsers/test_rst/test_directives/test_math.py index c6b6c14f0..a9d626a5d 100644 --- a/docutils/test/test_parsers/test_rst/test_directives/test_math.py +++ b/docutils/test/test_parsers/test_rst/test_directives/test_math.py @@ -1,7 +1,7 @@ #! /usr/bin/env python3 # $Id$ -# Author: Guenter Milde +# Author: Guenter Milde # Copyright: This module has been placed in the public domain. """ diff --git a/docutils/test/test_transforms/test_strip_elements_with_class.py b/docutils/test/test_transforms/test_strip_elements_with_class.py index 0be7b718f..7922e6fea 100644 --- a/docutils/test/test_transforms/test_strip_elements_with_class.py +++ b/docutils/test/test_transforms/test_strip_elements_with_class.py @@ -1,7 +1,7 @@ #! /usr/bin/env python3 # $Id$ -# Author: Guenter Milde +# Author: Guenter Milde # Copyright: This module has been placed in the public domain. """ diff --git a/docutils/tools/rst2man.py b/docutils/tools/rst2man.py index 2aafbaf06..6adad118d 100755 --- a/docutils/tools/rst2man.py +++ b/docutils/tools/rst2man.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 # Author: -# Contact: grubert@users.sf.net +# Contact: grubert@users.sourceforge.net # Copyright: This module has been placed in the public domain. """ From 76e6391151dce21b22fdcbaeb4ee30a2891833d6 Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+AA-Turner@users.noreply.github.com> Date: Thu, 20 Jan 2022 03:22:34 +0000 Subject: [PATCH 4/7] sf.net -> sourceforge.net --- docutils/FAQ.txt | 6 +++--- docutils/HISTORY.txt | 2 +- docutils/docs/dev/repository.txt | 4 ++-- docutils/docs/dev/rst/alternatives.txt | 4 ++-- docutils/docs/dev/semantics.txt | 2 +- docutils/docs/user/latex.txt | 6 +++--- docutils/docs/user/links.txt | 4 ++-- docutils/docs/user/mailing-lists.txt | 2 +- docutils/docs/user/slide-shows.txt | 2 +- docutils/docutils/core.py | 4 ++-- docutils/tools/editors/README.txt | 2 +- 11 files changed, 19 insertions(+), 19 deletions(-) diff --git a/docutils/FAQ.txt b/docutils/FAQ.txt index ff80e3fac..86d2a749b 100644 --- a/docutils/FAQ.txt +++ b/docutils/FAQ.txt @@ -534,7 +534,7 @@ lists may look ugly with so many blank lines, but it's a price we pay for unambiguous markup. Some other plaintext markup systems do not require blank lines in nested lists, but they have to compromise somehow, either accepting ambiguity or requiring extra complexity. -For example, `Epytext `__ does +For example, `Epytext `__ does not require blank lines around lists, but it does require that lists be indented and that ambiguous cases be escaped. @@ -802,8 +802,8 @@ transparent implicit solution for HTML: incomplete practice_ (this is still a partial implementation - but sufficient for most needs). - .. _theory: http://cben-hacks.sf.net/bidi/hibidi.html - .. _practice: http://cben-hacks.sf.net/bidi/hibidi.html#practice + .. _theory: http://cben-hacks.sourceforge.net/bidi/hibidi.html + .. _practice: http://cben-hacks.sourceforge.net/bidi/hibidi.html#practice There is also an explicit way to set directions through CSS and classes in the HTML: diff --git a/docutils/HISTORY.txt b/docutils/HISTORY.txt index fa6fcd238..0996dad47 100644 --- a/docutils/HISTORY.txt +++ b/docutils/HISTORY.txt @@ -3609,7 +3609,7 @@ Specific: * docutils/frontend.py: Added to project; support for front-end (command-line) scripts. Option specifications may be augmented by - components. Requires Optik (http://optik.sf.net/) for option + components. Requires Optik (http://optik.sourceforge.net/) for option processing (installed locally as docutils/optik.py). * docutils/io.py: Added to project; uniform API for a variety of input diff --git a/docutils/docs/dev/repository.txt b/docutils/docs/dev/repository.txt index 875f3cf54..03699e0b5 100644 --- a/docutils/docs/dev/repository.txt +++ b/docutils/docs/dev/repository.txt @@ -15,7 +15,7 @@ To get a checkout of the Docutils source tree (with the sandboxes) with SVN_, type :: - svn checkout http://svn.code.sf.net/p/docutils/code/trunk docutils-code + svn checkout https://svn.code.sf.net/p/docutils/code/trunk docutils-code Users of Git_ can clone a mirror of the docutils repository with :: @@ -75,7 +75,7 @@ To get a checkout, first determine the root of the repository depending on your preferred protocol: anonymous access: (read only) - Subversion_: ``http://svn.code.sf.net/p/docutils/code`` + Subversion_: ``https://svn.code.sf.net/p/docutils/code`` Git_: ``git://repo.or.cz/docutils.git`` diff --git a/docutils/docs/dev/rst/alternatives.txt b/docutils/docs/dev/rst/alternatives.txt index 4aa648049..d7d68ea4c 100644 --- a/docutils/docs/dev/rst/alternatives.txt +++ b/docutils/docs/dev/rst/alternatives.txt @@ -2707,8 +2707,8 @@ and `beginning 2003-08-04`__. __ http://mail.python.org/pipermail/doc-sig/2001-April/001776.html __ http://mail.python.org/pipermail/doc-sig/2001-April/001789.html __ http://mail.python.org/pipermail/doc-sig/2001-April/001793.html -__ http://sourceforge.net/mailarchive/message.php?msg_id=3838913 -__ http://sf.net/mailarchive/forum.php?thread_id=2957175&forum_id=11444 +__ https://sourceforge.net/mailarchive/message.php?msg_id=3838913 +__ https://sf.net/mailarchive/forum.php?thread_id=2957175&forum_id=11444 Sloppy Indentation of List Items diff --git a/docutils/docs/dev/semantics.txt b/docutils/docs/dev/semantics.txt index 5a6742465..f56fccebf 100644 --- a/docutils/docs/dev/semantics.txt +++ b/docutils/docs/dev/semantics.txt @@ -105,7 +105,7 @@ Other Ideas .. _JavaDoc: http://java.sun.com/j2se/javadoc/ .. _pythondoc: http://starship.python.net/crew/danilo/pythondoc/ .. _Grouch: http://www.mems-exchange.org/software/grouch/ -.. _epydoc: http://epydoc.sf.net/ +.. _epydoc: http://epydoc.sourceforge.net/ .. _iPhrase Python documentation conventions: http://mail.python.org/pipermail/doc-sig/2001-May/001840.html diff --git a/docutils/docs/user/latex.txt b/docutils/docs/user/latex.txt index 7942b4721..496d148a2 100644 --- a/docutils/docs/user/latex.txt +++ b/docutils/docs/user/latex.txt @@ -273,11 +273,11 @@ expected output: standalone_rst_latex.tex_ .. _standalone_rst_latex.txt: - https://sf.net/p/docutils/code/HEAD/tree/trunk/docutils/test/functional/input/standalone_rst_latex.txt + https://sourceforge.net/p/docutils/code/HEAD/tree/trunk/docutils/test/functional/input/standalone_rst_latex.txt .. _tests/functional/input/data: - https://sf.net/p/docutils/code/HEAD/tree/trunk/docutils/test/functional/input/data + https://sourceforge.net/p/docutils/code/HEAD/tree/trunk/docutils/test/functional/input/data .. _standalone_rst_latex.tex: - https://sf.net/p/docutils/code/HEAD/tree/trunk/docutils/test/functional/expected/standalone_rst_latex.tex?format=raw + https://sourceforge.net/p/docutils/code/HEAD/tree/trunk/docutils/test/functional/expected/standalone_rst_latex.tex .. _style sheet: diff --git a/docutils/docs/user/links.txt b/docutils/docs/user/links.txt index 6b3e0be44..f43353e7c 100644 --- a/docutils/docs/user/links.txt +++ b/docutils/docs/user/links.txt @@ -47,11 +47,11 @@ Advanced text editors with reStructuredText support, IDEs, and docutils GUIs: plugin to take notes in reStructured text. * `JED `__ programmers editor with - `rst mode `__ + `rst mode `__ * `reStructuredText editor plug-in for Eclipse`__ - __ http://resteditor.sf.net/ + __ http://http://resteditor.sourceforge.net/ * Gnome's gedit offers syntax highlighting and a reST preview pane. diff --git a/docutils/docs/user/mailing-lists.txt b/docutils/docs/user/mailing-lists.txt index e9dffb906..429cb9f07 100644 --- a/docutils/docs/user/mailing-lists.txt +++ b/docutils/docs/user/mailing-lists.txt @@ -122,7 +122,7 @@ page and select the "Docutils core" topic. __ `Docutils-checkins list`_ __ nntp://news.gmane.org/gmane.text.docutils.cvs -.. _list options: http://lists.sf.net/lists/options/docutils-checkins +.. _list options: https://lists.sourceforge.net/lists/options/docutils-checkins Doc-SIG ------- diff --git a/docutils/docs/user/slide-shows.txt b/docutils/docs/user/slide-shows.txt index 58eb0e4fc..12979170c 100644 --- a/docutils/docs/user/slide-shows.txt +++ b/docutils/docs/user/slide-shows.txt @@ -989,7 +989,7 @@ That's All, Folks! https://docutils.sourceforge.io Docutils users' mailing list: - docutils-users@lists.sf.net + docutils-users@lists.sourceforge.net `Any questions?` diff --git a/docutils/docutils/core.py b/docutils/docutils/core.py index d9035eba9..6fc373527 100644 --- a/docutils/docutils/core.py +++ b/docutils/docutils/core.py @@ -272,7 +272,7 @@ def report_Exception(self, error): print(u'%s' % io.error_string(error), file=self._stderr) print(("""\ Exiting due to error. Use "--traceback" to diagnose. -Please report errors to . +Please report errors to . Include "--traceback" output, Docutils version (%s%s), Python version (%s), your OS type & version, and the command line used.""" % (__version__, @@ -304,7 +304,7 @@ def report_UnicodeError(self, error): '\n' 'Exiting due to error. Use "--traceback" to diagnose.\n' 'If the advice above doesn\'t eliminate the error,\n' - 'please report it to .\n' + 'please report it to .\n' 'Include "--traceback" output, Docutils version (%s),\n' 'Python version (%s), your OS type & version, and the\n' 'command line used.\n' diff --git a/docutils/tools/editors/README.txt b/docutils/tools/editors/README.txt index f54f8febf..feb51c58a 100644 --- a/docutils/tools/editors/README.txt +++ b/docutils/tools/editors/README.txt @@ -18,7 +18,7 @@ External links: * `VST (Vim reStructured Text) is a plugin for Vim7 with folding for reST `__ -* `rst mode `__ for the `JED`_ +* `rst mode `__ for the `JED`_ programmers editor Additions are welcome. From cd7425d931913ec7e73912b4d9c5cb2be7f7044f Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+AA-Turner@users.noreply.github.com> Date: Thu, 20 Jan 2022 03:23:44 +0000 Subject: [PATCH 5/7] http://docutils.sourceforge.net -> https://docutils.sourceforge.io --- docutils/BUGS.txt | 4 ++-- docutils/COPYING.txt | 6 ++--- docutils/HISTORY.txt | 2 +- docutils/README.txt | 4 ++-- docutils/RELEASE-NOTES.txt | 4 ++-- docutils/docs/dev/distributing.txt | 6 ++--- docutils/docs/dev/enthought-plan.txt | 2 +- docutils/docs/dev/hacking.txt | 6 ++--- docutils/docs/dev/policies.txt | 4 ++-- docutils/docs/dev/pysource.dtd | 6 ++--- docutils/docs/dev/repository.txt | 2 +- docutils/docs/dev/rst/alternatives.txt | 4 ++-- docutils/docs/dev/rst/problems.txt | 4 ++-- docutils/docs/dev/testing.txt | 2 +- docutils/docs/dev/todo.txt | 2 +- docutils/docs/dev/website.txt | 4 ++-- docutils/docs/howto/html-stylesheets.txt | 2 +- docutils/docs/howto/i18n.txt | 2 +- docutils/docs/howto/rst-directives.txt | 2 +- docutils/docs/index.txt | 8 +++---- docutils/docs/peps/pep-0256.txt | 4 ++-- docutils/docs/peps/pep-0257.txt | 2 +- docutils/docs/peps/pep-0258.txt | 12 +++++----- docutils/docs/peps/pep-0287.txt | 22 +++++++++---------- docutils/docs/ref/doctree.txt | 4 ++-- docutils/docs/ref/docutils.dtd | 4 ++-- docutils/docs/ref/rst/directives.txt | 4 ++-- docutils/docs/ref/rst/introduction.txt | 10 ++++----- docutils/docs/ref/rst/restructuredtext.txt | 16 +++++++------- docutils/docs/user/mailing-lists.txt | 2 +- docutils/docs/user/manpage.txt | 2 +- docutils/docs/user/odt.txt | 6 ++--- docutils/docs/user/rst/cheatsheet.txt | 2 +- docutils/docs/user/rst/demo.txt | 2 +- docutils/docs/user/rst/quickref.html | 10 ++++----- docutils/docs/user/rst/quickstart.txt | 6 ++--- docutils/docs/user/slide-shows.txt | 6 ++--- docutils/docutils/nodes.py | 2 +- .../docutils/parsers/rst/include/isoamsa.txt | 2 +- .../docutils/parsers/rst/include/isoamsb.txt | 2 +- .../docutils/parsers/rst/include/isoamsc.txt | 2 +- .../docutils/parsers/rst/include/isoamsn.txt | 2 +- .../docutils/parsers/rst/include/isoamso.txt | 2 +- .../docutils/parsers/rst/include/isoamsr.txt | 2 +- .../docutils/parsers/rst/include/isobox.txt | 2 +- .../docutils/parsers/rst/include/isocyr1.txt | 2 +- .../docutils/parsers/rst/include/isocyr2.txt | 2 +- .../docutils/parsers/rst/include/isodia.txt | 2 +- .../docutils/parsers/rst/include/isogrk1.txt | 2 +- .../docutils/parsers/rst/include/isogrk2.txt | 2 +- .../docutils/parsers/rst/include/isogrk3.txt | 2 +- .../parsers/rst/include/isogrk4-wide.txt | 2 +- .../docutils/parsers/rst/include/isogrk4.txt | 2 +- .../docutils/parsers/rst/include/isolat1.txt | 2 +- .../docutils/parsers/rst/include/isolat2.txt | 2 +- .../parsers/rst/include/isomfrk-wide.txt | 2 +- .../docutils/parsers/rst/include/isomfrk.txt | 2 +- .../parsers/rst/include/isomopf-wide.txt | 2 +- .../docutils/parsers/rst/include/isomopf.txt | 2 +- .../parsers/rst/include/isomscr-wide.txt | 2 +- .../docutils/parsers/rst/include/isomscr.txt | 2 +- .../docutils/parsers/rst/include/isonum.txt | 2 +- .../docutils/parsers/rst/include/isopub.txt | 2 +- .../docutils/parsers/rst/include/isotech.txt | 2 +- .../docutils/parsers/rst/include/mmlalias.txt | 2 +- .../parsers/rst/include/mmlextra-wide.txt | 2 +- .../docutils/parsers/rst/include/mmlextra.txt | 2 +- .../parsers/rst/include/xhtml1-lat1.txt | 2 +- .../parsers/rst/include/xhtml1-special.txt | 2 +- .../parsers/rst/include/xhtml1-symbol.txt | 2 +- docutils/docutils/transforms/universal.py | 4 ++-- docutils/docutils/writers/_html_base.py | 4 ++-- docutils/docutils/writers/docutils_xml.py | 2 +- .../docutils/writers/html5_polyglot/plain.css | 2 +- .../writers/html5_polyglot/responsive.css | 2 +- .../writers/html5_polyglot/tuftig.css | 2 +- docutils/docutils/writers/latex2e/__init__.py | 2 +- docutils/docutils/writers/latex2e/default.tex | 2 +- .../docutils/writers/latex2e/titlepage.tex | 2 +- .../docutils/writers/latex2e/titlingpage.tex | 2 +- docutils/docutils/writers/latex2e/xelatex.tex | 2 +- .../docutils/writers/pep_html/template.txt | 2 +- docutils/setup.py | 2 +- docutils/test/DocutilsTestSupport.py | 2 +- .../functional/expected/compact_lists.html | 2 +- .../test/functional/expected/cyrillic.tex | 2 +- .../test/functional/expected/dangerous.html | 2 +- .../expected/embed_images_html5.html | 2 +- .../functional/expected/field_name_limit.html | 2 +- .../functional/expected/footnotes_html5.html | 2 +- .../test/functional/expected/latex_babel.tex | 2 +- .../functional/expected/latex_cornercases.tex | 4 ++-- .../functional/expected/latex_docinfo.tex | 2 +- .../functional/expected/latex_leavevmode.tex | 2 +- .../expected/latex_literal_block.tex | 2 +- .../expected/latex_literal_block_fancyvrb.tex | 2 +- .../expected/latex_literal_block_listings.tex | 2 +- .../expected/latex_literal_block_verbatim.tex | 2 +- .../latex_literal_block_verbatimtab.tex | 2 +- .../test/functional/expected/latex_memoir.tex | 2 +- .../functional/expected/math_output_html.html | 2 +- .../expected/math_output_latex.html | 2 +- .../expected/math_output_mathjax.html | 2 +- .../expected/math_output_mathml.html | 2 +- .../expected/misc_rst_html4css1.html | 2 +- .../functional/expected/misc_rst_html5.html | 2 +- .../test/functional/expected/pep_html.html | 2 +- .../expected/standalone_rst_html4css1.html | 2 +- .../expected/standalone_rst_html5.html | 10 ++++----- .../expected/standalone_rst_latex.tex | 2 +- .../expected/standalone_rst_s5_html_1.html | 2 +- .../expected/standalone_rst_s5_html_2.html | 2 +- .../expected/standalone_rst_xetex.tex | 2 +- .../functional/expected/xetex-cyrillic.tex | 2 +- .../functional/input/data/html5-features.txt | 2 +- .../input/data/html5-text-level-tags.txt | 2 +- docutils/test/functional/input/data/urls.txt | 2 +- .../input/standalone_rst_manpage.txt | 2 +- .../test_rst/test_directives/test_images.py | 4 ++-- .../test_rst/test_directives/test_include.py | 2 +- .../test_writers/test_html4css1_template.py | 8 +++---- .../test_writers/test_html5_polyglot_parts.py | 2 +- docutils/test/test_writers/test_latex2e.py | 2 +- docutils/test/test_writers/test_s5.py | 4 ++-- docutils/tools/dev/unicode2rstsubs.py | 2 +- docutils/tools/editors/emacs/README.txt | 2 +- docutils/tools/editors/emacs/rst.el | 10 ++++----- docutils/tools/rst2latex.py | 2 +- docutils/tools/rst2xetex.py | 2 +- 129 files changed, 203 insertions(+), 203 deletions(-) diff --git a/docutils/BUGS.txt b/docutils/BUGS.txt index 62b3bdbb2..48f2cabac 100644 --- a/docutils/BUGS.txt +++ b/docutils/BUGS.txt @@ -8,7 +8,7 @@ :Revision: $Revision$ :Copyright: This document has been placed in the public domain. -.. _Docutils: http://docutils.sourceforge.net/ +.. _Docutils: https://docutils.sourceforge.io/ Bugs in Docutils?!? Yes, we do have a few. Some are old-timers that @@ -118,7 +118,7 @@ __ http://subversion.tigris.org/ __ http://svn.collab.net/viewcvs/svn/trunk/BUGS?view=markup .. _repository: docs/dev/repository.html -.. _snapshot: http://docutils.sourceforge.net/#download +.. _snapshot: https://docutils.sourceforge.io/#download .. _documentation: docs/ .. _FAQ: FAQ.html .. _mailing list archives: https://docutils.sourceforge.io/#mailing-lists diff --git a/docutils/COPYING.txt b/docutils/COPYING.txt index 720a883f1..26d16017d 100644 --- a/docutils/COPYING.txt +++ b/docutils/COPYING.txt @@ -5,7 +5,7 @@ :Author: David Goodger :Contact: goodger@python.org :Date: $Date$ -:Web site: http://docutils.sourceforge.net/ +:Web site: https://docutils.sourceforge.io/ :Copyright: This document has been placed in the public domain. Most of the files included in this project have been placed in the @@ -26,7 +26,7 @@ listed below, in the work of authorship known as "Docutils" identified below (the "Work") to the public domain. The primary repository for the Work is the Internet World Wide Web -site . The Work consists of the +site . The Work consists of the files within the "docutils" module of the Docutils project Subversion repository (Internet host docutils.svn.sourceforge.net, filesystem path /svnroot/docutils), whose Internet web interface is located at @@ -141,7 +141,7 @@ All used licenses are OSI-approved_ and GPL-compatible_. Plaintext versions of all the linked-to licenses are provided in the licenses_ directory. -.. _sandbox: http://docutils.sourceforge.net/sandbox/README.html +.. _sandbox: https://docutils.sourceforge.io/sandbox/README.html .. _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 diff --git a/docutils/HISTORY.txt b/docutils/HISTORY.txt index 0996dad47..9df033efa 100644 --- a/docutils/HISTORY.txt +++ b/docutils/HISTORY.txt @@ -546,7 +546,7 @@ Release 0.16 (2020-01-16) Doctree nodes and removed in the writing stage by the node's astext() method. - __ http://docutils.sourceforge.net/docs/ref/rst/restructuredtext.html#escaping-mechanism + __ https://docutils.sourceforge.io/docs/ref/rst/restructuredtext.html#escaping-mechanism * docutils/io.py diff --git a/docutils/README.txt b/docutils/README.txt index aeeb1551a..a694cca9e 100644 --- a/docutils/README.txt +++ b/docutils/README.txt @@ -5,7 +5,7 @@ :Author: David Goodger :Contact: goodger@python.org :Date: $Date$ -:Web site: http://docutils.sourceforge.net/ +:Web site: https://docutils.sourceforge.io/ :Copyright: This document has been placed in the public domain. .. contents:: @@ -366,7 +366,7 @@ Windows users type these commands:: python quicktest.py --version -.. _Docutils Testing: http://docutils.sourceforge.net/docs/dev/testing.html +.. _Docutils Testing: https://docutils.sourceforge.io/docs/dev/testing.html .. _open a bug report: http://sourceforge.net/p/docutils/bugs/ .. _send an email: mailto:docutils-users@lists.sourceforge.net diff --git a/docutils/RELEASE-NOTES.txt b/docutils/RELEASE-NOTES.txt index fde9401cb..8ad21827a 100644 --- a/docutils/RELEASE-NOTES.txt +++ b/docutils/RELEASE-NOTES.txt @@ -310,7 +310,7 @@ Release 0.16 (2020-01-12) - Keep `backslash escapes`__ in the document tree. This allows, e.g., escaping of author-separators in `bibliographic fields`__. - __ http://docutils.sourceforge.net/docs/ref/rst/restructuredtext.html#escaping-mechanism + __ https://docutils.sourceforge.io/docs/ref/rst/restructuredtext.html#escaping-mechanism __ docs/ref/rst/restructuredtext.html#bibliographic-fields * LaTeX writer: @@ -727,7 +727,7 @@ Release 0.6 (2009-10-11) The recommended way to generate PDF output is to use either the LaTeX2e writer or one of the alternatives listed at - http://docutils.sourceforge.net/docs/user/links.html#pdf. + https://docutils.sourceforge.io/docs/user/links.html#pdf. * reStructuredText: diff --git a/docutils/docs/dev/distributing.txt b/docutils/docs/dev/distributing.txt index 5d7a29c52..a42ff477a 100644 --- a/docutils/docs/dev/distributing.txt +++ b/docutils/docs/dev/distributing.txt @@ -8,7 +8,7 @@ :Date: $Date$ :Copyright: This document has been placed in the public domain. -.. _Docutils: http://docutils.sourceforge.net/ +.. _Docutils: https://docutils.sourceforge.io/ .. contents:: @@ -20,7 +20,7 @@ First, please download the most current `release tarball`_ and unpack it. .. _Docutils-develop: ../user/mailing-lists.html#docutils-develop -.. _release tarball: http://docutils.sourceforge.net/#download +.. _release tarball: https://docutils.sourceforge.io/#download Dependencies @@ -146,4 +146,4 @@ tarball. For more information on testing, view the `Docutils Testing`_ page. -.. _Docutils Testing: http://docutils.sourceforge.net/docs/dev/testing.html +.. _Docutils Testing: https://docutils.sourceforge.io/docs/dev/testing.html diff --git a/docutils/docs/dev/enthought-plan.txt b/docutils/docs/dev/enthought-plan.txt index 5c0d36587..71310c1e4 100644 --- a/docutils/docs/dev/enthought-plan.txt +++ b/docutils/docs/dev/enthought-plan.txt @@ -118,7 +118,7 @@ follows:: This is in conjunction with the "Public Domain Dedication" section of COPYING.txt__. -__ http://docutils.sourceforge.net/COPYING.html +__ https://docutils.sourceforge.io/COPYING.html The code and documentation originating from Enthought funding will have Enthought's copyright and license declaration. While I will try diff --git a/docutils/docs/dev/hacking.txt b/docutils/docs/dev/hacking.txt index e4b9558fc..9b724a660 100644 --- a/docutils/docs/dev/hacking.txt +++ b/docutils/docs/dev/hacking.txt @@ -15,8 +15,8 @@ knowledge is certainly helpful (though not necessary, strictly speaking). -.. _Docutils: http://docutils.sourceforge.net/ -.. _reStructuredText: http://docutils.sourceforge.net/rst.html +.. _Docutils: https://docutils.sourceforge.io/ +.. _reStructuredText: https://docutils.sourceforge.io/rst.html .. _Docutils front-end tools: ../user/tools.html .. contents:: @@ -164,7 +164,7 @@ For HTML output, we can test this using the ``rst2html.py`` tool:: - + diff --git a/docutils/docs/dev/policies.txt b/docutils/docs/dev/policies.txt index 992744946..cbea8c491 100644 --- a/docutils/docs/dev/policies.txt +++ b/docutils/docs/dev/policies.txt @@ -642,7 +642,7 @@ Docutils does not require their presence to function. An official parallel project will have its own directory beside (or parallel to) the main ``docutils`` directory in the Subversion repository. It can have its own web page in the -docutils.sourceforge.net domain, its own file releases and +docutils.sourceforge.io domain, its own file releases and downloadable snapshots, and even a mailing list if that proves useful. However, an official parallel project has implications: it is expected to be maintained and continue to work with changes to the core @@ -673,7 +673,7 @@ Many related but independent projects are listed in the Docutils `link list`_. If you want your project to appear there, drop a note at the Docutils-develop_ mailing list. -.. _link list: http://docutils.sourceforge.net/docs/user/links.html +.. _link list: https://docutils.sourceforge.io/docs/user/links.html .. _docutils-develop: docs/user/mailing-lists.html#docutils-develop diff --git a/docutils/docs/dev/pysource.dtd b/docutils/docs/dev/pysource.dtd index 8d4113edd..1dc8135c3 100644 --- a/docutils/docs/dev/pysource.dtd +++ b/docutils/docs/dev/pysource.dtd @@ -13,9 +13,9 @@ This DTD (document type definition) extends the Generic DTD (see below). More information about this DTD and the Docutils project can be found -at http://docutils.sourceforge.net/. The latest version of this DTD +at https://docutils.sourceforge.io/. The latest version of this DTD is available from -http://docutils.sourceforge.net/docs/dev/pysource.dtd. +https://docutils.sourceforge.io/docs/dev/pysource.dtd. The formal public identifier for this DTD is:: @@ -46,7 +46,7 @@ The formal public identifier for this DTD is:: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ This DTD extends the Docutils Generic DTD, available from -http://docutils.sourceforge.net/docs/ref/docutils.dtd. +https://docutils.sourceforge.io/docs/ref/docutils.dtd. --> , is +The Docutils web site, , is maintained by the ``docutils-update.local`` script, run by project maintainers on their local machines. The script will process any .txt file which is newer than the corresponding .html @@ -17,7 +17,7 @@ to the web site at SourceForge. .. .. old instructions, for cron job: - The Docutils web site, , is + The Docutils web site, , is maintained automatically by the ``docutils-update`` script, run as an hourly cron job on shell.berlios.de (by user "wiemann"). The script will process any .txt file which is newer than the corresponding .html diff --git a/docutils/docs/howto/html-stylesheets.txt b/docutils/docs/howto/html-stylesheets.txt index b03a81ee9..aee700138 100644 --- a/docutils/docs/howto/html-stylesheets.txt +++ b/docutils/docs/howto/html-stylesheets.txt @@ -8,7 +8,7 @@ :Revision: $Revision$ :Copyright: This document has been placed in the public domain. -.. _Docutils: http://docutils.sourceforge.net/ +.. _Docutils: https://docutils.sourceforge.io/ The look of Docutils' HTML output is customizable via CSS stylesheets. diff --git a/docutils/docs/howto/i18n.txt b/docutils/docs/howto/i18n.txt index b1bf56801..6027b61f8 100644 --- a/docutils/docs/howto/i18n.txt +++ b/docutils/docs/howto/i18n.txt @@ -37,7 +37,7 @@ support via a module in the PYTHONPATH root (e.g. the working directory). project bug tracker on SourceForge at http://sourceforge.net/p/docutils/bugs/ -.. _Docutils: http://docutils.sourceforge.net/ +.. _Docutils: https://docutils.sourceforge.io/ .. _Introduction to i18n: http://www.debian.org/doc/manuals/intro-i18n/ diff --git a/docutils/docs/howto/rst-directives.txt b/docutils/docs/howto/rst-directives.txt index 16af02e15..1994a3727 100644 --- a/docutils/docs/howto/rst-directives.txt +++ b/docutils/docs/howto/rst-directives.txt @@ -8,7 +8,7 @@ :Revision: $Revision$ :Copyright: This document has been placed in the public domain. -.. _reStructuredText: http://docutils.sourceforge.net/rst.html +.. _reStructuredText: https://docutils.sourceforge.io/rst.html Directives are the primary extension mechanism of reStructuredText. diff --git a/docutils/docs/index.txt b/docutils/docs/index.txt index e5744c66d..85d05145e 100644 --- a/docutils/docs/index.txt +++ b/docutils/docs/index.txt @@ -11,8 +11,8 @@ The latest working documents may be accessed individually below, or from the ``docs`` directory of the `Docutils distribution`_. -.. _Docutils: http://docutils.sourceforge.net/ -.. _Docutils distribution: http://docutils.sourceforge.net/#download +.. _Docutils: https://docutils.sourceforge.io/ +.. _Docutils distribution: https://docutils.sourceforge.io/#download .. contents:: @@ -92,7 +92,7 @@ Writer-specific: * `Docutils LaTeX Writer `__ * `Docutils ODF/OpenOffice/odt Writer `__ -`reStructuredText `_: +`reStructuredText `_: * `A ReStructuredText Primer `__ (see also the `text source `__) @@ -144,7 +144,7 @@ reStructuredText_: Prehistoric: * `Setext Documents Mirror - `__ + `__ .. _peps: diff --git a/docutils/docs/peps/pep-0256.txt b/docutils/docs/peps/pep-0256.txt index fd5725de5..cc5a54c44 100644 --- a/docutils/docs/peps/pep-0256.txt +++ b/docutils/docs/peps/pep-0256.txt @@ -235,7 +235,7 @@ Project Web Site ================ A SourceForge project has been set up for this work at -http://docutils.sourceforge.net/. +https://docutils.sourceforge.io/. References and Footnotes @@ -273,7 +273,7 @@ References and Footnotes .. _docutils: http://www.tibsnjoan.co.uk/docutils.html -.. _Docutils project: http://docutils.sourceforge.net/ +.. _Docutils project: https://docutils.sourceforge.io/ .. _STMinus: http://www.cis.upenn.edu/~edloper/pydoc/ diff --git a/docutils/docs/peps/pep-0257.txt b/docutils/docs/peps/pep-0257.txt index a298aba03..1acacbd68 100644 --- a/docutils/docs/peps/pep-0257.txt +++ b/docutils/docs/peps/pep-0257.txt @@ -294,7 +294,7 @@ References and Footnotes .. [3] Guido van Rossum, Python's creator and Benevolent Dictator For Life. -.. _Docutils: http://docutils.sourceforge.net/ +.. _Docutils: https://docutils.sourceforge.io/ .. _Python Style Guide: http://www.python.org/doc/essays/styleguide.html diff --git a/docutils/docs/peps/pep-0258.txt b/docutils/docs/peps/pep-0258.txt index 17039e057..6019ee3ae 100644 --- a/docutils/docs/peps/pep-0258.txt +++ b/docutils/docs/peps/pep-0258.txt @@ -497,7 +497,7 @@ The ``tools/`` directory contains several front ends for common Docutils processing. See `Docutils Front-End Tools`_ for details. .. _Docutils Front-End Tools: - http://docutils.sourceforge.net/docs/user/tools.html + https://docutils.sourceforge.io/docs/user/tools.html Document Tree @@ -978,13 +978,13 @@ stylist code will lower the barrier considerably. (http://www.python.org/peps/pep-0216.html) .. _docutils.dtd: - http://docutils.sourceforge.net/docs/ref/docutils.dtd + https://docutils.sourceforge.io/docs/ref/docutils.dtd .. _soextbl.dtd: - http://docutils.sourceforge.net/docs/ref/soextblx.dtd + https://docutils.sourceforge.io/docs/ref/soextblx.dtd .. _The Docutils Document Tree: - http://docutils.sourceforge.net/docs/ref/doctree.html + https://docutils.sourceforge.io/docs/ref/doctree.html .. _VMS error condition severity levels: http://www.openvms.compaq.com:8000/73final/5841/841pro_027.html @@ -993,7 +993,7 @@ stylist code will lower the barrier considerably. .. _log4j project: http://logging.apache.org/log4j/docs/index.html .. _Docutils Python Source DTD: - http://docutils.sourceforge.net/docs/dev/pysource.dtd + https://docutils.sourceforge.io/docs/dev/pysource.dtd .. _ISO 639: http://www.loc.gov/standards/iso639-2/englangn.html @@ -1006,7 +1006,7 @@ stylist code will lower the barrier considerably. ================== A SourceForge project has been set up for this work at -http://docutils.sourceforge.net/. +https://docutils.sourceforge.io/. =========== diff --git a/docutils/docs/peps/pep-0287.txt b/docutils/docs/peps/pep-0287.txt index 1c82bef47..3d9b60c24 100644 --- a/docutils/docs/peps/pep-0287.txt +++ b/docutils/docs/peps/pep-0287.txt @@ -513,7 +513,7 @@ Questions & Answers See `Section Structure via Indentation`__ in `Problems With StructuredText`_ for further elaboration. - __ http://docutils.sourceforge.net/docs/dev/rst/problems.html + __ https://docutils.sourceforge.io/docs/dev/rst/problems.html #section-structure-via-indentation 4. Why use reStructuredText for PEPs? What's wrong with the existing @@ -741,7 +741,7 @@ __ http://www.python.org/doc/Humor.html#zen .. [#PEP-216] PEP 216, Docstring Format, Zadka (http://www.python.org/peps/pep-0216.html) -.. _reStructuredText markup: http://docutils.sourceforge.net/rst.html +.. _reStructuredText markup: https://docutils.sourceforge.io/rst.html .. _Doc-SIG: http://www.python.org/sigs/doc-sig/ @@ -761,33 +761,33 @@ __ http://www.python.org/doc/Humor.html#zen .. _JavaDoc: http://java.sun.com/j2se/javadoc/ -.. _Setext: http://docutils.sourceforge.net/mirror/setext.html +.. _Setext: https://docutils.sourceforge.io/mirror/setext.html .. _StructuredText: http://www.zope.org/DevHome/Members/jim/StructuredTextWiki/FrontPage .. _A ReStructuredText Primer: - http://docutils.sourceforge.net/docs/user/rst/quickstart.html + https://docutils.sourceforge.io/docs/user/rst/quickstart.html .. _Quick reStructuredText: - http://docutils.sourceforge.net/docs/user/rst/quickref.html + https://docutils.sourceforge.io/docs/user/rst/quickref.html .. _An Introduction to reStructuredText: - http://docutils.sourceforge.net/docs/ref/rst/introduction.html + https://docutils.sourceforge.io/docs/ref/rst/introduction.html .. _reStructuredText Markup Specification: - http://docutils.sourceforge.net/docs/ref/rst/restructuredtext.html + https://docutils.sourceforge.io/docs/ref/rst/restructuredtext.html .. _reStructuredText Directives: - http://docutils.sourceforge.net/docs/ref/rst/directives.html + https://docutils.sourceforge.io/docs/ref/rst/directives.html .. _Problems with StructuredText: - http://docutils.sourceforge.net/docs/dev/rst/problems.html + https://docutils.sourceforge.io/docs/dev/rst/problems.html .. _A Record of reStructuredText Syntax Alternatives: - http://docutils.sourceforge.net/docs/dev/rst/alternatives.html + https://docutils.sourceforge.io/docs/dev/rst/alternatives.html -.. _Docutils: http://docutils.sourceforge.net/ +.. _Docutils: https://docutils.sourceforge.io/ Copyright diff --git a/docutils/docs/ref/doctree.txt b/docutils/docs/ref/doctree.txt index 07a18aa61..4d5fec1e5 100644 --- a/docutils/docs/ref/doctree.txt +++ b/docutils/docs/ref/doctree.txt @@ -36,13 +36,13 @@ throughout this document. For a gentle introduction, see `A ReStructuredText Primer`_. For complete technical details, see the `reStructuredText Markup Specification`_. -.. _Docutils: http://docutils.sourceforge.net/ +.. _Docutils: https://docutils.sourceforge.io/ .. _Docutils Generic DTD: .. _Docutils DTD: .. _docutils.dtd: docutils.dtd .. _Introducing the Extensible Markup Language (XML): http://xml.coverpages.org/xmlIntro.html -.. _reStructuredText: http://docutils.sourceforge.net/rst.html +.. _reStructuredText: https://docutils.sourceforge.io/rst.html .. _A ReStructuredText Primer: ../user/rst/quickstart.html .. _reStructuredText Markup Specification: rst/restructuredtext.html diff --git a/docutils/docs/ref/docutils.dtd b/docutils/docs/ref/docutils.dtd index 28fd10848..0118e7474 100644 --- a/docutils/docs/ref/docutils.dtd +++ b/docutils/docs/ref/docutils.dtd @@ -10,9 +10,9 @@ :Filename: docutils.dtd More information about this DTD (document type definition) and the -Docutils project can be found at http://docutils.sourceforge.net/. +Docutils project can be found at https://docutils.sourceforge.io/. The latest version of this DTD is available from -http://docutils.sourceforge.net/docs/ref/docutils.dtd. +https://docutils.sourceforge.io/docs/ref/docutils.dtd. The formal public identifier for this DTD is:: diff --git a/docutils/docs/ref/rst/directives.txt b/docutils/docs/ref/rst/directives.txt index bd997b947..38e836d2f 100644 --- a/docutils/docs/ref/rst/directives.txt +++ b/docutils/docs/ref/rst/directives.txt @@ -533,7 +533,7 @@ when Pygments_ is not installed or the language is not in the For inline code, use the `"code" role`_. __ http://pygments.org/docs/cmdline/#generating-styles -__ http://docutils.sourceforge.net/sandbox/stylesheets/ +__ https://docutils.sourceforge.io/sandbox/stylesheets/ .. _Pygments: http://pygments.org/ .. _syntax_highlight: ../../user/config.html#syntax-highlight .. _supported languages and markup formats: http://pygments.org/languages/ @@ -1178,7 +1178,7 @@ processing system. For example, if certain runtime settings are enabled, the document footer is populated with processing information such as a datestamp, a link to `the Docutils website`_, etc. -.. _the Docutils website: http://docutils.sourceforge.net +.. _the Docutils website: https://docutils.sourceforge.io ------------ diff --git a/docutils/docs/ref/rst/introduction.txt b/docutils/docs/ref/rst/introduction.txt index 51f1ab0ec..aedd647e3 100644 --- a/docutils/docs/ref/rst/introduction.txt +++ b/docutils/docs/ref/rst/introduction.txt @@ -27,13 +27,13 @@ Specification`_ is the definitive reference. There is also an analysis of the `Problems With StructuredText`_. ReStructuredText's web page is -http://docutils.sourceforge.net/rst.html. +https://docutils.sourceforge.io/rst.html. -.. _reStructuredText: http://docutils.sourceforge.net/rst.html +.. _reStructuredText: https://docutils.sourceforge.io/rst.html .. _StructuredText: http://www.zope.org/DevHome/Members/jim/StructuredTextWiki/FrontPage -.. _Setext: http://docutils.sourceforge.net/mirror/setext.html -.. _Docutils: http://docutils.sourceforge.net/ +.. _Setext: https://docutils.sourceforge.io/mirror/setext.html +.. _Docutils: https://docutils.sourceforge.io/ .. _A ReStructuredText Primer: ../../user/rst/quickstart.html .. _Quick reStructuredText: ../../user/rst/quickref.html .. _reStructuredText Markup Specification: restructuredtext.html @@ -281,7 +281,7 @@ followed. - `PEP 257: Docstring Conventions`__ Current working versions of the PEPs can be found in - http://docutils.sourceforge.net/docs/peps/, and official versions + https://docutils.sourceforge.io/docs/peps/, and official versions can be found in the `master PEP repository`_. __ http://mail.python.org/pipermail/doc-sig/2001-June/001855.html diff --git a/docutils/docs/ref/rst/restructuredtext.txt b/docutils/docs/ref/rst/restructuredtext.txt index 83aa3894b..f1edf9979 100644 --- a/docutils/docs/ref/rst/restructuredtext.txt +++ b/docutils/docs/ref/rst/restructuredtext.txt @@ -1945,13 +1945,13 @@ indirect. permitted to allow for line wrapping). The following external hyperlink targets are equivalent:: - .. _one-liner: http://docutils.sourceforge.net/rst.html + .. _one-liner: https://docutils.sourceforge.io/rst.html - .. _starts-on-this-line: http:// + .. _starts-on-this-line: https:// docutils.sourceforge.net/rst.html .. _entirely-below: - http://docutils. + https://docutils. sourceforge.net/rst.html Escaped whitespace is preserved as intentional spaces, e.g.:: @@ -2350,7 +2350,7 @@ Replacement text |RST| source readability. .. |RST| replace:: reStructuredText - .. _RST: http://docutils.sourceforge.net/rst.html + .. _RST: https://docutils.sourceforge.io/rst.html Note the trailing underscore in the first use of a substitution reference. This indicates a reference to the corresponding @@ -3137,16 +3137,16 @@ Markup errors are handled according to the specification in `PEP 258`_. -.. _reStructuredText: http://docutils.sourceforge.net/rst.html -.. _Docutils: http://docutils.sourceforge.net/ +.. _reStructuredText: https://docutils.sourceforge.io/rst.html +.. _Docutils: https://docutils.sourceforge.io/ .. _Docutils Generic DTD: ../docutils.dtd .. _transforms: - http://docutils.sourceforge.net/docutils/transforms/ + https://docutils.sourceforge.io/docutils/transforms/ .. _Grouch: http://www.mems-exchange.org/software/grouch/ .. _RFC822: http://www.rfc-editor.org/rfc/rfc822.txt .. _DocTitle transform: .. _DocInfo transform: - http://docutils.sourceforge.net/docutils/transforms/frontmatter.py + https://docutils.sourceforge.io/docutils/transforms/frontmatter.py .. _getopt.py: http://www.python.org/doc/current/lib/module-getopt.html .. _GNU libc getopt_long(): diff --git a/docutils/docs/user/mailing-lists.txt b/docutils/docs/user/mailing-lists.txt index 429cb9f07..7664d585b 100644 --- a/docutils/docs/user/mailing-lists.txt +++ b/docutils/docs/user/mailing-lists.txt @@ -153,5 +153,5 @@ __ nntp://news.gmane.org/gmane.comp.python.documentation http://mail.python.org/mailman/listinfo/doc-sig .. _Subversion repository: ../dev/repository.html -.. _Docutils: http://docutils.sourceforge.net/ +.. _Docutils: https://docutils.sourceforge.io/ .. _FAQ: ../../FAQ.html diff --git a/docutils/docs/user/manpage.txt b/docutils/docs/user/manpage.txt index 2bc648d98..1c686163f 100644 --- a/docutils/docs/user/manpage.txt +++ b/docutils/docs/user/manpage.txt @@ -165,4 +165,4 @@ TODO - Open issues * Input and output encoding are problematic at least. -.. _Docutils: http://docutils.sourceforge.net/ +.. _Docutils: https://docutils.sourceforge.io/ diff --git a/docutils/docs/user/odt.txt b/docutils/docs/user/odt.txt index aec04da1b..5dcc9ba8d 100644 --- a/docutils/docs/user/odt.txt +++ b/docutils/docs/user/odt.txt @@ -803,8 +803,8 @@ Here is another example:: For more on roles see: `Custom Interpreted Text Roles -- -http://docutils.sourceforge.net/docs/ref/rst/directives.html#custom-interpreted-text-roles -`_. +https://docutils.sourceforge.io/docs/ref/rst/directives.html#custom-interpreted-text-roles +`_. **Note:** The ability to base a role on another existing role is *not* supported by ``odtwriter``. @@ -1189,7 +1189,7 @@ pick up the default paper size on platforms where the program http://pygments.pocoo.org/ .. _`Docutils`: - http://docutils.sourceforge.net/ + https://docutils.sourceforge.io/ .. _`Python Imaging Library`: https://en.wikipedia.org/wiki/Python_Imaging_Library diff --git a/docutils/docs/user/rst/cheatsheet.txt b/docutils/docs/user/rst/cheatsheet.txt index 1cf4321e1..6db296b10 100644 --- a/docutils/docs/user/rst/cheatsheet.txt +++ b/docutils/docs/user/rst/cheatsheet.txt @@ -67,7 +67,7 @@ Inline Markup ============= *emphasis*; **strong emphasis**; `interpreted text`; `interpreted text with role`:emphasis:; ``inline literal text``; standalone hyperlink, -http://docutils.sourceforge.net; named reference, reStructuredText_; +https://docutils.sourceforge.io; named reference, reStructuredText_; `anonymous reference`__; footnote reference, [1]_; citation reference, [CIT2002]_; |substitution|; _`inline internal target`. diff --git a/docutils/docs/user/rst/demo.txt b/docutils/docs/user/rst/demo.txt index 8dd2ef87d..5e62dae34 100644 --- a/docutils/docs/user/rst/demo.txt +++ b/docutils/docs/user/rst/demo.txt @@ -401,7 +401,7 @@ Directives These are just a sample of the many reStructuredText Directives. For others, please see -http://docutils.sourceforge.net/docs/ref/rst/directives.html. +https://docutils.sourceforge.io/docs/ref/rst/directives.html. Document Parts `````````````` diff --git a/docutils/docs/user/rst/quickref.html b/docutils/docs/user/rst/quickref.html index c6515fefa..97168b452 100644 --- a/docutils/docs/user/rst/quickref.html +++ b/docutils/docs/user/rst/quickref.html @@ -20,8 +20,8 @@

Quick reStructuredText

-

http://docutils.sourceforge.net/docs/user/rst/quickref.html +

https://docutils.sourceforge.io/docs/user/rst/quickref.html
Being a cheat-sheet for reStructuredText
Updated $Date$ @@ -31,7 +31,7 @@

Quick reStructuredText

The full details of the markup may be found on the - reStructuredText + reStructuredText page. This document is just intended as a reminder.

Links that look like "(details)" point @@ -39,7 +39,7 @@

Quick reStructuredText

href="../../ref/rst/restructuredtext.html">reStructuredText specification document. These are relative links; if they don't work, please use the master "Quick reStructuredText" document.

Contents

@@ -1343,7 +1343,7 @@

to the Docutils-Users mailing list. The Docutils project web + href="https://docutils.sourceforge.io/" >Docutils project web site has more information.


diff --git a/docutils/docs/user/rst/quickstart.txt b/docutils/docs/user/rst/quickstart.txt index f9c197f85..8b62afcb8 100644 --- a/docutils/docs/user/rst/quickstart.txt +++ b/docutils/docs/user/rst/quickstart.txt @@ -16,7 +16,7 @@ quick reference`_ document. __ .. _Quick reStructuredText: quickref.html .. _master quick reference: - http://docutils.sourceforge.net/docs/user/rst/quickref.html + https://docutils.sourceforge.io/docs/user/rst/quickref.html .. Note:: This document is an informal introduction to reStructuredText. The `What Next?`_ section below has links to @@ -396,9 +396,9 @@ reStructuredText should post a message to the Docutils-users_ mailing list. .. [#] If that relative link doesn't work, try the master document: - http://docutils.sourceforge.net/docs/ref/rst/restructuredtext.html. + https://docutils.sourceforge.io/docs/ref/rst/restructuredtext.html. .. _reStructuredText Markup Specification: ../../ref/rst/restructuredtext.html .. _Docutils-users: ../mailing-lists.html#docutils-users -.. _Docutils project web site: http://docutils.sourceforge.net/ +.. _Docutils project web site: https://docutils.sourceforge.io/ diff --git a/docutils/docs/user/slide-shows.txt b/docutils/docs/user/slide-shows.txt index 12979170c..fdf481fab 100644 --- a/docutils/docs/user/slide-shows.txt +++ b/docutils/docs/user/slide-shows.txt @@ -54,8 +54,8 @@ There is no support for the "header" directive in the themes included with Docutils. -.. _Docutils: http://docutils.sourceforge.net/ -.. _reStructuredText: http://docutils.sourceforge.net/rst.html +.. _Docutils: https://docutils.sourceforge.io/ +.. _reStructuredText: https://docutils.sourceforge.io/rst.html .. _S5: http://meyerweb.com/eric/tools/s5/ .. _Firefox: http://www.mozilla.com/firefox/ .. |bullet| unicode:: U+02022 @@ -80,7 +80,7 @@ Introduction installed. See the `Docutils README`__ file for installation instructions. - __ http://docutils.sourceforge.net/README.html + __ https://docutils.sourceforge.io/README.html * reStructuredText diff --git a/docutils/docutils/nodes.py b/docutils/docutils/nodes.py index a4c05d454..2df280c67 100644 --- a/docutils/docutils/nodes.py +++ b/docutils/docutils/nodes.py @@ -17,7 +17,7 @@ ``isinstance(node, base_class)`` to determine the position of the node in the hierarchy. -.. _DTD: http://docutils.sourceforge.net/docs/ref/docutils.dtd +.. _DTD: https://docutils.sourceforge.io/docs/ref/docutils.dtd """ __docformat__ = 'reStructuredText' diff --git a/docutils/docutils/parsers/rst/include/isoamsa.txt b/docutils/docutils/parsers/rst/include/isoamsa.txt index e6f451800..a13b1d66e 100644 --- a/docutils/docutils/parsers/rst/include/isoamsa.txt +++ b/docutils/docutils/parsers/rst/include/isoamsa.txt @@ -2,7 +2,7 @@ .. Derived from the Unicode character mappings available from . Processed by unicode2rstsubs.py, part of Docutils: - . + . .. |angzarr| unicode:: U+0237C .. RIGHT ANGLE WITH DOWNWARDS ZIGZAG ARROW .. |cirmid| unicode:: U+02AEF .. VERTICAL LINE WITH CIRCLE ABOVE diff --git a/docutils/docutils/parsers/rst/include/isoamsb.txt b/docutils/docutils/parsers/rst/include/isoamsb.txt index 05e68d99d..d66fd4dde 100644 --- a/docutils/docutils/parsers/rst/include/isoamsb.txt +++ b/docutils/docutils/parsers/rst/include/isoamsb.txt @@ -2,7 +2,7 @@ .. Derived from the Unicode character mappings available from . Processed by unicode2rstsubs.py, part of Docutils: - . + . .. |ac| unicode:: U+0223E .. INVERTED LAZY S .. |acE| unicode:: U+0223E U+00333 .. INVERTED LAZY S with double underline diff --git a/docutils/docutils/parsers/rst/include/isoamsc.txt b/docutils/docutils/parsers/rst/include/isoamsc.txt index 343504d83..bef4c3e78 100644 --- a/docutils/docutils/parsers/rst/include/isoamsc.txt +++ b/docutils/docutils/parsers/rst/include/isoamsc.txt @@ -2,7 +2,7 @@ .. Derived from the Unicode character mappings available from . Processed by unicode2rstsubs.py, part of Docutils: - . + . .. |dlcorn| unicode:: U+0231E .. BOTTOM LEFT CORNER .. |drcorn| unicode:: U+0231F .. BOTTOM RIGHT CORNER diff --git a/docutils/docutils/parsers/rst/include/isoamsn.txt b/docutils/docutils/parsers/rst/include/isoamsn.txt index 5ff17291e..65389e8d5 100644 --- a/docutils/docutils/parsers/rst/include/isoamsn.txt +++ b/docutils/docutils/parsers/rst/include/isoamsn.txt @@ -2,7 +2,7 @@ .. Derived from the Unicode character mappings available from . Processed by unicode2rstsubs.py, part of Docutils: - . + . .. |gnap| unicode:: U+02A8A .. GREATER-THAN AND NOT APPROXIMATE .. |gnE| unicode:: U+02269 .. GREATER-THAN BUT NOT EQUAL TO diff --git a/docutils/docutils/parsers/rst/include/isoamso.txt b/docutils/docutils/parsers/rst/include/isoamso.txt index 65cc17e99..f17e16bc6 100644 --- a/docutils/docutils/parsers/rst/include/isoamso.txt +++ b/docutils/docutils/parsers/rst/include/isoamso.txt @@ -2,7 +2,7 @@ .. Derived from the Unicode character mappings available from . Processed by unicode2rstsubs.py, part of Docutils: - . + . .. |ang| unicode:: U+02220 .. ANGLE .. |ange| unicode:: U+029A4 .. ANGLE WITH UNDERBAR diff --git a/docutils/docutils/parsers/rst/include/isoamsr.txt b/docutils/docutils/parsers/rst/include/isoamsr.txt index a3d03dab7..7d3c1aace 100644 --- a/docutils/docutils/parsers/rst/include/isoamsr.txt +++ b/docutils/docutils/parsers/rst/include/isoamsr.txt @@ -2,7 +2,7 @@ .. Derived from the Unicode character mappings available from . Processed by unicode2rstsubs.py, part of Docutils: - . + . .. |apE| unicode:: U+02A70 .. APPROXIMATELY EQUAL OR EQUAL TO .. |ape| unicode:: U+0224A .. ALMOST EQUAL OR EQUAL TO diff --git a/docutils/docutils/parsers/rst/include/isobox.txt b/docutils/docutils/parsers/rst/include/isobox.txt index 2304f8770..17d45bc67 100644 --- a/docutils/docutils/parsers/rst/include/isobox.txt +++ b/docutils/docutils/parsers/rst/include/isobox.txt @@ -2,7 +2,7 @@ .. Derived from the Unicode character mappings available from . Processed by unicode2rstsubs.py, part of Docutils: - . + . .. |boxDL| unicode:: U+02557 .. BOX DRAWINGS DOUBLE DOWN AND LEFT .. |boxDl| unicode:: U+02556 .. BOX DRAWINGS DOWN DOUBLE AND LEFT SINGLE diff --git a/docutils/docutils/parsers/rst/include/isocyr1.txt b/docutils/docutils/parsers/rst/include/isocyr1.txt index afee744cf..5e0a18f53 100644 --- a/docutils/docutils/parsers/rst/include/isocyr1.txt +++ b/docutils/docutils/parsers/rst/include/isocyr1.txt @@ -2,7 +2,7 @@ .. Derived from the Unicode character mappings available from . Processed by unicode2rstsubs.py, part of Docutils: - . + . .. |Acy| unicode:: U+00410 .. CYRILLIC CAPITAL LETTER A .. |acy| unicode:: U+00430 .. CYRILLIC SMALL LETTER A diff --git a/docutils/docutils/parsers/rst/include/isocyr2.txt b/docutils/docutils/parsers/rst/include/isocyr2.txt index fe09c015b..a78190c03 100644 --- a/docutils/docutils/parsers/rst/include/isocyr2.txt +++ b/docutils/docutils/parsers/rst/include/isocyr2.txt @@ -2,7 +2,7 @@ .. Derived from the Unicode character mappings available from . Processed by unicode2rstsubs.py, part of Docutils: - . + . .. |DJcy| unicode:: U+00402 .. CYRILLIC CAPITAL LETTER DJE .. |djcy| unicode:: U+00452 .. CYRILLIC SMALL LETTER DJE diff --git a/docutils/docutils/parsers/rst/include/isodia.txt b/docutils/docutils/parsers/rst/include/isodia.txt index ede6d9946..cfe403abf 100644 --- a/docutils/docutils/parsers/rst/include/isodia.txt +++ b/docutils/docutils/parsers/rst/include/isodia.txt @@ -2,7 +2,7 @@ .. Derived from the Unicode character mappings available from . Processed by unicode2rstsubs.py, part of Docutils: - . + . .. |acute| unicode:: U+000B4 .. ACUTE ACCENT .. |breve| unicode:: U+002D8 .. BREVE diff --git a/docutils/docutils/parsers/rst/include/isogrk1.txt b/docutils/docutils/parsers/rst/include/isogrk1.txt index 434368a03..22a414bb4 100644 --- a/docutils/docutils/parsers/rst/include/isogrk1.txt +++ b/docutils/docutils/parsers/rst/include/isogrk1.txt @@ -2,7 +2,7 @@ .. Derived from the Unicode character mappings available from . Processed by unicode2rstsubs.py, part of Docutils: - . + . .. |Agr| unicode:: U+00391 .. GREEK CAPITAL LETTER ALPHA .. |agr| unicode:: U+003B1 .. GREEK SMALL LETTER ALPHA diff --git a/docutils/docutils/parsers/rst/include/isogrk2.txt b/docutils/docutils/parsers/rst/include/isogrk2.txt index fa59f968d..4b4090ecd 100644 --- a/docutils/docutils/parsers/rst/include/isogrk2.txt +++ b/docutils/docutils/parsers/rst/include/isogrk2.txt @@ -2,7 +2,7 @@ .. Derived from the Unicode character mappings available from . Processed by unicode2rstsubs.py, part of Docutils: - . + . .. |Aacgr| unicode:: U+00386 .. GREEK CAPITAL LETTER ALPHA WITH TONOS .. |aacgr| unicode:: U+003AC .. GREEK SMALL LETTER ALPHA WITH TONOS diff --git a/docutils/docutils/parsers/rst/include/isogrk3.txt b/docutils/docutils/parsers/rst/include/isogrk3.txt index efacd980b..54d212f2c 100644 --- a/docutils/docutils/parsers/rst/include/isogrk3.txt +++ b/docutils/docutils/parsers/rst/include/isogrk3.txt @@ -2,7 +2,7 @@ .. Derived from the Unicode character mappings available from . Processed by unicode2rstsubs.py, part of Docutils: - . + . .. |alpha| unicode:: U+003B1 .. GREEK SMALL LETTER ALPHA .. |beta| unicode:: U+003B2 .. GREEK SMALL LETTER BETA diff --git a/docutils/docutils/parsers/rst/include/isogrk4-wide.txt b/docutils/docutils/parsers/rst/include/isogrk4-wide.txt index 39a63075d..c0e0238df 100644 --- a/docutils/docutils/parsers/rst/include/isogrk4-wide.txt +++ b/docutils/docutils/parsers/rst/include/isogrk4-wide.txt @@ -2,7 +2,7 @@ .. Derived from the Unicode character mappings available from . Processed by unicode2rstsubs.py, part of Docutils: - . + . .. |b.alpha| unicode:: U+1D6C2 .. MATHEMATICAL BOLD SMALL ALPHA .. |b.beta| unicode:: U+1D6C3 .. MATHEMATICAL BOLD SMALL BETA diff --git a/docutils/docutils/parsers/rst/include/isogrk4.txt b/docutils/docutils/parsers/rst/include/isogrk4.txt index 5b9f4104f..836b6bd77 100644 --- a/docutils/docutils/parsers/rst/include/isogrk4.txt +++ b/docutils/docutils/parsers/rst/include/isogrk4.txt @@ -2,7 +2,7 @@ .. Derived from the Unicode character mappings available from . Processed by unicode2rstsubs.py, part of Docutils: - . + . .. |b.Gammad| unicode:: U+003DC .. GREEK LETTER DIGAMMA .. |b.gammad| unicode:: U+003DD .. GREEK SMALL LETTER DIGAMMA diff --git a/docutils/docutils/parsers/rst/include/isolat1.txt b/docutils/docutils/parsers/rst/include/isolat1.txt index 3e9ad9df3..4e4202b7a 100644 --- a/docutils/docutils/parsers/rst/include/isolat1.txt +++ b/docutils/docutils/parsers/rst/include/isolat1.txt @@ -2,7 +2,7 @@ .. Derived from the Unicode character mappings available from . Processed by unicode2rstsubs.py, part of Docutils: - . + . .. |Aacute| unicode:: U+000C1 .. LATIN CAPITAL LETTER A WITH ACUTE .. |aacute| unicode:: U+000E1 .. LATIN SMALL LETTER A WITH ACUTE diff --git a/docutils/docutils/parsers/rst/include/isolat2.txt b/docutils/docutils/parsers/rst/include/isolat2.txt index 20de84576..808ef9376 100644 --- a/docutils/docutils/parsers/rst/include/isolat2.txt +++ b/docutils/docutils/parsers/rst/include/isolat2.txt @@ -2,7 +2,7 @@ .. Derived from the Unicode character mappings available from . Processed by unicode2rstsubs.py, part of Docutils: - . + . .. |Abreve| unicode:: U+00102 .. LATIN CAPITAL LETTER A WITH BREVE .. |abreve| unicode:: U+00103 .. LATIN SMALL LETTER A WITH BREVE diff --git a/docutils/docutils/parsers/rst/include/isomfrk-wide.txt b/docutils/docutils/parsers/rst/include/isomfrk-wide.txt index 75bba2575..73768bccd 100644 --- a/docutils/docutils/parsers/rst/include/isomfrk-wide.txt +++ b/docutils/docutils/parsers/rst/include/isomfrk-wide.txt @@ -2,7 +2,7 @@ .. Derived from the Unicode character mappings available from . Processed by unicode2rstsubs.py, part of Docutils: - . + . .. |Afr| unicode:: U+1D504 .. MATHEMATICAL FRAKTUR CAPITAL A .. |afr| unicode:: U+1D51E .. MATHEMATICAL FRAKTUR SMALL A diff --git a/docutils/docutils/parsers/rst/include/isomfrk.txt b/docutils/docutils/parsers/rst/include/isomfrk.txt index 868b687a5..81dd4b6e0 100644 --- a/docutils/docutils/parsers/rst/include/isomfrk.txt +++ b/docutils/docutils/parsers/rst/include/isomfrk.txt @@ -2,7 +2,7 @@ .. Derived from the Unicode character mappings available from . Processed by unicode2rstsubs.py, part of Docutils: - . + . .. |Cfr| unicode:: U+0212D .. BLACK-LETTER CAPITAL C .. |Hfr| unicode:: U+0210C .. BLACK-LETTER CAPITAL H diff --git a/docutils/docutils/parsers/rst/include/isomopf-wide.txt b/docutils/docutils/parsers/rst/include/isomopf-wide.txt index a91ea43eb..2c16866ea 100644 --- a/docutils/docutils/parsers/rst/include/isomopf-wide.txt +++ b/docutils/docutils/parsers/rst/include/isomopf-wide.txt @@ -2,7 +2,7 @@ .. Derived from the Unicode character mappings available from . Processed by unicode2rstsubs.py, part of Docutils: - . + . .. |Aopf| unicode:: U+1D538 .. MATHEMATICAL DOUBLE-STRUCK CAPITAL A .. |Bopf| unicode:: U+1D539 .. MATHEMATICAL DOUBLE-STRUCK CAPITAL B diff --git a/docutils/docutils/parsers/rst/include/isomopf.txt b/docutils/docutils/parsers/rst/include/isomopf.txt index 4350db61b..03c6a0d24 100644 --- a/docutils/docutils/parsers/rst/include/isomopf.txt +++ b/docutils/docutils/parsers/rst/include/isomopf.txt @@ -2,7 +2,7 @@ .. Derived from the Unicode character mappings available from . Processed by unicode2rstsubs.py, part of Docutils: - . + . .. |Copf| unicode:: U+02102 .. DOUBLE-STRUCK CAPITAL C .. |Hopf| unicode:: U+0210D .. DOUBLE-STRUCK CAPITAL H diff --git a/docutils/docutils/parsers/rst/include/isomscr-wide.txt b/docutils/docutils/parsers/rst/include/isomscr-wide.txt index 34b278b98..acfe7a008 100644 --- a/docutils/docutils/parsers/rst/include/isomscr-wide.txt +++ b/docutils/docutils/parsers/rst/include/isomscr-wide.txt @@ -2,7 +2,7 @@ .. Derived from the Unicode character mappings available from . Processed by unicode2rstsubs.py, part of Docutils: - . + . .. |Ascr| unicode:: U+1D49C .. MATHEMATICAL SCRIPT CAPITAL A .. |ascr| unicode:: U+1D4B6 .. MATHEMATICAL SCRIPT SMALL A diff --git a/docutils/docutils/parsers/rst/include/isomscr.txt b/docutils/docutils/parsers/rst/include/isomscr.txt index a77890e97..951577e8f 100644 --- a/docutils/docutils/parsers/rst/include/isomscr.txt +++ b/docutils/docutils/parsers/rst/include/isomscr.txt @@ -2,7 +2,7 @@ .. Derived from the Unicode character mappings available from . Processed by unicode2rstsubs.py, part of Docutils: - . + . .. |Bscr| unicode:: U+0212C .. SCRIPT CAPITAL B .. |Escr| unicode:: U+02130 .. SCRIPT CAPITAL E diff --git a/docutils/docutils/parsers/rst/include/isonum.txt b/docutils/docutils/parsers/rst/include/isonum.txt index 35793b365..0d280c980 100644 --- a/docutils/docutils/parsers/rst/include/isonum.txt +++ b/docutils/docutils/parsers/rst/include/isonum.txt @@ -2,7 +2,7 @@ .. Derived from the Unicode character mappings available from . Processed by unicode2rstsubs.py, part of Docutils: - . + . .. |amp| unicode:: U+00026 .. AMPERSAND .. |apos| unicode:: U+00027 .. APOSTROPHE diff --git a/docutils/docutils/parsers/rst/include/isopub.txt b/docutils/docutils/parsers/rst/include/isopub.txt index bc5b6d491..78e12513e 100644 --- a/docutils/docutils/parsers/rst/include/isopub.txt +++ b/docutils/docutils/parsers/rst/include/isopub.txt @@ -2,7 +2,7 @@ .. Derived from the Unicode character mappings available from . Processed by unicode2rstsubs.py, part of Docutils: - . + . .. |blank| unicode:: U+02423 .. OPEN BOX .. |blk12| unicode:: U+02592 .. MEDIUM SHADE diff --git a/docutils/docutils/parsers/rst/include/isotech.txt b/docutils/docutils/parsers/rst/include/isotech.txt index 01f7e346f..9b01eaad2 100644 --- a/docutils/docutils/parsers/rst/include/isotech.txt +++ b/docutils/docutils/parsers/rst/include/isotech.txt @@ -2,7 +2,7 @@ .. Derived from the Unicode character mappings available from . Processed by unicode2rstsubs.py, part of Docutils: - . + . .. |acd| unicode:: U+0223F .. SINE WAVE .. |aleph| unicode:: U+02135 .. ALEF SYMBOL diff --git a/docutils/docutils/parsers/rst/include/mmlalias.txt b/docutils/docutils/parsers/rst/include/mmlalias.txt index cabc54ac4..49c23ca7d 100644 --- a/docutils/docutils/parsers/rst/include/mmlalias.txt +++ b/docutils/docutils/parsers/rst/include/mmlalias.txt @@ -2,7 +2,7 @@ .. Derived from the Unicode character mappings available from . Processed by unicode2rstsubs.py, part of Docutils: - . + . .. |angle| unicode:: U+02220 .. ANGLE .. |ApplyFunction| unicode:: U+02061 .. FUNCTION APPLICATION diff --git a/docutils/docutils/parsers/rst/include/mmlextra-wide.txt b/docutils/docutils/parsers/rst/include/mmlextra-wide.txt index 0177ccc09..f45fc8cbe 100644 --- a/docutils/docutils/parsers/rst/include/mmlextra-wide.txt +++ b/docutils/docutils/parsers/rst/include/mmlextra-wide.txt @@ -2,7 +2,7 @@ .. Derived from the Unicode character mappings available from . Processed by unicode2rstsubs.py, part of Docutils: - . + . .. |af| unicode:: U+02061 .. FUNCTION APPLICATION .. |aopf| unicode:: U+1D552 .. MATHEMATICAL DOUBLE-STRUCK SMALL A diff --git a/docutils/docutils/parsers/rst/include/mmlextra.txt b/docutils/docutils/parsers/rst/include/mmlextra.txt index 790a9775a..272624739 100644 --- a/docutils/docutils/parsers/rst/include/mmlextra.txt +++ b/docutils/docutils/parsers/rst/include/mmlextra.txt @@ -2,7 +2,7 @@ .. Derived from the Unicode character mappings available from . Processed by unicode2rstsubs.py, part of Docutils: - . + . .. |af| unicode:: U+02061 .. FUNCTION APPLICATION .. |asympeq| unicode:: U+0224D .. EQUIVALENT TO diff --git a/docutils/docutils/parsers/rst/include/xhtml1-lat1.txt b/docutils/docutils/parsers/rst/include/xhtml1-lat1.txt index 824dc61c0..1cae194e0 100644 --- a/docutils/docutils/parsers/rst/include/xhtml1-lat1.txt +++ b/docutils/docutils/parsers/rst/include/xhtml1-lat1.txt @@ -2,7 +2,7 @@ .. Derived from the Unicode character mappings available from . Processed by unicode2rstsubs.py, part of Docutils: - . + . .. |Aacute| unicode:: U+000C1 .. LATIN CAPITAL LETTER A WITH ACUTE .. |aacute| unicode:: U+000E1 .. LATIN SMALL LETTER A WITH ACUTE diff --git a/docutils/docutils/parsers/rst/include/xhtml1-special.txt b/docutils/docutils/parsers/rst/include/xhtml1-special.txt index dc6f5753c..b19c0b511 100644 --- a/docutils/docutils/parsers/rst/include/xhtml1-special.txt +++ b/docutils/docutils/parsers/rst/include/xhtml1-special.txt @@ -2,7 +2,7 @@ .. Derived from the Unicode character mappings available from . Processed by unicode2rstsubs.py, part of Docutils: - . + . .. |bdquo| unicode:: U+0201E .. DOUBLE LOW-9 QUOTATION MARK .. |circ| unicode:: U+002C6 .. MODIFIER LETTER CIRCUMFLEX ACCENT diff --git a/docutils/docutils/parsers/rst/include/xhtml1-symbol.txt b/docutils/docutils/parsers/rst/include/xhtml1-symbol.txt index 8fe97f808..1f9359056 100644 --- a/docutils/docutils/parsers/rst/include/xhtml1-symbol.txt +++ b/docutils/docutils/parsers/rst/include/xhtml1-symbol.txt @@ -2,7 +2,7 @@ .. Derived from the Unicode character mappings available from . Processed by unicode2rstsubs.py, part of Docutils: - . + . .. |alefsym| unicode:: U+02135 .. ALEF SYMBOL .. |Alpha| unicode:: U+00391 .. GREEK CAPITAL LETTER ALPHA diff --git a/docutils/docutils/transforms/universal.py b/docutils/docutils/transforms/universal.py index 581be1a58..9c11c7545 100644 --- a/docutils/docutils/transforms/universal.py +++ b/docutils/docutils/transforms/universal.py @@ -80,9 +80,9 @@ def generate_footer(self): text.extend([ nodes.Text('Generated by '), nodes.reference('', 'Docutils', refuri= - 'http://docutils.sourceforge.net/'), + 'https://docutils.sourceforge.io/'), nodes.Text(' from '), - nodes.reference('', 'reStructuredText', refuri='http://' + nodes.reference('', 'reStructuredText', refuri='https://' 'docutils.sourceforge.net/rst.html'), nodes.Text(' source.\n')]) return [nodes.paragraph('', '', *text)] diff --git a/docutils/docutils/writers/_html_base.py b/docutils/docutils/writers/_html_base.py index bc8f79362..38e08684d 100644 --- a/docutils/docutils/writers/_html_base.py +++ b/docutils/docutils/writers/_html_base.py @@ -238,7 +238,7 @@ def depart_example(self, node): ' xml:lang="%(lang)s" lang="%(lang)s">\n\n') content_type = '\n' generator = ('\n') + 'https://docutils.sourceforge.io/" />\n') # Template for the MathJax script in the header: mathjax_script = '\n' @@ -252,7 +252,7 @@ def depart_example(self, node): in the `math-output` setting appended to "mathjax". See `Docutils Configuration`__. - __ http://docutils.sourceforge.net/docs/user/config.html#math-output + __ https://docutils.sourceforge.io/docs/user/config.html#math-output The fallback tries a local MathJax installation at ``/usr/share/javascript/mathjax/MathJax.js``. diff --git a/docutils/docutils/writers/docutils_xml.py b/docutils/docutils/writers/docutils_xml.py index 76c284155..188b3fe57 100644 --- a/docutils/docutils/writers/docutils_xml.py +++ b/docutils/docutils/writers/docutils_xml.py @@ -5,7 +5,7 @@ """ Simple document tree Writer, writes Docutils XML according to -http://docutils.sourceforge.net/docs/ref/docutils.dtd. +https://docutils.sourceforge.io/docs/ref/docutils.dtd. """ __docformat__ = 'reStructuredText' diff --git a/docutils/docutils/writers/html5_polyglot/plain.css b/docutils/docutils/writers/html5_polyglot/plain.css index 1a75488d9..0ed997925 100644 --- a/docutils/docutils/writers/html5_polyglot/plain.css +++ b/docutils/docutils/writers/html5_polyglot/plain.css @@ -275,7 +275,7 @@ aside.sidebar { pre.code { padding: 0.7ex } pre.code, code { background-color: #eeeeee } /* basic highlighting: for a complete scheme, see */ -/* http://docutils.sourceforge.net/sandbox/stylesheets/ */ +/* https://docutils.sourceforge.io/sandbox/stylesheets/ */ pre.code .comment, code .comment { color: #5C6576 } pre.code .keyword, code .keyword { color: #3B0D06; font-weight: bold } pre.code .literal.string, code .literal.string { color: #0C5404 } diff --git a/docutils/docutils/writers/html5_polyglot/responsive.css b/docutils/docutils/writers/html5_polyglot/responsive.css index 324c1a36e..19dab8cf3 100644 --- a/docutils/docutils/writers/html5_polyglot/responsive.css +++ b/docutils/docutils/writers/html5_polyglot/responsive.css @@ -254,7 +254,7 @@ pre.literal-block, pre.doctest{ } /* basic highlighting: for a complete scheme, see */ -/* http://docutils.sourceforge.net/sandbox/stylesheets/ */ +/* https://docutils.sourceforge.io/sandbox/stylesheets/ */ pre.code .comment, code .comment { color: #5C6576 } pre.code .keyword, code .keyword { color: #3B0D06; font-weight: bold } pre.code .literal.string, code .literal.string { color: #0C5404 } diff --git a/docutils/docutils/writers/html5_polyglot/tuftig.css b/docutils/docutils/writers/html5_polyglot/tuftig.css index c447b8f52..fe3e86ec9 100644 --- a/docutils/docutils/writers/html5_polyglot/tuftig.css +++ b/docutils/docutils/writers/html5_polyglot/tuftig.css @@ -298,7 +298,7 @@ pre.math, pre.code { overflow: auto; } /* basic highlighting: for a complete scheme, see */ -/* http://docutils.sourceforge.net/sandbox/stylesheets/ */ +/* https://docutils.sourceforge.io/sandbox/stylesheets/ */ pre.code .comment, code .comment { color: #5C6576 } pre.code .keyword, code .keyword { color: #3B0D06; font-weight: bold } pre.code .literal.string, code .literal.string { color: #0C5404 } diff --git a/docutils/docutils/writers/latex2e/__init__.py b/docutils/docutils/writers/latex2e/__init__.py index 81e450723..75b889f42 100644 --- a/docutils/docutils/writers/latex2e/__init__.py +++ b/docutils/docutils/writers/latex2e/__init__.py @@ -308,7 +308,7 @@ class Babel(object): # http://www.tug.org/TUGboat/Articles/tb29-3/tb93miklavec.pdf # * the key without subtags is the default # * case is ignored - # cf. http://docutils.sourceforge.net/docs/howto/i18n.html + # cf. https://docutils.sourceforge.io/docs/howto/i18n.html # http://www.w3.org/International/articles/language-tags/ # and http://www.iana.org/assignments/language-subtag-registry language_codes = { diff --git a/docutils/docutils/writers/latex2e/default.tex b/docutils/docutils/writers/latex2e/default.tex index 8a39d80cf..86552ab63 100644 --- a/docutils/docutils/writers/latex2e/default.tex +++ b/docutils/docutils/writers/latex2e/default.tex @@ -1,4 +1,4 @@ -$head_prefix% generated by Docutils +$head_prefix% generated by Docutils \usepackage{cmap} % fix search and cut-and-paste in Acrobat $requirements %%% Custom LaTeX preamble diff --git a/docutils/docutils/writers/latex2e/titlepage.tex b/docutils/docutils/writers/latex2e/titlepage.tex index d57deca3d..ad9f73183 100644 --- a/docutils/docutils/writers/latex2e/titlepage.tex +++ b/docutils/docutils/writers/latex2e/titlepage.tex @@ -1,4 +1,4 @@ -% generated by Docutils +% generated by Docutils $head_prefix \usepackage{fixltx2e} % LaTeX patches, \textsubscript \usepackage{cmap} % fix search and cut-and-paste in Acrobat diff --git a/docutils/docutils/writers/latex2e/titlingpage.tex b/docutils/docutils/writers/latex2e/titlingpage.tex index c2d3fbee5..1e96806dc 100644 --- a/docutils/docutils/writers/latex2e/titlingpage.tex +++ b/docutils/docutils/writers/latex2e/titlingpage.tex @@ -1,4 +1,4 @@ -% generated by Docutils +% generated by Docutils $head_prefix $requirements %%% Custom LaTeX preamble diff --git a/docutils/docutils/writers/latex2e/xelatex.tex b/docutils/docutils/writers/latex2e/xelatex.tex index 22c1311dd..4d802805d 100644 --- a/docutils/docutils/writers/latex2e/xelatex.tex +++ b/docutils/docutils/writers/latex2e/xelatex.tex @@ -1,4 +1,4 @@ -$head_prefix% generated by Docutils +$head_prefix% generated by Docutils % rubber: set program xelatex \usepackage{fontspec} % \defaultfontfeatures{Scale=MatchLowercase} diff --git a/docutils/docutils/writers/pep_html/template.txt b/docutils/docutils/writers/pep_html/template.txt index 62c07a87f..ec18d8812 100644 --- a/docutils/docutils/writers/pep_html/template.txt +++ b/docutils/docutils/writers/pep_html/template.txt @@ -8,7 +8,7 @@ to templates. DO NOT USE THIS HTML FILE AS YOUR TEMPLATE! --> - + PEP %(pep)s -- %(title)s %(stylesheet)s diff --git a/docutils/setup.py b/docutils/setup.py index 165762325..32127cced 100755 --- a/docutils/setup.py +++ b/docutils/setup.py @@ -34,7 +34,7 @@ into useful formats, such as HTML, XML, and LaTeX. For input Docutils supports reStructuredText, an easy-to-read, what-you-see-is-what-you-get plaintext markup syntax.""", # wrap at col 60 - 'url': 'http://docutils.sourceforge.net/', + 'url': 'https://docutils.sourceforge.io/', 'version': '0.19b.dev', 'author': 'David Goodger', 'author_email': 'goodger@python.org', diff --git a/docutils/test/DocutilsTestSupport.py b/docutils/test/DocutilsTestSupport.py index b4f5c1634..ff8106956 100644 --- a/docutils/test/DocutilsTestSupport.py +++ b/docutils/test/DocutilsTestSupport.py @@ -743,7 +743,7 @@ def test_publish(self): ' content="text/html; charset=%s" />\n') standard_generator_template = ( '\n') + ' content="Docutils %s: https://docutils.sourceforge.io/" />\n') standard_html_meta_value = ( standard_content_type_template + standard_generator_template % docutils.__version__) diff --git a/docutils/test/functional/expected/compact_lists.html b/docutils/test/functional/expected/compact_lists.html index ec36e22b1..28250df6c 100644 --- a/docutils/test/functional/expected/compact_lists.html +++ b/docutils/test/functional/expected/compact_lists.html @@ -3,7 +3,7 @@ - + compact_lists.txt diff --git a/docutils/test/functional/expected/cyrillic.tex b/docutils/test/functional/expected/cyrillic.tex index 79e816882..ee7c1058a 100644 --- a/docutils/test/functional/expected/cyrillic.tex +++ b/docutils/test/functional/expected/cyrillic.tex @@ -1,5 +1,5 @@ \documentclass[a4paper,russian]{article} -% generated by Docutils +% generated by Docutils \usepackage{cmap} % fix search and cut-and-paste in Acrobat \usepackage{ifthen} \usepackage[T1,T2A]{fontenc} diff --git a/docutils/test/functional/expected/dangerous.html b/docutils/test/functional/expected/dangerous.html index 3cfe767be..f8a35f63e 100644 --- a/docutils/test/functional/expected/dangerous.html +++ b/docutils/test/functional/expected/dangerous.html @@ -3,7 +3,7 @@ - + dangerous.txt diff --git a/docutils/test/functional/expected/embed_images_html5.html b/docutils/test/functional/expected/embed_images_html5.html index 073e33192..3d134c2e3 100644 --- a/docutils/test/functional/expected/embed_images_html5.html +++ b/docutils/test/functional/expected/embed_images_html5.html @@ -3,7 +3,7 @@ - + Embedded Images diff --git a/docutils/test/functional/expected/field_name_limit.html b/docutils/test/functional/expected/field_name_limit.html index 28437d4f5..121e1dd95 100644 --- a/docutils/test/functional/expected/field_name_limit.html +++ b/docutils/test/functional/expected/field_name_limit.html @@ -3,7 +3,7 @@ - + field_list.txt diff --git a/docutils/test/functional/expected/footnotes_html5.html b/docutils/test/functional/expected/footnotes_html5.html index 4b132dcf2..5d83d7697 100644 --- a/docutils/test/functional/expected/footnotes_html5.html +++ b/docutils/test/functional/expected/footnotes_html5.html @@ -3,7 +3,7 @@ - + Test footnote and citation rendering diff --git a/docutils/test/functional/expected/latex_babel.tex b/docutils/test/functional/expected/latex_babel.tex index 14cdbac03..e982d4a45 100644 --- a/docutils/test/functional/expected/latex_babel.tex +++ b/docutils/test/functional/expected/latex_babel.tex @@ -1,5 +1,5 @@ \documentclass[a4paper]{article} -% generated by Docutils +% generated by Docutils \usepackage{cmap} % fix search and cut-and-paste in Acrobat \usepackage{ifthen} \usepackage[T1]{fontenc} diff --git a/docutils/test/functional/expected/latex_cornercases.tex b/docutils/test/functional/expected/latex_cornercases.tex index 5f7b79c44..d1bd0134d 100644 --- a/docutils/test/functional/expected/latex_cornercases.tex +++ b/docutils/test/functional/expected/latex_cornercases.tex @@ -1,5 +1,5 @@ \documentclass[a4paper]{article} -% generated by Docutils +% generated by Docutils \usepackage{cmap} % fix search and cut-and-paste in Acrobat \usepackage{ifthen} \usepackage[T1]{fontenc} @@ -921,7 +921,7 @@ \section{External references% \begin{description} \item[{Example:}] a long URL that should wrap in the output -\url{http://docutils.sourceforge.net/docs/user/latex.html\#id79} +\url{https://docutils.sourceforge.io/docs/user/latex.html\#id79} \end{description} diff --git a/docutils/test/functional/expected/latex_docinfo.tex b/docutils/test/functional/expected/latex_docinfo.tex index 0be892f78..2c5b401fa 100644 --- a/docutils/test/functional/expected/latex_docinfo.tex +++ b/docutils/test/functional/expected/latex_docinfo.tex @@ -1,5 +1,5 @@ \documentclass[a4paper]{article} -% generated by Docutils +% generated by Docutils \usepackage{cmap} % fix search and cut-and-paste in Acrobat \usepackage{ifthen} \usepackage[T1]{fontenc} diff --git a/docutils/test/functional/expected/latex_leavevmode.tex b/docutils/test/functional/expected/latex_leavevmode.tex index 24beccb98..4ced1512c 100644 --- a/docutils/test/functional/expected/latex_leavevmode.tex +++ b/docutils/test/functional/expected/latex_leavevmode.tex @@ -1,5 +1,5 @@ \documentclass[a4paper]{article} -% generated by Docutils +% generated by Docutils \usepackage{cmap} % fix search and cut-and-paste in Acrobat \usepackage{ifthen} \usepackage[T1]{fontenc} diff --git a/docutils/test/functional/expected/latex_literal_block.tex b/docutils/test/functional/expected/latex_literal_block.tex index 355bd5945..5767fe5a8 100644 --- a/docutils/test/functional/expected/latex_literal_block.tex +++ b/docutils/test/functional/expected/latex_literal_block.tex @@ -1,5 +1,5 @@ \documentclass[a4paper]{article} -% generated by Docutils +% generated by Docutils \usepackage{cmap} % fix search and cut-and-paste in Acrobat \usepackage{ifthen} \usepackage[T1]{fontenc} diff --git a/docutils/test/functional/expected/latex_literal_block_fancyvrb.tex b/docutils/test/functional/expected/latex_literal_block_fancyvrb.tex index 9370c963f..6933d5aeb 100644 --- a/docutils/test/functional/expected/latex_literal_block_fancyvrb.tex +++ b/docutils/test/functional/expected/latex_literal_block_fancyvrb.tex @@ -1,5 +1,5 @@ \documentclass[a4paper]{article} -% generated by Docutils +% generated by Docutils \usepackage{cmap} % fix search and cut-and-paste in Acrobat \usepackage{ifthen} \usepackage[T1]{fontenc} diff --git a/docutils/test/functional/expected/latex_literal_block_listings.tex b/docutils/test/functional/expected/latex_literal_block_listings.tex index c4ae02733..f0e38a073 100644 --- a/docutils/test/functional/expected/latex_literal_block_listings.tex +++ b/docutils/test/functional/expected/latex_literal_block_listings.tex @@ -1,5 +1,5 @@ \documentclass[a4paper]{article} -% generated by Docutils +% generated by Docutils \usepackage{cmap} % fix search and cut-and-paste in Acrobat \usepackage{ifthen} \usepackage[T1]{fontenc} diff --git a/docutils/test/functional/expected/latex_literal_block_verbatim.tex b/docutils/test/functional/expected/latex_literal_block_verbatim.tex index 35d5b0da6..863d2b417 100644 --- a/docutils/test/functional/expected/latex_literal_block_verbatim.tex +++ b/docutils/test/functional/expected/latex_literal_block_verbatim.tex @@ -1,5 +1,5 @@ \documentclass[a4paper]{article} -% generated by Docutils +% generated by Docutils \usepackage{cmap} % fix search and cut-and-paste in Acrobat \usepackage{ifthen} \usepackage[T1]{fontenc} diff --git a/docutils/test/functional/expected/latex_literal_block_verbatimtab.tex b/docutils/test/functional/expected/latex_literal_block_verbatimtab.tex index 46b863585..f03f90a11 100644 --- a/docutils/test/functional/expected/latex_literal_block_verbatimtab.tex +++ b/docutils/test/functional/expected/latex_literal_block_verbatimtab.tex @@ -1,5 +1,5 @@ \documentclass[a4paper]{article} -% generated by Docutils +% generated by Docutils \usepackage{cmap} % fix search and cut-and-paste in Acrobat \usepackage{ifthen} \usepackage[T1]{fontenc} diff --git a/docutils/test/functional/expected/latex_memoir.tex b/docutils/test/functional/expected/latex_memoir.tex index 23728e37c..c0e0e3902 100644 --- a/docutils/test/functional/expected/latex_memoir.tex +++ b/docutils/test/functional/expected/latex_memoir.tex @@ -1,4 +1,4 @@ -% generated by Docutils +% generated by Docutils \documentclass[a4paper]{memoir} \usepackage{ifthen} diff --git a/docutils/test/functional/expected/math_output_html.html b/docutils/test/functional/expected/math_output_html.html index 6c8b0fb8b..d839df959 100644 --- a/docutils/test/functional/expected/math_output_html.html +++ b/docutils/test/functional/expected/math_output_html.html @@ -3,7 +3,7 @@ - + Mathematics diff --git a/docutils/test/functional/expected/math_output_latex.html b/docutils/test/functional/expected/math_output_latex.html index 4e503ed44..b335fa279 100644 --- a/docutils/test/functional/expected/math_output_latex.html +++ b/docutils/test/functional/expected/math_output_latex.html @@ -3,7 +3,7 @@ - + Mathematics diff --git a/docutils/test/functional/expected/math_output_mathjax.html b/docutils/test/functional/expected/math_output_mathjax.html index 571ac7123..9d37fc7d0 100644 --- a/docutils/test/functional/expected/math_output_mathjax.html +++ b/docutils/test/functional/expected/math_output_mathjax.html @@ -3,7 +3,7 @@ - + Mathematics diff --git a/docutils/test/functional/expected/math_output_mathml.html b/docutils/test/functional/expected/math_output_mathml.html index 309267616..2d38a0d1e 100644 --- a/docutils/test/functional/expected/math_output_mathml.html +++ b/docutils/test/functional/expected/math_output_mathml.html @@ -3,7 +3,7 @@ - + Mathematics diff --git a/docutils/test/functional/expected/misc_rst_html4css1.html b/docutils/test/functional/expected/misc_rst_html4css1.html index 34cf3ea7a..6025e53a5 100644 --- a/docutils/test/functional/expected/misc_rst_html4css1.html +++ b/docutils/test/functional/expected/misc_rst_html4css1.html @@ -3,7 +3,7 @@ - + Additional tests with html4css1 diff --git a/docutils/test/functional/expected/misc_rst_html5.html b/docutils/test/functional/expected/misc_rst_html5.html index 4fb88af43..c554ee981 100644 --- a/docutils/test/functional/expected/misc_rst_html5.html +++ b/docutils/test/functional/expected/misc_rst_html5.html @@ -3,7 +3,7 @@ - + Additional tests with HTML 5 diff --git a/docutils/test/functional/expected/pep_html.html b/docutils/test/functional/expected/pep_html.html index d1bccc6d7..4a9dca992 100644 --- a/docutils/test/functional/expected/pep_html.html +++ b/docutils/test/functional/expected/pep_html.html @@ -8,7 +8,7 @@ --> - + PEP 100 -- Test PEP diff --git a/docutils/test/functional/expected/standalone_rst_html4css1.html b/docutils/test/functional/expected/standalone_rst_html4css1.html index 75d13a7eb..888bc3bbd 100644 --- a/docutils/test/functional/expected/standalone_rst_html4css1.html +++ b/docutils/test/functional/expected/standalone_rst_html4css1.html @@ -3,7 +3,7 @@ - + reStructuredText Test Document diff --git a/docutils/test/functional/expected/standalone_rst_html5.html b/docutils/test/functional/expected/standalone_rst_html5.html index af3e04a27..e5811f82f 100644 --- a/docutils/test/functional/expected/standalone_rst_html5.html +++ b/docutils/test/functional/expected/standalone_rst_html5.html @@ -3,7 +3,7 @@ - + reStructuredText Test Document @@ -838,7 +838,7 @@