<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/docutils.git/docutils, branch docutils-0.19</title>
<subtitle>svn.code.sf.net: p/docutils/code
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/docutils.git/'/>
<entry>
<title>release 0.19</title>
<updated>2022-07-05T20:04:21+00:00</updated>
<author>
<name>grubert</name>
<email>grubert@929543f6-e4f2-0310-98a6-ba3bd3dd1d04</email>
</author>
<published>2022-07-05T20:04:21+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/docutils.git/commit/?id=bb3211d3b055c4cb6f7207a1e3cc7ae5bd7b691d'/>
<id>bb3211d3b055c4cb6f7207a1e3cc7ae5bd7b691d</id>
<content type='text'>
git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@9103 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@9103 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</pre>
</div>
</content>
</entry>
<entry>
<title>Document planned changes to input encoding handling.</title>
<updated>2022-07-04T21:06:49+00:00</updated>
<author>
<name>milde</name>
<email>milde@929543f6-e4f2-0310-98a6-ba3bd3dd1d04</email>
</author>
<published>2022-07-04T21:06:49+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/docutils.git/commit/?id=d1980081db129030b48077124b5f7276e8a850e9'/>
<id>d1980081db129030b48077124b5f7276e8a850e9</id>
<content type='text'>
git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@9100 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@9100 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix handling of UTF-16 encoded source without trailing newline.</title>
<updated>2022-07-04T21:06:38+00:00</updated>
<author>
<name>milde</name>
<email>milde@929543f6-e4f2-0310-98a6-ba3bd3dd1d04</email>
</author>
<published>2022-07-04T21:06:38+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/docutils.git/commit/?id=350808ec2c71144c51d0b2219edd9d889d3d2cf7'/>
<id>350808ec2c71144c51d0b2219edd9d889d3d2cf7</id>
<content type='text'>
Decoding a UTF-16 encoded source with BOM after auto-detection of the
encoding failed.
The newline normalization in `docutils.FileInput.read()`
produced invalid UTF-16 because it added one byte
(binary ASCII newline).

Postponing the newline normalization after the decoding step solves
this problem.

git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@9099 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Decoding a UTF-16 encoded source with BOM after auto-detection of the
encoding failed.
The newline normalization in `docutils.FileInput.read()`
produced invalid UTF-16 because it added one byte
(binary ASCII newline).

Postponing the newline normalization after the decoding step solves
this problem.

git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@9099 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</pre>
</div>
</content>
</entry>
<entry>
<title>Don't use on Pythons default encoding if "input_encoding" setting is None.</title>
<updated>2022-07-04T21:06:30+00:00</updated>
<author>
<name>milde</name>
<email>milde@929543f6-e4f2-0310-98a6-ba3bd3dd1d04</email>
</author>
<published>2022-07-04T21:06:30+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/docutils.git/commit/?id=5d9022ac0e6215adb53f462e9ef89998106f22fb'/>
<id>5d9022ac0e6215adb53f462e9ef89998106f22fb</id>
<content type='text'>
If the "input_encoding" setting is None, the encoding of an
input source should be auto-detected with a heuristic.

Under Python 3, auto-detection was only used if reading a file
with Python's default encoding failed.

Resulting problems:

* EncodingWarning (PEP 597) in Python &gt;= 3.10.

* Optional BOM not dropped from utf-8 encoded files.

* If the usrers locale sets an 8-bit encoding,
  files in other 8-bit encodings, UTF-8, and UTF-16 show
  character mix-up (mojibake) (self-declared encoding ignored as
  reading in 8-bit encoding does not lead to errors).

git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@9098 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
If the "input_encoding" setting is None, the encoding of an
input source should be auto-detected with a heuristic.

Under Python 3, auto-detection was only used if reading a file
with Python's default encoding failed.

Resulting problems:

* EncodingWarning (PEP 597) in Python &gt;= 3.10.

* Optional BOM not dropped from utf-8 encoded files.

* If the usrers locale sets an 8-bit encoding,
  files in other 8-bit encodings, UTF-8, and UTF-16 show
  character mix-up (mojibake) (self-declared encoding ignored as
  reading in 8-bit encoding does not lead to errors).

git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@9098 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</pre>
</div>
</content>
</entry>
<entry>
<title>Minor code cleanup in `docutils.io`.</title>
<updated>2022-06-22T09:54:13+00:00</updated>
<author>
<name>milde</name>
<email>milde@929543f6-e4f2-0310-98a6-ba3bd3dd1d04</email>
</author>
<published>2022-06-22T09:54:13+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/docutils.git/commit/?id=a037929c1fde2ebe150a12ddb15911a8e82fbca8'/>
<id>a037929c1fde2ebe150a12ddb15911a8e82fbca8</id>
<content type='text'>
Fix/expand a docstring.
Disambiguate local variable name "encodings".
Use f-string instead of %-replacements.

git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@9093 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix/expand a docstring.
Disambiguate local variable name "encodings".
Use f-string instead of %-replacements.

git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@9093 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix version identifier conversion script.</title>
<updated>2022-06-22T08:56:37+00:00</updated>
<author>
<name>milde</name>
<email>milde@929543f6-e4f2-0310-98a6-ba3bd3dd1d04</email>
</author>
<published>2022-06-22T08:56:37+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/docutils.git/commit/?id=a7583672e27e99ce96e9c37ab0773e1f912fecb1'/>
<id>a7583672e27e99ce96e9c37ab0773e1f912fecb1</id>
<content type='text'>
git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@9091 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@9091 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</pre>
</div>
</content>
</entry>
<entry>
<title>`core.Publisher` ignored "input_encoding_error_handler" setting.</title>
<updated>2022-06-22T08:51:16+00:00</updated>
<author>
<name>milde</name>
<email>milde@929543f6-e4f2-0310-98a6-ba3bd3dd1d04</email>
</author>
<published>2022-06-22T08:51:16+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/docutils.git/commit/?id=d271ee353755f632406bc34892a8cbcb91467060'/>
<id>d271ee353755f632406bc34892a8cbcb91467060</id>
<content type='text'>
git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@9089 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@9089 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</pre>
</div>
</content>
</entry>
<entry>
<title>version 0.19b2.dev</title>
<updated>2022-06-21T22:16:48+00:00</updated>
<author>
<name>grubert</name>
<email>grubert@929543f6-e4f2-0310-98a6-ba3bd3dd1d04</email>
</author>
<published>2022-06-21T22:16:48+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/docutils.git/commit/?id=122b2e9e9cf419d297797797475a7583deb9c66a'/>
<id>122b2e9e9cf419d297797797475a7583deb9c66a</id>
<content type='text'>
git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@9086 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@9086 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</pre>
</div>
</content>
</entry>
<entry>
<title>release 0.19b1</title>
<updated>2022-06-21T21:32:31+00:00</updated>
<author>
<name>grubert</name>
<email>grubert@929543f6-e4f2-0310-98a6-ba3bd3dd1d04</email>
</author>
<published>2022-06-21T21:32:31+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/docutils.git/commit/?id=6ac7157f5d7e61ae4909e717651aa6eaa8f99853'/>
<id>6ac7157f5d7e61ae4909e717651aa6eaa8f99853</id>
<content type='text'>
git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@9085 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@9085 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</pre>
</div>
</content>
</entry>
<entry>
<title>Add wrapper around groups of footnotes to facilitate styling as a list.</title>
<updated>2022-06-19T20:23:12+00:00</updated>
<author>
<name>milde</name>
<email>milde@929543f6-e4f2-0310-98a6-ba3bd3dd1d04</email>
</author>
<published>2022-06-19T20:23:12+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/docutils.git/commit/?id=591297c64d15df5b60528950948d8816b2e5c7aa'/>
<id>591297c64d15df5b60528950948d8816b2e5c7aa</id>
<content type='text'>
Adapt style sheets and tests.

Cf. bug #450.

git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@9081 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Adapt style sheets and tests.

Cf. bug #450.

git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@9081 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</pre>
</div>
</content>
</entry>
</feed>
