|
From: <gr...@us...> - 2024-03-26 15:08:57
|
Revision: 9597
http://sourceforge.net/p/docutils/code/9597
Author: grubert
Date: 2024-03-26 15:08:54 +0000 (Tue, 26 Mar 2024)
Log Message:
-----------
manpage: render references in writer not in man/mandoc/...
Modified Paths:
--------------
trunk/docutils/HISTORY.txt
trunk/docutils/docutils/writers/manpage.py
trunk/docutils/test/test_writers/test_manpage.py
Modified: trunk/docutils/HISTORY.txt
===================================================================
--- trunk/docutils/HISTORY.txt 2024-03-26 12:03:42 UTC (rev 9596)
+++ trunk/docutils/HISTORY.txt 2024-03-26 15:08:54 UTC (rev 9597)
@@ -175,7 +175,8 @@
- Skip footer to avoid the link to document source in the manpage.
- Add multiple definition list term support, see feature #60.
- - Use ``.UR`` and ``.UE`` macros for reference markup.
+ - Render reference, refid and refuri.
+ Use of ``.UR`` and ``.UE`` macros for reference markup is too brittle.
- Add preprocessor hinting tbl first line, see bug #477.
- Change tbl-Tables using box option, see bug #475.
- Apply literal block patch #205. Use ``.EE`` and ``.EX`` macros.
Modified: trunk/docutils/docutils/writers/manpage.py
===================================================================
--- trunk/docutils/docutils/writers/manpage.py 2024-03-26 12:03:42 UTC (rev 9596)
+++ trunk/docutils/docutils/writers/manpage.py 2024-03-26 15:08:54 UTC (rev 9597)
@@ -1002,15 +1002,25 @@
def visit_reference(self, node):
"""E.g. link or email address."""
- self.ensure_eol()
- self.body.append(".UR ")
+ # .UR and .UE macros in roff use OSC8 escape sequences
+ # which are not supported everywhere yet
+ # therefore make the markup ourself
if 'refuri' in node:
- if not node['refuri'].endswith(node.astext()):
- self.body.append("%s\n" % node['refuri'])
+ # if content has the "email" do not output "mailto:email"
+ if node['refuri'].endswith(node.astext()):
+ self.body.append(" <")
+ elif 'refid' in node:
+ self.body.append(" <")
def depart_reference(self, node):
- self.ensure_eol()
- self.body.append(".UE\n")
+ if 'refuri' in node:
+ # if content has the "email" do not output "mailto:email"
+ if node['refuri'].endswith(node.astext()):
+ self.body.append("> ")
+ else:
+ self.body.append(" <%s>\n" % node['refuri'])
+ elif 'refid' in node:
+ self.body.append("> ")
def visit_revision(self, node):
self.visit_docinfo_item(node, 'revision')
Modified: trunk/docutils/test/test_writers/test_manpage.py
===================================================================
--- trunk/docutils/test/test_writers/test_manpage.py 2024-03-26 12:03:42 UTC (rev 9596)
+++ trunk/docutils/test/test_writers/test_manpage.py 2024-03-26 15:08:54 UTC (rev 9597)
@@ -194,10 +194,7 @@
.UNINDENT
.SH OTHER SECTION
.sp
-link to
-.UR http://docutils.sourceforge.io
-.UE
-
+link to <http://docutils.sourceforge.io>
.sp
With mixed case.
.sp
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <gr...@us...> - 2024-03-26 23:50:01
|
Revision: 9601
http://sourceforge.net/p/docutils/code/9601
Author: grubert
Date: 2024-03-26 23:49:59 +0000 (Tue, 26 Mar 2024)
Log Message:
-----------
version 0.21.rc1
Modified Paths:
--------------
trunk/docutils/HISTORY.txt
trunk/docutils/README.txt
trunk/docutils/RELEASE-NOTES.txt
trunk/docutils/docutils/__init__.py
trunk/docutils/test/functional/expected/buggy_mathml.html
trunk/docutils/test/functional/expected/buggy_mathml_blahtexml.html
trunk/docutils/test/functional/expected/buggy_mathml_pandoc.html
trunk/docutils/test/functional/expected/buggy_mathml_ttm.html
trunk/docutils/test/functional/expected/compact_lists.html
trunk/docutils/test/functional/expected/dangerous.html
trunk/docutils/test/functional/expected/field_name_limit.html
trunk/docutils/test/functional/expected/footnotes_html5.html
trunk/docutils/test/functional/expected/math_experiments_mathml.html
trunk/docutils/test/functional/expected/math_experiments_mathml_blahtexml.html
trunk/docutils/test/functional/expected/math_experiments_mathml_pandoc.html
trunk/docutils/test/functional/expected/math_experiments_mathml_ttm.html
trunk/docutils/test/functional/expected/math_output_html.html
trunk/docutils/test/functional/expected/math_output_latex.html
trunk/docutils/test/functional/expected/math_output_mathjax.html
trunk/docutils/test/functional/expected/math_output_mathml.html
trunk/docutils/test/functional/expected/mathematics_mathml.html
trunk/docutils/test/functional/expected/mathematics_mathml_blahtexml.html
trunk/docutils/test/functional/expected/mathematics_mathml_pandoc.html
trunk/docutils/test/functional/expected/mathematics_mathml_ttm.html
trunk/docutils/test/functional/expected/misc_rst_html4css1.html
trunk/docutils/test/functional/expected/misc_rst_html5.html
trunk/docutils/test/functional/expected/pep_html.html
trunk/docutils/test/functional/expected/rst_html5_tuftig.html
trunk/docutils/test/functional/expected/standalone_rst_docutils_xml.xml
trunk/docutils/test/functional/expected/standalone_rst_html4css1.html
trunk/docutils/test/functional/expected/standalone_rst_html5.html
trunk/docutils/test/functional/expected/standalone_rst_s5_html_1.html
trunk/docutils/test/functional/expected/standalone_rst_s5_html_2.html
Modified: trunk/docutils/HISTORY.txt
===================================================================
--- trunk/docutils/HISTORY.txt 2024-03-26 23:14:35 UTC (rev 9600)
+++ trunk/docutils/HISTORY.txt 2024-03-26 23:49:59 UTC (rev 9601)
@@ -14,8 +14,8 @@
.. contents::
-Release 0.21.rc1
-================
+Release 0.21.rc1 (2024-03-26)
+=============================
* General
Modified: trunk/docutils/README.txt
===================================================================
--- trunk/docutils/README.txt 2024-03-26 23:14:35 UTC (rev 9600)
+++ trunk/docutils/README.txt 2024-03-26 23:49:59 UTC (rev 9601)
@@ -1,8 +1,8 @@
.. include:: docs/header0.txt
-===============================
- README: Docutils 0.21b.dev
-===============================
+===========================
+ README: Docutils 0.21.rc1
+===========================
:Author: David Goodger
:Contact: go...@py...
Modified: trunk/docutils/RELEASE-NOTES.txt
===================================================================
--- trunk/docutils/RELEASE-NOTES.txt 2024-03-26 23:14:35 UTC (rev 9600)
+++ trunk/docutils/RELEASE-NOTES.txt 2024-03-26 23:49:59 UTC (rev 9601)
@@ -170,8 +170,8 @@
.. _buildhtml.py: docs/user/tools.html#buildhtml-py
-Release 0.21.rc1 (unpublished)
-==============================
+Release 0.21.rc1 (2024-03-26)
+=============================
* General:
@@ -230,6 +230,15 @@
Embed SVG images as ``<svg>`` instead of data-URI.
+ Support video inclusion via ``<video>``.
+
+ manpage:
+ Use .EE/.EX macros for literal blocks.
+
+ Render URI references (do not use .UR/.UE).
+
+ Use box option for tables.
+
* Removed objects:
`docutils.nodes.reprunicode`, `docutils.nodes.ensure_str()`
Modified: trunk/docutils/docutils/__init__.py
===================================================================
--- trunk/docutils/docutils/__init__.py 2024-03-26 23:14:35 UTC (rev 9600)
+++ trunk/docutils/docutils/__init__.py 2024-03-26 23:49:59 UTC (rev 9601)
@@ -54,7 +54,7 @@
__docformat__ = 'reStructuredText'
-__version__ = '0.21b.dev'
+__version__ = '0.21rc1'
"""Docutils version identifier (complies with PEP 440)::
major.minor[.micro][releaselevel[serial]][.dev]
@@ -118,9 +118,9 @@
major=0,
minor=21,
micro=0,
- releaselevel='beta', # one of 'alpha', 'beta', 'candidate', 'final'
- serial=0, # pre-release number (0 for final releases and snapshots)
- release=False # True for official releases and pre-releases
+ releaselevel='candidate', # one of 'alpha', 'beta', 'candidate', 'final'
+ serial=1, # pre-release number (0 for final releases and snapshots)
+ release=True # True for official releases and pre-releases
)
"""Comprehensive version information tuple.
Modified: trunk/docutils/test/functional/expected/buggy_mathml.html
===================================================================
--- trunk/docutils/test/functional/expected/buggy_mathml.html 2024-03-26 23:14:35 UTC (rev 9600)
+++ trunk/docutils/test/functional/expected/buggy_mathml.html 2024-03-26 23:49:59 UTC (rev 9601)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21rc1: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>buggy-maths</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/buggy_mathml_blahtexml.html
===================================================================
--- trunk/docutils/test/functional/expected/buggy_mathml_blahtexml.html 2024-03-26 23:14:35 UTC (rev 9600)
+++ trunk/docutils/test/functional/expected/buggy_mathml_blahtexml.html 2024-03-26 23:49:59 UTC (rev 9601)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21rc1: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>buggy-maths</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/buggy_mathml_pandoc.html
===================================================================
--- trunk/docutils/test/functional/expected/buggy_mathml_pandoc.html 2024-03-26 23:14:35 UTC (rev 9600)
+++ trunk/docutils/test/functional/expected/buggy_mathml_pandoc.html 2024-03-26 23:49:59 UTC (rev 9601)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21rc1: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>buggy-maths</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/buggy_mathml_ttm.html
===================================================================
--- trunk/docutils/test/functional/expected/buggy_mathml_ttm.html 2024-03-26 23:14:35 UTC (rev 9600)
+++ trunk/docutils/test/functional/expected/buggy_mathml_ttm.html 2024-03-26 23:49:59 UTC (rev 9601)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21rc1: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>buggy-maths</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/compact_lists.html
===================================================================
--- trunk/docutils/test/functional/expected/compact_lists.html 2024-03-26 23:14:35 UTC (rev 9600)
+++ trunk/docutils/test/functional/expected/compact_lists.html 2024-03-26 23:49:59 UTC (rev 9601)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.21b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21rc1: https://docutils.sourceforge.io/" />
<title>compact_lists.txt</title>
<link rel="stylesheet" href="../input/data/html4css1.css" type="text/css" />
</head>
Modified: trunk/docutils/test/functional/expected/dangerous.html
===================================================================
--- trunk/docutils/test/functional/expected/dangerous.html 2024-03-26 23:14:35 UTC (rev 9600)
+++ trunk/docutils/test/functional/expected/dangerous.html 2024-03-26 23:49:59 UTC (rev 9601)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.21b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21rc1: https://docutils.sourceforge.io/" />
<title>dangerous.txt</title>
<link rel="stylesheet" href="../input/data/html4css1.css" type="text/css" />
</head>
Modified: trunk/docutils/test/functional/expected/field_name_limit.html
===================================================================
--- trunk/docutils/test/functional/expected/field_name_limit.html 2024-03-26 23:14:35 UTC (rev 9600)
+++ trunk/docutils/test/functional/expected/field_name_limit.html 2024-03-26 23:49:59 UTC (rev 9601)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.21b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21rc1: https://docutils.sourceforge.io/" />
<title>field_list.txt</title>
<link rel="stylesheet" href="../input/data/html4css1.css" type="text/css" />
</head>
Modified: trunk/docutils/test/functional/expected/footnotes_html5.html
===================================================================
--- trunk/docutils/test/functional/expected/footnotes_html5.html 2024-03-26 23:14:35 UTC (rev 9600)
+++ trunk/docutils/test/functional/expected/footnotes_html5.html 2024-03-26 23:49:59 UTC (rev 9601)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21rc1: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Test footnote and citation rendering</title>
<link rel="stylesheet" href="../input/data/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/math_experiments_mathml.html
===================================================================
--- trunk/docutils/test/functional/expected/math_experiments_mathml.html 2024-03-26 23:14:35 UTC (rev 9600)
+++ trunk/docutils/test/functional/expected/math_experiments_mathml.html 2024-03-26 23:49:59 UTC (rev 9601)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21rc1: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Math Conversion Tests</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/math_experiments_mathml_blahtexml.html
===================================================================
--- trunk/docutils/test/functional/expected/math_experiments_mathml_blahtexml.html 2024-03-26 23:14:35 UTC (rev 9600)
+++ trunk/docutils/test/functional/expected/math_experiments_mathml_blahtexml.html 2024-03-26 23:49:59 UTC (rev 9601)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21rc1: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Math Conversion Tests</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/math_experiments_mathml_pandoc.html
===================================================================
--- trunk/docutils/test/functional/expected/math_experiments_mathml_pandoc.html 2024-03-26 23:14:35 UTC (rev 9600)
+++ trunk/docutils/test/functional/expected/math_experiments_mathml_pandoc.html 2024-03-26 23:49:59 UTC (rev 9601)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21rc1: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Math Conversion Tests</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/math_experiments_mathml_ttm.html
===================================================================
--- trunk/docutils/test/functional/expected/math_experiments_mathml_ttm.html 2024-03-26 23:14:35 UTC (rev 9600)
+++ trunk/docutils/test/functional/expected/math_experiments_mathml_ttm.html 2024-03-26 23:49:59 UTC (rev 9601)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21rc1: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Math Conversion Tests</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/math_output_html.html
===================================================================
--- trunk/docutils/test/functional/expected/math_output_html.html 2024-03-26 23:14:35 UTC (rev 9600)
+++ trunk/docutils/test/functional/expected/math_output_html.html 2024-03-26 23:49:59 UTC (rev 9601)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.21b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21rc1: https://docutils.sourceforge.io/" />
<title>Mathematics</title>
<link rel="stylesheet" href="../input/data/html4css1.css" type="text/css" />
<link rel="stylesheet" href="../input/data/math.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/math_output_latex.html
===================================================================
--- trunk/docutils/test/functional/expected/math_output_latex.html 2024-03-26 23:14:35 UTC (rev 9600)
+++ trunk/docutils/test/functional/expected/math_output_latex.html 2024-03-26 23:49:59 UTC (rev 9601)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.21b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21rc1: https://docutils.sourceforge.io/" />
<title>Mathematics</title>
<link rel="stylesheet" href="../input/data/html4css1.css" type="text/css" />
</head>
Modified: trunk/docutils/test/functional/expected/math_output_mathjax.html
===================================================================
--- trunk/docutils/test/functional/expected/math_output_mathjax.html 2024-03-26 23:14:35 UTC (rev 9600)
+++ trunk/docutils/test/functional/expected/math_output_mathjax.html 2024-03-26 23:49:59 UTC (rev 9601)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.21b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21rc1: https://docutils.sourceforge.io/" />
<title>Mathematics</title>
<script type="text/javascript" src="/usr/share/javascript/mathjax/MathJax.js?config=TeX-AMS_CHTML"></script>
<link rel="stylesheet" href="../input/data/html4css1.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/math_output_mathml.html
===================================================================
--- trunk/docutils/test/functional/expected/math_output_mathml.html 2024-03-26 23:14:35 UTC (rev 9600)
+++ trunk/docutils/test/functional/expected/math_output_mathml.html 2024-03-26 23:49:59 UTC (rev 9601)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21rc1: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Mathematics</title>
<link rel="stylesheet" href="../input/data/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/mathematics_mathml.html
===================================================================
--- trunk/docutils/test/functional/expected/mathematics_mathml.html 2024-03-26 23:14:35 UTC (rev 9600)
+++ trunk/docutils/test/functional/expected/mathematics_mathml.html 2024-03-26 23:49:59 UTC (rev 9601)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21rc1: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>LaTeX syntax for mathematics</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/mathematics_mathml_blahtexml.html
===================================================================
--- trunk/docutils/test/functional/expected/mathematics_mathml_blahtexml.html 2024-03-26 23:14:35 UTC (rev 9600)
+++ trunk/docutils/test/functional/expected/mathematics_mathml_blahtexml.html 2024-03-26 23:49:59 UTC (rev 9601)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21rc1: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>LaTeX syntax for mathematics</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/mathematics_mathml_pandoc.html
===================================================================
--- trunk/docutils/test/functional/expected/mathematics_mathml_pandoc.html 2024-03-26 23:14:35 UTC (rev 9600)
+++ trunk/docutils/test/functional/expected/mathematics_mathml_pandoc.html 2024-03-26 23:49:59 UTC (rev 9601)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21rc1: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>LaTeX syntax for mathematics</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/mathematics_mathml_ttm.html
===================================================================
--- trunk/docutils/test/functional/expected/mathematics_mathml_ttm.html 2024-03-26 23:14:35 UTC (rev 9600)
+++ trunk/docutils/test/functional/expected/mathematics_mathml_ttm.html 2024-03-26 23:49:59 UTC (rev 9601)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21rc1: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>LaTeX syntax for mathematics</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/misc_rst_html4css1.html
===================================================================
--- trunk/docutils/test/functional/expected/misc_rst_html4css1.html 2024-03-26 23:14:35 UTC (rev 9600)
+++ trunk/docutils/test/functional/expected/misc_rst_html4css1.html 2024-03-26 23:49:59 UTC (rev 9601)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.21b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21rc1: https://docutils.sourceforge.io/" />
<title>Additional tests with html4css1</title>
<link rel="stylesheet" href="foo&bar.css" type="text/css" />
<link rel="stylesheet" href="../input/data/html4css1.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/misc_rst_html5.html
===================================================================
--- trunk/docutils/test/functional/expected/misc_rst_html5.html 2024-03-26 23:14:35 UTC (rev 9600)
+++ trunk/docutils/test/functional/expected/misc_rst_html5.html 2024-03-26 23:49:59 UTC (rev 9601)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21rc1: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Additional tests with HTML 5</title>
<link rel="stylesheet" href="../input/data/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/pep_html.html
===================================================================
--- trunk/docutils/test/functional/expected/pep_html.html 2024-03-26 23:14:35 UTC (rev 9600)
+++ trunk/docutils/test/functional/expected/pep_html.html 2024-03-26 23:49:59 UTC (rev 9601)
@@ -8,7 +8,7 @@
-->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <meta name="generator" content="Docutils 0.21b.dev: https://docutils.sourceforge.io/" />
+ <meta name="generator" content="Docutils 0.21rc1: https://docutils.sourceforge.io/" />
<title>PEP 100 - Test PEP</title>
<link rel="stylesheet" href="../input/data/html4css1.css" type="text/css" />
</head>
Modified: trunk/docutils/test/functional/expected/rst_html5_tuftig.html
===================================================================
--- trunk/docutils/test/functional/expected/rst_html5_tuftig.html 2024-03-26 23:14:35 UTC (rev 9600)
+++ trunk/docutils/test/functional/expected/rst_html5_tuftig.html 2024-03-26 23:49:59 UTC (rev 9601)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21rc1: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Special Features of the tuftig.css Stylesheet</title>
<link rel="stylesheet" href="../input/data/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/standalone_rst_docutils_xml.xml
===================================================================
--- trunk/docutils/test/functional/expected/standalone_rst_docutils_xml.xml 2024-03-26 23:14:35 UTC (rev 9600)
+++ trunk/docutils/test/functional/expected/standalone_rst_docutils_xml.xml 2024-03-26 23:49:59 UTC (rev 9601)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE document PUBLIC "+//IDN docutils.sourceforge.net//DTD Docutils Generic//EN//XML" "http://docutils.sourceforge.net/docs/ref/docutils.dtd">
-<!-- Generated by Docutils 0.21b.dev -->
+<!-- Generated by Docutils 0.21rc1 -->
<document ids="restructuredtext-test-document doctitle" names="restructuredtext\ test\ document doctitle" source="functional/input/standalone_rst_docutils_xml.txt" title="reStructuredText Test Document">
<title>reStructuredText Test Document</title>
<subtitle ids="examples-of-syntax-constructs subtitle" names="examples\ of\ syntax\ constructs subtitle">Examples of Syntax Constructs</subtitle>
Modified: trunk/docutils/test/functional/expected/standalone_rst_html4css1.html
===================================================================
--- trunk/docutils/test/functional/expected/standalone_rst_html4css1.html 2024-03-26 23:14:35 UTC (rev 9600)
+++ trunk/docutils/test/functional/expected/standalone_rst_html4css1.html 2024-03-26 23:49:59 UTC (rev 9601)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.21b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21rc1: https://docutils.sourceforge.io/" />
<meta content="reStructuredText, test, parser" name="keywords" />
<meta content="A test document, containing at least one example of each reStructuredText construct." lang="en" name="description" />
<meta name="author" content="David Goodger" />
Modified: trunk/docutils/test/functional/expected/standalone_rst_html5.html
===================================================================
--- trunk/docutils/test/functional/expected/standalone_rst_html5.html 2024-03-26 23:14:35 UTC (rev 9600)
+++ trunk/docutils/test/functional/expected/standalone_rst_html5.html 2024-03-26 23:49:59 UTC (rev 9601)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21rc1: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta content="reStructuredText, test, parser" name="keywords" />
<meta content="A test document, containing at least one example of each reStructuredText construct." lang="en" name="description" xml:lang="en" />
Modified: trunk/docutils/test/functional/expected/standalone_rst_s5_html_1.html
===================================================================
--- trunk/docutils/test/functional/expected/standalone_rst_s5_html_1.html 2024-03-26 23:14:35 UTC (rev 9600)
+++ trunk/docutils/test/functional/expected/standalone_rst_s5_html_1.html 2024-03-26 23:49:59 UTC (rev 9601)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.21b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21rc1: https://docutils.sourceforge.io/" />
<meta name="version" content="S5 1.1" />
<meta name="author" content="David Goodger" />
<meta name="date" content="2005-11-28" />
Modified: trunk/docutils/test/functional/expected/standalone_rst_s5_html_2.html
===================================================================
--- trunk/docutils/test/functional/expected/standalone_rst_s5_html_2.html 2024-03-26 23:14:35 UTC (rev 9600)
+++ trunk/docutils/test/functional/expected/standalone_rst_s5_html_2.html 2024-03-26 23:49:59 UTC (rev 9601)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.21b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21rc1: https://docutils.sourceforge.io/" />
<meta name="version" content="S5 1.1" />
<meta name="author" content="David Goodger" />
<meta name="date" content="2005-11-28" />
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <gr...@us...> - 2024-03-27 00:06:15
|
Revision: 9603
http://sourceforge.net/p/docutils/code/9603
Author: grubert
Date: 2024-03-27 00:06:08 +0000 (Wed, 27 Mar 2024)
Log Message:
-----------
version 0.21rc.dev
Modified Paths:
--------------
trunk/docutils/HISTORY.txt
trunk/docutils/docutils/__init__.py
trunk/docutils/test/functional/expected/buggy_mathml.html
trunk/docutils/test/functional/expected/buggy_mathml_blahtexml.html
trunk/docutils/test/functional/expected/buggy_mathml_pandoc.html
trunk/docutils/test/functional/expected/buggy_mathml_ttm.html
trunk/docutils/test/functional/expected/compact_lists.html
trunk/docutils/test/functional/expected/dangerous.html
trunk/docutils/test/functional/expected/field_name_limit.html
trunk/docutils/test/functional/expected/footnotes_html5.html
trunk/docutils/test/functional/expected/math_experiments_mathml.html
trunk/docutils/test/functional/expected/math_experiments_mathml_blahtexml.html
trunk/docutils/test/functional/expected/math_experiments_mathml_pandoc.html
trunk/docutils/test/functional/expected/math_experiments_mathml_ttm.html
trunk/docutils/test/functional/expected/math_output_html.html
trunk/docutils/test/functional/expected/math_output_latex.html
trunk/docutils/test/functional/expected/math_output_mathjax.html
trunk/docutils/test/functional/expected/math_output_mathml.html
trunk/docutils/test/functional/expected/mathematics_mathml.html
trunk/docutils/test/functional/expected/mathematics_mathml_blahtexml.html
trunk/docutils/test/functional/expected/mathematics_mathml_pandoc.html
trunk/docutils/test/functional/expected/mathematics_mathml_ttm.html
trunk/docutils/test/functional/expected/misc_rst_html4css1.html
trunk/docutils/test/functional/expected/misc_rst_html5.html
trunk/docutils/test/functional/expected/pep_html.html
trunk/docutils/test/functional/expected/rst_html5_tuftig.html
trunk/docutils/test/functional/expected/standalone_rst_docutils_xml.xml
trunk/docutils/test/functional/expected/standalone_rst_html4css1.html
trunk/docutils/test/functional/expected/standalone_rst_html5.html
trunk/docutils/test/functional/expected/standalone_rst_s5_html_1.html
trunk/docutils/test/functional/expected/standalone_rst_s5_html_2.html
Modified: trunk/docutils/HISTORY.txt
===================================================================
--- trunk/docutils/HISTORY.txt 2024-03-27 00:02:08 UTC (rev 9602)
+++ trunk/docutils/HISTORY.txt 2024-03-27 00:06:08 UTC (rev 9603)
@@ -13,7 +13,11 @@
.. contents::
+Changes since 0.21.rc1
+======================
+...
+
Release 0.21.rc1 (2024-03-26)
=============================
Modified: trunk/docutils/docutils/__init__.py
===================================================================
--- trunk/docutils/docutils/__init__.py 2024-03-27 00:02:08 UTC (rev 9602)
+++ trunk/docutils/docutils/__init__.py 2024-03-27 00:06:08 UTC (rev 9603)
@@ -54,7 +54,7 @@
__docformat__ = 'reStructuredText'
-__version__ = '0.21rc1'
+__version__ = '0.21rc2.dev'
"""Docutils version identifier (complies with PEP 440)::
major.minor[.micro][releaselevel[serial]][.dev]
@@ -119,8 +119,8 @@
minor=21,
micro=0,
releaselevel='candidate', # one of 'alpha', 'beta', 'candidate', 'final'
- serial=1, # pre-release number (0 for final releases and snapshots)
- release=True # True for official releases and pre-releases
+ serial=2, # pre-release number (0 for final releases and snapshots)
+ release=False # True for official releases and pre-releases
)
"""Comprehensive version information tuple.
Modified: trunk/docutils/test/functional/expected/buggy_mathml.html
===================================================================
--- trunk/docutils/test/functional/expected/buggy_mathml.html 2024-03-27 00:02:08 UTC (rev 9602)
+++ trunk/docutils/test/functional/expected/buggy_mathml.html 2024-03-27 00:06:08 UTC (rev 9603)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21rc1: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21rc2.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>buggy-maths</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/buggy_mathml_blahtexml.html
===================================================================
--- trunk/docutils/test/functional/expected/buggy_mathml_blahtexml.html 2024-03-27 00:02:08 UTC (rev 9602)
+++ trunk/docutils/test/functional/expected/buggy_mathml_blahtexml.html 2024-03-27 00:06:08 UTC (rev 9603)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21rc1: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21rc2.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>buggy-maths</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/buggy_mathml_pandoc.html
===================================================================
--- trunk/docutils/test/functional/expected/buggy_mathml_pandoc.html 2024-03-27 00:02:08 UTC (rev 9602)
+++ trunk/docutils/test/functional/expected/buggy_mathml_pandoc.html 2024-03-27 00:06:08 UTC (rev 9603)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21rc1: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21rc2.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>buggy-maths</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/buggy_mathml_ttm.html
===================================================================
--- trunk/docutils/test/functional/expected/buggy_mathml_ttm.html 2024-03-27 00:02:08 UTC (rev 9602)
+++ trunk/docutils/test/functional/expected/buggy_mathml_ttm.html 2024-03-27 00:06:08 UTC (rev 9603)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21rc1: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21rc2.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>buggy-maths</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/compact_lists.html
===================================================================
--- trunk/docutils/test/functional/expected/compact_lists.html 2024-03-27 00:02:08 UTC (rev 9602)
+++ trunk/docutils/test/functional/expected/compact_lists.html 2024-03-27 00:06:08 UTC (rev 9603)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.21rc1: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21rc2.dev: https://docutils.sourceforge.io/" />
<title>compact_lists.txt</title>
<link rel="stylesheet" href="../input/data/html4css1.css" type="text/css" />
</head>
Modified: trunk/docutils/test/functional/expected/dangerous.html
===================================================================
--- trunk/docutils/test/functional/expected/dangerous.html 2024-03-27 00:02:08 UTC (rev 9602)
+++ trunk/docutils/test/functional/expected/dangerous.html 2024-03-27 00:06:08 UTC (rev 9603)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.21rc1: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21rc2.dev: https://docutils.sourceforge.io/" />
<title>dangerous.txt</title>
<link rel="stylesheet" href="../input/data/html4css1.css" type="text/css" />
</head>
Modified: trunk/docutils/test/functional/expected/field_name_limit.html
===================================================================
--- trunk/docutils/test/functional/expected/field_name_limit.html 2024-03-27 00:02:08 UTC (rev 9602)
+++ trunk/docutils/test/functional/expected/field_name_limit.html 2024-03-27 00:06:08 UTC (rev 9603)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.21rc1: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21rc2.dev: https://docutils.sourceforge.io/" />
<title>field_list.txt</title>
<link rel="stylesheet" href="../input/data/html4css1.css" type="text/css" />
</head>
Modified: trunk/docutils/test/functional/expected/footnotes_html5.html
===================================================================
--- trunk/docutils/test/functional/expected/footnotes_html5.html 2024-03-27 00:02:08 UTC (rev 9602)
+++ trunk/docutils/test/functional/expected/footnotes_html5.html 2024-03-27 00:06:08 UTC (rev 9603)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21rc1: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21rc2.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Test footnote and citation rendering</title>
<link rel="stylesheet" href="../input/data/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/math_experiments_mathml.html
===================================================================
--- trunk/docutils/test/functional/expected/math_experiments_mathml.html 2024-03-27 00:02:08 UTC (rev 9602)
+++ trunk/docutils/test/functional/expected/math_experiments_mathml.html 2024-03-27 00:06:08 UTC (rev 9603)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21rc1: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21rc2.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Math Conversion Tests</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/math_experiments_mathml_blahtexml.html
===================================================================
--- trunk/docutils/test/functional/expected/math_experiments_mathml_blahtexml.html 2024-03-27 00:02:08 UTC (rev 9602)
+++ trunk/docutils/test/functional/expected/math_experiments_mathml_blahtexml.html 2024-03-27 00:06:08 UTC (rev 9603)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21rc1: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21rc2.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Math Conversion Tests</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/math_experiments_mathml_pandoc.html
===================================================================
--- trunk/docutils/test/functional/expected/math_experiments_mathml_pandoc.html 2024-03-27 00:02:08 UTC (rev 9602)
+++ trunk/docutils/test/functional/expected/math_experiments_mathml_pandoc.html 2024-03-27 00:06:08 UTC (rev 9603)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21rc1: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21rc2.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Math Conversion Tests</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/math_experiments_mathml_ttm.html
===================================================================
--- trunk/docutils/test/functional/expected/math_experiments_mathml_ttm.html 2024-03-27 00:02:08 UTC (rev 9602)
+++ trunk/docutils/test/functional/expected/math_experiments_mathml_ttm.html 2024-03-27 00:06:08 UTC (rev 9603)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21rc1: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21rc2.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Math Conversion Tests</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/math_output_html.html
===================================================================
--- trunk/docutils/test/functional/expected/math_output_html.html 2024-03-27 00:02:08 UTC (rev 9602)
+++ trunk/docutils/test/functional/expected/math_output_html.html 2024-03-27 00:06:08 UTC (rev 9603)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.21rc1: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21rc2.dev: https://docutils.sourceforge.io/" />
<title>Mathematics</title>
<link rel="stylesheet" href="../input/data/html4css1.css" type="text/css" />
<link rel="stylesheet" href="../input/data/math.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/math_output_latex.html
===================================================================
--- trunk/docutils/test/functional/expected/math_output_latex.html 2024-03-27 00:02:08 UTC (rev 9602)
+++ trunk/docutils/test/functional/expected/math_output_latex.html 2024-03-27 00:06:08 UTC (rev 9603)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.21rc1: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21rc2.dev: https://docutils.sourceforge.io/" />
<title>Mathematics</title>
<link rel="stylesheet" href="../input/data/html4css1.css" type="text/css" />
</head>
Modified: trunk/docutils/test/functional/expected/math_output_mathjax.html
===================================================================
--- trunk/docutils/test/functional/expected/math_output_mathjax.html 2024-03-27 00:02:08 UTC (rev 9602)
+++ trunk/docutils/test/functional/expected/math_output_mathjax.html 2024-03-27 00:06:08 UTC (rev 9603)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.21rc1: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21rc2.dev: https://docutils.sourceforge.io/" />
<title>Mathematics</title>
<script type="text/javascript" src="/usr/share/javascript/mathjax/MathJax.js?config=TeX-AMS_CHTML"></script>
<link rel="stylesheet" href="../input/data/html4css1.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/math_output_mathml.html
===================================================================
--- trunk/docutils/test/functional/expected/math_output_mathml.html 2024-03-27 00:02:08 UTC (rev 9602)
+++ trunk/docutils/test/functional/expected/math_output_mathml.html 2024-03-27 00:06:08 UTC (rev 9603)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21rc1: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21rc2.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Mathematics</title>
<link rel="stylesheet" href="../input/data/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/mathematics_mathml.html
===================================================================
--- trunk/docutils/test/functional/expected/mathematics_mathml.html 2024-03-27 00:02:08 UTC (rev 9602)
+++ trunk/docutils/test/functional/expected/mathematics_mathml.html 2024-03-27 00:06:08 UTC (rev 9603)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21rc1: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21rc2.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>LaTeX syntax for mathematics</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/mathematics_mathml_blahtexml.html
===================================================================
--- trunk/docutils/test/functional/expected/mathematics_mathml_blahtexml.html 2024-03-27 00:02:08 UTC (rev 9602)
+++ trunk/docutils/test/functional/expected/mathematics_mathml_blahtexml.html 2024-03-27 00:06:08 UTC (rev 9603)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21rc1: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21rc2.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>LaTeX syntax for mathematics</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/mathematics_mathml_pandoc.html
===================================================================
--- trunk/docutils/test/functional/expected/mathematics_mathml_pandoc.html 2024-03-27 00:02:08 UTC (rev 9602)
+++ trunk/docutils/test/functional/expected/mathematics_mathml_pandoc.html 2024-03-27 00:06:08 UTC (rev 9603)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21rc1: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21rc2.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>LaTeX syntax for mathematics</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/mathematics_mathml_ttm.html
===================================================================
--- trunk/docutils/test/functional/expected/mathematics_mathml_ttm.html 2024-03-27 00:02:08 UTC (rev 9602)
+++ trunk/docutils/test/functional/expected/mathematics_mathml_ttm.html 2024-03-27 00:06:08 UTC (rev 9603)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21rc1: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21rc2.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>LaTeX syntax for mathematics</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/misc_rst_html4css1.html
===================================================================
--- trunk/docutils/test/functional/expected/misc_rst_html4css1.html 2024-03-27 00:02:08 UTC (rev 9602)
+++ trunk/docutils/test/functional/expected/misc_rst_html4css1.html 2024-03-27 00:06:08 UTC (rev 9603)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.21rc1: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21rc2.dev: https://docutils.sourceforge.io/" />
<title>Additional tests with html4css1</title>
<link rel="stylesheet" href="foo&bar.css" type="text/css" />
<link rel="stylesheet" href="../input/data/html4css1.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/misc_rst_html5.html
===================================================================
--- trunk/docutils/test/functional/expected/misc_rst_html5.html 2024-03-27 00:02:08 UTC (rev 9602)
+++ trunk/docutils/test/functional/expected/misc_rst_html5.html 2024-03-27 00:06:08 UTC (rev 9603)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21rc1: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21rc2.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Additional tests with HTML 5</title>
<link rel="stylesheet" href="../input/data/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/pep_html.html
===================================================================
--- trunk/docutils/test/functional/expected/pep_html.html 2024-03-27 00:02:08 UTC (rev 9602)
+++ trunk/docutils/test/functional/expected/pep_html.html 2024-03-27 00:06:08 UTC (rev 9603)
@@ -8,7 +8,7 @@
-->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <meta name="generator" content="Docutils 0.21rc1: https://docutils.sourceforge.io/" />
+ <meta name="generator" content="Docutils 0.21rc2.dev: https://docutils.sourceforge.io/" />
<title>PEP 100 - Test PEP</title>
<link rel="stylesheet" href="../input/data/html4css1.css" type="text/css" />
</head>
Modified: trunk/docutils/test/functional/expected/rst_html5_tuftig.html
===================================================================
--- trunk/docutils/test/functional/expected/rst_html5_tuftig.html 2024-03-27 00:02:08 UTC (rev 9602)
+++ trunk/docutils/test/functional/expected/rst_html5_tuftig.html 2024-03-27 00:06:08 UTC (rev 9603)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21rc1: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21rc2.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Special Features of the tuftig.css Stylesheet</title>
<link rel="stylesheet" href="../input/data/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/standalone_rst_docutils_xml.xml
===================================================================
--- trunk/docutils/test/functional/expected/standalone_rst_docutils_xml.xml 2024-03-27 00:02:08 UTC (rev 9602)
+++ trunk/docutils/test/functional/expected/standalone_rst_docutils_xml.xml 2024-03-27 00:06:08 UTC (rev 9603)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE document PUBLIC "+//IDN docutils.sourceforge.net//DTD Docutils Generic//EN//XML" "http://docutils.sourceforge.net/docs/ref/docutils.dtd">
-<!-- Generated by Docutils 0.21rc1 -->
+<!-- Generated by Docutils 0.21rc2.dev -->
<document ids="restructuredtext-test-document doctitle" names="restructuredtext\ test\ document doctitle" source="functional/input/standalone_rst_docutils_xml.txt" title="reStructuredText Test Document">
<title>reStructuredText Test Document</title>
<subtitle ids="examples-of-syntax-constructs subtitle" names="examples\ of\ syntax\ constructs subtitle">Examples of Syntax Constructs</subtitle>
Modified: trunk/docutils/test/functional/expected/standalone_rst_html4css1.html
===================================================================
--- trunk/docutils/test/functional/expected/standalone_rst_html4css1.html 2024-03-27 00:02:08 UTC (rev 9602)
+++ trunk/docutils/test/functional/expected/standalone_rst_html4css1.html 2024-03-27 00:06:08 UTC (rev 9603)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.21rc1: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21rc2.dev: https://docutils.sourceforge.io/" />
<meta content="reStructuredText, test, parser" name="keywords" />
<meta content="A test document, containing at least one example of each reStructuredText construct." lang="en" name="description" />
<meta name="author" content="David Goodger" />
Modified: trunk/docutils/test/functional/expected/standalone_rst_html5.html
===================================================================
--- trunk/docutils/test/functional/expected/standalone_rst_html5.html 2024-03-27 00:02:08 UTC (rev 9602)
+++ trunk/docutils/test/functional/expected/standalone_rst_html5.html 2024-03-27 00:06:08 UTC (rev 9603)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21rc1: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21rc2.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta content="reStructuredText, test, parser" name="keywords" />
<meta content="A test document, containing at least one example of each reStructuredText construct." lang="en" name="description" xml:lang="en" />
Modified: trunk/docutils/test/functional/expected/standalone_rst_s5_html_1.html
===================================================================
--- trunk/docutils/test/functional/expected/standalone_rst_s5_html_1.html 2024-03-27 00:02:08 UTC (rev 9602)
+++ trunk/docutils/test/functional/expected/standalone_rst_s5_html_1.html 2024-03-27 00:06:08 UTC (rev 9603)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.21rc1: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21rc2.dev: https://docutils.sourceforge.io/" />
<meta name="version" content="S5 1.1" />
<meta name="author" content="David Goodger" />
<meta name="date" content="2005-11-28" />
Modified: trunk/docutils/test/functional/expected/standalone_rst_s5_html_2.html
===================================================================
--- trunk/docutils/test/functional/expected/standalone_rst_s5_html_2.html 2024-03-27 00:02:08 UTC (rev 9602)
+++ trunk/docutils/test/functional/expected/standalone_rst_s5_html_2.html 2024-03-27 00:06:08 UTC (rev 9603)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.21rc1: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21rc2.dev: https://docutils.sourceforge.io/" />
<meta name="version" content="S5 1.1" />
<meta name="author" content="David Goodger" />
<meta name="date" content="2005-11-28" />
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <gr...@us...> - 2024-04-03 17:29:39
|
Revision: 9610
http://sourceforge.net/p/docutils/code/9610
Author: grubert
Date: 2024-04-03 17:29:36 +0000 (Wed, 03 Apr 2024)
Log Message:
-----------
Put manual section in .TH in quotes.
Modified Paths:
--------------
trunk/docutils/HISTORY.txt
trunk/docutils/docutils/writers/manpage.py
trunk/docutils/test/functional/expected/standalone_rst_manpage.man
trunk/docutils/test/test_writers/test_manpage.py
Modified: trunk/docutils/HISTORY.txt
===================================================================
--- trunk/docutils/HISTORY.txt 2024-03-30 09:55:42 UTC (rev 9609)
+++ trunk/docutils/HISTORY.txt 2024-04-03 17:29:36 UTC (rev 9610)
@@ -177,6 +177,7 @@
* docutils/writers/manpage.py
+ - Put manual section in .TH in quotes.
- Skip footer to avoid the link to document source in the manpage.
- Add multiple definition list term support, see feature #60.
- Render reference, refid and refuri.
Modified: trunk/docutils/docutils/writers/manpage.py
===================================================================
--- trunk/docutils/docutils/writers/manpage.py 2024-03-30 09:55:42 UTC (rev 9609)
+++ trunk/docutils/docutils/writers/manpage.py 2024-04-03 17:29:36 UTC (rev 9610)
@@ -379,7 +379,7 @@
self._list_char.pop()
def header(self):
- th = (".TH \"%(title_upper)s\" %(manual_section)s"
+ th = (".TH \"%(title_upper)s\" \"%(manual_section)s\""
" \"%(date)s\" \"%(version)s\"") % self._docinfo
if self._docinfo["manual_group"]:
th += " \"%(manual_group)s\"" % self._docinfo
Modified: trunk/docutils/test/functional/expected/standalone_rst_manpage.man
===================================================================
--- trunk/docutils/test/functional/expected/standalone_rst_manpage.man 2024-03-30 09:55:42 UTC (rev 9609)
+++ trunk/docutils/test/functional/expected/standalone_rst_manpage.man 2024-04-03 17:29:36 UTC (rev 9610)
@@ -27,7 +27,7 @@
.\" new: \\n[rst2man-indent\\n[rst2man-indent-level]]
.in \\n[rst2man-indent\\n[rst2man-indent-level]]u
..
-.TH "RST2MAN" 1 "2006-10-22" "0.1" "text processing"
+.TH "RST2MAN" "1" "2006-10-22" "0.1" "text processing"
.SH NAME
rst2man \- generate unix manpages from reStructured text
.\" TODO: authors and author with name <email>
Modified: trunk/docutils/test/test_writers/test_manpage.py
===================================================================
--- trunk/docutils/test/test_writers/test_manpage.py 2024-03-30 09:55:42 UTC (rev 9609)
+++ trunk/docutils/test/test_writers/test_manpage.py 2024-04-03 17:29:36 UTC (rev 9610)
@@ -73,7 +73,7 @@
["",
r""".\" Man page generated from reStructuredText.
.
-""" + indend_macros + """.TH "" "" ""
+""" + indend_macros + """.TH "" "" "" ""
.SH NAME
\\- \n\
.\\" Generated by docutils manpage writer.
@@ -88,7 +88,7 @@
""",
r""".\" Man page generated from reStructuredText.
.
-""" + indend_macros + """.TH "HELLO, WORLD." "" ""
+""" + indend_macros + """.TH "HELLO, WORLD." "" "" ""
.SH NAME
Hello, world. \\- \n\
.sp
@@ -165,7 +165,7 @@
""",
r""".\" Man page generated from reStructuredText.
.
-""" + indend_macros + r""".TH "SIMPLE" 1 "2009-08-05" "0.1" "text processing"
+""" + indend_macros + r""".TH "SIMPLE" "1" "2009-08-05" "0.1" "text processing"
.SH NAME
simple \- The way to go
.SH SYNOPSIS
@@ -246,7 +246,7 @@
\'\\" t
.\\" Man page generated from reStructuredText.
.
-''' + indend_macros + '''.TH "" "" ""
+''' + indend_macros + '''.TH "" "" "" ""
.SH NAME
\\- \n\
.INDENT 0.0
@@ -301,7 +301,7 @@
"""\
.\\" Man page generated from reStructuredText.
.
-""" + indend_macros + """.TH "" "" ""
+""" + indend_macros + """.TH "" "" "" ""
.SH NAME
\\- \n\
optin group with dot as group item
@@ -358,7 +358,7 @@
'''\
.\\" Man page generated from reStructuredText.
.
-''' + indend_macros + '''.TH "DEFINITION LIST TEST" "" ""
+''' + indend_macros + '''.TH "DEFINITION LIST TEST" "" "" ""
.SH NAME
Definition List Test \\- \n\
''' + '''.SS Abstract
@@ -387,7 +387,7 @@
""",
r""".\" Man page generated from reStructuredText.
.
-""" + indend_macros + """.TH "" "" ""
+""" + indend_macros + """.TH "" "" "" ""
.SH NAME
\\- \n\
.INDENT 0.0
@@ -416,7 +416,7 @@
""",
r""".\" Man page generated from reStructuredText.
.
-""" + indend_macros + """.TH "" "" ""
+""" + indend_macros + """.TH "" "" "" ""
.SH NAME
\\- \n\
.IP [docutils] 5
@@ -435,7 +435,7 @@
""",
r""".\" Man page generated from reStructuredText.
.
-""" + indend_macros + """.TH "" "" ""
+""" + indend_macros + """.TH "" "" "" ""
.SH NAME
\\- \n\
some rubric
@@ -458,7 +458,7 @@
""",
r""".\" Man page generated from reStructuredText.
.
-""" + indend_macros + """.TH "" "" ""
+""" + indend_macros + """.TH "" "" "" ""
.SH NAME
\\- \n\
.INDENT 0.0
@@ -491,7 +491,7 @@
""",
r""".\" Man page generated from reStructuredText.
.
-""" + indend_macros + r""".TH "PAGE TITLE" 3 "3/Nov/2022" "0.0" "the books"
+""" + indend_macros + r""".TH "PAGE TITLE" "3" "3/Nov/2022" "0.0" "the books"
.SH NAME
page title \- in short
.sp
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <mi...@us...> - 2024-04-06 13:27:54
|
Revision: 9613
http://sourceforge.net/p/docutils/code/9613
Author: milde
Date: 2024-04-06 13:27:52 +0000 (Sat, 06 Apr 2024)
Log Message:
-----------
Fix doctree element attribute datatype definition and description.
Local tests revealed inconsistencies and omissions in the DTD
and its documentation.
Use aliases in doctree.txt for links where the id would clash with the ids
of element sections (e.g. `document`_ -> `document <rST document_>`__).
Modified Paths:
--------------
trunk/docutils/HISTORY.txt
trunk/docutils/docs/ref/doctree.txt
trunk/docutils/docs/ref/docutils.dtd
trunk/docutils/docs/ref/rst/restructuredtext.txt
trunk/docutils/docutils/transforms/references.py
Modified: trunk/docutils/HISTORY.txt
===================================================================
--- trunk/docutils/HISTORY.txt 2024-04-05 23:07:13 UTC (rev 9612)
+++ trunk/docutils/HISTORY.txt 2024-04-06 13:27:52 UTC (rev 9613)
@@ -16,8 +16,15 @@
Changes since 0.21.rc1
======================
-...
+* docs/ref/docutils.dtd
+ - Reference names (``%refname.type`` and ``%refnames.type``)
+ are whitespace-normalized but **not** always downcased.
+ - The <topic> element uses the "depth" and "local" attributes to store
+ "contents" directive options when used as placeholder for a generated
+ table of contents (LaTeX writers with `use_latex_toc`_ setting).
+
+
Release 0.21.rc1 (2024-03-26)
=============================
Modified: trunk/docutils/docs/ref/doctree.txt
===================================================================
--- trunk/docutils/docs/ref/doctree.txt 2024-04-05 23:07:13 UTC (rev 9612)
+++ trunk/docutils/docs/ref/doctree.txt 2024-04-06 13:27:52 UTC (rev 9613)
@@ -1302,12 +1302,14 @@
Examples
--------
-Docinfo_ is represented in reStructuredText by a `\<field_list>`_ in a
-bibliographic context: the first visible element of a `\<document>`_,
-after any document `\<title>`_/`\<subtitle>`_.
+`Bibliographic data`_ is represented in reStructuredText by a
+`field list <rST field list_>`__ as the first visible element of a
+`document <rST document>`__ (after optional document title and subtitle).
The field list is transformed into a <docinfo> element and its children
-by the `frontmatter.DocInfo` transform_. Source::
+by the `frontmatter.DocInfo`_ transform. [#abstract-dedication]_
+Source::
+
Docinfo Example
===============
@@ -1352,10 +1354,15 @@
See `\<field_list>`_ for an example in a non-bibliographic context. Also
see the individual examples for the various `bibliographic elements`_.
-.. _docinfo:
+.. [#abstract-dedication] Exceptions are the fields "abstract" and
+ "dedication" that are transformed to `\<topic>`_ elements adjacent to
+ the <docinfo>.
+
+.. _bibliographic data:
.. _bibliographic fields: rst/restructuredtext.html#bibliographic-fields
+.. _rST document: rst/restructuredtext.html#document
+.. _rST field list: rst/restructuredtext.html#field-lists
-
<doctest_block>
===============
@@ -1432,8 +1439,10 @@
:Parents: The <document> element has no parents.
:Children: <document> elements may contain `structural subelements`_,
- `structural elements`_, and `body elements`_::
+ `structural elements`_, and `body elements`_
+ .. parsed-literal::
+
( (title, subtitle?)?,
decoration?,
(docinfo, transition?)?,
@@ -1712,7 +1721,7 @@
Examples
--------
-A reStructuredText `field list`_::
+A reStructuredText `field list <rST field list_>`__::
:Author: Me
:Version: 1
@@ -1748,7 +1757,6 @@
integer
.. _directive: rst/restructuredtext.html#directives
-.. _field list: rst/restructuredtext.html#field-lists
<field_name>
@@ -3581,6 +3589,9 @@
`\<rubric>`_ element to get an informal heading inside a <table>
or a <list>, or inside another <topic>.
+Docutils uses the <topic> element also for a generated `table of contents`_,
+and the "abstract" and "dedication" `bibliographic fields`_.
+
Details
-------
@@ -3599,7 +3610,8 @@
(title?, (%body.elements;)+)
-:Attributes: The <topic> element contains only the `common attributes`_.
+:Attributes: The <topic> element contains the `common attributes`_ plus
+ depth_ and local_.
:Parameter Entities: The `%structure.model;`_ parameter entity
directly includes <topic>.
@@ -3622,6 +3634,8 @@
Body.
.. _"topic" directive: rst/directives.html#topic
+.. _"contents" directive:
+.. _table of contents: rst/directives.html#table-of-contents
<transition>
@@ -3839,7 +3853,7 @@
``%classnames.type;`` is used in the `classes`_ attribute.
_`refname.type`
- A normalized_ `reference name`_. Resolves to CDATA (in contrast to
+ A `reference name`_. Resolves to CDATA (in contrast to
NMTOKENS, `reference names`_ may consist of any text).
``%refname.type;`` is used in the `name`_ and `refname`_ attributes.
@@ -3953,8 +3967,8 @@
Attribute type: `CDATA`_ (str). Default value: none (inherit).
-The ``align`` attribute is used in the `\<figure>`_,
-`\<image>`_, `\<table>`_, and `\<tgroup>`_ elements
+The ``align`` attribute is used in the `\<figure>`_,
+`\<image>`_, `\<table>`_, and `\<tgroup>`_ elements
(via the `%align-h.att;`_ and `%align-hv.att;`_ parameter entities).
@@ -4062,7 +4076,7 @@
interpreted as “pt” if neither a proportion nor a fixed unit is
specified.
-__
+__
.. important::
Currently, Docutils only allows unitless integers in the ``colwidth``
@@ -4079,7 +4093,14 @@
separating it from the `\<option_string>`_ (typically either "=" or " ")
or the text between option arguments (typically either "," or " ").
+``depth``
+=========
+Attribute type: number_ (int). Default value: none.
+
+The ``depth`` attribute may be used in a `\<topic>`_ element generated by
+the `"contents" directive`_ to hold the value of the "depth" option.
+
``dupnames``
============
@@ -4150,6 +4171,15 @@
The ``line`` attribute is used in the `\<system_message>`_ element.
+``local``
+=========
+
+Attribute type: yesorno_ (int). Default value: none.
+
+The ``local`` attribute may be used in a `\<topic>` element generated by
+the `"contents" directive`_ to hold the value of the "local" option.
+
+
``ltrim``
=========
@@ -4199,12 +4229,16 @@
``name``
=========
-Attribute type: `refname.type`_ (str). Default value: none.
+Attribute type: `refname.type`_ or `NMTOKEN`_ (str).
+Default value: none.
-The ``name`` attribute is used in the `\<reference>`_ element.
+The ``name`` attribute in the `\<reference>`_ element accepts
+`refname.type`_ values.
+Case is preserved (but ignored when resolving reference names).
-The equally named attribute of the `\<meta>`_ element contains a
-"metadata name".
+The ``name`` attribute in the `\<meta>`_ element accepts `NMTOKEN`_ values.
+The output format may limit valid values to a set of keywords
+(EnumeratedType_).
``names``
@@ -4213,8 +4247,8 @@
Attribute type: `refnames.type`_ (list[str]). Default value: none.
The ``names`` attribute is a space-separated list containing
-`normalized`_ `reference names`_ of an element. Whitespace inside a
-name is backslash escaped.
+`reference names`_ of an element.
+Whitespace inside a name is backslash escaped.
Each name in the list must be unique; if there are name conflicts
(two or more elements want to the same name), the contents will be
transferred to the `dupnames`_ attribute on the duplicate elements.
@@ -4229,8 +4263,6 @@
``names`` is one of the `common attributes`_, shared by all
Docutils elements.
-.. _normalized:
- rst/restructuredtext.html#normalized-reference-names
.. _internal hyperlink targets:
rst/restructuredtext.html#internal-hyperlink-targets
.. _name option: rst/directives.html#name
@@ -4251,7 +4283,7 @@
The ``refid`` attribute contains a reference to an `identifier key`_
-``refid`` is used by the `\<citation_reference>`_, `\<footnote_reference>`_,
+``refid`` is used by the `\<citation_reference>`_, `\<footnote_reference>`_,
`\<problematic>`_, `\<reference>`_, `\<target>`_, and `\<title>`_ elements
(via the `%refid.att;`_ and `%reference.atts;`_ parameter entities).
@@ -4780,8 +4812,8 @@
.. _transform:
.. _transforms: ../api/transforms.html
+.. _frontmatter.DocInfo: ../api/transforms.html#docinfo
-
..
Local Variables:
Modified: trunk/docutils/docs/ref/docutils.dtd
===================================================================
--- trunk/docutils/docs/ref/docutils.dtd 2024-04-05 23:07:13 UTC (rev 9612)
+++ trunk/docutils/docs/ref/docutils.dtd 2024-04-06 13:27:52 UTC (rev 9613)
@@ -57,8 +57,9 @@
The CDATA type is used because a `reference name` may consist of any text.
-`Normalization` implies downcasing and replacing runs of whitespace with
-single space characters. -->
+"Normalization" implies replacing runs of whitespace with single space
+characters. Matching substitution references to definitions is case-sensitive
+but forgiving. Resolving other cross references ignores case. -->
<!ENTITY % refname.type "CDATA">
<!-- A space-separated list of `reference names`.
@@ -77,7 +78,7 @@
<!-- A reference to an `identifier key` in another element's `ids` attribute.
The NMTOKEN type is used, because Docutils `identifier keys` do not use the
-``ID`` attribute type, as required by the `IDREF Validity constraint`_ -->
+``ID`` attribute type, as required by the `IDREF Validity constraint`_. -->
<!ENTITY % idref.type "NMTOKEN">
<!-- A list of references to `identifier keys` in other elements. -->
@@ -360,7 +361,10 @@
<!ATTLIST section %basic.atts;>
<!ELEMENT topic (title?, (%body.elements;)+)>
-<!ATTLIST topic %basic.atts;>
+<!ATTLIST topic
+ %basic.atts;
+ depth %number; #IMPLIED
+ local %yesorno; #IMPLIED>
<!ELEMENT sidebar (title?, subtitle?, (%body.elements; | topic)+)>
<!ATTLIST sidebar %basic.atts;>
@@ -468,7 +472,7 @@
that is typeset as mathematical notation (display formula).
-->
<!ELEMENT math_block (#PCDATA)>
-<!ATTLIST math_block
+<!ATTLIST math_block
%basic.atts;
%fixedspace.att;>
Modified: trunk/docutils/docs/ref/rst/restructuredtext.txt
===================================================================
--- trunk/docutils/docs/ref/rst/restructuredtext.txt 2024-04-05 23:07:13 UTC (rev 9612)
+++ trunk/docutils/docs/ref/rst/restructuredtext.txt 2024-04-06 13:27:52 UTC (rev 9613)
@@ -438,7 +438,7 @@
a single space), and
- case is normalized (all alphabetic characters are converted to
- lowercase).
+ lowercase). [#case-forgiving]_
For example, the following `hyperlink references`_ are equivalent::
@@ -457,7 +457,13 @@
footnote, citation) may be processed and rendered differently. Some
care should be taken to avoid reference name conflicts.
+`Substitution references`_ and `substitution definitions`_ use a
+different namespace.
+.. [#case-forgiving] Matching `substitution references`_ to
+ `substitution definitions`_ is case-sensitive but forgiving.
+
+
Document Structure
==================
Modified: trunk/docutils/docutils/transforms/references.py
===================================================================
--- trunk/docutils/docutils/transforms/references.py 2024-04-05 23:07:13 UTC (rev 9612)
+++ trunk/docutils/docutils/transforms/references.py 2024-04-06 13:27:52 UTC (rev 9613)
@@ -25,7 +25,7 @@
<paragraph>
This is a test.
- PropagateTargets propagates the ids and names of the internal
+ `PropagateTargets` propagates the ids and names of the internal
targets preceding the paragraph to the paragraph itself::
<target refid="internal1">
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <mi...@us...> - 2024-04-06 13:28:09
|
Revision: 9614
http://sourceforge.net/p/docutils/code/9614
Author: milde
Date: 2024-04-06 13:28:00 +0000 (Sat, 06 Apr 2024)
Log Message:
-----------
Don't drop `<field>` identifiers when writing HTML.
A field-list's `<field>` elements are skipped in HTML output.
Transfer their `id` attribute to the respective `<field_name>`
child element to allow cross-references to field-list items.
Modified Paths:
--------------
trunk/docutils/HISTORY.txt
trunk/docutils/docutils/writers/_html_base.py
Modified: trunk/docutils/HISTORY.txt
===================================================================
--- trunk/docutils/HISTORY.txt 2024-04-06 13:27:52 UTC (rev 9613)
+++ trunk/docutils/HISTORY.txt 2024-04-06 13:28:00 UTC (rev 9614)
@@ -24,7 +24,13 @@
"contents" directive options when used as placeholder for a generated
table of contents (LaTeX writers with `use_latex_toc`_ setting).
+* docutils/writers/_html_base.py
+ - <field> elements are skipped in HTML output. Transfer `id` attribute
+ to the respective <field_name> child element to allow cross-references
+ to field-list items.
+
+
Release 0.21.rc1 (2024-03-26)
=============================
Modified: trunk/docutils/docutils/writers/_html_base.py
===================================================================
--- trunk/docutils/docutils/writers/_html_base.py 2024-04-06 13:27:52 UTC (rev 9613)
+++ trunk/docutils/docutils/writers/_html_base.py 2024-04-06 13:28:00 UTC (rev 9614)
@@ -1040,7 +1040,11 @@
self.body.append('</dl>\n')
def visit_field(self, node):
- pass
+ # Insert children (<field_name> and <field_body>) directly.
+ # Transfer "id" attribute to the <field_name> child node.
+ for child in node:
+ if isinstance(child, nodes.field_name):
+ child['ids'].extend(node['ids'])
def depart_field(self, node):
pass
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <mi...@us...> - 2024-04-06 13:28:19
|
Revision: 9615
http://sourceforge.net/p/docutils/code/9615
Author: milde
Date: 2024-04-06 13:28:15 +0000 (Sat, 06 Apr 2024)
Log Message:
-----------
No additional margins for line-blocks in the HTML5 stylesheets.
`line-blocks` are Docutils alternative to hard line breaks.
They should use just the standard inter-line space.
Modified Paths:
--------------
trunk/docutils/HISTORY.txt
trunk/docutils/docutils/writers/html5_polyglot/plain.css
trunk/docutils/docutils/writers/html5_polyglot/responsive.css
Modified: trunk/docutils/HISTORY.txt
===================================================================
--- trunk/docutils/HISTORY.txt 2024-04-06 13:28:00 UTC (rev 9614)
+++ trunk/docutils/HISTORY.txt 2024-04-06 13:28:15 UTC (rev 9615)
@@ -30,7 +30,11 @@
to the respective <field_name> child element to allow cross-references
to field-list items.
+* docutils/writers/html5_polyglot/\*.css
+ - No additional margins for line-blocks.
+
+
Release 0.21.rc1 (2024-03-26)
=============================
Modified: trunk/docutils/docutils/writers/html5_polyglot/plain.css
===================================================================
--- trunk/docutils/docutils/writers/html5_polyglot/plain.css 2024-04-06 13:28:00 UTC (rev 9614)
+++ trunk/docutils/docutils/writers/html5_polyglot/plain.css 2024-04-06 13:28:15 UTC (rev 9615)
@@ -72,7 +72,6 @@
/* vertical space (parskip) */
p, ol, ul, dl, li,
-div.line-block,
.footnote, .citation,
div > math,
table {
Modified: trunk/docutils/docutils/writers/html5_polyglot/responsive.css
===================================================================
--- trunk/docutils/docutils/writers/html5_polyglot/responsive.css 2024-04-06 13:28:00 UTC (rev 9614)
+++ trunk/docutils/docutils/writers/html5_polyglot/responsive.css 2024-04-06 13:28:15 UTC (rev 9615)
@@ -51,7 +51,6 @@
/* Vertical Space (Parskip) */
p, ol, ul, dl, li,
-div.line-block,
.topic,
.footnote, .citation,
div > math,
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <mi...@us...> - 2024-04-09 15:18:34
|
Revision: 9619
http://sourceforge.net/p/docutils/code/9619
Author: milde
Date: 2024-04-09 15:18:31 +0000 (Tue, 09 Apr 2024)
Log Message:
-----------
Announce change to "refname" doctree element handling.
In Docutils 1.0, we will
keep case information of in "refname" attributes the Document Tree
and remove the "name" attribute of the `<reference>` element.
* As before, resolving cross-references for hyperlinks, footnotes, and citations ignores case.
* Custom "unknown_reference_resolvers" (added by 3rd party code, e.g., the MaoinMoin wiki)
have access to the original casing of the reference name without the need for a separate attribute.
Modified Paths:
--------------
trunk/docutils/RELEASE-NOTES.txt
trunk/docutils/docs/ref/doctree.txt
trunk/docutils/docs/ref/docutils.dtd
Modified: trunk/docutils/RELEASE-NOTES.txt
===================================================================
--- trunk/docutils/RELEASE-NOTES.txt 2024-04-09 13:50:34 UTC (rev 9618)
+++ trunk/docutils/RELEASE-NOTES.txt 2024-04-09 15:18:31 UTC (rev 9619)
@@ -46,6 +46,16 @@
https://packaging.python.org/en/latest/specifications/entry-points/
+Document Tree / Docutils DTD
+----------------------------
+
+* Do not lowercase reference names in the `refname attribute`_
+ (matching hyperlinks, footnotes, and citations remains case insensitive),
+ and drop the ``name`` attribute from <reference> nodes
+ in Docutils 1.0.
+
+.. _refname attribute: docs/ref/doctree.html#refname
+
`Input encoding`_
-----------------
Modified: trunk/docutils/docs/ref/doctree.txt
===================================================================
--- trunk/docutils/docs/ref/doctree.txt 2024-04-09 13:50:34 UTC (rev 9618)
+++ trunk/docutils/docs/ref/doctree.txt 2024-04-09 15:18:31 UTC (rev 9619)
@@ -4143,18 +4143,19 @@
``name``
=========
-Attribute type: `%refname.type;`_ or `NMTOKEN`_.
+Attribute type: `NMTOKEN`_ or `CDATA`_.
Default value: none.
-The ``name`` attribute in the `\<reference>`_ element accepts
-`%refname.type;`_ values.
-Case is preserved (but ignored when resolving reference names).
-
The ``name`` attribute in the `\<meta>`_ element accepts `NMTOKEN`_ values.
The output format may limit valid values to a set of keywords
(EnumeratedType_).
+The ``name`` attribute in the `\<reference>`_ element holds the
+`reference name`_ of the referenced element. Whitespace is normalized
+but case is preserved. The attribute will no longer be used with
+<reference> elements in Docutils 1.0.
+
``names``
=========
Modified: trunk/docutils/docs/ref/docutils.dtd
===================================================================
--- trunk/docutils/docs/ref/docutils.dtd 2024-04-09 13:50:34 UTC (rev 9618)
+++ trunk/docutils/docs/ref/docutils.dtd 2024-04-09 15:18:31 UTC (rev 9619)
@@ -635,7 +635,8 @@
<!ELEMENT math (#PCDATA)>
<!ATTLIST math %basic.atts;>
-<!-- Can also be a body element, when it contains an "image" element. -->
+<!-- Can also be a body element, when it contains an "image" element.
+ "name" will be removed from the ATTLIST in Docutils 1.0 -->
<!ELEMENT reference %text.model;>
<!ATTLIST reference
name CDATA #IMPLIED
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <gr...@us...> - 2024-04-09 18:03:17
|
Revision: 9621
http://sourceforge.net/p/docutils/code/9621
Author: grubert
Date: 2024-04-09 18:03:15 +0000 (Tue, 09 Apr 2024)
Log Message:
-----------
Release 0.21
Modified Paths:
--------------
trunk/docutils/HISTORY.txt
trunk/docutils/README.txt
trunk/docutils/RELEASE-NOTES.txt
trunk/docutils/docutils/__init__.py
trunk/docutils/test/functional/expected/buggy_mathml.html
trunk/docutils/test/functional/expected/buggy_mathml_blahtexml.html
trunk/docutils/test/functional/expected/buggy_mathml_pandoc.html
trunk/docutils/test/functional/expected/buggy_mathml_ttm.html
trunk/docutils/test/functional/expected/compact_lists.html
trunk/docutils/test/functional/expected/dangerous.html
trunk/docutils/test/functional/expected/field_name_limit.html
trunk/docutils/test/functional/expected/footnotes_html5.html
trunk/docutils/test/functional/expected/math_experiments_mathml.html
trunk/docutils/test/functional/expected/math_experiments_mathml_blahtexml.html
trunk/docutils/test/functional/expected/math_experiments_mathml_pandoc.html
trunk/docutils/test/functional/expected/math_experiments_mathml_ttm.html
trunk/docutils/test/functional/expected/math_output_html.html
trunk/docutils/test/functional/expected/math_output_latex.html
trunk/docutils/test/functional/expected/math_output_mathjax.html
trunk/docutils/test/functional/expected/math_output_mathml.html
trunk/docutils/test/functional/expected/mathematics_mathml.html
trunk/docutils/test/functional/expected/mathematics_mathml_blahtexml.html
trunk/docutils/test/functional/expected/mathematics_mathml_pandoc.html
trunk/docutils/test/functional/expected/mathematics_mathml_ttm.html
trunk/docutils/test/functional/expected/misc_rst_html4css1.html
trunk/docutils/test/functional/expected/misc_rst_html5.html
trunk/docutils/test/functional/expected/pep_html.html
trunk/docutils/test/functional/expected/rst_html5_tuftig.html
trunk/docutils/test/functional/expected/standalone_rst_docutils_xml.xml
trunk/docutils/test/functional/expected/standalone_rst_html4css1.html
trunk/docutils/test/functional/expected/standalone_rst_html5.html
trunk/docutils/test/functional/expected/standalone_rst_s5_html_1.html
trunk/docutils/test/functional/expected/standalone_rst_s5_html_2.html
Modified: trunk/docutils/HISTORY.txt
===================================================================
--- trunk/docutils/HISTORY.txt 2024-04-09 15:27:32 UTC (rev 9620)
+++ trunk/docutils/HISTORY.txt 2024-04-09 18:03:15 UTC (rev 9621)
@@ -14,8 +14,8 @@
.. contents::
-Release 0.21 (unpublished)
-==========================
+Release 0.21 (2024-04-09)
+=========================
* General
Modified: trunk/docutils/README.txt
===================================================================
--- trunk/docutils/README.txt 2024-04-09 15:27:32 UTC (rev 9620)
+++ trunk/docutils/README.txt 2024-04-09 18:03:15 UTC (rev 9621)
@@ -1,8 +1,8 @@
.. include:: docs/header0.txt
-===========================
- README: Docutils 0.21.rc1
-===========================
+=======================
+ README: Docutils 0.21
+=======================
:Author: David Goodger
:Contact: go...@py...
Modified: trunk/docutils/RELEASE-NOTES.txt
===================================================================
--- trunk/docutils/RELEASE-NOTES.txt 2024-04-09 15:27:32 UTC (rev 9620)
+++ trunk/docutils/RELEASE-NOTES.txt 2024-04-09 18:03:15 UTC (rev 9621)
@@ -198,8 +198,8 @@
.. _buildhtml.py: docs/user/tools.html#buildhtml-py
-Release 0.21.rc1 (2024-03-26)
-=============================
+Release 0.21 (2024-04-09)
+=========================
* General:
Modified: trunk/docutils/docutils/__init__.py
===================================================================
--- trunk/docutils/docutils/__init__.py 2024-04-09 15:27:32 UTC (rev 9620)
+++ trunk/docutils/docutils/__init__.py 2024-04-09 18:03:15 UTC (rev 9621)
@@ -54,7 +54,7 @@
__docformat__ = 'reStructuredText'
-__version__ = '0.21rc2.dev'
+__version__ = '0.21'
"""Docutils version identifier (complies with PEP 440)::
major.minor[.micro][releaselevel[serial]][.dev]
@@ -118,9 +118,9 @@
major=0,
minor=21,
micro=0,
- releaselevel='candidate', # one of 'alpha', 'beta', 'candidate', 'final'
- serial=2, # pre-release number (0 for final releases and snapshots)
- release=False # True for official releases and pre-releases
+ releaselevel='final', # one of 'alpha', 'beta', 'candidate', 'final'
+ serial=0, # pre-release number (0 for final releases and snapshots)
+ release=True # True for official releases and pre-releases
)
"""Comprehensive version information tuple.
Modified: trunk/docutils/test/functional/expected/buggy_mathml.html
===================================================================
--- trunk/docutils/test/functional/expected/buggy_mathml.html 2024-04-09 15:27:32 UTC (rev 9620)
+++ trunk/docutils/test/functional/expected/buggy_mathml.html 2024-04-09 18:03:15 UTC (rev 9621)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21rc2.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>buggy-maths</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/buggy_mathml_blahtexml.html
===================================================================
--- trunk/docutils/test/functional/expected/buggy_mathml_blahtexml.html 2024-04-09 15:27:32 UTC (rev 9620)
+++ trunk/docutils/test/functional/expected/buggy_mathml_blahtexml.html 2024-04-09 18:03:15 UTC (rev 9621)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21rc2.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>buggy-maths</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/buggy_mathml_pandoc.html
===================================================================
--- trunk/docutils/test/functional/expected/buggy_mathml_pandoc.html 2024-04-09 15:27:32 UTC (rev 9620)
+++ trunk/docutils/test/functional/expected/buggy_mathml_pandoc.html 2024-04-09 18:03:15 UTC (rev 9621)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21rc2.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>buggy-maths</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/buggy_mathml_ttm.html
===================================================================
--- trunk/docutils/test/functional/expected/buggy_mathml_ttm.html 2024-04-09 15:27:32 UTC (rev 9620)
+++ trunk/docutils/test/functional/expected/buggy_mathml_ttm.html 2024-04-09 18:03:15 UTC (rev 9621)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21rc2.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>buggy-maths</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/compact_lists.html
===================================================================
--- trunk/docutils/test/functional/expected/compact_lists.html 2024-04-09 15:27:32 UTC (rev 9620)
+++ trunk/docutils/test/functional/expected/compact_lists.html 2024-04-09 18:03:15 UTC (rev 9621)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.21rc2.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21: https://docutils.sourceforge.io/" />
<title>compact_lists.txt</title>
<link rel="stylesheet" href="../input/data/html4css1.css" type="text/css" />
</head>
Modified: trunk/docutils/test/functional/expected/dangerous.html
===================================================================
--- trunk/docutils/test/functional/expected/dangerous.html 2024-04-09 15:27:32 UTC (rev 9620)
+++ trunk/docutils/test/functional/expected/dangerous.html 2024-04-09 18:03:15 UTC (rev 9621)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.21rc2.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21: https://docutils.sourceforge.io/" />
<title>dangerous.txt</title>
<link rel="stylesheet" href="../input/data/html4css1.css" type="text/css" />
</head>
Modified: trunk/docutils/test/functional/expected/field_name_limit.html
===================================================================
--- trunk/docutils/test/functional/expected/field_name_limit.html 2024-04-09 15:27:32 UTC (rev 9620)
+++ trunk/docutils/test/functional/expected/field_name_limit.html 2024-04-09 18:03:15 UTC (rev 9621)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.21rc2.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21: https://docutils.sourceforge.io/" />
<title>field_list.txt</title>
<link rel="stylesheet" href="../input/data/html4css1.css" type="text/css" />
</head>
Modified: trunk/docutils/test/functional/expected/footnotes_html5.html
===================================================================
--- trunk/docutils/test/functional/expected/footnotes_html5.html 2024-04-09 15:27:32 UTC (rev 9620)
+++ trunk/docutils/test/functional/expected/footnotes_html5.html 2024-04-09 18:03:15 UTC (rev 9621)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21rc2.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Test footnote and citation rendering</title>
<link rel="stylesheet" href="../input/data/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/math_experiments_mathml.html
===================================================================
--- trunk/docutils/test/functional/expected/math_experiments_mathml.html 2024-04-09 15:27:32 UTC (rev 9620)
+++ trunk/docutils/test/functional/expected/math_experiments_mathml.html 2024-04-09 18:03:15 UTC (rev 9621)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21rc2.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Math Conversion Tests</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/math_experiments_mathml_blahtexml.html
===================================================================
--- trunk/docutils/test/functional/expected/math_experiments_mathml_blahtexml.html 2024-04-09 15:27:32 UTC (rev 9620)
+++ trunk/docutils/test/functional/expected/math_experiments_mathml_blahtexml.html 2024-04-09 18:03:15 UTC (rev 9621)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21rc2.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Math Conversion Tests</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/math_experiments_mathml_pandoc.html
===================================================================
--- trunk/docutils/test/functional/expected/math_experiments_mathml_pandoc.html 2024-04-09 15:27:32 UTC (rev 9620)
+++ trunk/docutils/test/functional/expected/math_experiments_mathml_pandoc.html 2024-04-09 18:03:15 UTC (rev 9621)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21rc2.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Math Conversion Tests</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/math_experiments_mathml_ttm.html
===================================================================
--- trunk/docutils/test/functional/expected/math_experiments_mathml_ttm.html 2024-04-09 15:27:32 UTC (rev 9620)
+++ trunk/docutils/test/functional/expected/math_experiments_mathml_ttm.html 2024-04-09 18:03:15 UTC (rev 9621)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21rc2.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Math Conversion Tests</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/math_output_html.html
===================================================================
--- trunk/docutils/test/functional/expected/math_output_html.html 2024-04-09 15:27:32 UTC (rev 9620)
+++ trunk/docutils/test/functional/expected/math_output_html.html 2024-04-09 18:03:15 UTC (rev 9621)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.21rc2.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21: https://docutils.sourceforge.io/" />
<title>Mathematics</title>
<link rel="stylesheet" href="../input/data/html4css1.css" type="text/css" />
<link rel="stylesheet" href="../input/data/math.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/math_output_latex.html
===================================================================
--- trunk/docutils/test/functional/expected/math_output_latex.html 2024-04-09 15:27:32 UTC (rev 9620)
+++ trunk/docutils/test/functional/expected/math_output_latex.html 2024-04-09 18:03:15 UTC (rev 9621)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.21rc2.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21: https://docutils.sourceforge.io/" />
<title>Mathematics</title>
<link rel="stylesheet" href="../input/data/html4css1.css" type="text/css" />
</head>
Modified: trunk/docutils/test/functional/expected/math_output_mathjax.html
===================================================================
--- trunk/docutils/test/functional/expected/math_output_mathjax.html 2024-04-09 15:27:32 UTC (rev 9620)
+++ trunk/docutils/test/functional/expected/math_output_mathjax.html 2024-04-09 18:03:15 UTC (rev 9621)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.21rc2.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21: https://docutils.sourceforge.io/" />
<title>Mathematics</title>
<script type="text/javascript" src="/usr/share/javascript/mathjax/MathJax.js?config=TeX-AMS_CHTML"></script>
<link rel="stylesheet" href="../input/data/html4css1.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/math_output_mathml.html
===================================================================
--- trunk/docutils/test/functional/expected/math_output_mathml.html 2024-04-09 15:27:32 UTC (rev 9620)
+++ trunk/docutils/test/functional/expected/math_output_mathml.html 2024-04-09 18:03:15 UTC (rev 9621)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21rc2.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Mathematics</title>
<link rel="stylesheet" href="../input/data/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/mathematics_mathml.html
===================================================================
--- trunk/docutils/test/functional/expected/mathematics_mathml.html 2024-04-09 15:27:32 UTC (rev 9620)
+++ trunk/docutils/test/functional/expected/mathematics_mathml.html 2024-04-09 18:03:15 UTC (rev 9621)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21rc2.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>LaTeX syntax for mathematics</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/mathematics_mathml_blahtexml.html
===================================================================
--- trunk/docutils/test/functional/expected/mathematics_mathml_blahtexml.html 2024-04-09 15:27:32 UTC (rev 9620)
+++ trunk/docutils/test/functional/expected/mathematics_mathml_blahtexml.html 2024-04-09 18:03:15 UTC (rev 9621)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21rc2.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>LaTeX syntax for mathematics</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/mathematics_mathml_pandoc.html
===================================================================
--- trunk/docutils/test/functional/expected/mathematics_mathml_pandoc.html 2024-04-09 15:27:32 UTC (rev 9620)
+++ trunk/docutils/test/functional/expected/mathematics_mathml_pandoc.html 2024-04-09 18:03:15 UTC (rev 9621)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21rc2.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>LaTeX syntax for mathematics</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/mathematics_mathml_ttm.html
===================================================================
--- trunk/docutils/test/functional/expected/mathematics_mathml_ttm.html 2024-04-09 15:27:32 UTC (rev 9620)
+++ trunk/docutils/test/functional/expected/mathematics_mathml_ttm.html 2024-04-09 18:03:15 UTC (rev 9621)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21rc2.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>LaTeX syntax for mathematics</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/misc_rst_html4css1.html
===================================================================
--- trunk/docutils/test/functional/expected/misc_rst_html4css1.html 2024-04-09 15:27:32 UTC (rev 9620)
+++ trunk/docutils/test/functional/expected/misc_rst_html4css1.html 2024-04-09 18:03:15 UTC (rev 9621)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.21rc2.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21: https://docutils.sourceforge.io/" />
<title>Additional tests with html4css1</title>
<link rel="stylesheet" href="foo&bar.css" type="text/css" />
<link rel="stylesheet" href="../input/data/html4css1.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/misc_rst_html5.html
===================================================================
--- trunk/docutils/test/functional/expected/misc_rst_html5.html 2024-04-09 15:27:32 UTC (rev 9620)
+++ trunk/docutils/test/functional/expected/misc_rst_html5.html 2024-04-09 18:03:15 UTC (rev 9621)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21rc2.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Additional tests with HTML 5</title>
<link rel="stylesheet" href="../input/data/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/pep_html.html
===================================================================
--- trunk/docutils/test/functional/expected/pep_html.html 2024-04-09 15:27:32 UTC (rev 9620)
+++ trunk/docutils/test/functional/expected/pep_html.html 2024-04-09 18:03:15 UTC (rev 9621)
@@ -8,7 +8,7 @@
-->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <meta name="generator" content="Docutils 0.21rc2.dev: https://docutils.sourceforge.io/" />
+ <meta name="generator" content="Docutils 0.21: https://docutils.sourceforge.io/" />
<title>PEP 100 - Test PEP</title>
<link rel="stylesheet" href="../input/data/html4css1.css" type="text/css" />
</head>
Modified: trunk/docutils/test/functional/expected/rst_html5_tuftig.html
===================================================================
--- trunk/docutils/test/functional/expected/rst_html5_tuftig.html 2024-04-09 15:27:32 UTC (rev 9620)
+++ trunk/docutils/test/functional/expected/rst_html5_tuftig.html 2024-04-09 18:03:15 UTC (rev 9621)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21rc2.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Special Features of the tuftig.css Stylesheet</title>
<link rel="stylesheet" href="../input/data/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/standalone_rst_docutils_xml.xml
===================================================================
--- trunk/docutils/test/functional/expected/standalone_rst_docutils_xml.xml 2024-04-09 15:27:32 UTC (rev 9620)
+++ trunk/docutils/test/functional/expected/standalone_rst_docutils_xml.xml 2024-04-09 18:03:15 UTC (rev 9621)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE document PUBLIC "+//IDN docutils.sourceforge.net//DTD Docutils Generic//EN//XML" "http://docutils.sourceforge.net/docs/ref/docutils.dtd">
-<!-- Generated by Docutils 0.21rc2.dev -->
+<!-- Generated by Docutils 0.21 -->
<document ids="restructuredtext-test-document doctitle" names="restructuredtext\ test\ document doctitle" source="functional/input/standalone_rst_docutils_xml.txt" title="reStructuredText Test Document">
<title>reStructuredText Test Document</title>
<subtitle ids="examples-of-syntax-constructs subtitle" names="examples\ of\ syntax\ constructs subtitle">Examples of Syntax Constructs</subtitle>
Modified: trunk/docutils/test/functional/expected/standalone_rst_html4css1.html
===================================================================
--- trunk/docutils/test/functional/expected/standalone_rst_html4css1.html 2024-04-09 15:27:32 UTC (rev 9620)
+++ trunk/docutils/test/functional/expected/standalone_rst_html4css1.html 2024-04-09 18:03:15 UTC (rev 9621)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.21rc2.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21: https://docutils.sourceforge.io/" />
<meta content="reStructuredText, test, parser" name="keywords" />
<meta content="A test document, containing at least one example of each reStructuredText construct." lang="en" name="description" />
<meta name="author" content="David Goodger" />
Modified: trunk/docutils/test/functional/expected/standalone_rst_html5.html
===================================================================
--- trunk/docutils/test/functional/expected/standalone_rst_html5.html 2024-04-09 15:27:32 UTC (rev 9620)
+++ trunk/docutils/test/functional/expected/standalone_rst_html5.html 2024-04-09 18:03:15 UTC (rev 9621)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21rc2.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta content="reStructuredText, test, parser" name="keywords" />
<meta content="A test document, containing at least one example of each reStructuredText construct." lang="en" name="description" xml:lang="en" />
Modified: trunk/docutils/test/functional/expected/standalone_rst_s5_html_1.html
===================================================================
--- trunk/docutils/test/functional/expected/standalone_rst_s5_html_1.html 2024-04-09 15:27:32 UTC (rev 9620)
+++ trunk/docutils/test/functional/expected/standalone_rst_s5_html_1.html 2024-04-09 18:03:15 UTC (rev 9621)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.21rc2.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21: https://docutils.sourceforge.io/" />
<meta name="version" content="S5 1.1" />
<meta name="author" content="David Goodger" />
<meta name="date" content="2005-11-28" />
Modified: trunk/docutils/test/functional/expected/standalone_rst_s5_html_2.html
===================================================================
--- trunk/docutils/test/functional/expected/standalone_rst_s5_html_2.html 2024-04-09 15:27:32 UTC (rev 9620)
+++ trunk/docutils/test/functional/expected/standalone_rst_s5_html_2.html 2024-04-09 18:03:15 UTC (rev 9621)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.21rc2.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21: https://docutils.sourceforge.io/" />
<meta name="version" content="S5 1.1" />
<meta name="author" content="David Goodger" />
<meta name="date" content="2005-11-28" />
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <gr...@us...> - 2024-04-09 19:37:12
|
Revision: 9625
http://sourceforge.net/p/docutils/code/9625
Author: grubert
Date: 2024-04-09 19:37:09 +0000 (Tue, 09 Apr 2024)
Log Message:
-----------
set version 0.22b.dev
Modified Paths:
--------------
trunk/docutils/README.txt
trunk/docutils/docutils/__init__.py
trunk/docutils/test/functional/expected/buggy_mathml.html
trunk/docutils/test/functional/expected/buggy_mathml_blahtexml.html
trunk/docutils/test/functional/expected/buggy_mathml_pandoc.html
trunk/docutils/test/functional/expected/buggy_mathml_ttm.html
trunk/docutils/test/functional/expected/compact_lists.html
trunk/docutils/test/functional/expected/dangerous.html
trunk/docutils/test/functional/expected/field_name_limit.html
trunk/docutils/test/functional/expected/footnotes_html5.html
trunk/docutils/test/functional/expected/math_experiments_mathml.html
trunk/docutils/test/functional/expected/math_experiments_mathml_blahtexml.html
trunk/docutils/test/functional/expected/math_experiments_mathml_pandoc.html
trunk/docutils/test/functional/expected/math_experiments_mathml_ttm.html
trunk/docutils/test/functional/expected/math_output_html.html
trunk/docutils/test/functional/expected/math_output_latex.html
trunk/docutils/test/functional/expected/math_output_mathjax.html
trunk/docutils/test/functional/expected/math_output_mathml.html
trunk/docutils/test/functional/expected/mathematics_mathml.html
trunk/docutils/test/functional/expected/mathematics_mathml_blahtexml.html
trunk/docutils/test/functional/expected/mathematics_mathml_pandoc.html
trunk/docutils/test/functional/expected/mathematics_mathml_ttm.html
trunk/docutils/test/functional/expected/misc_rst_html4css1.html
trunk/docutils/test/functional/expected/misc_rst_html5.html
trunk/docutils/test/functional/expected/pep_html.html
trunk/docutils/test/functional/expected/rst_html5_tuftig.html
trunk/docutils/test/functional/expected/standalone_rst_docutils_xml.xml
trunk/docutils/test/functional/expected/standalone_rst_html4css1.html
trunk/docutils/test/functional/expected/standalone_rst_html5.html
trunk/docutils/test/functional/expected/standalone_rst_s5_html_1.html
trunk/docutils/test/functional/expected/standalone_rst_s5_html_2.html
Modified: trunk/docutils/README.txt
===================================================================
--- trunk/docutils/README.txt 2024-04-09 19:31:23 UTC (rev 9624)
+++ trunk/docutils/README.txt 2024-04-09 19:37:09 UTC (rev 9625)
@@ -1,8 +1,8 @@
.. include:: docs/header0.txt
-=======================
- README: Docutils 0.21
-=======================
+============================
+ README: Docutils 0.22b.dev
+============================
:Author: David Goodger
:Contact: go...@py...
Modified: trunk/docutils/docutils/__init__.py
===================================================================
--- trunk/docutils/docutils/__init__.py 2024-04-09 19:31:23 UTC (rev 9624)
+++ trunk/docutils/docutils/__init__.py 2024-04-09 19:37:09 UTC (rev 9625)
@@ -54,7 +54,7 @@
__docformat__ = 'reStructuredText'
-__version__ = '0.21'
+__version__ = '0.22b.dev'
"""Docutils version identifier (complies with PEP 440)::
major.minor[.micro][releaselevel[serial]][.dev]
@@ -116,11 +116,11 @@
__version_info__ = VersionInfo(
major=0,
- minor=21,
+ minor=22,
micro=0,
- releaselevel='final', # one of 'alpha', 'beta', 'candidate', 'final'
+ releaselevel='beta', # one of 'alpha', 'beta', 'candidate', 'final'
serial=0, # pre-release number (0 for final releases and snapshots)
- release=True # True for official releases and pre-releases
+ release=False # True for official releases and pre-releases
)
"""Comprehensive version information tuple.
Modified: trunk/docutils/test/functional/expected/buggy_mathml.html
===================================================================
--- trunk/docutils/test/functional/expected/buggy_mathml.html 2024-04-09 19:31:23 UTC (rev 9624)
+++ trunk/docutils/test/functional/expected/buggy_mathml.html 2024-04-09 19:37:09 UTC (rev 9625)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>buggy-maths</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/buggy_mathml_blahtexml.html
===================================================================
--- trunk/docutils/test/functional/expected/buggy_mathml_blahtexml.html 2024-04-09 19:31:23 UTC (rev 9624)
+++ trunk/docutils/test/functional/expected/buggy_mathml_blahtexml.html 2024-04-09 19:37:09 UTC (rev 9625)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>buggy-maths</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/buggy_mathml_pandoc.html
===================================================================
--- trunk/docutils/test/functional/expected/buggy_mathml_pandoc.html 2024-04-09 19:31:23 UTC (rev 9624)
+++ trunk/docutils/test/functional/expected/buggy_mathml_pandoc.html 2024-04-09 19:37:09 UTC (rev 9625)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>buggy-maths</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/buggy_mathml_ttm.html
===================================================================
--- trunk/docutils/test/functional/expected/buggy_mathml_ttm.html 2024-04-09 19:31:23 UTC (rev 9624)
+++ trunk/docutils/test/functional/expected/buggy_mathml_ttm.html 2024-04-09 19:37:09 UTC (rev 9625)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>buggy-maths</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/compact_lists.html
===================================================================
--- trunk/docutils/test/functional/expected/compact_lists.html 2024-04-09 19:31:23 UTC (rev 9624)
+++ trunk/docutils/test/functional/expected/compact_lists.html 2024-04-09 19:37:09 UTC (rev 9625)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.21: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
<title>compact_lists.txt</title>
<link rel="stylesheet" href="../input/data/html4css1.css" type="text/css" />
</head>
Modified: trunk/docutils/test/functional/expected/dangerous.html
===================================================================
--- trunk/docutils/test/functional/expected/dangerous.html 2024-04-09 19:31:23 UTC (rev 9624)
+++ trunk/docutils/test/functional/expected/dangerous.html 2024-04-09 19:37:09 UTC (rev 9625)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.21: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
<title>dangerous.txt</title>
<link rel="stylesheet" href="../input/data/html4css1.css" type="text/css" />
</head>
Modified: trunk/docutils/test/functional/expected/field_name_limit.html
===================================================================
--- trunk/docutils/test/functional/expected/field_name_limit.html 2024-04-09 19:31:23 UTC (rev 9624)
+++ trunk/docutils/test/functional/expected/field_name_limit.html 2024-04-09 19:37:09 UTC (rev 9625)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.21: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
<title>field_list.txt</title>
<link rel="stylesheet" href="../input/data/html4css1.css" type="text/css" />
</head>
Modified: trunk/docutils/test/functional/expected/footnotes_html5.html
===================================================================
--- trunk/docutils/test/functional/expected/footnotes_html5.html 2024-04-09 19:31:23 UTC (rev 9624)
+++ trunk/docutils/test/functional/expected/footnotes_html5.html 2024-04-09 19:37:09 UTC (rev 9625)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Test footnote and citation rendering</title>
<link rel="stylesheet" href="../input/data/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/math_experiments_mathml.html
===================================================================
--- trunk/docutils/test/functional/expected/math_experiments_mathml.html 2024-04-09 19:31:23 UTC (rev 9624)
+++ trunk/docutils/test/functional/expected/math_experiments_mathml.html 2024-04-09 19:37:09 UTC (rev 9625)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Math Conversion Tests</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/math_experiments_mathml_blahtexml.html
===================================================================
--- trunk/docutils/test/functional/expected/math_experiments_mathml_blahtexml.html 2024-04-09 19:31:23 UTC (rev 9624)
+++ trunk/docutils/test/functional/expected/math_experiments_mathml_blahtexml.html 2024-04-09 19:37:09 UTC (rev 9625)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Math Conversion Tests</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/math_experiments_mathml_pandoc.html
===================================================================
--- trunk/docutils/test/functional/expected/math_experiments_mathml_pandoc.html 2024-04-09 19:31:23 UTC (rev 9624)
+++ trunk/docutils/test/functional/expected/math_experiments_mathml_pandoc.html 2024-04-09 19:37:09 UTC (rev 9625)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Math Conversion Tests</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/math_experiments_mathml_ttm.html
===================================================================
--- trunk/docutils/test/functional/expected/math_experiments_mathml_ttm.html 2024-04-09 19:31:23 UTC (rev 9624)
+++ trunk/docutils/test/functional/expected/math_experiments_mathml_ttm.html 2024-04-09 19:37:09 UTC (rev 9625)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Math Conversion Tests</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/math_output_html.html
===================================================================
--- trunk/docutils/test/functional/expected/math_output_html.html 2024-04-09 19:31:23 UTC (rev 9624)
+++ trunk/docutils/test/functional/expected/math_output_html.html 2024-04-09 19:37:09 UTC (rev 9625)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.21: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
<title>Mathematics</title>
<link rel="stylesheet" href="../input/data/html4css1.css" type="text/css" />
<link rel="stylesheet" href="../input/data/math.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/math_output_latex.html
===================================================================
--- trunk/docutils/test/functional/expected/math_output_latex.html 2024-04-09 19:31:23 UTC (rev 9624)
+++ trunk/docutils/test/functional/expected/math_output_latex.html 2024-04-09 19:37:09 UTC (rev 9625)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.21: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
<title>Mathematics</title>
<link rel="stylesheet" href="../input/data/html4css1.css" type="text/css" />
</head>
Modified: trunk/docutils/test/functional/expected/math_output_mathjax.html
===================================================================
--- trunk/docutils/test/functional/expected/math_output_mathjax.html 2024-04-09 19:31:23 UTC (rev 9624)
+++ trunk/docutils/test/functional/expected/math_output_mathjax.html 2024-04-09 19:37:09 UTC (rev 9625)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.21: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
<title>Mathematics</title>
<script type="text/javascript" src="/usr/share/javascript/mathjax/MathJax.js?config=TeX-AMS_CHTML"></script>
<link rel="stylesheet" href="../input/data/html4css1.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/math_output_mathml.html
===================================================================
--- trunk/docutils/test/functional/expected/math_output_mathml.html 2024-04-09 19:31:23 UTC (rev 9624)
+++ trunk/docutils/test/functional/expected/math_output_mathml.html 2024-04-09 19:37:09 UTC (rev 9625)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Mathematics</title>
<link rel="stylesheet" href="../input/data/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/mathematics_mathml.html
===================================================================
--- trunk/docutils/test/functional/expected/mathematics_mathml.html 2024-04-09 19:31:23 UTC (rev 9624)
+++ trunk/docutils/test/functional/expected/mathematics_mathml.html 2024-04-09 19:37:09 UTC (rev 9625)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>LaTeX syntax for mathematics</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/mathematics_mathml_blahtexml.html
===================================================================
--- trunk/docutils/test/functional/expected/mathematics_mathml_blahtexml.html 2024-04-09 19:31:23 UTC (rev 9624)
+++ trunk/docutils/test/functional/expected/mathematics_mathml_blahtexml.html 2024-04-09 19:37:09 UTC (rev 9625)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>LaTeX syntax for mathematics</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/mathematics_mathml_pandoc.html
===================================================================
--- trunk/docutils/test/functional/expected/mathematics_mathml_pandoc.html 2024-04-09 19:31:23 UTC (rev 9624)
+++ trunk/docutils/test/functional/expected/mathematics_mathml_pandoc.html 2024-04-09 19:37:09 UTC (rev 9625)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>LaTeX syntax for mathematics</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/mathematics_mathml_ttm.html
===================================================================
--- trunk/docutils/test/functional/expected/mathematics_mathml_ttm.html 2024-04-09 19:31:23 UTC (rev 9624)
+++ trunk/docutils/test/functional/expected/mathematics_mathml_ttm.html 2024-04-09 19:37:09 UTC (rev 9625)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>LaTeX syntax for mathematics</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/misc_rst_html4css1.html
===================================================================
--- trunk/docutils/test/functional/expected/misc_rst_html4css1.html 2024-04-09 19:31:23 UTC (rev 9624)
+++ trunk/docutils/test/functional/expected/misc_rst_html4css1.html 2024-04-09 19:37:09 UTC (rev 9625)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.21: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
<title>Additional tests with html4css1</title>
<link rel="stylesheet" href="foo&bar.css" type="text/css" />
<link rel="stylesheet" href="../input/data/html4css1.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/misc_rst_html5.html
===================================================================
--- trunk/docutils/test/functional/expected/misc_rst_html5.html 2024-04-09 19:31:23 UTC (rev 9624)
+++ trunk/docutils/test/functional/expected/misc_rst_html5.html 2024-04-09 19:37:09 UTC (rev 9625)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Additional tests with HTML 5</title>
<link rel="stylesheet" href="../input/data/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/pep_html.html
===================================================================
--- trunk/docutils/test/functional/expected/pep_html.html 2024-04-09 19:31:23 UTC (rev 9624)
+++ trunk/docutils/test/functional/expected/pep_html.html 2024-04-09 19:37:09 UTC (rev 9625)
@@ -8,7 +8,7 @@
-->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <meta name="generator" content="Docutils 0.21: https://docutils.sourceforge.io/" />
+ <meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
<title>PEP 100 - Test PEP</title>
<link rel="stylesheet" href="../input/data/html4css1.css" type="text/css" />
</head>
Modified: trunk/docutils/test/functional/expected/rst_html5_tuftig.html
===================================================================
--- trunk/docutils/test/functional/expected/rst_html5_tuftig.html 2024-04-09 19:31:23 UTC (rev 9624)
+++ trunk/docutils/test/functional/expected/rst_html5_tuftig.html 2024-04-09 19:37:09 UTC (rev 9625)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Special Features of the tuftig.css Stylesheet</title>
<link rel="stylesheet" href="../input/data/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/standalone_rst_docutils_xml.xml
===================================================================
--- trunk/docutils/test/functional/expected/standalone_rst_docutils_xml.xml 2024-04-09 19:31:23 UTC (rev 9624)
+++ trunk/docutils/test/functional/expected/standalone_rst_docutils_xml.xml 2024-04-09 19:37:09 UTC (rev 9625)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE document PUBLIC "+//IDN docutils.sourceforge.net//DTD Docutils Generic//EN//XML" "http://docutils.sourceforge.net/docs/ref/docutils.dtd">
-<!-- Generated by Docutils 0.21 -->
+<!-- Generated by Docutils 0.22b.dev -->
<document ids="restructuredtext-test-document doctitle" names="restructuredtext\ test\ document doctitle" source="functional/input/standalone_rst_docutils_xml.txt" title="reStructuredText Test Document">
<title>reStructuredText Test Document</title>
<subtitle ids="examples-of-syntax-constructs subtitle" names="examples\ of\ syntax\ constructs subtitle">Examples of Syntax Constructs</subtitle>
Modified: trunk/docutils/test/functional/expected/standalone_rst_html4css1.html
===================================================================
--- trunk/docutils/test/functional/expected/standalone_rst_html4css1.html 2024-04-09 19:31:23 UTC (rev 9624)
+++ trunk/docutils/test/functional/expected/standalone_rst_html4css1.html 2024-04-09 19:37:09 UTC (rev 9625)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.21: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
<meta content="reStructuredText, test, parser" name="keywords" />
<meta content="A test document, containing at least one example of each reStructuredText construct." lang="en" name="description" />
<meta name="author" content="David Goodger" />
Modified: trunk/docutils/test/functional/expected/standalone_rst_html5.html
===================================================================
--- trunk/docutils/test/functional/expected/standalone_rst_html5.html 2024-04-09 19:31:23 UTC (rev 9624)
+++ trunk/docutils/test/functional/expected/standalone_rst_html5.html 2024-04-09 19:37:09 UTC (rev 9625)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta content="reStructuredText, test, parser" name="keywords" />
<meta content="A test document, containing at least one example of each reStructuredText construct." lang="en" name="description" xml:lang="en" />
Modified: trunk/docutils/test/functional/expected/standalone_rst_s5_html_1.html
===================================================================
--- trunk/docutils/test/functional/expected/standalone_rst_s5_html_1.html 2024-04-09 19:31:23 UTC (rev 9624)
+++ trunk/docutils/test/functional/expected/standalone_rst_s5_html_1.html 2024-04-09 19:37:09 UTC (rev 9625)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.21: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
<meta name="version" content="S5 1.1" />
<meta name="author" content="David Goodger" />
<meta name="date" content="2005-11-28" />
Modified: trunk/docutils/test/functional/expected/standalone_rst_s5_html_2.html
===================================================================
--- trunk/docutils/test/functional/expected/standalone_rst_s5_html_2.html 2024-04-09 19:31:23 UTC (rev 9624)
+++ trunk/docutils/test/functional/expected/standalone_rst_s5_html_2.html 2024-04-09 19:37:09 UTC (rev 9625)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.21: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
<meta name="version" content="S5 1.1" />
<meta name="author" content="David Goodger" />
<meta name="date" content="2005-11-28" />
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <gr...@us...> - 2024-04-10 21:29:49
|
Revision: 9632
http://sourceforge.net/p/docutils/code/9632
Author: grubert
Date: 2024-04-10 21:29:46 +0000 (Wed, 10 Apr 2024)
Log Message:
-----------
Release 0.21.1 (sdist rerelease)
Modified Paths:
--------------
trunk/docutils/HISTORY.txt
trunk/docutils/README.txt
trunk/docutils/RELEASE-NOTES.txt
trunk/docutils/docutils/__init__.py
trunk/docutils/test/functional/expected/buggy_mathml.html
trunk/docutils/test/functional/expected/buggy_mathml_blahtexml.html
trunk/docutils/test/functional/expected/buggy_mathml_pandoc.html
trunk/docutils/test/functional/expected/buggy_mathml_ttm.html
trunk/docutils/test/functional/expected/compact_lists.html
trunk/docutils/test/functional/expected/dangerous.html
trunk/docutils/test/functional/expected/field_name_limit.html
trunk/docutils/test/functional/expected/footnotes_html5.html
trunk/docutils/test/functional/expected/math_experiments_mathml.html
trunk/docutils/test/functional/expected/math_experiments_mathml_blahtexml.html
trunk/docutils/test/functional/expected/math_experiments_mathml_pandoc.html
trunk/docutils/test/functional/expected/math_experiments_mathml_ttm.html
trunk/docutils/test/functional/expected/math_output_html.html
trunk/docutils/test/functional/expected/math_output_latex.html
trunk/docutils/test/functional/expected/math_output_mathjax.html
trunk/docutils/test/functional/expected/math_output_mathml.html
trunk/docutils/test/functional/expected/mathematics_mathml.html
trunk/docutils/test/functional/expected/mathematics_mathml_blahtexml.html
trunk/docutils/test/functional/expected/mathematics_mathml_pandoc.html
trunk/docutils/test/functional/expected/mathematics_mathml_ttm.html
trunk/docutils/test/functional/expected/misc_rst_html4css1.html
trunk/docutils/test/functional/expected/misc_rst_html5.html
trunk/docutils/test/functional/expected/pep_html.html
trunk/docutils/test/functional/expected/rst_html5_tuftig.html
trunk/docutils/test/functional/expected/standalone_rst_docutils_xml.xml
trunk/docutils/test/functional/expected/standalone_rst_html4css1.html
trunk/docutils/test/functional/expected/standalone_rst_html5.html
trunk/docutils/test/functional/expected/standalone_rst_s5_html_1.html
trunk/docutils/test/functional/expected/standalone_rst_s5_html_2.html
Modified: trunk/docutils/HISTORY.txt
===================================================================
--- trunk/docutils/HISTORY.txt 2024-04-10 21:17:54 UTC (rev 9631)
+++ trunk/docutils/HISTORY.txt 2024-04-10 21:29:46 UTC (rev 9632)
@@ -14,11 +14,19 @@
.. contents::
-Changes since 0.21
-==================
+Release 0.21.1 (2024-04-10)
+===========================
-In post release waiting time.
+The sdist in 0.21 was incomplete
+- pypi allows no file replacing
+- adding a postrelease suffix "post1": docutils-0.21.post1.tar.gz
+ works on pypi, but fails with pip because the metadata differs.
+
+ But if the metadata is 0.21.post1 pypi makes it a new release.
+
+ 0.21.1 is the same code except for the version number.
+
Release 0.21 (2024-04-09)
=========================
Modified: trunk/docutils/README.txt
===================================================================
--- trunk/docutils/README.txt 2024-04-10 21:17:54 UTC (rev 9631)
+++ trunk/docutils/README.txt 2024-04-10 21:29:46 UTC (rev 9632)
@@ -1,8 +1,8 @@
.. include:: docs/header0.txt
-============================
- README: Docutils 0.22b.dev
-============================
+=========================
+ README: Docutils 0.21.1
+=========================
:Author: David Goodger
:Contact: go...@py...
Modified: trunk/docutils/RELEASE-NOTES.txt
===================================================================
--- trunk/docutils/RELEASE-NOTES.txt 2024-04-10 21:17:54 UTC (rev 9631)
+++ trunk/docutils/RELEASE-NOTES.txt 2024-04-10 21:29:46 UTC (rev 9632)
@@ -198,6 +198,20 @@
.. _buildhtml.py: docs/user/tools.html#buildhtml-py
+Release 0.21.1 (2024-04-10)
+===========================
+
+The sdist in 0.21 was incomplete
+
+- pypi allows no file replacing
+- adding a postrelease suffix "post1": docutils-0.21.post1.tar.gz
+ works on pypi, but fails with pip because the metadata differs.
+
+ But if the metadata is 0.21.post1 pypi makes it a new release.
+
+ 0.21.1 is the same code except for the version number.
+
+
Release 0.21 (2024-04-09)
=========================
Modified: trunk/docutils/docutils/__init__.py
===================================================================
--- trunk/docutils/docutils/__init__.py 2024-04-10 21:17:54 UTC (rev 9631)
+++ trunk/docutils/docutils/__init__.py 2024-04-10 21:29:46 UTC (rev 9632)
@@ -54,7 +54,7 @@
__docformat__ = 'reStructuredText'
-__version__ = '0.22b.dev'
+__version__ = '0.21.1'
"""Docutils version identifier (complies with PEP 440)::
major.minor[.micro][releaselevel[serial]][.dev]
@@ -116,11 +116,11 @@
__version_info__ = VersionInfo(
major=0,
- minor=22,
- micro=0,
- releaselevel='beta', # one of 'alpha', 'beta', 'candidate', 'final'
+ minor=21,
+ micro=1,
+ releaselevel='final', # one of 'alpha', 'beta', 'candidate', 'final'
serial=0, # pre-release number (0 for final releases and snapshots)
- release=False # True for official releases and pre-releases
+ release=True # True for official releases and pre-releases
)
"""Comprehensive version information tuple.
Modified: trunk/docutils/test/functional/expected/buggy_mathml.html
===================================================================
--- trunk/docutils/test/functional/expected/buggy_mathml.html 2024-04-10 21:17:54 UTC (rev 9631)
+++ trunk/docutils/test/functional/expected/buggy_mathml.html 2024-04-10 21:29:46 UTC (rev 9632)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.1: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>buggy-maths</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/buggy_mathml_blahtexml.html
===================================================================
--- trunk/docutils/test/functional/expected/buggy_mathml_blahtexml.html 2024-04-10 21:17:54 UTC (rev 9631)
+++ trunk/docutils/test/functional/expected/buggy_mathml_blahtexml.html 2024-04-10 21:29:46 UTC (rev 9632)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.1: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>buggy-maths</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/buggy_mathml_pandoc.html
===================================================================
--- trunk/docutils/test/functional/expected/buggy_mathml_pandoc.html 2024-04-10 21:17:54 UTC (rev 9631)
+++ trunk/docutils/test/functional/expected/buggy_mathml_pandoc.html 2024-04-10 21:29:46 UTC (rev 9632)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.1: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>buggy-maths</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/buggy_mathml_ttm.html
===================================================================
--- trunk/docutils/test/functional/expected/buggy_mathml_ttm.html 2024-04-10 21:17:54 UTC (rev 9631)
+++ trunk/docutils/test/functional/expected/buggy_mathml_ttm.html 2024-04-10 21:29:46 UTC (rev 9632)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.1: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>buggy-maths</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/compact_lists.html
===================================================================
--- trunk/docutils/test/functional/expected/compact_lists.html 2024-04-10 21:17:54 UTC (rev 9631)
+++ trunk/docutils/test/functional/expected/compact_lists.html 2024-04-10 21:29:46 UTC (rev 9632)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.1: https://docutils.sourceforge.io/" />
<title>compact_lists.txt</title>
<link rel="stylesheet" href="../input/data/html4css1.css" type="text/css" />
</head>
Modified: trunk/docutils/test/functional/expected/dangerous.html
===================================================================
--- trunk/docutils/test/functional/expected/dangerous.html 2024-04-10 21:17:54 UTC (rev 9631)
+++ trunk/docutils/test/functional/expected/dangerous.html 2024-04-10 21:29:46 UTC (rev 9632)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.1: https://docutils.sourceforge.io/" />
<title>dangerous.txt</title>
<link rel="stylesheet" href="../input/data/html4css1.css" type="text/css" />
</head>
Modified: trunk/docutils/test/functional/expected/field_name_limit.html
===================================================================
--- trunk/docutils/test/functional/expected/field_name_limit.html 2024-04-10 21:17:54 UTC (rev 9631)
+++ trunk/docutils/test/functional/expected/field_name_limit.html 2024-04-10 21:29:46 UTC (rev 9632)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.1: https://docutils.sourceforge.io/" />
<title>field_list.txt</title>
<link rel="stylesheet" href="../input/data/html4css1.css" type="text/css" />
</head>
Modified: trunk/docutils/test/functional/expected/footnotes_html5.html
===================================================================
--- trunk/docutils/test/functional/expected/footnotes_html5.html 2024-04-10 21:17:54 UTC (rev 9631)
+++ trunk/docutils/test/functional/expected/footnotes_html5.html 2024-04-10 21:29:46 UTC (rev 9632)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.1: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Test footnote and citation rendering</title>
<link rel="stylesheet" href="../input/data/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/math_experiments_mathml.html
===================================================================
--- trunk/docutils/test/functional/expected/math_experiments_mathml.html 2024-04-10 21:17:54 UTC (rev 9631)
+++ trunk/docutils/test/functional/expected/math_experiments_mathml.html 2024-04-10 21:29:46 UTC (rev 9632)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.1: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Math Conversion Tests</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/math_experiments_mathml_blahtexml.html
===================================================================
--- trunk/docutils/test/functional/expected/math_experiments_mathml_blahtexml.html 2024-04-10 21:17:54 UTC (rev 9631)
+++ trunk/docutils/test/functional/expected/math_experiments_mathml_blahtexml.html 2024-04-10 21:29:46 UTC (rev 9632)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.1: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Math Conversion Tests</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/math_experiments_mathml_pandoc.html
===================================================================
--- trunk/docutils/test/functional/expected/math_experiments_mathml_pandoc.html 2024-04-10 21:17:54 UTC (rev 9631)
+++ trunk/docutils/test/functional/expected/math_experiments_mathml_pandoc.html 2024-04-10 21:29:46 UTC (rev 9632)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.1: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Math Conversion Tests</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/math_experiments_mathml_ttm.html
===================================================================
--- trunk/docutils/test/functional/expected/math_experiments_mathml_ttm.html 2024-04-10 21:17:54 UTC (rev 9631)
+++ trunk/docutils/test/functional/expected/math_experiments_mathml_ttm.html 2024-04-10 21:29:46 UTC (rev 9632)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.1: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Math Conversion Tests</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/math_output_html.html
===================================================================
--- trunk/docutils/test/functional/expected/math_output_html.html 2024-04-10 21:17:54 UTC (rev 9631)
+++ trunk/docutils/test/functional/expected/math_output_html.html 2024-04-10 21:29:46 UTC (rev 9632)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.1: https://docutils.sourceforge.io/" />
<title>Mathematics</title>
<link rel="stylesheet" href="../input/data/html4css1.css" type="text/css" />
<link rel="stylesheet" href="../input/data/math.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/math_output_latex.html
===================================================================
--- trunk/docutils/test/functional/expected/math_output_latex.html 2024-04-10 21:17:54 UTC (rev 9631)
+++ trunk/docutils/test/functional/expected/math_output_latex.html 2024-04-10 21:29:46 UTC (rev 9632)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.1: https://docutils.sourceforge.io/" />
<title>Mathematics</title>
<link rel="stylesheet" href="../input/data/html4css1.css" type="text/css" />
</head>
Modified: trunk/docutils/test/functional/expected/math_output_mathjax.html
===================================================================
--- trunk/docutils/test/functional/expected/math_output_mathjax.html 2024-04-10 21:17:54 UTC (rev 9631)
+++ trunk/docutils/test/functional/expected/math_output_mathjax.html 2024-04-10 21:29:46 UTC (rev 9632)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.1: https://docutils.sourceforge.io/" />
<title>Mathematics</title>
<script type="text/javascript" src="/usr/share/javascript/mathjax/MathJax.js?config=TeX-AMS_CHTML"></script>
<link rel="stylesheet" href="../input/data/html4css1.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/math_output_mathml.html
===================================================================
--- trunk/docutils/test/functional/expected/math_output_mathml.html 2024-04-10 21:17:54 UTC (rev 9631)
+++ trunk/docutils/test/functional/expected/math_output_mathml.html 2024-04-10 21:29:46 UTC (rev 9632)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.1: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Mathematics</title>
<link rel="stylesheet" href="../input/data/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/mathematics_mathml.html
===================================================================
--- trunk/docutils/test/functional/expected/mathematics_mathml.html 2024-04-10 21:17:54 UTC (rev 9631)
+++ trunk/docutils/test/functional/expected/mathematics_mathml.html 2024-04-10 21:29:46 UTC (rev 9632)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.1: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>LaTeX syntax for mathematics</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/mathematics_mathml_blahtexml.html
===================================================================
--- trunk/docutils/test/functional/expected/mathematics_mathml_blahtexml.html 2024-04-10 21:17:54 UTC (rev 9631)
+++ trunk/docutils/test/functional/expected/mathematics_mathml_blahtexml.html 2024-04-10 21:29:46 UTC (rev 9632)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.1: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>LaTeX syntax for mathematics</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/mathematics_mathml_pandoc.html
===================================================================
--- trunk/docutils/test/functional/expected/mathematics_mathml_pandoc.html 2024-04-10 21:17:54 UTC (rev 9631)
+++ trunk/docutils/test/functional/expected/mathematics_mathml_pandoc.html 2024-04-10 21:29:46 UTC (rev 9632)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.1: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>LaTeX syntax for mathematics</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/mathematics_mathml_ttm.html
===================================================================
--- trunk/docutils/test/functional/expected/mathematics_mathml_ttm.html 2024-04-10 21:17:54 UTC (rev 9631)
+++ trunk/docutils/test/functional/expected/mathematics_mathml_ttm.html 2024-04-10 21:29:46 UTC (rev 9632)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.1: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>LaTeX syntax for mathematics</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/misc_rst_html4css1.html
===================================================================
--- trunk/docutils/test/functional/expected/misc_rst_html4css1.html 2024-04-10 21:17:54 UTC (rev 9631)
+++ trunk/docutils/test/functional/expected/misc_rst_html4css1.html 2024-04-10 21:29:46 UTC (rev 9632)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.1: https://docutils.sourceforge.io/" />
<title>Additional tests with html4css1</title>
<link rel="stylesheet" href="foo&bar.css" type="text/css" />
<link rel="stylesheet" href="../input/data/html4css1.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/misc_rst_html5.html
===================================================================
--- trunk/docutils/test/functional/expected/misc_rst_html5.html 2024-04-10 21:17:54 UTC (rev 9631)
+++ trunk/docutils/test/functional/expected/misc_rst_html5.html 2024-04-10 21:29:46 UTC (rev 9632)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.1: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Additional tests with HTML 5</title>
<link rel="stylesheet" href="../input/data/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/pep_html.html
===================================================================
--- trunk/docutils/test/functional/expected/pep_html.html 2024-04-10 21:17:54 UTC (rev 9631)
+++ trunk/docutils/test/functional/expected/pep_html.html 2024-04-10 21:29:46 UTC (rev 9632)
@@ -8,7 +8,7 @@
-->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
+ <meta name="generator" content="Docutils 0.21.1: https://docutils.sourceforge.io/" />
<title>PEP 100 - Test PEP</title>
<link rel="stylesheet" href="../input/data/html4css1.css" type="text/css" />
</head>
Modified: trunk/docutils/test/functional/expected/rst_html5_tuftig.html
===================================================================
--- trunk/docutils/test/functional/expected/rst_html5_tuftig.html 2024-04-10 21:17:54 UTC (rev 9631)
+++ trunk/docutils/test/functional/expected/rst_html5_tuftig.html 2024-04-10 21:29:46 UTC (rev 9632)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.1: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Special Features of the tuftig.css Stylesheet</title>
<link rel="stylesheet" href="../input/data/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/standalone_rst_docutils_xml.xml
===================================================================
--- trunk/docutils/test/functional/expected/standalone_rst_docutils_xml.xml 2024-04-10 21:17:54 UTC (rev 9631)
+++ trunk/docutils/test/functional/expected/standalone_rst_docutils_xml.xml 2024-04-10 21:29:46 UTC (rev 9632)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE document PUBLIC "+//IDN docutils.sourceforge.net//DTD Docutils Generic//EN//XML" "http://docutils.sourceforge.net/docs/ref/docutils.dtd">
-<!-- Generated by Docutils 0.22b.dev -->
+<!-- Generated by Docutils 0.21.1 -->
<document ids="restructuredtext-test-document doctitle" names="restructuredtext\ test\ document doctitle" source="functional/input/standalone_rst_docutils_xml.txt" title="reStructuredText Test Document">
<title>reStructuredText Test Document</title>
<subtitle ids="examples-of-syntax-constructs subtitle" names="examples\ of\ syntax\ constructs subtitle">Examples of Syntax Constructs</subtitle>
Modified: trunk/docutils/test/functional/expected/standalone_rst_html4css1.html
===================================================================
--- trunk/docutils/test/functional/expected/standalone_rst_html4css1.html 2024-04-10 21:17:54 UTC (rev 9631)
+++ trunk/docutils/test/functional/expected/standalone_rst_html4css1.html 2024-04-10 21:29:46 UTC (rev 9632)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.1: https://docutils.sourceforge.io/" />
<meta content="reStructuredText, test, parser" name="keywords" />
<meta content="A test document, containing at least one example of each reStructuredText construct." lang="en" name="description" />
<meta name="author" content="David Goodger" />
Modified: trunk/docutils/test/functional/expected/standalone_rst_html5.html
===================================================================
--- trunk/docutils/test/functional/expected/standalone_rst_html5.html 2024-04-10 21:17:54 UTC (rev 9631)
+++ trunk/docutils/test/functional/expected/standalone_rst_html5.html 2024-04-10 21:29:46 UTC (rev 9632)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.1: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta content="reStructuredText, test, parser" name="keywords" />
<meta content="A test document, containing at least one example of each reStructuredText construct." lang="en" name="description" xml:lang="en" />
Modified: trunk/docutils/test/functional/expected/standalone_rst_s5_html_1.html
===================================================================
--- trunk/docutils/test/functional/expected/standalone_rst_s5_html_1.html 2024-04-10 21:17:54 UTC (rev 9631)
+++ trunk/docutils/test/functional/expected/standalone_rst_s5_html_1.html 2024-04-10 21:29:46 UTC (rev 9632)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.1: https://docutils.sourceforge.io/" />
<meta name="version" content="S5 1.1" />
<meta name="author" content="David Goodger" />
<meta name="date" content="2005-11-28" />
Modified: trunk/docutils/test/functional/expected/standalone_rst_s5_html_2.html
===================================================================
--- trunk/docutils/test/functional/expected/standalone_rst_s5_html_2.html 2024-04-10 21:17:54 UTC (rev 9631)
+++ trunk/docutils/test/functional/expected/standalone_rst_s5_html_2.html 2024-04-10 21:29:46 UTC (rev 9632)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.1: https://docutils.sourcef...
[truncated message content] |
|
From: <gr...@us...> - 2024-04-10 22:22:35
|
Revision: 9636
http://sourceforge.net/p/docutils/code/9636
Author: grubert
Date: 2024-04-10 22:22:32 +0000 (Wed, 10 Apr 2024)
Log Message:
-----------
version 0.21.2b.dev
Modified Paths:
--------------
trunk/docutils/HISTORY.txt
trunk/docutils/README.txt
trunk/docutils/RELEASE-NOTES.txt
trunk/docutils/docutils/__init__.py
trunk/docutils/test/functional/expected/buggy_mathml.html
trunk/docutils/test/functional/expected/buggy_mathml_blahtexml.html
trunk/docutils/test/functional/expected/buggy_mathml_pandoc.html
trunk/docutils/test/functional/expected/buggy_mathml_ttm.html
trunk/docutils/test/functional/expected/compact_lists.html
trunk/docutils/test/functional/expected/dangerous.html
trunk/docutils/test/functional/expected/field_name_limit.html
trunk/docutils/test/functional/expected/footnotes_html5.html
trunk/docutils/test/functional/expected/math_experiments_mathml.html
trunk/docutils/test/functional/expected/math_experiments_mathml_blahtexml.html
trunk/docutils/test/functional/expected/math_experiments_mathml_pandoc.html
trunk/docutils/test/functional/expected/math_experiments_mathml_ttm.html
trunk/docutils/test/functional/expected/math_output_html.html
trunk/docutils/test/functional/expected/math_output_latex.html
trunk/docutils/test/functional/expected/math_output_mathjax.html
trunk/docutils/test/functional/expected/math_output_mathml.html
trunk/docutils/test/functional/expected/mathematics_mathml.html
trunk/docutils/test/functional/expected/mathematics_mathml_blahtexml.html
trunk/docutils/test/functional/expected/mathematics_mathml_pandoc.html
trunk/docutils/test/functional/expected/mathematics_mathml_ttm.html
trunk/docutils/test/functional/expected/misc_rst_html4css1.html
trunk/docutils/test/functional/expected/misc_rst_html5.html
trunk/docutils/test/functional/expected/pep_html.html
trunk/docutils/test/functional/expected/rst_html5_tuftig.html
trunk/docutils/test/functional/expected/standalone_rst_docutils_xml.xml
trunk/docutils/test/functional/expected/standalone_rst_html4css1.html
trunk/docutils/test/functional/expected/standalone_rst_html5.html
trunk/docutils/test/functional/expected/standalone_rst_s5_html_1.html
trunk/docutils/test/functional/expected/standalone_rst_s5_html_2.html
Modified: trunk/docutils/HISTORY.txt
===================================================================
--- trunk/docutils/HISTORY.txt 2024-04-10 22:00:04 UTC (rev 9635)
+++ trunk/docutils/HISTORY.txt 2024-04-10 22:22:32 UTC (rev 9636)
@@ -14,6 +14,12 @@
.. contents::
+Release 0.21.2b.dev (unpublished)
+=================================
+
+Post-release waiting.
+
+
Release 0.21.1 (2024-04-10)
===========================
Modified: trunk/docutils/README.txt
===================================================================
--- trunk/docutils/README.txt 2024-04-10 22:00:04 UTC (rev 9635)
+++ trunk/docutils/README.txt 2024-04-10 22:22:32 UTC (rev 9636)
@@ -1,8 +1,8 @@
.. include:: docs/header0.txt
-=========================
- README: Docutils 0.21.1
-=========================
+==============================
+ README: Docutils 0.21.2b.dev
+==============================
:Author: David Goodger
:Contact: go...@py...
Modified: trunk/docutils/RELEASE-NOTES.txt
===================================================================
--- trunk/docutils/RELEASE-NOTES.txt 2024-04-10 22:00:04 UTC (rev 9635)
+++ trunk/docutils/RELEASE-NOTES.txt 2024-04-10 22:22:32 UTC (rev 9636)
@@ -197,7 +197,12 @@
.. _use_latex_citations: docs/user/config.html#use-latex-citations
.. _buildhtml.py: docs/user/tools.html#buildhtml-py
+Release 0.21.2b.dev (unpublished)
+=================================
+Post-release waiting.
+
+
Release 0.21.1 (2024-04-10)
===========================
Modified: trunk/docutils/docutils/__init__.py
===================================================================
--- trunk/docutils/docutils/__init__.py 2024-04-10 22:00:04 UTC (rev 9635)
+++ trunk/docutils/docutils/__init__.py 2024-04-10 22:22:32 UTC (rev 9636)
@@ -54,7 +54,7 @@
__docformat__ = 'reStructuredText'
-__version__ = '0.21.1'
+__version__ = '0.21.2b.dev'
"""Docutils version identifier (complies with PEP 440)::
major.minor[.micro][releaselevel[serial]][.dev]
@@ -117,10 +117,10 @@
__version_info__ = VersionInfo(
major=0,
minor=21,
- micro=1,
- releaselevel='final', # one of 'alpha', 'beta', 'candidate', 'final'
+ micro=2,
+ releaselevel='beta', # one of 'alpha', 'beta', 'candidate', 'final'
serial=0, # pre-release number (0 for final releases and snapshots)
- release=True # True for official releases and pre-releases
+ release=False # True for official releases and pre-releases
)
"""Comprehensive version information tuple.
Modified: trunk/docutils/test/functional/expected/buggy_mathml.html
===================================================================
--- trunk/docutils/test/functional/expected/buggy_mathml.html 2024-04-10 22:00:04 UTC (rev 9635)
+++ trunk/docutils/test/functional/expected/buggy_mathml.html 2024-04-10 22:22:32 UTC (rev 9636)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21.1: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.2b.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>buggy-maths</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/buggy_mathml_blahtexml.html
===================================================================
--- trunk/docutils/test/functional/expected/buggy_mathml_blahtexml.html 2024-04-10 22:00:04 UTC (rev 9635)
+++ trunk/docutils/test/functional/expected/buggy_mathml_blahtexml.html 2024-04-10 22:22:32 UTC (rev 9636)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21.1: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.2b.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>buggy-maths</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/buggy_mathml_pandoc.html
===================================================================
--- trunk/docutils/test/functional/expected/buggy_mathml_pandoc.html 2024-04-10 22:00:04 UTC (rev 9635)
+++ trunk/docutils/test/functional/expected/buggy_mathml_pandoc.html 2024-04-10 22:22:32 UTC (rev 9636)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21.1: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.2b.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>buggy-maths</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/buggy_mathml_ttm.html
===================================================================
--- trunk/docutils/test/functional/expected/buggy_mathml_ttm.html 2024-04-10 22:00:04 UTC (rev 9635)
+++ trunk/docutils/test/functional/expected/buggy_mathml_ttm.html 2024-04-10 22:22:32 UTC (rev 9636)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21.1: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.2b.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>buggy-maths</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/compact_lists.html
===================================================================
--- trunk/docutils/test/functional/expected/compact_lists.html 2024-04-10 22:00:04 UTC (rev 9635)
+++ trunk/docutils/test/functional/expected/compact_lists.html 2024-04-10 22:22:32 UTC (rev 9636)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.21.1: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.2b.dev: https://docutils.sourceforge.io/" />
<title>compact_lists.txt</title>
<link rel="stylesheet" href="../input/data/html4css1.css" type="text/css" />
</head>
Modified: trunk/docutils/test/functional/expected/dangerous.html
===================================================================
--- trunk/docutils/test/functional/expected/dangerous.html 2024-04-10 22:00:04 UTC (rev 9635)
+++ trunk/docutils/test/functional/expected/dangerous.html 2024-04-10 22:22:32 UTC (rev 9636)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.21.1: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.2b.dev: https://docutils.sourceforge.io/" />
<title>dangerous.txt</title>
<link rel="stylesheet" href="../input/data/html4css1.css" type="text/css" />
</head>
Modified: trunk/docutils/test/functional/expected/field_name_limit.html
===================================================================
--- trunk/docutils/test/functional/expected/field_name_limit.html 2024-04-10 22:00:04 UTC (rev 9635)
+++ trunk/docutils/test/functional/expected/field_name_limit.html 2024-04-10 22:22:32 UTC (rev 9636)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.21.1: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.2b.dev: https://docutils.sourceforge.io/" />
<title>field_list.txt</title>
<link rel="stylesheet" href="../input/data/html4css1.css" type="text/css" />
</head>
Modified: trunk/docutils/test/functional/expected/footnotes_html5.html
===================================================================
--- trunk/docutils/test/functional/expected/footnotes_html5.html 2024-04-10 22:00:04 UTC (rev 9635)
+++ trunk/docutils/test/functional/expected/footnotes_html5.html 2024-04-10 22:22:32 UTC (rev 9636)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21.1: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.2b.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Test footnote and citation rendering</title>
<link rel="stylesheet" href="../input/data/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/math_experiments_mathml.html
===================================================================
--- trunk/docutils/test/functional/expected/math_experiments_mathml.html 2024-04-10 22:00:04 UTC (rev 9635)
+++ trunk/docutils/test/functional/expected/math_experiments_mathml.html 2024-04-10 22:22:32 UTC (rev 9636)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21.1: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.2b.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Math Conversion Tests</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/math_experiments_mathml_blahtexml.html
===================================================================
--- trunk/docutils/test/functional/expected/math_experiments_mathml_blahtexml.html 2024-04-10 22:00:04 UTC (rev 9635)
+++ trunk/docutils/test/functional/expected/math_experiments_mathml_blahtexml.html 2024-04-10 22:22:32 UTC (rev 9636)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21.1: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.2b.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Math Conversion Tests</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/math_experiments_mathml_pandoc.html
===================================================================
--- trunk/docutils/test/functional/expected/math_experiments_mathml_pandoc.html 2024-04-10 22:00:04 UTC (rev 9635)
+++ trunk/docutils/test/functional/expected/math_experiments_mathml_pandoc.html 2024-04-10 22:22:32 UTC (rev 9636)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21.1: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.2b.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Math Conversion Tests</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/math_experiments_mathml_ttm.html
===================================================================
--- trunk/docutils/test/functional/expected/math_experiments_mathml_ttm.html 2024-04-10 22:00:04 UTC (rev 9635)
+++ trunk/docutils/test/functional/expected/math_experiments_mathml_ttm.html 2024-04-10 22:22:32 UTC (rev 9636)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21.1: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.2b.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Math Conversion Tests</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/math_output_html.html
===================================================================
--- trunk/docutils/test/functional/expected/math_output_html.html 2024-04-10 22:00:04 UTC (rev 9635)
+++ trunk/docutils/test/functional/expected/math_output_html.html 2024-04-10 22:22:32 UTC (rev 9636)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.21.1: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.2b.dev: https://docutils.sourceforge.io/" />
<title>Mathematics</title>
<link rel="stylesheet" href="../input/data/html4css1.css" type="text/css" />
<link rel="stylesheet" href="../input/data/math.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/math_output_latex.html
===================================================================
--- trunk/docutils/test/functional/expected/math_output_latex.html 2024-04-10 22:00:04 UTC (rev 9635)
+++ trunk/docutils/test/functional/expected/math_output_latex.html 2024-04-10 22:22:32 UTC (rev 9636)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.21.1: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.2b.dev: https://docutils.sourceforge.io/" />
<title>Mathematics</title>
<link rel="stylesheet" href="../input/data/html4css1.css" type="text/css" />
</head>
Modified: trunk/docutils/test/functional/expected/math_output_mathjax.html
===================================================================
--- trunk/docutils/test/functional/expected/math_output_mathjax.html 2024-04-10 22:00:04 UTC (rev 9635)
+++ trunk/docutils/test/functional/expected/math_output_mathjax.html 2024-04-10 22:22:32 UTC (rev 9636)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.21.1: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.2b.dev: https://docutils.sourceforge.io/" />
<title>Mathematics</title>
<script type="text/javascript" src="/usr/share/javascript/mathjax/MathJax.js?config=TeX-AMS_CHTML"></script>
<link rel="stylesheet" href="../input/data/html4css1.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/math_output_mathml.html
===================================================================
--- trunk/docutils/test/functional/expected/math_output_mathml.html 2024-04-10 22:00:04 UTC (rev 9635)
+++ trunk/docutils/test/functional/expected/math_output_mathml.html 2024-04-10 22:22:32 UTC (rev 9636)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21.1: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.2b.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Mathematics</title>
<link rel="stylesheet" href="../input/data/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/mathematics_mathml.html
===================================================================
--- trunk/docutils/test/functional/expected/mathematics_mathml.html 2024-04-10 22:00:04 UTC (rev 9635)
+++ trunk/docutils/test/functional/expected/mathematics_mathml.html 2024-04-10 22:22:32 UTC (rev 9636)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21.1: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.2b.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>LaTeX syntax for mathematics</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/mathematics_mathml_blahtexml.html
===================================================================
--- trunk/docutils/test/functional/expected/mathematics_mathml_blahtexml.html 2024-04-10 22:00:04 UTC (rev 9635)
+++ trunk/docutils/test/functional/expected/mathematics_mathml_blahtexml.html 2024-04-10 22:22:32 UTC (rev 9636)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21.1: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.2b.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>LaTeX syntax for mathematics</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/mathematics_mathml_pandoc.html
===================================================================
--- trunk/docutils/test/functional/expected/mathematics_mathml_pandoc.html 2024-04-10 22:00:04 UTC (rev 9635)
+++ trunk/docutils/test/functional/expected/mathematics_mathml_pandoc.html 2024-04-10 22:22:32 UTC (rev 9636)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21.1: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.2b.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>LaTeX syntax for mathematics</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/mathematics_mathml_ttm.html
===================================================================
--- trunk/docutils/test/functional/expected/mathematics_mathml_ttm.html 2024-04-10 22:00:04 UTC (rev 9635)
+++ trunk/docutils/test/functional/expected/mathematics_mathml_ttm.html 2024-04-10 22:22:32 UTC (rev 9636)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21.1: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.2b.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>LaTeX syntax for mathematics</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/misc_rst_html4css1.html
===================================================================
--- trunk/docutils/test/functional/expected/misc_rst_html4css1.html 2024-04-10 22:00:04 UTC (rev 9635)
+++ trunk/docutils/test/functional/expected/misc_rst_html4css1.html 2024-04-10 22:22:32 UTC (rev 9636)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.21.1: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.2b.dev: https://docutils.sourceforge.io/" />
<title>Additional tests with html4css1</title>
<link rel="stylesheet" href="foo&bar.css" type="text/css" />
<link rel="stylesheet" href="../input/data/html4css1.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/misc_rst_html5.html
===================================================================
--- trunk/docutils/test/functional/expected/misc_rst_html5.html 2024-04-10 22:00:04 UTC (rev 9635)
+++ trunk/docutils/test/functional/expected/misc_rst_html5.html 2024-04-10 22:22:32 UTC (rev 9636)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21.1: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.2b.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Additional tests with HTML 5</title>
<link rel="stylesheet" href="../input/data/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/pep_html.html
===================================================================
--- trunk/docutils/test/functional/expected/pep_html.html 2024-04-10 22:00:04 UTC (rev 9635)
+++ trunk/docutils/test/functional/expected/pep_html.html 2024-04-10 22:22:32 UTC (rev 9636)
@@ -8,7 +8,7 @@
-->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <meta name="generator" content="Docutils 0.21.1: https://docutils.sourceforge.io/" />
+ <meta name="generator" content="Docutils 0.21.2b.dev: https://docutils.sourceforge.io/" />
<title>PEP 100 - Test PEP</title>
<link rel="stylesheet" href="../input/data/html4css1.css" type="text/css" />
</head>
Modified: trunk/docutils/test/functional/expected/rst_html5_tuftig.html
===================================================================
--- trunk/docutils/test/functional/expected/rst_html5_tuftig.html 2024-04-10 22:00:04 UTC (rev 9635)
+++ trunk/docutils/test/functional/expected/rst_html5_tuftig.html 2024-04-10 22:22:32 UTC (rev 9636)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21.1: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.2b.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Special Features of the tuftig.css Stylesheet</title>
<link rel="stylesheet" href="../input/data/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/standalone_rst_docutils_xml.xml
===================================================================
--- trunk/docutils/test/functional/expected/standalone_rst_docutils_xml.xml 2024-04-10 22:00:04 UTC (rev 9635)
+++ trunk/docutils/test/functional/expected/standalone_rst_docutils_xml.xml 2024-04-10 22:22:32 UTC (rev 9636)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE document PUBLIC "+//IDN docutils.sourceforge.net//DTD Docutils Generic//EN//XML" "http://docutils.sourceforge.net/docs/ref/docutils.dtd">
-<!-- Generated by Docutils 0.21.1 -->
+<!-- Generated by Docutils 0.21.2b.dev -->
<document ids="restructuredtext-test-document doctitle" names="restructuredtext\ test\ document doctitle" source="functional/input/standalone_rst_docutils_xml.txt" title="reStructuredText Test Document">
<title>reStructuredText Test Document</title>
<subtitle ids="examples-of-syntax-constructs subtitle" names="examples\ of\ syntax\ constructs subtitle">Examples of Syntax Constructs</subtitle>
Modified: trunk/docutils/test/functional/expected/standalone_rst_html4css1.html
===================================================================
--- trunk/docutils/test/functional/expected/standalone_rst_html4css1.html 2024-04-10 22:00:04 UTC (rev 9635)
+++ trunk/docutils/test/functional/expected/standalone_rst_html4css1.html 2024-04-10 22:22:32 UTC (rev 9636)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.21.1: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.2b.dev: https://docutils.sourceforge.io/" />
<meta content="reStructuredText, test, parser" name="keywords" />
<meta content="A test document, containing at least one example of each reStructuredText construct." lang="en" name="description" />
<meta name="author" content="David Goodger" />
Modified: trunk/docutils/test/functional/expected/standalone_rst_html5.html
===================================================================
--- trunk/docutils/test/functional/expected/standalone_rst_html5.html 2024-04-10 22:00:04 UTC (rev 9635)
+++ trunk/docutils/test/functional/expected/standalone_rst_html5.html 2024-04-10 22:22:32 UTC (rev 9636)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21.1: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.2b.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta content="reStructuredText, test, parser" name="keywords" />
<meta content="A test document, containing at least one example of each reStructuredText construct." lang="en" name="description" xml:lang="en" />
Modified: trunk/docutils/test/functional/expected/standalone_rst_s5_html_1.html
===================================================================
--- trunk/docutils/test/functional/expected/standalone_rst_s5_html_1.html 2024-04-10 22:00:04 UTC (rev 9635)
+++ trunk/docutils/test/functional/expected/standalone_rst_s5_html_1.html 2024-04-10 22:22:32 UTC (rev 9636)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.21.1: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.2b.dev: https://docutils.sourceforge.io/" />
<meta name="version" content="S5 1.1" />
<meta name="author" content="David Goodger" />
<meta name="date" content="2005-11-28" />
Modified: trunk/docutils/test/functional/expected/standalone_rst_s5_html_2.html
===================================================================
--- trunk/docutils/test/functional/expected/standalone_rst_s5_html_2.html 2024-04-10 22:00:04 UTC (rev 9635)
+++ trunk/docutils/test/functional/expected/standalone_rst_s5_html_2.html 2024-04-10 22:22:32 UTC (rev 9636)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.21.1: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.2b.dev: https://docutils.sourceforge.io/" />
<meta name="version" content="S5 1.1" />
<meta name="author" content="David Goodger" />
<meta name="date" content="2005-11-28" />
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <mi...@us...> - 2024-04-12 09:50:56
|
Revision: 9639
http://sourceforge.net/p/docutils/code/9639
Author: milde
Date: 2024-04-12 09:50:53 +0000 (Fri, 12 Apr 2024)
Log Message:
-----------
Do not exclude "test/functional/output/" from the source package.
Modified Paths:
--------------
trunk/docutils/pyproject.toml
trunk/docutils/test/functional/output/README.txt
Modified: trunk/docutils/pyproject.toml
===================================================================
--- trunk/docutils/pyproject.toml 2024-04-12 09:50:40 UTC (rev 9638)
+++ trunk/docutils/pyproject.toml 2024-04-12 09:50:53 UTC (rev 9639)
@@ -120,9 +120,10 @@
"*/*~",
"*.DS_Store",
"*/*.DS_Store",
+ "*/.pytest_cache",
"test/alltests.out",
+ "test/functional/output/[a-z]*",
"test/record.txt",
- "test/functional/output",
]
# Codespell configuration (see https://pypi.org/project/codespell/)
Modified: trunk/docutils/test/functional/output/README.txt
===================================================================
--- trunk/docutils/test/functional/output/README.txt 2024-04-12 09:50:40 UTC (rev 9638)
+++ trunk/docutils/test/functional/output/README.txt 2024-04-12 09:50:53 UTC (rev 9639)
@@ -1,3 +1,4 @@
This is the directory where the actual output is stored.
-This README.txt is just a placeholder to make CVS create the directory.
+This README.txt is just a placeholder to ensure the directory is in the
+repository and source packages.
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <mi...@us...> - 2024-04-18 11:18:03
|
Revision: 9647
http://sourceforge.net/p/docutils/code/9647
Author: milde
Date: 2024-04-18 11:18:00 +0000 (Thu, 18 Apr 2024)
Log Message:
-----------
Reconcile Docutils DTD and Document Tree documentation.
There are some cases where docutils.dtd and doctree.txt diverged.
Change so, that the documentation is consistent and matches actual behaviour.
Remove declaration of element `<info>`:
* added to docutils.dtd and nodes.py but not doctree.txt 2004-03-21,
* never used,
* removed from nodes.py 2004-11-09.
Remove `<decoration>` from content model of `<section>` elements:
* added to docutils.dtd but not doctree.txt 2004-03-21,
* never used because the Docutils rST parser inserts `<decoration>`
directly into `<document>` even if the "header" or "footer" directive
is nested in a section.
Fix declaration of `<sidebar>` content:
* no `<subtitle>` without `<title>`.
Add `<subtitle>` to children of `<section>` elements in "doctree.txt":
* present in docutils.dtd,
* used in the functional test examples via SectSubTitle transform
(with "sectsubtitle_xform" configuration setting True).
Modified Paths:
--------------
trunk/docutils/HISTORY.txt
trunk/docutils/RELEASE-NOTES.txt
trunk/docutils/docs/ref/doctree.txt
trunk/docutils/docs/ref/docutils.dtd
Modified: trunk/docutils/HISTORY.txt
===================================================================
--- trunk/docutils/HISTORY.txt 2024-04-17 19:14:57 UTC (rev 9646)
+++ trunk/docutils/HISTORY.txt 2024-04-18 11:18:00 UTC (rev 9647)
@@ -17,9 +17,16 @@
Release 0.21.2b.dev (unpublished)
=================================
-Post-release waiting.
+* Declare support for languages Georgian and Catalan (Valencian).
+* docs/ref/docutils.dtd
+ - Remove declaration of element <info>.
+ - Remove <decoration> from content declaration of <section> elements.
+
+* Fix test failures.
+
+
Release 0.21.1 (2024-04-10)
===========================
Modified: trunk/docutils/RELEASE-NOTES.txt
===================================================================
--- trunk/docutils/RELEASE-NOTES.txt 2024-04-17 19:14:57 UTC (rev 9646)
+++ trunk/docutils/RELEASE-NOTES.txt 2024-04-18 11:18:00 UTC (rev 9647)
@@ -45,10 +45,15 @@
.. _entry points:
https://packaging.python.org/en/latest/specifications/entry-points/
-
Document Tree / Docutils DTD
----------------------------
+* Allow multiple <term> elements in a <definition_list_item>
+ in Docutils 0.22 (cf. `feature-requests:60`__).
+ Third-party writers may need adaption.
+
+ __ https://sourceforge.net/p/docutils/feature-requests/60/
+
* Do not lowercase reference names in the `refname attribute`_
(matching hyperlinks, footnotes, and citations remains case insensitive),
and drop the ``name`` attribute from <reference> nodes
@@ -137,17 +142,9 @@
- No more changing case in to uppercase, leave it to the source.
-
Misc
----
-* Document tree:
- Allow multiple <term> elements in a <definition_list_item>
- in Docutils 0.22 (cf. `feature-requests:60`__).
- Third-party writers may need adaption.
-
- __ https://sourceforge.net/p/docutils/feature-requests/60/
-
* Remove `parsers.rst.directives.CSVTable.HeaderDialect`
in Docutils 0.22.
@@ -197,12 +194,16 @@
.. _use_latex_citations: docs/user/config.html#use-latex-citations
.. _buildhtml.py: docs/user/tools.html#buildhtml-py
+
Release 0.21.2b.dev (unpublished)
=================================
-Post-release waiting.
+* Document Tree / Docutils DTD
+ - Remove declaration of unsupported element <info>.
+ - Remove <decoration> from content declaration of <section> elements.
+
Release 0.21.1 (2024-04-10)
===========================
Modified: trunk/docutils/docs/ref/doctree.txt
===================================================================
--- trunk/docutils/docs/ref/doctree.txt 2024-04-17 19:14:57 UTC (rev 9646)
+++ trunk/docutils/docs/ref/doctree.txt 2024-04-18 11:18:00 UTC (rev 9647)
@@ -3010,11 +3010,11 @@
:Parents: The following elements may contain <section>:
`\<document>`_, `\<section>`_
-:Children: <section> elements begin with a `\<title>`_, and may contain
- `body elements`_ as well as `\<transition>`_, `\<topic>`_,
- and `\<sidebar>`_ elements::
+:Children: <section> elements begin with a `\<title>`_, and optional
+ `\<subtitle>`_. They may contain `body elements`_ as well as
+ `\<transition>`_, `\<topic>`_, and `\<sidebar>`_ elements::
- (title, %structure.model;)
+ (title, subtitle?, %structure.model;)
See the `%structure.model;`_ parameter entity for details of
the body of a <section>.
@@ -3106,11 +3106,12 @@
:Parents: The following elements may contain <sidebar>:
`\<document>`_, `\<section>`_.
-:Children: <sidebar> elements begin with optional `\<title>`_ and
- `\<subtitle>`_ and contain `body elements`_ and
- `\<topic>`_ elements::
+:Children: <sidebar> elements begin with optional
+ `\<title>`_ and `\<subtitle>`_ and contain
+ `body elements`_ and `\<topic>`_ elements.
+ There must not be a <subtitle> without title. ::
- (title, subtitle?,
+ ((title, subtitle?)?,
(%body.elements; | topic)+)
:Attributes: The <sidebar> element contains only the `common attributes`_.
@@ -3213,7 +3214,8 @@
<subtitle>
==========
-The <subtitle> element stores the subtitle of a `\<document>`_.
+The <subtitle> element stores the subtitle of a `\<document>`_,
+`\<section>`, or `\<sidebar>`.
Details
-------
@@ -3224,8 +3226,8 @@
a <hgroup_> element.
:Processing: A document's subtitle is usually rendered smaller
than its `\<title>`_.
-:Parents: The `\<document>`_ and `\<sidebar>`_ elements may contain
- <subtitle>.
+:Parents: The `\<document>`_, `\<section>`, and `\<sidebar>`_ elements
+ may contain <subtitle>.
:Children: <subtitle> elements may contain text data
plus `inline elements`_ (`%text.model;`_).
:Attributes: The <subtitle> element contains only the `common attributes`_.
@@ -3245,7 +3247,8 @@
A paragraph.
-Complete pseudo-XML_ result after parsing and applying transforms_::
+Complete pseudo-XML_ result after parsing and applying the
+`DocTitle transform`_::
<document ids="title" names="title">
<title>
@@ -4693,7 +4696,7 @@
* A transition may not occur at the end of a document or section.
-The `%structure.model;`_ parameter entity is directly employed in the
+The ``%structure.model;`` parameter entity is directly employed in the
content models of the `\<document>`_ and `\<section>`_ elements.
Modified: trunk/docutils/docs/ref/docutils.dtd
===================================================================
--- trunk/docutils/docs/ref/docutils.dtd 2024-04-17 19:14:57 UTC (rev 9646)
+++ trunk/docutils/docs/ref/docutils.dtd 2024-04-18 11:18:00 UTC (rev 9647)
@@ -286,11 +286,6 @@
<!ELEMENT docinfo (%bibliographic.elements;)+>
<!ATTLIST docinfo %basic.atts;>
-<!-- Container for bibliographic elements. May not be empty.
-Eventual replacement for docinfo? -->
-<!ELEMENT info (%bibliographic.elements;)+>
-<!ATTLIST info %basic.atts;>
-
<!ELEMENT author %text.model;>
<!ATTLIST author %basic.atts;>
@@ -357,7 +352,7 @@
-->
<!ELEMENT section
- (title, subtitle?, info?, decoration?, %structure.model;)>
+ (title, subtitle?, %structure.model;)>
<!ATTLIST section %basic.atts;>
<!ELEMENT topic (title?, (%body.elements;)+)>
@@ -366,7 +361,7 @@
depth %number; #IMPLIED
local %yesorno; #IMPLIED>
-<!ELEMENT sidebar (title?, subtitle?, (%body.elements; | topic)+)>
+<!ELEMENT sidebar ((title, subtitle?)?, (%body.elements; | topic)+)>
<!ATTLIST sidebar %basic.atts;>
<!ELEMENT transition EMPTY>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <gr...@us...> - 2024-04-23 18:54:31
|
Revision: 9649
http://sourceforge.net/p/docutils/code/9649
Author: grubert
Date: 2024-04-23 18:54:26 +0000 (Tue, 23 Apr 2024)
Log Message:
-----------
Version 0.21.2
Modified Paths:
--------------
trunk/docutils/HISTORY.txt
trunk/docutils/README.txt
trunk/docutils/RELEASE-NOTES.txt
trunk/docutils/docs/dev/release.txt
trunk/docutils/docutils/__init__.py
trunk/docutils/test/functional/expected/buggy_mathml.html
trunk/docutils/test/functional/expected/buggy_mathml_blahtexml.html
trunk/docutils/test/functional/expected/buggy_mathml_pandoc.html
trunk/docutils/test/functional/expected/buggy_mathml_ttm.html
trunk/docutils/test/functional/expected/compact_lists.html
trunk/docutils/test/functional/expected/dangerous.html
trunk/docutils/test/functional/expected/field_name_limit.html
trunk/docutils/test/functional/expected/footnotes_html5.html
trunk/docutils/test/functional/expected/math_experiments_mathml.html
trunk/docutils/test/functional/expected/math_experiments_mathml_blahtexml.html
trunk/docutils/test/functional/expected/math_experiments_mathml_pandoc.html
trunk/docutils/test/functional/expected/math_experiments_mathml_ttm.html
trunk/docutils/test/functional/expected/math_output_html.html
trunk/docutils/test/functional/expected/math_output_latex.html
trunk/docutils/test/functional/expected/math_output_mathjax.html
trunk/docutils/test/functional/expected/math_output_mathml.html
trunk/docutils/test/functional/expected/mathematics_mathml.html
trunk/docutils/test/functional/expected/mathematics_mathml_blahtexml.html
trunk/docutils/test/functional/expected/mathematics_mathml_pandoc.html
trunk/docutils/test/functional/expected/mathematics_mathml_ttm.html
trunk/docutils/test/functional/expected/misc_rst_html4css1.html
trunk/docutils/test/functional/expected/misc_rst_html5.html
trunk/docutils/test/functional/expected/pep_html.html
trunk/docutils/test/functional/expected/rst_html5_tuftig.html
trunk/docutils/test/functional/expected/standalone_rst_docutils_xml.xml
trunk/docutils/test/functional/expected/standalone_rst_html4css1.html
trunk/docutils/test/functional/expected/standalone_rst_html5.html
trunk/docutils/test/functional/expected/standalone_rst_s5_html_1.html
trunk/docutils/test/functional/expected/standalone_rst_s5_html_2.html
Modified: trunk/docutils/HISTORY.txt
===================================================================
--- trunk/docutils/HISTORY.txt 2024-04-21 09:21:16 UTC (rev 9648)
+++ trunk/docutils/HISTORY.txt 2024-04-23 18:54:26 UTC (rev 9649)
@@ -14,8 +14,8 @@
.. contents::
-Release 0.21.2b.dev (unpublished)
-=================================
+Release 0.21.2 (2024-04-23)
+===========================
* Declare support for languages Georgian and Catalan (Valencian).
Modified: trunk/docutils/README.txt
===================================================================
--- trunk/docutils/README.txt 2024-04-21 09:21:16 UTC (rev 9648)
+++ trunk/docutils/README.txt 2024-04-23 18:54:26 UTC (rev 9649)
@@ -1,8 +1,8 @@
.. include:: docs/header0.txt
-==============================
- README: Docutils 0.21.2b.dev
-==============================
+=========================
+ README: Docutils 0.21.2
+=========================
:Author: David Goodger
:Contact: go...@py...
Modified: trunk/docutils/RELEASE-NOTES.txt
===================================================================
--- trunk/docutils/RELEASE-NOTES.txt 2024-04-21 09:21:16 UTC (rev 9648)
+++ trunk/docutils/RELEASE-NOTES.txt 2024-04-23 18:54:26 UTC (rev 9649)
@@ -204,6 +204,14 @@
- Remove <decoration> from content declaration of <section> elements.
+Release 0.21.2 (2024-04-23)
+===========================
+
+* Declare support for languages Georgian and Catalan (Valencian).
+
+* Fix test failures.
+
+
Release 0.21.1 (2024-04-10)
===========================
Modified: trunk/docutils/docs/dev/release.txt
===================================================================
--- trunk/docutils/docs/dev/release.txt 2024-04-21 09:21:16 UTC (rev 9648)
+++ trunk/docutils/docs/dev/release.txt 2024-04-23 18:54:26 UTC (rev 9649)
@@ -71,6 +71,8 @@
python3 -m pip install build
python3 -m build .
+ check file sizes: the 0.21.2 wheel was 574K the sdist 2,2M.
+
* Upload wheel and source to test.pypi.
Set repository and key in ~/.pypirc with a <server-name> and
@@ -78,7 +80,8 @@
python3 -m twine upload --repository <server-name> dist/*
- Test in venv. NOTE use --pre for prereleases::
+ Change directory outside of checkout and test in venv.
+ NOTE use --pre for prereleases::
python3 -m venv du3 ; cd du3
export PYTHONPATH= ; . bin/activate
@@ -88,6 +91,7 @@
cp -Lr ../docutils-code/docutils/test .
python test/alltests.py
+ Ignore missing HISTORY.txt it is not in the wheel file.
if ok ::
deactivate ; cd .. ; rm -r du3
Modified: trunk/docutils/docutils/__init__.py
===================================================================
--- trunk/docutils/docutils/__init__.py 2024-04-21 09:21:16 UTC (rev 9648)
+++ trunk/docutils/docutils/__init__.py 2024-04-23 18:54:26 UTC (rev 9649)
@@ -54,7 +54,7 @@
__docformat__ = 'reStructuredText'
-__version__ = '0.21.2b.dev'
+__version__ = '0.21.2'
"""Docutils version identifier (complies with PEP 440)::
major.minor[.micro][releaselevel[serial]][.dev]
@@ -118,9 +118,9 @@
major=0,
minor=21,
micro=2,
- releaselevel='beta', # one of 'alpha', 'beta', 'candidate', 'final'
+ releaselevel='final', # one of 'alpha', 'beta', 'candidate', 'final'
serial=0, # pre-release number (0 for final releases and snapshots)
- release=False # True for official releases and pre-releases
+ release=True # True for official releases and pre-releases
)
"""Comprehensive version information tuple.
Modified: trunk/docutils/test/functional/expected/buggy_mathml.html
===================================================================
--- trunk/docutils/test/functional/expected/buggy_mathml.html 2024-04-21 09:21:16 UTC (rev 9648)
+++ trunk/docutils/test/functional/expected/buggy_mathml.html 2024-04-23 18:54:26 UTC (rev 9649)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21.2b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.2: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>buggy-maths</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/buggy_mathml_blahtexml.html
===================================================================
--- trunk/docutils/test/functional/expected/buggy_mathml_blahtexml.html 2024-04-21 09:21:16 UTC (rev 9648)
+++ trunk/docutils/test/functional/expected/buggy_mathml_blahtexml.html 2024-04-23 18:54:26 UTC (rev 9649)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21.2b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.2: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>buggy-maths</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/buggy_mathml_pandoc.html
===================================================================
--- trunk/docutils/test/functional/expected/buggy_mathml_pandoc.html 2024-04-21 09:21:16 UTC (rev 9648)
+++ trunk/docutils/test/functional/expected/buggy_mathml_pandoc.html 2024-04-23 18:54:26 UTC (rev 9649)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21.2b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.2: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>buggy-maths</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/buggy_mathml_ttm.html
===================================================================
--- trunk/docutils/test/functional/expected/buggy_mathml_ttm.html 2024-04-21 09:21:16 UTC (rev 9648)
+++ trunk/docutils/test/functional/expected/buggy_mathml_ttm.html 2024-04-23 18:54:26 UTC (rev 9649)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21.2b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.2: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>buggy-maths</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/compact_lists.html
===================================================================
--- trunk/docutils/test/functional/expected/compact_lists.html 2024-04-21 09:21:16 UTC (rev 9648)
+++ trunk/docutils/test/functional/expected/compact_lists.html 2024-04-23 18:54:26 UTC (rev 9649)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.21.2b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.2: https://docutils.sourceforge.io/" />
<title>compact_lists.txt</title>
<link rel="stylesheet" href="../input/data/html4css1.css" type="text/css" />
</head>
Modified: trunk/docutils/test/functional/expected/dangerous.html
===================================================================
--- trunk/docutils/test/functional/expected/dangerous.html 2024-04-21 09:21:16 UTC (rev 9648)
+++ trunk/docutils/test/functional/expected/dangerous.html 2024-04-23 18:54:26 UTC (rev 9649)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.21.2b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.2: https://docutils.sourceforge.io/" />
<title>dangerous.txt</title>
<link rel="stylesheet" href="../input/data/html4css1.css" type="text/css" />
</head>
Modified: trunk/docutils/test/functional/expected/field_name_limit.html
===================================================================
--- trunk/docutils/test/functional/expected/field_name_limit.html 2024-04-21 09:21:16 UTC (rev 9648)
+++ trunk/docutils/test/functional/expected/field_name_limit.html 2024-04-23 18:54:26 UTC (rev 9649)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.21.2b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.2: https://docutils.sourceforge.io/" />
<title>field_list.txt</title>
<link rel="stylesheet" href="../input/data/html4css1.css" type="text/css" />
</head>
Modified: trunk/docutils/test/functional/expected/footnotes_html5.html
===================================================================
--- trunk/docutils/test/functional/expected/footnotes_html5.html 2024-04-21 09:21:16 UTC (rev 9648)
+++ trunk/docutils/test/functional/expected/footnotes_html5.html 2024-04-23 18:54:26 UTC (rev 9649)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21.2b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.2: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Test footnote and citation rendering</title>
<link rel="stylesheet" href="../input/data/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/math_experiments_mathml.html
===================================================================
--- trunk/docutils/test/functional/expected/math_experiments_mathml.html 2024-04-21 09:21:16 UTC (rev 9648)
+++ trunk/docutils/test/functional/expected/math_experiments_mathml.html 2024-04-23 18:54:26 UTC (rev 9649)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21.2b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.2: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Math Conversion Tests</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/math_experiments_mathml_blahtexml.html
===================================================================
--- trunk/docutils/test/functional/expected/math_experiments_mathml_blahtexml.html 2024-04-21 09:21:16 UTC (rev 9648)
+++ trunk/docutils/test/functional/expected/math_experiments_mathml_blahtexml.html 2024-04-23 18:54:26 UTC (rev 9649)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21.2b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.2: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Math Conversion Tests</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/math_experiments_mathml_pandoc.html
===================================================================
--- trunk/docutils/test/functional/expected/math_experiments_mathml_pandoc.html 2024-04-21 09:21:16 UTC (rev 9648)
+++ trunk/docutils/test/functional/expected/math_experiments_mathml_pandoc.html 2024-04-23 18:54:26 UTC (rev 9649)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21.2b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.2: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Math Conversion Tests</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/math_experiments_mathml_ttm.html
===================================================================
--- trunk/docutils/test/functional/expected/math_experiments_mathml_ttm.html 2024-04-21 09:21:16 UTC (rev 9648)
+++ trunk/docutils/test/functional/expected/math_experiments_mathml_ttm.html 2024-04-23 18:54:26 UTC (rev 9649)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21.2b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.2: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Math Conversion Tests</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/math_output_html.html
===================================================================
--- trunk/docutils/test/functional/expected/math_output_html.html 2024-04-21 09:21:16 UTC (rev 9648)
+++ trunk/docutils/test/functional/expected/math_output_html.html 2024-04-23 18:54:26 UTC (rev 9649)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.21.2b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.2: https://docutils.sourceforge.io/" />
<title>Mathematics</title>
<link rel="stylesheet" href="../input/data/html4css1.css" type="text/css" />
<link rel="stylesheet" href="../input/data/math.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/math_output_latex.html
===================================================================
--- trunk/docutils/test/functional/expected/math_output_latex.html 2024-04-21 09:21:16 UTC (rev 9648)
+++ trunk/docutils/test/functional/expected/math_output_latex.html 2024-04-23 18:54:26 UTC (rev 9649)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.21.2b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.2: https://docutils.sourceforge.io/" />
<title>Mathematics</title>
<link rel="stylesheet" href="../input/data/html4css1.css" type="text/css" />
</head>
Modified: trunk/docutils/test/functional/expected/math_output_mathjax.html
===================================================================
--- trunk/docutils/test/functional/expected/math_output_mathjax.html 2024-04-21 09:21:16 UTC (rev 9648)
+++ trunk/docutils/test/functional/expected/math_output_mathjax.html 2024-04-23 18:54:26 UTC (rev 9649)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.21.2b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.2: https://docutils.sourceforge.io/" />
<title>Mathematics</title>
<script type="text/javascript" src="/usr/share/javascript/mathjax/MathJax.js?config=TeX-AMS_CHTML"></script>
<link rel="stylesheet" href="../input/data/html4css1.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/math_output_mathml.html
===================================================================
--- trunk/docutils/test/functional/expected/math_output_mathml.html 2024-04-21 09:21:16 UTC (rev 9648)
+++ trunk/docutils/test/functional/expected/math_output_mathml.html 2024-04-23 18:54:26 UTC (rev 9649)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21.2b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.2: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Mathematics</title>
<link rel="stylesheet" href="../input/data/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/mathematics_mathml.html
===================================================================
--- trunk/docutils/test/functional/expected/mathematics_mathml.html 2024-04-21 09:21:16 UTC (rev 9648)
+++ trunk/docutils/test/functional/expected/mathematics_mathml.html 2024-04-23 18:54:26 UTC (rev 9649)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21.2b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.2: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>LaTeX syntax for mathematics</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/mathematics_mathml_blahtexml.html
===================================================================
--- trunk/docutils/test/functional/expected/mathematics_mathml_blahtexml.html 2024-04-21 09:21:16 UTC (rev 9648)
+++ trunk/docutils/test/functional/expected/mathematics_mathml_blahtexml.html 2024-04-23 18:54:26 UTC (rev 9649)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21.2b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.2: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>LaTeX syntax for mathematics</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/mathematics_mathml_pandoc.html
===================================================================
--- trunk/docutils/test/functional/expected/mathematics_mathml_pandoc.html 2024-04-21 09:21:16 UTC (rev 9648)
+++ trunk/docutils/test/functional/expected/mathematics_mathml_pandoc.html 2024-04-23 18:54:26 UTC (rev 9649)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21.2b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.2: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>LaTeX syntax for mathematics</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/mathematics_mathml_ttm.html
===================================================================
--- trunk/docutils/test/functional/expected/mathematics_mathml_ttm.html 2024-04-21 09:21:16 UTC (rev 9648)
+++ trunk/docutils/test/functional/expected/mathematics_mathml_ttm.html 2024-04-23 18:54:26 UTC (rev 9649)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21.2b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.2: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>LaTeX syntax for mathematics</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/misc_rst_html4css1.html
===================================================================
--- trunk/docutils/test/functional/expected/misc_rst_html4css1.html 2024-04-21 09:21:16 UTC (rev 9648)
+++ trunk/docutils/test/functional/expected/misc_rst_html4css1.html 2024-04-23 18:54:26 UTC (rev 9649)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.21.2b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.2: https://docutils.sourceforge.io/" />
<title>Additional tests with html4css1</title>
<link rel="stylesheet" href="foo&bar.css" type="text/css" />
<link rel="stylesheet" href="../input/data/html4css1.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/misc_rst_html5.html
===================================================================
--- trunk/docutils/test/functional/expected/misc_rst_html5.html 2024-04-21 09:21:16 UTC (rev 9648)
+++ trunk/docutils/test/functional/expected/misc_rst_html5.html 2024-04-23 18:54:26 UTC (rev 9649)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21.2b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.2: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Additional tests with HTML 5</title>
<link rel="stylesheet" href="../input/data/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/pep_html.html
===================================================================
--- trunk/docutils/test/functional/expected/pep_html.html 2024-04-21 09:21:16 UTC (rev 9648)
+++ trunk/docutils/test/functional/expected/pep_html.html 2024-04-23 18:54:26 UTC (rev 9649)
@@ -8,7 +8,7 @@
-->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <meta name="generator" content="Docutils 0.21.2b.dev: https://docutils.sourceforge.io/" />
+ <meta name="generator" content="Docutils 0.21.2: https://docutils.sourceforge.io/" />
<title>PEP 100 - Test PEP</title>
<link rel="stylesheet" href="../input/data/html4css1.css" type="text/css" />
</head>
Modified: trunk/docutils/test/functional/expected/rst_html5_tuftig.html
===================================================================
--- trunk/docutils/test/functional/expected/rst_html5_tuftig.html 2024-04-21 09:21:16 UTC (rev 9648)
+++ trunk/docutils/test/functional/expected/rst_html5_tuftig.html 2024-04-23 18:54:26 UTC (rev 9649)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21.2b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.2: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Special Features of the tuftig.css Stylesheet</title>
<link rel="stylesheet" href="../input/data/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/standalone_rst_docutils_xml.xml
===================================================================
--- trunk/docutils/test/functional/expected/standalone_rst_docutils_xml.xml 2024-04-21 09:21:16 UTC (rev 9648)
+++ trunk/docutils/test/functional/expected/standalone_rst_docutils_xml.xml 2024-04-23 18:54:26 UTC (rev 9649)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE document PUBLIC "+//IDN docutils.sourceforge.net//DTD Docutils Generic//EN//XML" "http://docutils.sourceforge.net/docs/ref/docutils.dtd">
-<!-- Generated by Docutils 0.21.2b.dev -->
+<!-- Generated by Docutils 0.21.2 -->
<document ids="restructuredtext-test-document doctitle" names="restructuredtext\ test\ document doctitle" source="functional/input/standalone_rst_docutils_xml.txt" title="reStructuredText Test Document">
<title>reStructuredText Test Document</title>
<subtitle ids="examples-of-syntax-constructs subtitle" names="examples\ of\ syntax\ constructs subtitle">Examples of Syntax Constructs</subtitle>
Modified: trunk/docutils/test/functional/expected/standalone_rst_html4css1.html
===================================================================
--- trunk/docutils/test/functional/expected/standalone_rst_html4css1.html 2024-04-21 09:21:16 UTC (rev 9648)
+++ trunk/docutils/test/functional/expected/standalone_rst_html4css1.html 2024-04-23 18:54:26 UTC (rev 9649)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.21.2b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.2: https://docutils.sourceforge.io/" />
<meta content="reStructuredText, test, parser" name="keywords" />
<meta content="A test document, containing at least one example of each reStructuredText construct." lang="en" name="description" />
<meta name="author" content="David Goodger" />
Modified: trunk/docutils/test/functional/expected/standalone_rst_html5.html
===================================================================
--- trunk/docutils/test/functional/expected/standalone_rst_html5.html 2024-04-21 09:21:16 UTC (rev 9648)
+++ trunk/docutils/test/functional/expected/standalone_rst_html5.html 2024-04-23 18:54:26 UTC (rev 9649)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21.2b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.2: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta content="reStructuredText, test, parser" name="keywords" />
<meta content="A test document, containing at least one example of each reStructuredText construct." lang="en" name="description" xml:lang="en" />
Modified: trunk/docutils/test/functional/expected/standalone_rst_s5_html_1.html
===================================================================
--- trunk/docutils/test/functional/expected/standalone_rst_s5_html_1.html 2024-04-21 09:21:16 UTC (rev 9648)
+++ trunk/docutils/test/functional/expected/standalone_rst_s5_html_1.html 2024-04-23 18:54:26 UTC (rev 9649)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.21.2b.dev: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.21.2: https://docutils.sourceforge.io/" />
<meta name="version" content="S5 1.1" />
<meta name="author" content="David Goodger" />
<meta name="date" content="2005-11-28" />
Modified: trunk/docutils/test/functional/expected/standalone_rst_s5_html_2.html
===================================================================
--- trunk/docutils/test/functional/exp...
[truncated message content] |
|
From: <gr...@us...> - 2024-04-23 19:29:41
|
Revision: 9654
http://sourceforge.net/p/docutils/code/9654
Author: grubert
Date: 2024-04-23 19:29:37 +0000 (Tue, 23 Apr 2024)
Log Message:
-----------
version 0.22b.dev
Modified Paths:
--------------
trunk/docutils/HISTORY.txt
trunk/docutils/README.txt
trunk/docutils/RELEASE-NOTES.txt
trunk/docutils/docutils/__init__.py
trunk/docutils/test/functional/expected/buggy_mathml.html
trunk/docutils/test/functional/expected/buggy_mathml_blahtexml.html
trunk/docutils/test/functional/expected/buggy_mathml_pandoc.html
trunk/docutils/test/functional/expected/buggy_mathml_ttm.html
trunk/docutils/test/functional/expected/compact_lists.html
trunk/docutils/test/functional/expected/dangerous.html
trunk/docutils/test/functional/expected/field_name_limit.html
trunk/docutils/test/functional/expected/footnotes_html5.html
trunk/docutils/test/functional/expected/math_experiments_mathml.html
trunk/docutils/test/functional/expected/math_experiments_mathml_blahtexml.html
trunk/docutils/test/functional/expected/math_experiments_mathml_pandoc.html
trunk/docutils/test/functional/expected/math_experiments_mathml_ttm.html
trunk/docutils/test/functional/expected/math_output_html.html
trunk/docutils/test/functional/expected/math_output_latex.html
trunk/docutils/test/functional/expected/math_output_mathjax.html
trunk/docutils/test/functional/expected/math_output_mathml.html
trunk/docutils/test/functional/expected/mathematics_mathml.html
trunk/docutils/test/functional/expected/mathematics_mathml_blahtexml.html
trunk/docutils/test/functional/expected/mathematics_mathml_pandoc.html
trunk/docutils/test/functional/expected/mathematics_mathml_ttm.html
trunk/docutils/test/functional/expected/misc_rst_html4css1.html
trunk/docutils/test/functional/expected/misc_rst_html5.html
trunk/docutils/test/functional/expected/pep_html.html
trunk/docutils/test/functional/expected/rst_html5_tuftig.html
trunk/docutils/test/functional/expected/standalone_rst_docutils_xml.xml
trunk/docutils/test/functional/expected/standalone_rst_html4css1.html
trunk/docutils/test/functional/expected/standalone_rst_html5.html
trunk/docutils/test/functional/expected/standalone_rst_s5_html_1.html
trunk/docutils/test/functional/expected/standalone_rst_s5_html_2.html
Modified: trunk/docutils/HISTORY.txt
===================================================================
--- trunk/docutils/HISTORY.txt 2024-04-23 19:24:35 UTC (rev 9653)
+++ trunk/docutils/HISTORY.txt 2024-04-23 19:29:37 UTC (rev 9654)
@@ -14,6 +14,11 @@
.. contents::
+Release 0.22b.dev (unpublished)
+===============================
+
+.
+
Release 0.21.2 (2024-04-23)
===========================
Modified: trunk/docutils/README.txt
===================================================================
--- trunk/docutils/README.txt 2024-04-23 19:24:35 UTC (rev 9653)
+++ trunk/docutils/README.txt 2024-04-23 19:29:37 UTC (rev 9654)
@@ -1,8 +1,8 @@
.. include:: docs/header0.txt
-=========================
- README: Docutils 0.21.2
-=========================
+=============================
+ README: Docutils 0.22b.dev
+=============================
:Author: David Goodger
:Contact: go...@py...
Modified: trunk/docutils/RELEASE-NOTES.txt
===================================================================
--- trunk/docutils/RELEASE-NOTES.txt 2024-04-23 19:24:35 UTC (rev 9653)
+++ trunk/docutils/RELEASE-NOTES.txt 2024-04-23 19:29:37 UTC (rev 9654)
@@ -195,7 +195,11 @@
.. _buildhtml.py: docs/user/tools.html#buildhtml-py
+Release 0.22b.dev (unpublished)
+===============================
+.
+
Release 0.21.2 (2024-04-23)
===========================
Modified: trunk/docutils/docutils/__init__.py
===================================================================
--- trunk/docutils/docutils/__init__.py 2024-04-23 19:24:35 UTC (rev 9653)
+++ trunk/docutils/docutils/__init__.py 2024-04-23 19:29:37 UTC (rev 9654)
@@ -54,7 +54,7 @@
__docformat__ = 'reStructuredText'
-__version__ = '0.21.2'
+__version__ = '0.22b.dev'
"""Docutils version identifier (complies with PEP 440)::
major.minor[.micro][releaselevel[serial]][.dev]
@@ -116,11 +116,11 @@
__version_info__ = VersionInfo(
major=0,
- minor=21,
- micro=2,
- releaselevel='final', # one of 'alpha', 'beta', 'candidate', 'final'
+ minor=22,
+ micro=0,
+ releaselevel='beta', # one of 'alpha', 'beta', 'candidate', 'final'
serial=0, # pre-release number (0 for final releases and snapshots)
- release=True # True for official releases and pre-releases
+ release=False # True for official releases and pre-releases
)
"""Comprehensive version information tuple.
Modified: trunk/docutils/test/functional/expected/buggy_mathml.html
===================================================================
--- trunk/docutils/test/functional/expected/buggy_mathml.html 2024-04-23 19:24:35 UTC (rev 9653)
+++ trunk/docutils/test/functional/expected/buggy_mathml.html 2024-04-23 19:29:37 UTC (rev 9654)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21.2: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>buggy-maths</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/buggy_mathml_blahtexml.html
===================================================================
--- trunk/docutils/test/functional/expected/buggy_mathml_blahtexml.html 2024-04-23 19:24:35 UTC (rev 9653)
+++ trunk/docutils/test/functional/expected/buggy_mathml_blahtexml.html 2024-04-23 19:29:37 UTC (rev 9654)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21.2: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>buggy-maths</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/buggy_mathml_pandoc.html
===================================================================
--- trunk/docutils/test/functional/expected/buggy_mathml_pandoc.html 2024-04-23 19:24:35 UTC (rev 9653)
+++ trunk/docutils/test/functional/expected/buggy_mathml_pandoc.html 2024-04-23 19:29:37 UTC (rev 9654)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21.2: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>buggy-maths</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/buggy_mathml_ttm.html
===================================================================
--- trunk/docutils/test/functional/expected/buggy_mathml_ttm.html 2024-04-23 19:24:35 UTC (rev 9653)
+++ trunk/docutils/test/functional/expected/buggy_mathml_ttm.html 2024-04-23 19:29:37 UTC (rev 9654)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21.2: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>buggy-maths</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/compact_lists.html
===================================================================
--- trunk/docutils/test/functional/expected/compact_lists.html 2024-04-23 19:24:35 UTC (rev 9653)
+++ trunk/docutils/test/functional/expected/compact_lists.html 2024-04-23 19:29:37 UTC (rev 9654)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.21.2: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
<title>compact_lists.txt</title>
<link rel="stylesheet" href="../input/data/html4css1.css" type="text/css" />
</head>
Modified: trunk/docutils/test/functional/expected/dangerous.html
===================================================================
--- trunk/docutils/test/functional/expected/dangerous.html 2024-04-23 19:24:35 UTC (rev 9653)
+++ trunk/docutils/test/functional/expected/dangerous.html 2024-04-23 19:29:37 UTC (rev 9654)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.21.2: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
<title>dangerous.txt</title>
<link rel="stylesheet" href="../input/data/html4css1.css" type="text/css" />
</head>
Modified: trunk/docutils/test/functional/expected/field_name_limit.html
===================================================================
--- trunk/docutils/test/functional/expected/field_name_limit.html 2024-04-23 19:24:35 UTC (rev 9653)
+++ trunk/docutils/test/functional/expected/field_name_limit.html 2024-04-23 19:29:37 UTC (rev 9654)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.21.2: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
<title>field_list.txt</title>
<link rel="stylesheet" href="../input/data/html4css1.css" type="text/css" />
</head>
Modified: trunk/docutils/test/functional/expected/footnotes_html5.html
===================================================================
--- trunk/docutils/test/functional/expected/footnotes_html5.html 2024-04-23 19:24:35 UTC (rev 9653)
+++ trunk/docutils/test/functional/expected/footnotes_html5.html 2024-04-23 19:29:37 UTC (rev 9654)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21.2: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Test footnote and citation rendering</title>
<link rel="stylesheet" href="../input/data/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/math_experiments_mathml.html
===================================================================
--- trunk/docutils/test/functional/expected/math_experiments_mathml.html 2024-04-23 19:24:35 UTC (rev 9653)
+++ trunk/docutils/test/functional/expected/math_experiments_mathml.html 2024-04-23 19:29:37 UTC (rev 9654)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21.2: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Math Conversion Tests</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/math_experiments_mathml_blahtexml.html
===================================================================
--- trunk/docutils/test/functional/expected/math_experiments_mathml_blahtexml.html 2024-04-23 19:24:35 UTC (rev 9653)
+++ trunk/docutils/test/functional/expected/math_experiments_mathml_blahtexml.html 2024-04-23 19:29:37 UTC (rev 9654)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21.2: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Math Conversion Tests</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/math_experiments_mathml_pandoc.html
===================================================================
--- trunk/docutils/test/functional/expected/math_experiments_mathml_pandoc.html 2024-04-23 19:24:35 UTC (rev 9653)
+++ trunk/docutils/test/functional/expected/math_experiments_mathml_pandoc.html 2024-04-23 19:29:37 UTC (rev 9654)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21.2: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Math Conversion Tests</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/math_experiments_mathml_ttm.html
===================================================================
--- trunk/docutils/test/functional/expected/math_experiments_mathml_ttm.html 2024-04-23 19:24:35 UTC (rev 9653)
+++ trunk/docutils/test/functional/expected/math_experiments_mathml_ttm.html 2024-04-23 19:29:37 UTC (rev 9654)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21.2: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Math Conversion Tests</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/math_output_html.html
===================================================================
--- trunk/docutils/test/functional/expected/math_output_html.html 2024-04-23 19:24:35 UTC (rev 9653)
+++ trunk/docutils/test/functional/expected/math_output_html.html 2024-04-23 19:29:37 UTC (rev 9654)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.21.2: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
<title>Mathematics</title>
<link rel="stylesheet" href="../input/data/html4css1.css" type="text/css" />
<link rel="stylesheet" href="../input/data/math.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/math_output_latex.html
===================================================================
--- trunk/docutils/test/functional/expected/math_output_latex.html 2024-04-23 19:24:35 UTC (rev 9653)
+++ trunk/docutils/test/functional/expected/math_output_latex.html 2024-04-23 19:29:37 UTC (rev 9654)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.21.2: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
<title>Mathematics</title>
<link rel="stylesheet" href="../input/data/html4css1.css" type="text/css" />
</head>
Modified: trunk/docutils/test/functional/expected/math_output_mathjax.html
===================================================================
--- trunk/docutils/test/functional/expected/math_output_mathjax.html 2024-04-23 19:24:35 UTC (rev 9653)
+++ trunk/docutils/test/functional/expected/math_output_mathjax.html 2024-04-23 19:29:37 UTC (rev 9654)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.21.2: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
<title>Mathematics</title>
<script type="text/javascript" src="/usr/share/javascript/mathjax/MathJax.js?config=TeX-AMS_CHTML"></script>
<link rel="stylesheet" href="../input/data/html4css1.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/math_output_mathml.html
===================================================================
--- trunk/docutils/test/functional/expected/math_output_mathml.html 2024-04-23 19:24:35 UTC (rev 9653)
+++ trunk/docutils/test/functional/expected/math_output_mathml.html 2024-04-23 19:29:37 UTC (rev 9654)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21.2: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Mathematics</title>
<link rel="stylesheet" href="../input/data/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/mathematics_mathml.html
===================================================================
--- trunk/docutils/test/functional/expected/mathematics_mathml.html 2024-04-23 19:24:35 UTC (rev 9653)
+++ trunk/docutils/test/functional/expected/mathematics_mathml.html 2024-04-23 19:29:37 UTC (rev 9654)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21.2: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>LaTeX syntax for mathematics</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/mathematics_mathml_blahtexml.html
===================================================================
--- trunk/docutils/test/functional/expected/mathematics_mathml_blahtexml.html 2024-04-23 19:24:35 UTC (rev 9653)
+++ trunk/docutils/test/functional/expected/mathematics_mathml_blahtexml.html 2024-04-23 19:29:37 UTC (rev 9654)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21.2: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>LaTeX syntax for mathematics</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/mathematics_mathml_pandoc.html
===================================================================
--- trunk/docutils/test/functional/expected/mathematics_mathml_pandoc.html 2024-04-23 19:24:35 UTC (rev 9653)
+++ trunk/docutils/test/functional/expected/mathematics_mathml_pandoc.html 2024-04-23 19:29:37 UTC (rev 9654)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21.2: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>LaTeX syntax for mathematics</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/mathematics_mathml_ttm.html
===================================================================
--- trunk/docutils/test/functional/expected/mathematics_mathml_ttm.html 2024-04-23 19:24:35 UTC (rev 9653)
+++ trunk/docutils/test/functional/expected/mathematics_mathml_ttm.html 2024-04-23 19:29:37 UTC (rev 9654)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21.2: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>LaTeX syntax for mathematics</title>
<link rel="stylesheet" href="../../../docutils/writers/html5_polyglot/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/misc_rst_html4css1.html
===================================================================
--- trunk/docutils/test/functional/expected/misc_rst_html4css1.html 2024-04-23 19:24:35 UTC (rev 9653)
+++ trunk/docutils/test/functional/expected/misc_rst_html4css1.html 2024-04-23 19:29:37 UTC (rev 9654)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.21.2: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
<title>Additional tests with html4css1</title>
<link rel="stylesheet" href="foo&bar.css" type="text/css" />
<link rel="stylesheet" href="../input/data/html4css1.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/misc_rst_html5.html
===================================================================
--- trunk/docutils/test/functional/expected/misc_rst_html5.html 2024-04-23 19:24:35 UTC (rev 9653)
+++ trunk/docutils/test/functional/expected/misc_rst_html5.html 2024-04-23 19:29:37 UTC (rev 9654)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21.2: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Additional tests with HTML 5</title>
<link rel="stylesheet" href="../input/data/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/pep_html.html
===================================================================
--- trunk/docutils/test/functional/expected/pep_html.html 2024-04-23 19:24:35 UTC (rev 9653)
+++ trunk/docutils/test/functional/expected/pep_html.html 2024-04-23 19:29:37 UTC (rev 9654)
@@ -8,7 +8,7 @@
-->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <meta name="generator" content="Docutils 0.21.2: https://docutils.sourceforge.io/" />
+ <meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
<title>PEP 100 - Test PEP</title>
<link rel="stylesheet" href="../input/data/html4css1.css" type="text/css" />
</head>
Modified: trunk/docutils/test/functional/expected/rst_html5_tuftig.html
===================================================================
--- trunk/docutils/test/functional/expected/rst_html5_tuftig.html 2024-04-23 19:24:35 UTC (rev 9653)
+++ trunk/docutils/test/functional/expected/rst_html5_tuftig.html 2024-04-23 19:29:37 UTC (rev 9654)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21.2: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Special Features of the tuftig.css Stylesheet</title>
<link rel="stylesheet" href="../input/data/minimal.css" type="text/css" />
Modified: trunk/docutils/test/functional/expected/standalone_rst_docutils_xml.xml
===================================================================
--- trunk/docutils/test/functional/expected/standalone_rst_docutils_xml.xml 2024-04-23 19:24:35 UTC (rev 9653)
+++ trunk/docutils/test/functional/expected/standalone_rst_docutils_xml.xml 2024-04-23 19:29:37 UTC (rev 9654)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE document PUBLIC "+//IDN docutils.sourceforge.net//DTD Docutils Generic//EN//XML" "http://docutils.sourceforge.net/docs/ref/docutils.dtd">
-<!-- Generated by Docutils 0.21.2 -->
+<!-- Generated by Docutils 0.22b.dev -->
<document ids="restructuredtext-test-document doctitle" names="restructuredtext\ test\ document doctitle" source="functional/input/standalone_rst_docutils_xml.txt" title="reStructuredText Test Document">
<title>reStructuredText Test Document</title>
<subtitle ids="examples-of-syntax-constructs subtitle" names="examples\ of\ syntax\ constructs subtitle">Examples of Syntax Constructs</subtitle>
Modified: trunk/docutils/test/functional/expected/standalone_rst_html4css1.html
===================================================================
--- trunk/docutils/test/functional/expected/standalone_rst_html4css1.html 2024-04-23 19:24:35 UTC (rev 9653)
+++ trunk/docutils/test/functional/expected/standalone_rst_html4css1.html 2024-04-23 19:29:37 UTC (rev 9654)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.21.2: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
<meta content="reStructuredText, test, parser" name="keywords" />
<meta content="A test document, containing at least one example of each reStructuredText construct." lang="en" name="description" />
<meta name="author" content="David Goodger" />
Modified: trunk/docutils/test/functional/expected/standalone_rst_html5.html
===================================================================
--- trunk/docutils/test/functional/expected/standalone_rst_html5.html 2024-04-23 19:24:35 UTC (rev 9653)
+++ trunk/docutils/test/functional/expected/standalone_rst_html5.html 2024-04-23 19:29:37 UTC (rev 9654)
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta charset="utf-8" />
-<meta name="generator" content="Docutils 0.21.2: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta content="reStructuredText, test, parser" name="keywords" />
<meta content="A test document, containing at least one example of each reStructuredText construct." lang="en" name="description" xml:lang="en" />
Modified: trunk/docutils/test/functional/expected/standalone_rst_s5_html_1.html
===================================================================
--- trunk/docutils/test/functional/expected/standalone_rst_s5_html_1.html 2024-04-23 19:24:35 UTC (rev 9653)
+++ trunk/docutils/test/functional/expected/standalone_rst_s5_html_1.html 2024-04-23 19:29:37 UTC (rev 9654)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.21.2: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
<meta name="version" content="S5 1.1" />
<meta name="author" content="David Goodger" />
<meta name="date" content="2005-11-28" />
Modified: trunk/docutils/test/functional/expected/standalone_rst_s5_html_2.html
===================================================================
--- trunk/docutils/test/functional/expected/standalone_rst_s5_html_2.html 2024-04-23 19:24:35 UTC (rev 9653)
+++ trunk/docutils/test/functional/expected/standalone_rst_s5_html_2.html 2024-04-23 19:29:37 UTC (rev 9654)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.21.2: https://docutils.sourceforge.io/" />
+<meta name="generator" content="Docutils 0.22b.dev: https://docutils.sourceforge.io/" />
<meta name="version" content="S5 1.1" />
<meta name="author" content="David Goodger" />
<meta name="date" content="2005-11-28" />
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <mi...@us...> - 2024-04-25 07:21:00
|
Revision: 9656
http://sourceforge.net/p/docutils/code/9656
Author: milde
Date: 2024-04-25 07:20:57 +0000 (Thu, 25 Apr 2024)
Log Message:
-----------
Fix license issue [bugs:#487].
Modified Paths:
--------------
trunk/docutils/HISTORY.txt
trunk/docutils/test/test_utils/test_math/test__init__.py
Modified: trunk/docutils/HISTORY.txt
===================================================================
--- trunk/docutils/HISTORY.txt 2024-04-23 19:36:39 UTC (rev 9655)
+++ trunk/docutils/HISTORY.txt 2024-04-25 07:20:57 UTC (rev 9656)
@@ -17,7 +17,7 @@
Release 0.22b.dev (unpublished)
===============================
-.
+* Fix license issue (bug #487).
Release 0.21.2 (2024-04-23)
===========================
@@ -35,16 +35,8 @@
Release 0.21.1 (2024-04-10)
===========================
-The sdist in 0.21 was incomplete
+* Add missing files in Docutils 0.21 source distribution (sdist).
-- pypi allows no file replacing
-- adding a postrelease suffix "post1": docutils-0.21.post1.tar.gz
- works on pypi, but fails with pip because the metadata differs.
-
- But if the metadata is 0.21.post1 pypi makes it a new release.
-
- 0.21.1 is the same code except for the version number.
-
Release 0.21 (2024-04-09)
=========================
Modified: trunk/docutils/test/test_utils/test_math/test__init__.py
===================================================================
--- trunk/docutils/test/test_utils/test_math/test__init__.py 2024-04-23 19:36:39 UTC (rev 9655)
+++ trunk/docutils/test/test_utils/test_math/test__init__.py 2024-04-25 07:20:57 UTC (rev 9656)
@@ -1,9 +1,6 @@
#!/usr/bin/env python3
# :Copyright: © 2024 Günter Milde.
-
-# Released without warranty under the terms of the
-# GNU General Public License (v. 2 or later)
-
+#
# :License: Released under the terms of the `2-Clause BSD license`_, in short:
#
# Copying and distribution of this file, with or without modification,
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <gr...@us...> - 2024-04-26 06:38:29
|
Revision: 9657
http://sourceforge.net/p/docutils/code/9657
Author: grubert
Date: 2024-04-26 06:38:26 +0000 (Fri, 26 Apr 2024)
Log Message:
-----------
Add tox.ini to pyproject.toml to be in sdist (bug #486).
Modified Paths:
--------------
trunk/docutils/HISTORY.txt
trunk/docutils/pyproject.toml
Modified: trunk/docutils/HISTORY.txt
===================================================================
--- trunk/docutils/HISTORY.txt 2024-04-25 07:20:57 UTC (rev 9656)
+++ trunk/docutils/HISTORY.txt 2024-04-26 06:38:26 UTC (rev 9657)
@@ -17,6 +17,7 @@
Release 0.22b.dev (unpublished)
===============================
+* Add tox.ini to pyproject.toml to be in sdist (bug #486).
* Fix license issue (bug #487).
Release 0.21.2 (2024-04-23)
Modified: trunk/docutils/pyproject.toml
===================================================================
--- trunk/docutils/pyproject.toml 2024-04-25 07:20:57 UTC (rev 9656)
+++ trunk/docutils/pyproject.toml 2024-04-26 06:38:26 UTC (rev 9657)
@@ -107,6 +107,7 @@
# TODO: include generated HTML ?
include = [
"*.txt",
+ "tox.ini",
"docutils/",
"docs/",
"licenses/",
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <mi...@us...> - 2024-05-02 15:55:18
|
Revision: 9667
http://sourceforge.net/p/docutils/code/9667
Author: milde
Date: 2024-05-02 15:55:16 +0000 (Thu, 02 May 2024)
Log Message:
-----------
Sanitize Docutils DTD
Fixup for r8008 (2016-12-31).
Use the "%bodyatts" parameter entity provided by the
"exchange table model" to customize the `<table>` element's
attribute list instead of defining a new "ATTLIST".
Announce the switch from the legacy "%bodyatts" to the
self-explaining "%tbl.table.atts" parameter entity
(also provided by the "exchange table model").
Modified Paths:
--------------
trunk/docutils/RELEASE-NOTES.txt
trunk/docutils/docs/ref/docutils.dtd
Modified: trunk/docutils/RELEASE-NOTES.txt
===================================================================
--- trunk/docutils/RELEASE-NOTES.txt 2024-04-28 12:00:49 UTC (rev 9666)
+++ trunk/docutils/RELEASE-NOTES.txt 2024-05-02 15:55:16 UTC (rev 9667)
@@ -59,6 +59,9 @@
and drop the ``name`` attribute from <reference> nodes
in Docutils 1.0.
+* Use the ``%tbl.table.att`` parameter entity instead of ``%bodyatt``
+ to customize the <table> element's attribute list in Docutils 1.0.
+
.. _refname attribute: docs/ref/doctree.html#refname
`Input encoding`_
Modified: trunk/docutils/docs/ref/docutils.dtd
===================================================================
--- trunk/docutils/docs/ref/docutils.dtd 2024-04-28 12:00:49 UTC (rev 9666)
+++ trunk/docutils/docs/ref/docutils.dtd 2024-05-02 15:55:16 UTC (rev 9667)
@@ -223,7 +223,11 @@
"soextblx.dtd">
<!-- These parameter entities customize the table model DTD. -->
-<!ENTITY % bodyatt " %basic.atts; "> <!-- table elt -->
+<!-- table element TODO: use %tbl.table.att. Keep or drop pgwide? -->
+<!ENTITY % bodyatt
+ " %basic.atts;
+ %align-h.att;
+ width %measure; #IMPLIED ">
<!-- 1 colspec element is expected per table column: -->
<!ENTITY % tbl.tgroup.mdl "colspec+,thead?,tbody">
<!ENTITY % tbl.tgroup.att " %basic.atts; ">
@@ -233,14 +237,11 @@
" %basic.atts;
stub %yesorno; #IMPLIED ">
<!ENTITY % tbl.row.att " %basic.atts; ">
-<!-- ``(...)*``: nested tables are supported -->
+<!-- all body elements (including nested tables) are supported -->
<!ENTITY % tbl.entry.mdl " (%body.elements;)* ">
<!ENTITY % tbl.entry.att
" %basic.atts;
morecols %number; #IMPLIED ">
-<!ATTLIST table
- %align-h.att;
- width %measure; #IMPLIED>
<!--
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <mi...@us...> - 2024-05-03 20:26:10
|
Revision: 9675
http://sourceforge.net/p/docutils/code/9675
Author: milde
Date: 2024-05-03 20:26:07 +0000 (Fri, 03 May 2024)
Log Message:
-----------
Doctree documentation: fixes in Bibliography
Move external hyperlink targets into bibliography section.
Move indirect targets inside citation and amend "responsive.css"
so that the cited title can be highlighted as active target.
Fix broken link.
Modified Paths:
--------------
trunk/docutils/docs/ref/doctree.txt
trunk/docutils/docutils/writers/html5_polyglot/responsive.css
Modified: trunk/docutils/docs/ref/doctree.txt
===================================================================
--- trunk/docutils/docs/ref/doctree.txt 2024-05-03 20:25:58 UTC (rev 9674)
+++ trunk/docutils/docs/ref/doctree.txt 2024-05-03 20:26:07 UTC (rev 9675)
@@ -3933,8 +3933,9 @@
Standard Attribute Types
========================
-*Standard attribute types* are defined in the `attribute types
-<XML attribute types_>`__ section of the `XML 1.0 specification`_.
+*Standard attribute types* are defined in the
+`attribute types <XML attribute types_>`__ section
+of the `XML 1.0 specification` [xml1.0]_.
_`CDATA`
Character data. CDATA attributes may contain arbitrary text.
@@ -4009,11 +4010,7 @@
and `stub`_ attributes.
Python data type: ``int``.
-.. _XML 1.0 specification: https://www.w3.org/TR/REC-xml
-.. _XML attribute types: https://www.w3.org/TR/REC-xml/#sec-attribute-types
-.. _One ID per Element Type: https://www.w3.org/TR/REC-xml/#one-id-per-el
-
Names and identifiers
=====================
@@ -5211,10 +5208,10 @@
Bibliography
------------
-.. _Exchange Table Model:
-.. _XML Exchange Table Model DTD:
+.. [tm9901] .. _XML Exchange Table Model DTD:
+ .. _Exchange Table Model:
-.. [tm9901] `XML Exchange Table Model DTD`,
+ `XML Exchange Table Model DTD`,
OASIS Technical Memorandum 9901:1999,
http://www.oasis-open.org/html/tm9901.html.
@@ -5231,7 +5228,6 @@
W3C Recommendation,
https://www.w3.org/TR/xml/.
-
.. _DocBook: https://tdg.docbook.org/tdg/5.1/.
.. _DocBook <caution>: https://tdg.docbook.org/tdg/5.1/caution.html
.. _DocBook <footnote>: https://tdg.docbook.org/tdg/5.1/footnote.html
@@ -5251,7 +5247,10 @@
http://xml.coverpages.org/xmlIntro.html
.. _XMLSpec: https://www.w3.org/XML/1998/06/xmlspec-report.htm
.. _external DTD subset: https://www.w3.org/TR/xml11/#dt-doctype
+.. _XML attribute types: https://www.w3.org/TR/REC-xml/#sec-attribute-types
+.. _One ID per Element Type: https://www.w3.org/TR/REC-xml/#one-id-per-el
+
.. _Docutils: https://docutils.sourceforge.io/.
.. _reStructuredText: https://docutils.sourceforge.io/rst.html
@@ -5270,7 +5269,7 @@
.. _transform:
.. _transforms: ../api/transforms.html
.. _DocInfo transform: ../api/transforms.html#docinfo
-.. _DocTitle transform: ../api/transforms.html#frontmatter-doctitle
+.. _DocTitle transform: ../api/transforms.html#doctitle
.. _A ReStructuredText Primer: ../user/rst/quickstart.html
.. _reStructuredText Markup Specification: rst/restructuredtext.html
Modified: trunk/docutils/docutils/writers/html5_polyglot/responsive.css
===================================================================
--- trunk/docutils/docutils/writers/html5_polyglot/responsive.css 2024-05-03 20:25:58 UTC (rev 9674)
+++ trunk/docutils/docutils/writers/html5_polyglot/responsive.css 2024-05-03 20:26:07 UTC (rev 9675)
@@ -291,7 +291,7 @@
section:target > h5, section:target > h6,
span:target + h2, span:target + h3, span:target + h4,
span:target + h5, span:target + h6,
-dt:target, span:target,
+dt:target, span:target, p:target,
.contents :target,
.contents:target > .topic-title,
[role="doc-biblioentry"]:target > .label,
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <mi...@us...> - 2024-05-04 08:58:11
|
Revision: 9680
http://sourceforge.net/p/docutils/code/9680
Author: milde
Date: 2024-05-04 08:58:09 +0000 (Sat, 04 May 2024)
Log Message:
-----------
Sort "nodes" and "test_nodes".
Sort definitions in "nodes.py" to get a clearer structure.
Move `TextElement` to the end of "Element Categories", so that
the Inline Element Category class can be declared as valid child
element (for use with the to-be-defined `Element.validate()` method.
Sort tests to better match the structure of "nodes.py".
Modified Paths:
--------------
trunk/docutils/docutils/nodes.py
trunk/docutils/test/test_nodes.py
Modified: trunk/docutils/docutils/nodes.py
===================================================================
--- trunk/docutils/docutils/nodes.py 2024-05-04 08:58:00 UTC (rev 9679)
+++ trunk/docutils/docutils/nodes.py 2024-05-04 08:58:09 UTC (rev 9680)
@@ -215,18 +215,6 @@
for child in self.children:
yield from child._superfast_findall()
- def traverse(self, condition=None, include_self=True, descend=True,
- siblings=False, ascend=False):
- """Return list of nodes following `self`.
-
- For looping, Node.findall() is faster and more memory efficient.
- """
- # traverse() may be eventually removed:
- warnings.warn('nodes.Node.traverse() is obsoleted by Node.findall().',
- PendingDeprecationWarning, stacklevel=2)
- return list(self.findall(condition, include_self, descend,
- siblings, ascend))
-
def findall(self, condition=None, include_self=True, descend=True,
siblings=False, ascend=False):
"""
@@ -310,6 +298,18 @@
else:
node = node.parent
+ def traverse(self, condition=None, include_self=True, descend=True,
+ siblings=False, ascend=False):
+ """Return list of nodes following `self`.
+
+ For looping, Node.findall() is faster and more memory efficient.
+ """
+ # traverse() may be eventually removed:
+ warnings.warn('nodes.Node.traverse() is obsoleted by Node.findall().',
+ PendingDeprecationWarning, stacklevel=2)
+ return list(self.findall(condition, include_self, descend,
+ siblings, ascend))
+
def next_node(self, condition=None, include_self=False, descend=True,
siblings=False, ascend=False):
"""
@@ -326,21 +326,6 @@
return None
-# definition moved here from `utils` to avoid circular import dependency
-def unescape(text, restore_backslashes=False, respect_whitespace=False):
- """
- Return a string with nulls removed or restored to backslashes.
- Backslash-escaped spaces are also removed.
- """
- # `respect_whitespace` is ignored (since introduction 2016-12-16)
- if restore_backslashes:
- return text.replace('\x00', '\\')
- else:
- for sep in ['\x00 ', '\x00\n', '\x00']:
- text = ''.join(text.split(sep))
- return text
-
-
class Text(Node, str):
"""
@@ -377,12 +362,12 @@
def __repr__(self):
return self.shortrepr(maxlen=68)
+ def astext(self):
+ return str(unescape(self))
+
def _dom_node(self, domroot):
return domroot.createTextNode(str(self))
- def astext(self):
- return str(unescape(self))
-
def copy(self):
return self.__class__(str(self))
@@ -1087,49 +1072,6 @@
return attr not in cls.known_attributes
-class TextElement(Element):
-
- """
- An element which directly contains text.
-
- Its children are all `Text` or `Inline` subclass nodes. You can
- check whether an element's context is inline simply by checking whether
- its immediate parent is a `TextElement` instance (including subclasses).
- This is handy for nodes like `image` that can appear both inline and as
- standalone body elements.
-
- If passing children to `__init__()`, make sure to set `text` to
- ``''`` or some other suitable value.
- """
-
- child_text_separator = ''
- """Separator for child nodes, used by `astext()` method."""
-
- def __init__(self, rawsource='', text='', *children, **attributes):
- if text != '':
- textnode = Text(text)
- Element.__init__(self, rawsource, textnode, *children,
- **attributes)
- else:
- Element.__init__(self, rawsource, *children, **attributes)
-
-
-class FixedTextElement(TextElement):
-
- """An element which directly contains preformatted text."""
-
- def __init__(self, rawsource='', text='', *children, **attributes):
- super().__init__(rawsource, text, *children, **attributes)
- self.attributes['xml:space'] = 'preserve'
-
-
-# TODO: PureTextElement(TextElement):
-# """An element which only contains text, no children."""
-# For elements in the DTD that directly employ #PCDATA in their definition:
-# citation_reference, comment, footnote_reference, label, math, math_block,
-# option_argument, option_string, raw,
-
-
# ========
# Mixins
# ========
@@ -1161,6 +1103,10 @@
"""Category of Node which may occur before Bibliographic Nodes."""
+class Invisible(PreBibliographic):
+ """Internal elements that don't appear in output."""
+
+
class Bibliographic:
pass
@@ -1192,10 +1138,6 @@
"""Special internal body elements."""
-class Invisible(PreBibliographic):
- """Internal elements that don't appear in output."""
-
-
class Part:
pass
@@ -1221,6 +1163,49 @@
"""Contains a `label` as its first element."""
+class TextElement(Element):
+
+ """
+ An element which directly contains text.
+
+ Its children are all `Text` or `Inline` subclass nodes. You can
+ check whether an element's context is inline simply by checking whether
+ its immediate parent is a `TextElement` instance (including subclasses).
+ This is handy for nodes like `image` that can appear both inline and as
+ standalone body elements.
+
+ If passing children to `__init__()`, make sure to set `text` to
+ ``''`` or some other suitable value.
+ """
+
+ child_text_separator = ''
+ """Separator for child nodes, used by `astext()` method."""
+
+ def __init__(self, rawsource='', text='', *children, **attributes):
+ if text != '':
+ textnode = Text(text)
+ Element.__init__(self, rawsource, textnode, *children,
+ **attributes)
+ else:
+ Element.__init__(self, rawsource, *children, **attributes)
+
+
+class FixedTextElement(TextElement):
+
+ """An element which directly contains preformatted text."""
+
+ def __init__(self, rawsource='', text='', *children, **attributes):
+ super().__init__(rawsource, text, *children, **attributes)
+ self.attributes['xml:space'] = 'preserve'
+
+
+# TODO: PureTextElement(TextElement):
+# """An element which only contains text, no children."""
+# For elements in the DTD that directly employ #PCDATA in their definition:
+# citation_reference, comment, footnote_reference, label, math, math_block,
+# option_argument, option_string, raw,
+
+
# ==============
# Root Element
# ==============
@@ -2179,6 +2164,21 @@
"""
+# definition moved here from `utils` to avoid circular import dependency
+def unescape(text, restore_backslashes=False, respect_whitespace=False):
+ """
+ Return a string with nulls removed or restored to backslashes.
+ Backslash-escaped spaces are also removed.
+ """
+ # `respect_whitespace` is ignored (since introduction 2016-12-16)
+ if restore_backslashes:
+ return text.replace('\x00', '\\')
+ else:
+ for sep in ['\x00 ', '\x00\n', '\x00']:
+ text = ''.join(text.split(sep))
+ return text
+
+
def make_id(string):
"""
Convert `string` into an identifier and return it.
Modified: trunk/docutils/test/test_nodes.py
===================================================================
--- trunk/docutils/test/test_nodes.py 2024-05-04 08:58:00 UTC (rev 9679)
+++ trunk/docutils/test/test_nodes.py 2024-05-04 08:58:09 UTC (rev 9680)
@@ -21,22 +21,123 @@
debug = False
+class NodeTests(unittest.TestCase):
+
+ def not_in_testlist(self, x):
+ # function to use in `condition` argument in findall() and next_node()
+ return x not in self.testlist
+
+ def test_findall(self):
+ # `findall()` is defined in class Node,
+ # we test with a tree of Element instances (simpler setup)
+ e = nodes.Element()
+ e += nodes.Element()
+ e[0] += nodes.Element()
+ e[0] += nodes.TextElement()
+ e[0][1] += nodes.Text('some text')
+ e += nodes.Element()
+ e += nodes.Element()
+ self.assertEqual(list(e.findall()),
+ [e, e[0], e[0][0], e[0][1], e[0][1][0], e[1], e[2]])
+ self.assertEqual(list(e.findall(include_self=False)),
+ [e[0], e[0][0], e[0][1], e[0][1][0], e[1], e[2]])
+ self.assertEqual(list(e.findall(descend=False)),
+ [e])
+ self.assertEqual(list(e[0].findall(descend=False, ascend=True)),
+ [e[0], e[1], e[2]])
+ self.assertEqual(list(e[0][0].findall(descend=False, ascend=True)),
+ [e[0][0], e[0][1], e[1], e[2]])
+ self.assertEqual(list(e[0][0].findall(descend=False, siblings=True)),
+ [e[0][0], e[0][1]])
+ self.testlist = e[0:2]
+ self.assertEqual(list(e.findall(condition=self.not_in_testlist)),
+ [e, e[0][0], e[0][1], e[0][1][0], e[2]])
+ # Return siblings despite siblings=False because ascend is true.
+ self.assertEqual(list(e[1].findall(ascend=True, siblings=False)),
+ [e[1], e[2]])
+ self.assertEqual(list(e[0].findall()),
+ [e[0], e[0][0], e[0][1], e[0][1][0]])
+ self.testlist = [e[0][0], e[0][1]]
+ self.assertEqual(list(e[0].findall(condition=self.not_in_testlist)),
+ [e[0], e[0][1][0]])
+ self.testlist.append(e[0][1][0])
+ self.assertEqual(list(e[0].findall(condition=self.not_in_testlist)),
+ [e[0]])
+ self.assertEqual(list(e.findall(nodes.TextElement)), [e[0][1]])
+
+ def test_findall_duplicate_texts(self):
+ e = nodes.Element()
+ e += nodes.TextElement()
+ e[0] += nodes.Text('one') # e[0][0]
+ e[0] += nodes.Text('two') # e[0][1]
+ e[0] += nodes.Text('three') # e[0][2]
+ e[0] += nodes.Text('two') # e[0][3] same value as e[0][1]
+ e[0] += nodes.Text('five') # e[0][4]
+ full_list = list(e[0][0].findall(siblings=True))
+ self.assertEqual(len(full_list), 5)
+ for i in range(5):
+ self.assertIs(full_list[i], e[0][i])
+
+ partial_list = list(e[0][3].findall(siblings=True))
+ self.assertEqual(len(partial_list), 2)
+ self.assertIs(partial_list[0], e[0][3])
+ self.assertIs(partial_list[1], e[0][4])
+
+ def test_next_node(self):
+ e = nodes.Element()
+ e += nodes.Element()
+ e[0] += nodes.Element()
+ e[0] += nodes.TextElement()
+ e[0][1] += nodes.Text('some text')
+ e += nodes.Element()
+ e += nodes.Element()
+ self.testlist = [e[0], e[0][1], e[1]]
+ compare = [(e, e[0][0]),
+ (e[0], e[0][0]),
+ (e[0][0], e[0][1][0]),
+ (e[0][1], e[0][1][0]),
+ (e[0][1][0], e[2]),
+ (e[1], e[2]),
+ (e[2], None)]
+ for node, next_node in compare:
+ self.assertEqual(node.next_node(self.not_in_testlist, ascend=True),
+ next_node)
+ self.assertEqual(e[0][0].next_node(ascend=True), e[0][1])
+ self.assertEqual(e[2].next_node(), None)
+
+
class TextTests(unittest.TestCase):
- def setUp(self):
- self.text = nodes.Text('Line 1.\n\x00rad två.')
- self.longtext = nodes.Text('Mary had a little lamb whose '
- 'fleece was white as snow and '
- 'everwhere that Mary went the '
- 'lamb was sure to go.')
+ text = nodes.Text('Line 1.\n\x00rad två.')
+ longtext = nodes.Text('Mary had a little lamb '
+ 'whose fleece was white as snow '
+ 'and everwhere that Mary went '
+ 'the lamb was sure to go.')
+ def test_value_type_check(self):
+ # data must by `str` instance, no `bytes` allowed
+ with self.assertRaises(TypeError):
+ nodes.Text(b'hol')
+
+ def test_Text_rawsource_deprection_warning(self):
+ with self.assertWarnsRegex(DeprecationWarning,
+ '"rawsource" is ignored'):
+ nodes.Text('content', rawsource='content')
+
+ def test_str(self):
+ self.assertEqual(str(self.text), 'Line 1.\n\x00rad två.')
+
def test_repr(self):
self.assertEqual(repr(self.text), r"<#text: 'Line 1.\n\x00rad två.'>")
self.assertEqual(self.text.shortrepr(),
r"<#text: 'Line 1.\n\x00rad två.'>")
- def test_str(self):
- self.assertEqual(str(self.text), 'Line 1.\n\x00rad två.')
+ def test_repr_long_text(self):
+ self.assertEqual(repr(self.longtext), r"<#text: 'Mary had a "
+ r"little lamb whose fleece was white as snow "
+ r"and everwh ...'>")
+ self.assertEqual(self.longtext.shortrepr(),
+ r"<#text: 'Mary had a lit ...'>")
def test_astext(self):
self.assertEqual(self.text.astext(), 'Line 1.\nrad två.')
@@ -52,27 +153,11 @@
self.assertEqual(stripped, 'was noch')
self.assertEqual(stripped2, 's noc')
- def test_asciirestriction(self):
- # no bytes at all allowed
- self.assertRaises(TypeError, nodes.Text, b'hol')
-
- def test_longrepr(self):
- self.assertEqual(repr(self.longtext), r"<#text: 'Mary had a "
- r"little lamb whose fleece was white as snow "
- r"and everwh ...'>")
- self.assertEqual(self.longtext.shortrepr(),
- r"<#text: 'Mary had a lit ...'>")
-
def test_comparison(self):
# Text nodes are compared by value
self.assertEqual(self.text, nodes.Text('Line 1.\n\x00rad två.'))
- def test_Text_rawsource_deprection_warning(self):
- with self.assertWarnsRegex(DeprecationWarning,
- '"rawsource" is ignored'):
- nodes.Text('content', rawsource='content')
-
class ElementTests(unittest.TestCase):
def test_empty(self):
@@ -296,6 +381,46 @@
# 'll' is extended
self.assertEqual(element1['ll'], ['A', 'B'])
+ def test_copy(self):
+ # Shallow copy:
+ grandchild = nodes.Text('grandchild text')
+ child = nodes.emphasis('childtext', grandchild, att='child')
+ e = nodes.Element('raw text', child, att='e')
+ e_copy = e.copy()
+ self.assertTrue(e is not e_copy)
+ # Internal attributes (like `rawsource`) are also copied.
+ self.assertEqual(e.rawsource, 'raw text')
+ self.assertEqual(e_copy.rawsource, e.rawsource)
+ self.assertEqual(e_copy['att'], 'e')
+ self.assertEqual(e_copy.document, e.document)
+ self.assertEqual(e_copy.source, e.source)
+ self.assertEqual(e_copy.line, e.line)
+ # Children are not copied.
+ self.assertEqual(len(e_copy), 0)
+
+ def test_deepcopy(self):
+ # Deep copy:
+ grandchild = nodes.Text('grandchild text')
+ child = nodes.emphasis('childtext', grandchild, att='child')
+ e = nodes.Element('raw text', child, att='e')
+ e_deepcopy = e.deepcopy()
+ self.assertEqual(e_deepcopy.rawsource, e.rawsource)
+ self.assertEqual(e_deepcopy['att'], 'e')
+ # Children are copied recursively.
+ self.assertEqual(e_deepcopy[0][0], grandchild)
+ self.assertTrue(e_deepcopy[0][0] is not grandchild)
+ self.assertEqual(e_deepcopy[0]['att'], 'child')
+
+ def test_system_message_copy(self):
+ e = nodes.system_message('mytext', att='e', rawsource='raw text')
+ # Shallow copy:
+ e_copy = e.copy()
+ self.assertTrue(e is not e_copy)
+ # Internal attributes (like `rawsource`) are also copied.
+ self.assertEqual(e.rawsource, 'raw text')
+ self.assertEqual(e_copy.rawsource, e.rawsource)
+ self.assertEqual(e_copy['att'], 'e')
+
def test_replace_self(self):
parent = nodes.Element(ids=['parent'])
child1 = nodes.Element(ids=['child1'])
@@ -359,11 +484,124 @@
nodes.node_class_names.sort()
self.assertEqual(node_class_names, nodes.node_class_names)
+
+class TreeCopyVisitorTests(unittest.TestCase):
+
+ def setUp(self):
+ document = utils.new_document('test data')
+ document += nodes.paragraph('', 'Paragraph 1.')
+ blist = nodes.bullet_list()
+ for i in range(1, 6):
+ item = nodes.list_item()
+ for j in range(1, 4):
+ item += nodes.paragraph('', 'Item %s, paragraph %s.' % (i, j))
+ blist += item
+ document += blist
+ self.document = document
+
+ def compare_trees(self, one, two):
+ self.assertEqual(one.__class__, two.__class__)
+ self.assertNotEqual(id(one), id(two))
+ self.assertEqual(len(one.children), len(two.children))
+ for i in range(len(one.children)):
+ self.compare_trees(one.children[i], two.children[i])
+
+ def test_copy_whole(self):
+ visitor = nodes.TreeCopyVisitor(self.document)
+ self.document.walkabout(visitor)
+ newtree = visitor.get_tree_copy()
+ self.assertEqual(self.document.pformat(), newtree.pformat())
+ self.compare_trees(self.document, newtree)
+
+
+class SetIdTests(unittest.TestCase):
+
+ def setUp(self):
+ self.document = utils.new_document('test')
+ self.elements = [nodes.Element(names=['test']),
+ nodes.section(), # Name empty
+ nodes.section(names=['Test']), # duplicate id
+ nodes.footnote(names=['2019-10-30']), # id empty
+ ]
+
+ def test_set_id_default(self):
+ # Default prefixes.
+ for element in self.elements:
+ self.document.set_id(element)
+ ids = [element['ids'] for element in self.elements]
+ self.assertEqual(ids, [['test'], ['section-1'],
+ ['test-1'], ['footnote-1']])
+
+ def test_set_id_custom(self):
+ # Custom prefixes.
+
+ # Change settings.
+ self.document.settings.id_prefix = 'P-'
+ self.document.settings.auto_id_prefix = 'auto'
+
+ for element in self.elements:
+ self.document.set_id(element)
+ ids = [element['ids'] for element in self.elements]
+ self.assertEqual(ids, [['P-test'],
+ ['P-auto1'],
+ ['P-auto2'],
+ ['P-2019-10-30']])
+
+ def test_set_id_descriptive_auto_id(self):
+ # Use name or tag-name for auto-id.
+
+ # Change setting.
+ self.document.settings.auto_id_prefix = '%'
+
+ for element in self.elements:
+ self.document.set_id(element)
+ ids = [element['ids'] for element in self.elements]
+ self.assertEqual(ids, [['test'],
+ ['section-1'],
+ ['test-1'],
+ ['footnote-1']])
+
+ def test_set_id_custom_descriptive_auto_id(self):
+ # Custom prefixes and name or tag-name for auto-id.
+
+ # Change settings.
+ self.document.settings.id_prefix = 'P:'
+ self.document.settings.auto_id_prefix = 'a-%'
+
+ for element in self.elements:
+ self.document.set_id(element)
+ ids = [element['ids'] for element in self.elements]
+ self.assertEqual(ids, [['P:test'],
+ ['P:a-section-1'],
+ ['P:test-1'],
+ ['P:2019-10-30']])
+
+
+class NodeVisitorTests(unittest.TestCase):
+ def setUp(self):
+ self.document = utils.new_document('test')
+ self.element = nodes.Element()
+ self.visitor = nodes.NodeVisitor(self.document)
+
+ def test_dispatch_visit_unknown(self):
+ # raise exception if no visit/depart methods are defined for node class
+ with self.assertRaises(NotImplementedError):
+ self.visitor.dispatch_visit(self.element)
+
+ def test_dispatch_visit_optional(self):
+ # silently skip nodes of a calss in tuple nodes.NodeVisitor.optional
+ rv = self.visitor.dispatch_visit(nodes.meta())
+ self.assertIsNone(rv)
+
+
+class MiscFunctionTests(unittest.TestCase):
+
ids = [('a', 'a'), ('A', 'a'), ('', ''), ('a b \n c', 'a-b-c'),
('a.b.c', 'a-b-c'), (' - a - b - c - ', 'a-b-c'), (' - ', ''),
('\u2020\u2066', ''), ('a \xa7 b \u2020 c', 'a-b-c'),
('1', ''), ('1abc', 'abc'),
]
+
ids_unicode_all = [
('\u00f8 o with stroke', 'o-o-with-stroke'),
('\u0111 d with stroke', 'd-d-with-stroke'),
@@ -539,232 +777,6 @@
self.fail(f'{len(failures)} failures in {len(self.ids)} ids\n'
+ "\n".join(failures))
- def test_findall(self):
- e = nodes.Element()
- e += nodes.Element()
- e[0] += nodes.Element()
- e[0] += nodes.TextElement()
- e[0][1] += nodes.Text('some text')
- e += nodes.Element()
- e += nodes.Element()
- self.assertEqual(list(e.findall()),
- [e, e[0], e[0][0], e[0][1], e[0][1][0], e[1], e[2]])
- self.assertEqual(list(e.findall(include_self=False)),
- [e[0], e[0][0], e[0][1], e[0][1][0], e[1], e[2]])
- self.assertEqual(list(e.findall(descend=False)),
- [e])
- self.assertEqual(list(e[0].findall(descend=False, ascend=True)),
- [e[0], e[1], e[2]])
- self.assertEqual(list(e[0][0].findall(descend=False, ascend=True)),
- [e[0][0], e[0][1], e[1], e[2]])
- self.assertEqual(list(e[0][0].findall(descend=False, siblings=True)),
- [e[0][0], e[0][1]])
- self.testlist = e[0:2]
- self.assertEqual(list(e.findall(condition=self.not_in_testlist)),
- [e, e[0][0], e[0][1], e[0][1][0], e[2]])
- # Return siblings despite siblings=False because ascend is true.
- self.assertEqual(list(e[1].findall(ascend=True, siblings=False)),
- [e[1], e[2]])
- self.assertEqual(list(e[0].findall()),
- [e[0], e[0][0], e[0][1], e[0][1][0]])
- self.testlist = [e[0][0], e[0][1]]
- self.assertEqual(list(e[0].findall(condition=self.not_in_testlist)),
- [e[0], e[0][1][0]])
- self.testlist.append(e[0][1][0])
- self.assertEqual(list(e[0].findall(condition=self.not_in_testlist)),
- [e[0]])
- self.assertEqual(list(e.findall(nodes.TextElement)), [e[0][1]])
-
- def test_findall_duplicate_texts(self):
- e = nodes.Element()
- e += nodes.TextElement()
- e[0] += nodes.Text('one')
- e[0] += nodes.Text('two')
- e[0] += nodes.Text('three')
- e[0] += nodes.Text('two')
- e[0] += nodes.Text('five')
- full_list = list(e[0][0].findall(siblings=True))
- self.assertEqual(len(full_list), 5)
- for i in range(5):
- self.assertIs(full_list[i], e[0][i])
-
- partial_list = list(e[0][3].findall(siblings=True))
- self.assertEqual(len(partial_list), 2)
- self.assertIs(partial_list[0], e[0][3])
- self.assertIs(partial_list[1], e[0][4])
-
- def test_next_node(self):
- e = nodes.Element()
- e += nodes.Element()
- e[0] += nodes.Element()
- e[0] += nodes.TextElement()
- e[0][1] += nodes.Text('some text')
- e += nodes.Element()
- e += nodes.Element()
- self.testlist = [e[0], e[0][1], e[1]]
- compare = [(e, e[0][0]),
- (e[0], e[0][0]),
- (e[0][0], e[0][1][0]),
- (e[0][1], e[0][1][0]),
- (e[0][1][0], e[2]),
- (e[1], e[2]),
- (e[2], None)]
- for node, next_node in compare:
- self.assertEqual(node.next_node(self.not_in_testlist, ascend=True),
- next_node)
- self.assertEqual(e[0][0].next_node(ascend=True), e[0][1])
- self.assertEqual(e[2].next_node(), None)
-
- def not_in_testlist(self, x):
- return x not in self.testlist
-
- def test_copy(self):
- grandchild = nodes.Text('grandchild text')
- child = nodes.emphasis('childtext', grandchild, att='child')
- e = nodes.Element('raw text', child, att='e')
- # Shallow copy:
- e_copy = e.copy()
- self.assertTrue(e is not e_copy)
- # Internal attributes (like `rawsource`) are also copied.
- self.assertEqual(e.rawsource, 'raw text')
- self.assertEqual(e_copy.rawsource, e.rawsource)
- self.assertEqual(e_copy['att'], 'e')
- self.assertEqual(e_copy.document, e.document)
- self.assertEqual(e_copy.source, e.source)
- self.assertEqual(e_copy.line, e.line)
- # Children are not copied.
- self.assertEqual(len(e_copy), 0)
- # Deep copy:
- e_deepcopy = e.deepcopy()
- self.assertEqual(e_deepcopy.rawsource, e.rawsource)
- self.assertEqual(e_deepcopy['att'], 'e')
- # Children are copied recursively.
- self.assertEqual(e_deepcopy[0][0], grandchild)
- self.assertTrue(e_deepcopy[0][0] is not grandchild)
- self.assertEqual(e_deepcopy[0]['att'], 'child')
-
- def test_system_message_copy(self):
- e = nodes.system_message('mytext', att='e', rawsource='raw text')
- # Shallow copy:
- e_copy = e.copy()
- self.assertTrue(e is not e_copy)
- # Internal attributes (like `rawsource`) are also copied.
- self.assertEqual(e.rawsource, 'raw text')
- self.assertEqual(e_copy.rawsource, e.rawsource)
- self.assertEqual(e_copy['att'], 'e')
-
-
-class TreeCopyVisitorTests(unittest.TestCase):
-
- def setUp(self):
- document = utils.new_document('test data')
- document += nodes.paragraph('', 'Paragraph 1.')
- blist = nodes.bullet_list()
- for i in range(1, 6):
- item = nodes.list_item()
- for j in range(1, 4):
- item += nodes.paragraph('', 'Item %s, paragraph %s.' % (i, j))
- blist += item
- document += blist
- self.document = document
-
- def compare_trees(self, one, two):
- self.assertEqual(one.__class__, two.__class__)
- self.assertNotEqual(id(one), id(two))
- self.assertEqual(len(one.children), len(two.children))
- for i in range(len(one.children)):
- self.compare_trees(one.children[i], two.children[i])
-
- def test_copy_whole(self):
- visitor = nodes.TreeCopyVisitor(self.document)
- self.document.walkabout(visitor)
- newtree = visitor.get_tree_copy()
- self.assertEqual(self.document.pformat(), newtree.pformat())
- self.compare_trees(self.document, newtree)
-
-
-class SetIdTests(unittest.TestCase):
-
- def setUp(self):
- self.document = utils.new_document('test')
- self.elements = [nodes.Element(names=['test']),
- nodes.section(), # Name empty
- nodes.section(names=['Test']), # duplicate id
- nodes.footnote(names=['2019-10-30']), # id empty
- ]
-
- def test_set_id_default(self):
- # Default prefixes.
- for element in self.elements:
- self.document.set_id(element)
- ids = [element['ids'] for element in self.elements]
- self.assertEqual(ids, [['test'], ['section-1'],
- ['test-1'], ['footnote-1']])
-
- def test_set_id_custom(self):
- # Custom prefixes.
-
- # Change settings.
- self.document.settings.id_prefix = 'P-'
- self.document.settings.auto_id_prefix = 'auto'
-
- for element in self.elements:
- self.document.set_id(element)
- ids = [element['ids'] for element in self.elements]
- self.assertEqual(ids, [['P-test'],
- ['P-auto1'],
- ['P-auto2'],
- ['P-2019-10-30']])
-
- def test_set_id_descriptive_auto_id(self):
- # Use name or tag-name for auto-id.
-
- # Change setting.
- self.document.settings.auto_id_prefix = '%'
-
- for element in self.elements:
- self.document.set_id(element)
- ids = [element['ids'] for element in self.elements]
- self.assertEqual(ids, [['test'],
- ['section-1'],
- ['test-1'],
- ['footnote-1']])
-
- def test_set_id_custom_descriptive_auto_id(self):
- # Custom prefixes and name or tag-name for auto-id.
-
- # Change settings.
- self.document.settings.id_prefix = 'P:'
- self.document.settings.auto_id_prefix = 'a-%'
-
- for element in self.elements:
- self.document.set_id(element)
- ids = [element['ids'] for element in self.elements]
- self.assertEqual(ids, [['P:test'],
- ['P:a-secti...
[truncated message content] |
|
From: <mi...@us...> - 2024-05-04 08:58:38
|
Revision: 9683
http://sourceforge.net/p/docutils/code/9683
Author: milde
Date: 2024-05-04 08:58:36 +0000 (Sat, 04 May 2024)
Log Message:
-----------
New SubStructural element category class.
Fix categories: (cf. docs/ref/doctree.txt)
`<docinfo>` is SubStructural, not Bibliographic.
`<transition>` is SubStructural, not Structural.
Modified Paths:
--------------
trunk/docutils/HISTORY.txt
trunk/docutils/docutils/nodes.py
Modified: trunk/docutils/HISTORY.txt
===================================================================
--- trunk/docutils/HISTORY.txt 2024-05-04 08:58:27 UTC (rev 9682)
+++ trunk/docutils/HISTORY.txt 2024-05-04 08:58:36 UTC (rev 9683)
@@ -17,9 +17,22 @@
Release 0.22b.dev (unpublished)
===============================
-* Add tox.ini to pyproject.toml to be in sdist (bug #486).
-* Fix license issue (bug #487).
+* General
+ - Add tox.ini to pyproject.toml to be in sdist (bug #486).
+ - Fix license issue (bug #487).
+
+* docutils/nodes.py
+
+ - New `SubStructural` element category class.
+ - Fix element categories.
+
+* docutils/transforms/frontmatter.py
+
+ - Adapt `DocInfo` to fixed element categories.
+
+
+
Release 0.21.2 (2024-04-23)
===========================
Modified: trunk/docutils/docutils/nodes.py
===================================================================
--- trunk/docutils/docutils/nodes.py 2024-05-04 08:58:27 UTC (rev 9682)
+++ trunk/docutils/docutils/nodes.py 2024-05-04 08:58:36 UTC (rev 9683)
@@ -1127,6 +1127,14 @@
"""
+class SubStructural:
+ """`Structural Subelements`__ are valid children of Structural Elements.
+
+ __ https://docutils.sourceforge.io/docs/ref/doctree.html
+ #structural-subelements
+ """
+
+
class Body:
"""`Body elements`__.
@@ -1583,8 +1591,8 @@
# Title Elements
# ================
-class title(Titular, PreBibliographic, TextElement): pass
-class subtitle(Titular, PreBibliographic, TextElement): pass
+class title(Titular, PreBibliographic, SubStructural, TextElement): pass
+class subtitle(Titular, PreBibliographic, SubStructural, TextElement): pass
class rubric(Titular, General, TextElement): pass
@@ -1592,7 +1600,7 @@
# Meta-Data Element
# ==================
-class meta(PreBibliographic, Element):
+class meta(PreBibliographic, SubStructural, Element):
"""Container for "invisible" bibliographic data, or meta-data."""
@@ -1600,7 +1608,7 @@
# Bibliographic Elements
# ========================
-class docinfo(Bibliographic, Element): pass
+class docinfo(SubStructural, Element): pass
class author(Bibliographic, TextElement): pass
class organization(Bibliographic, TextElement): pass
class address(Bibliographic, FixedTextElement): pass
@@ -1620,7 +1628,7 @@
# Decorative Elements
# =====================
-class decoration(PreBibliographic, Element):
+class decoration(PreBibliographic, SubStructural, Element):
"""Container for header and footer."""
def get_header(self):
@@ -1676,7 +1684,7 @@
"""
-class transition(Structural, Element):
+class transition(SubStructural, Element):
"""Transitions are breaks between untitled text parts.
A transition may not begin or end a section or document, nor may two
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <mi...@us...> - 2024-05-04 09:35:13
|
Revision: 9684
http://sourceforge.net/p/docutils/code/9684
Author: milde
Date: 2024-05-04 09:35:10 +0000 (Sat, 04 May 2024)
Log Message:
-----------
Doctree validation: Declare/check valid Element attribute names.
New method `nodes.Element.validate()`.
Allows validating a Document Tree or individual Elements,
e.g. from XML input or custom directives. Cf. [feature-requests:#94].
Part 1: validate attribute names.
Modified Paths:
--------------
trunk/docutils/HISTORY.txt
trunk/docutils/RELEASE-NOTES.txt
trunk/docutils/docutils/nodes.py
trunk/docutils/test/test_nodes.py
Modified: trunk/docutils/HISTORY.txt
===================================================================
--- trunk/docutils/HISTORY.txt 2024-05-04 08:58:36 UTC (rev 9683)
+++ trunk/docutils/HISTORY.txt 2024-05-04 09:35:10 UTC (rev 9684)
@@ -26,6 +26,7 @@
- New `SubStructural` element category class.
- Fix element categories.
+ - New method `Element.validate()` (work in progress).
* docutils/transforms/frontmatter.py
Modified: trunk/docutils/RELEASE-NOTES.txt
===================================================================
--- trunk/docutils/RELEASE-NOTES.txt 2024-05-04 08:58:36 UTC (rev 9683)
+++ trunk/docutils/RELEASE-NOTES.txt 2024-05-04 09:35:10 UTC (rev 9684)
@@ -154,6 +154,10 @@
* Remove the "rawsource" argument from `nodes.Text.__init__()`
in Docutils 2.0.
+* Remove the deprecated attributes `nodes.Element.known_attributes`,
+ `nodes.Element.basic_attributes`, and `nodes.Element.local_attributes`,
+ in Docutils 2.0.
+
* Drop support for `old-format configuration files`_ in Docutils 2.0.
* Remove the ``--html-writer`` option of the `buildhtml.py`_ application
Modified: trunk/docutils/docutils/nodes.py
===================================================================
--- trunk/docutils/docutils/nodes.py 2024-05-04 08:58:36 UTC (rev 9683)
+++ trunk/docutils/docutils/nodes.py 2024-05-04 09:35:10 UTC (rev 9684)
@@ -398,7 +398,10 @@
def lstrip(self, chars=None):
return self.__class__(str.lstrip(self, chars))
+ def validate(self):
+ pass # Text nodes have no attributes and no children.
+
class Element(Node):
"""
`Element` is the superclass to all specific elements.
@@ -447,24 +450,35 @@
This is equivalent to ``element.extend([node1, node2])``.
"""
- basic_attributes = ('ids', 'classes', 'names', 'dupnames')
- """Tuple of attributes which are defined for every Element-derived class
- instance and can be safely transferred to a different node."""
+ list_attributes = ('ids', 'classes', 'names', 'dupnames')
+ """Tuple of attributes that are initialized to empty lists.
- local_attributes = ('backrefs',)
- """Tuple of class-specific attributes that should not be copied with the
- standard attributes when replacing a node.
+ NOTE: Derived classes should update this value when supporting
+ additional list attributes.
+ """
- NOTE: Derived classes should override this value to prevent any of its
- attributes being copied by adding to the value in its parent class."""
+ valid_attributes = list_attributes + ('source',)
+ """Tuple of attributes that are valid for elements of this class.
- list_attributes = basic_attributes + local_attributes
- """Tuple of attributes that are automatically initialized to empty lists
- for all nodes."""
+ NOTE: Derived classes should update this value when supporting
+ additional attributes.
+ """
- known_attributes = list_attributes + ('source',)
- """Tuple of attributes that are known to the Element base class."""
+ common_attributes = valid_attributes
+ """Tuple of `common attributes`__ known to all Doctree Element classes.
+ __ https://docutils.sourceforge.io/docs/ref/doctree.html#common-attributes
+ """
+
+ known_attributes = common_attributes
+ """Alias for `common_attributes`. Will be removed in Docutils 2.0."""
+
+ basic_attributes = list_attributes
+ """Common list attributes. Deprecated. Will be removed in Docutils 2.0."""
+
+ local_attributes = ('backrefs',)
+ """Obsolete. Will be removed in Docutils 2.0."""
+
tagname = None
"""The element generic identifier.
@@ -478,6 +492,8 @@
self.rawsource = rawsource
"""The raw text from which this element was constructed.
+ For informative and debugging purposes. Don't rely on its value!
+
NOTE: some elements do not set this value (default '').
"""
@@ -715,6 +731,8 @@
"""
Update basic attributes ('ids', 'names', 'classes',
'dupnames', but not 'source') from node or dictionary `dict_`.
+
+ Provisional.
"""
if isinstance(dict_, Node):
dict_ = dict_.attributes
@@ -953,6 +971,8 @@
"""
Replace `self` node with `new`, where `new` is a node or a
list of nodes.
+
+ Provisional: the handling of node attributes will be revised.
"""
update = new
if not isinstance(new, Node):
@@ -1066,12 +1086,31 @@
@classmethod
def is_not_known_attribute(cls, attr):
"""
- Returns True if and only if the given attribute is NOT recognized by
- this class.
+ Return True if `attr` is NOT defined for all Element instances.
+
+ Provisional. May be removed in Docutils 2.0.
"""
- return attr not in cls.known_attributes
+ return attr not in cls.common_attributes
+ def validate_attributes(self):
+ # check for undeclared attributes
+ # TODO: check attribute values
+ for key, value in self.attributes.items():
+ if key.startswith('internal:'):
+ continue # see docs/user/config.html#expose-internals
+ if key not in self.valid_attributes:
+ raise ValueError(
+ f'Element <{self.tagname}> has invalid attribute "{key}".')
+ def validate(self):
+ # print(f'validating', self.tagname)
+ self.validate_attributes()
+ # TODO: check number of children
+ for child in self.children:
+ # TODO: check whether child has allowed type
+ child.validate()
+
+
# ========
# Mixins
# ========
@@ -1083,6 +1122,9 @@
class BackLinkable:
"""Mixin for Elements that accept a "backrefs" attribute."""
+ list_attributes = Element.list_attributes + ('backrefs',)
+ valid_attributes = Element.valid_attributes + ('backrefs',)
+
def add_backref(self, refid):
self['backrefs'].append(refid)
@@ -1215,6 +1257,8 @@
class FixedTextElement(TextElement):
"""An element which directly contains preformatted text."""
+ valid_attributes = Element.valid_attributes + ('xml:space',)
+
def __init__(self, rawsource='', text='', *children, **attributes):
super().__init__(rawsource, text, *children, **attributes)
self.attributes['xml:space'] = 'preserve'
@@ -1238,6 +1282,7 @@
Do not instantiate this class directly; use
`docutils.utils.new_document()` instead.
"""
+ valid_attributes = Element.valid_attributes + ('title',)
def __init__(self, settings, reporter, *args, **kwargs):
Element.__init__(self, *args, **kwargs)
@@ -1591,7 +1636,10 @@
# Title Elements
# ================
-class title(Titular, PreBibliographic, SubStructural, TextElement): pass
+class title(Titular, PreBibliographic, SubStructural, TextElement):
+ valid_attributes = Element.valid_attributes + ('auto', 'refid')
+
+
class subtitle(Titular, PreBibliographic, SubStructural, TextElement): pass
class rubric(Titular, General, TextElement): pass
@@ -1602,6 +1650,8 @@
class meta(PreBibliographic, SubStructural, Element):
"""Container for "invisible" bibliographic data, or meta-data."""
+ valid_attributes = Element.valid_attributes + (
+ 'content', 'dir', 'http-equiv', 'lang', 'media', 'name', 'scheme')
# ========================
@@ -1666,6 +1716,8 @@
inside topics, sidebars, or body elements; you can't have a topic inside a
table, list, block quote, etc.
"""
+ # "depth" and "local" attributes may be added by the "Contents" transform:
+ valid_attributes = Element.valid_attributes + ('depth', 'local')
class sidebar(Structural, Element):
@@ -1699,8 +1751,17 @@
class paragraph(General, TextElement): pass
class compound(General, Element): pass
class container(General, Element): pass
-class bullet_list(Sequential, Element): pass
-class enumerated_list(Sequential, Element): pass
+
+
+class bullet_list(Sequential, Element):
+ valid_attributes = Element.valid_attributes + ('bullet',)
+
+
+class enumerated_list(Sequential, Element):
+ valid_attributes = Element.valid_attributes + (
+ 'enumtype', 'prefix', 'suffix', 'start')
+
+
class list_item(Part, Element): pass
class definition_list(Sequential, Element): pass
class definition_list_item(Part, Element): pass
@@ -1723,12 +1784,14 @@
class option_argument(Part, TextElement):
"""Placeholder text for option arguments."""
+ valid_attributes = Element.valid_attributes + ('delimiter',)
+
def astext(self):
return self.get('delimiter', ' ') + TextElement.astext(self)
class option_group(Part, Element):
- """Groups together one or more <option> elements, all synonyms."""
+ """Groups together one or more `option` elements, all synonyms."""
child_text_separator = ', '
@@ -1737,7 +1800,8 @@
class option_list_item(Part, Element):
- """Container for a pair of `option_group` and `description` elements."""
+ """Container for a pair of `option_group` and `description` elements.
+ """
child_text_separator = ' '
@@ -1767,23 +1831,58 @@
class warning(Admonition, Element): pass
class admonition(Admonition, Element): pass
class comment(Special, Invisible, FixedTextElement): pass
-class substitution_definition(Special, Invisible, TextElement): pass
-class target(Special, Invisible, Inline, TextElement, Targetable): pass
-class footnote(General, BackLinkable, Element, Labeled, Targetable): pass
+
+
+class substitution_definition(Special, Invisible, TextElement):
+ valid_attributes = Element.valid_attributes + ('ltrim', 'rtrim')
+
+
+class target(Special, Invisible, Inline, TextElement, Targetable):
+ valid_attributes = Element.valid_attributes + (
+ 'anonymous', 'refid', 'refname', 'refuri')
+
+
+class footnote(General, BackLinkable, Element, Labeled, Targetable):
+ valid_attributes = Element.valid_attributes + ('auto', 'backrefs')
+
+
class citation(General, BackLinkable, Element, Labeled, Targetable): pass
class label(Part, TextElement): pass
-class figure(General, Element): pass
+
+
+class figure(General, Element):
+ valid_attributes = Element.valid_attributes + ('align', 'width')
+
+
class caption(Part, TextElement): pass
class legend(Part, Element): pass
-class table(General, Element): pass
-class tgroup(Part, Element): pass
-class colspec(Part, Element): pass
+
+
+class table(General, Element):
+ valid_attributes = Element.valid_attributes + (
+ 'align', 'colsep', 'frame', 'pgwide', 'rowsep', 'width')
+
+
+class tgroup(Part, Element):
+ valid_attributes = Element.valid_attributes + (
+ 'align', 'cols', 'colsep', 'rowsep')
+
+
+class colspec(Part, Element):
+ valid_attributes = Element.valid_attributes + (
+ 'align', 'char', 'charoff', 'colname', 'colnum',
+ 'colsep', 'colwidth', 'rowsep', 'stub')
+
+
class thead(Part, Element): pass
class tbody(Part, Element): pass
class row(Part, Element): pass
-class entry(Part, Element): pass
+class entry(Part, Element):
+ valid_attributes = Element.valid_attributes + ('morecols', 'morerows')
+
+
class system_message(Special, BackLinkable, PreBibliographic, Element):
"""
System message element.
@@ -1791,6 +1890,8 @@
Do not instantiate this class directly; use
``document.reporter.info/warning/error/severe()`` instead.
"""
+ valid_attributes = BackLinkable.valid_attributes + (
+ 'level', 'line', 'type')
def __init__(self, message=None, *children, **attributes):
rawsource = attributes.pop('rawsource', '')
@@ -1883,7 +1984,9 @@
class raw(Special, Inline, PreBibliographic, FixedTextElement):
- """Raw data that is to be passed untouched to the Writer."""
+ """Raw data that is to be passed untouched to the Writer.
+ """
+ valid_attributes = Element.valid_attributes + ('format', 'xml:space')
# =================
@@ -1893,10 +1996,25 @@
class emphasis(Inline, TextElement): pass
class strong(Inline, TextElement): pass
class literal(Inline, TextElement): pass
-class reference(General, Inline, Referential, TextElement): pass
-class footnote_reference(Inline, Referential, TextElement): pass
-class citation_reference(Inline, Referential, TextElement): pass
-class substitution_reference(Inline, TextElement): pass
+
+
+class reference(General, Inline, Referential, TextElement):
+ valid_attributes = Element.valid_attributes + (
+ 'anonymous', 'name', 'refid', 'refname', 'refuri')
+
+
+class footnote_reference(Inline, Referential, TextElement):
+ valid_attributes = Element.valid_attributes + ('auto', 'refid', 'refname')
+
+
+class citation_reference(Inline, Referential, TextElement):
+ valid_attributes = Element.valid_attributes + ('refid', 'refname')
+
+
+class substitution_reference(Inline, TextElement):
+ valid_attributes = Element.valid_attributes + ('refname',)
+
+
class title_reference(Inline, TextElement): pass
class abbreviation(Inline, TextElement): pass
class acronym(Inline, TextElement): pass
@@ -1907,12 +2025,22 @@
class image(General, Inline, Element):
"""Reference to an image resource."""
+
+ valid_attributes = Element.valid_attributes + (
+ 'uri', 'alt', 'align', 'height', 'width', 'scale', 'loading')
+
def astext(self):
return self.get('alt', '')
class inline(Inline, TextElement): pass
-class problematic(Inline, TextElement): pass
+
+
+class problematic(Inline, TextElement):
+ valid_attributes = Element.valid_attributes + (
+ 'refid', 'refname', 'refuri')
+
+
class generated(Inline, TextElement): pass
Modified: trunk/docutils/test/test_nodes.py
===================================================================
--- trunk/docutils/test/test_nodes.py 2024-05-04 08:58:36 UTC (rev 9683)
+++ trunk/docutils/test/test_nodes.py 2024-05-04 09:35:10 UTC (rev 9684)
@@ -469,7 +469,19 @@
with self.assertWarns(DeprecationWarning):
node.set_class('parrot')
+ def test_validate(self):
+ node = nodes.paragraph('', 'plain text', classes='my test classes')
+ node.append(nodes.emphasis('', 'emphasised text', ids='emphtext'))
+ node.validate()
+ def test_validate_wrong_attribute(self):
+ node = nodes.paragraph('', 'text', id='test-paragraph')
+ with self.assertRaisesRegexp(ValueError,
+ 'Element <paragraph> '
+ 'has invalid attribute "id".'):
+ node.validate()
+
+
class MiscTests(unittest.TestCase):
def test_node_class_names(self):
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <gr...@us...> - 2024-05-05 11:33:42
|
Revision: 9686
http://sourceforge.net/p/docutils/code/9686
Author: grubert
Date: 2024-05-05 11:33:37 +0000 (Sun, 05 May 2024)
Log Message:
-----------
manpage writer: Remove code for unused emdash bullets.
Modified Paths:
--------------
trunk/docutils/HISTORY.txt
trunk/docutils/docutils/writers/manpage.py
Modified: trunk/docutils/HISTORY.txt
===================================================================
--- trunk/docutils/HISTORY.txt 2024-05-04 09:44:39 UTC (rev 9685)
+++ trunk/docutils/HISTORY.txt 2024-05-05 11:33:37 UTC (rev 9686)
@@ -32,7 +32,9 @@
- Adapt `DocInfo` to fixed element categories.
+* docutils/writers/manpage.py
+ - Remove code for unused emdash bullets.
Release 0.21.2 (2024-04-23)
===========================
Modified: trunk/docutils/docutils/writers/manpage.py
===================================================================
--- trunk/docutils/docutils/writers/manpage.py 2024-05-04 09:44:39 UTC (rev 9685)
+++ trunk/docutils/docutils/writers/manpage.py 2024-05-05 11:33:37 UTC (rev 9686)
@@ -315,7 +315,6 @@
class EnumChar:
enum_style = {
'bullet': '\\(bu',
- 'emdash': '\\(em',
}
def __init__(self, style):
@@ -342,8 +341,6 @@
def __next__(self):
if self._style == 'bullet':
return self.enum_style[self._style]
- elif self._style == 'emdash':
- return self.enum_style[self._style]
self._cnt += 1
# TODO add prefix postfix
if self._style == 'arabic':
@@ -367,6 +364,8 @@
if 'enumtype' in node:
self._list_char.append(EnumChar(node['enumtype']))
else:
+ # INFO node['bullet'] contains the bullet style "*+-"
+ # BUT man pages only use "*".
self._list_char.append(EnumChar('bullet'))
if len(self._list_char) > 1:
# indent nested lists
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <mi...@us...> - 2024-05-06 07:55:19
|
Revision: 9687
http://sourceforge.net/p/docutils/code/9687
Author: milde
Date: 2024-05-06 07:55:16 +0000 (Mon, 06 May 2024)
Log Message:
-----------
Fix recommonmark parser post-processing.
Do not insert a `<system_message>` where it is invalid (paragraphs, ...).
Use a `<problematic>` node instead and place the `<system_message>`
at the end of the document.
Modified Paths:
--------------
trunk/docutils/docutils/parsers/recommonmark_wrapper.py
trunk/docutils/test/test_parsers/test_recommonmark/test_misc.py
Modified: trunk/docutils/docutils/parsers/recommonmark_wrapper.py
===================================================================
--- trunk/docutils/docutils/parsers/recommonmark_wrapper.py 2024-05-05 11:33:37 UTC (rev 9686)
+++ trunk/docutils/docutils/parsers/recommonmark_wrapper.py 2024-05-06 07:55:16 UTC (rev 9687)
@@ -123,8 +123,17 @@
# replace raw nodes if raw is not allowed
if not document.settings.raw_enabled:
for node in document.findall(nodes.raw):
- warning = document.reporter.warning('Raw content disabled.')
- node.parent.replace(node, warning)
+ message = document.reporter.warning('Raw content disabled.')
+ if isinstance(node.parent, nodes.TextElement):
+ msgid = document.set_id(message)
+ problematic = nodes.problematic('', node.astext(),
+ refid=msgid)
+ node.parent.replace(node, problematic)
+ prbid = document.set_id(problematic)
+ message.add_backref(prbid)
+ document.append(message)
+ else:
+ node.parent.replace(node, message)
# drop pending_xref (Sphinx cross reference extension)
for node in document.findall(addnodes.pending_xref):
Modified: trunk/docutils/test/test_parsers/test_recommonmark/test_misc.py
===================================================================
--- trunk/docutils/test/test_parsers/test_recommonmark/test_misc.py 2024-05-05 11:33:37 UTC (rev 9686)
+++ trunk/docutils/test/test_parsers/test_recommonmark/test_misc.py 2024-05-06 07:55:16 UTC (rev 9687)
@@ -44,6 +44,11 @@
@unittest.skipIf(Parser is None, 'Optional "recommonmark" module not found.')
class RecommonmarkParserTests(unittest.TestCase):
+ mysettings = {'output_encoding': 'unicode',
+ 'warning_stream': '',
+ 'raw_enabled': False,
+ }
+
def test_parser_name(self):
# cf. ../test_rst/test_directives/test__init__.py
# this is used in the "include" directive's :parser: option.
@@ -51,22 +56,18 @@
def test_raw_disabled(self):
output = publish_string(sample_with_html, parser=Parser(),
- settings_overrides={
- 'warning_stream': '',
- 'raw_enabled': False,
- })
- self.assertNotIn(b'<raw>', output)
- self.assertIn(b'<system_message', output)
- self.assertIn(b'Raw content disabled.', output)
+ settings_overrides=self.mysettings)
+ self.assertNotIn('<raw>', output)
+ self.assertIn('<system_message', output)
+ self.assertIn('Raw content disabled.', output)
def test_raw_disabled_inline(self):
output = publish_string('foo <a href="uri">', parser=Parser(),
- settings_overrides={'warning_stream': '',
- 'raw_enabled': False,
- })
- self.assertNotIn(b'<raw>', output)
- self.assertIn(b'<system_message', output)
- self.assertIn(b'Raw content disabled.', output)
+ settings_overrides=self.mysettings)
+ self.assertNotIn('<raw>', output)
+ self.assertIn('<problematic', output)
+ self.assertIn('<system_message', output)
+ self.assertIn('Raw content disabled.', output)
if __name__ == '__main__':
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|