<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/docutils.git/docutils/transforms/references.py, branch docutils-0.17</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>Limit length of input lines and substitution expansion.</title>
<updated>2020-09-14T10:26:03+00:00</updated>
<author>
<name>milde</name>
<email>milde@929543f6-e4f2-0310-98a6-ba3bd3dd1d04</email>
</author>
<published>2020-09-14T10:26:03+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/docutils.git/commit/?id=46854d19a5ac502c3487908bab8ebd29a3220143'/>
<id>46854d19a5ac502c3487908bab8ebd29a3220143</id>
<content type='text'>
Mitigate the danger of DoS attacs using
specially crafted rST input (cf. bug #381).

The default value of 10 000 characters should suffice for
legitimate use cases (e.g. long paragraphs in auto-wrapping editors
or extensive creative use of substitutions).

Applications processing untrusted rST might wish to lower this
limitation (together with other safety measures described in
docs/howto/security.txt).

Unsupervised processing of untrusted rST input should always
be safeguarded with limits on processing time and memory use.

git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@8565 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Mitigate the danger of DoS attacs using
specially crafted rST input (cf. bug #381).

The default value of 10 000 characters should suffice for
legitimate use cases (e.g. long paragraphs in auto-wrapping editors
or extensive creative use of substitutions).

Applications processing untrusted rST might wish to lower this
limitation (together with other safety measures described in
docs/howto/security.txt).

Unsupervised processing of untrusted rST input should always
be safeguarded with limits on processing time and memory use.

git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@8565 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</pre>
</div>
</content>
</entry>
<entry>
<title>Flat is better than nested.</title>
<updated>2020-09-08T09:59:17+00:00</updated>
<author>
<name>milde</name>
<email>milde@929543f6-e4f2-0310-98a6-ba3bd3dd1d04</email>
</author>
<published>2020-09-08T09:59:17+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/docutils.git/commit/?id=97f986283a45938e8c5e5001233945aa896993c1'/>
<id>97f986283a45938e8c5e5001233945aa896993c1</id>
<content type='text'>
git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@8559 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@8559 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</pre>
</div>
</content>
</entry>
<entry>
<title>fix typo</title>
<updated>2020-08-24T19:28:44+00:00</updated>
<author>
<name>grubert</name>
<email>grubert@929543f6-e4f2-0310-98a6-ba3bd3dd1d04</email>
</author>
<published>2020-08-24T19:28:44+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/docutils.git/commit/?id=34d032c4d59f0a3d53c5ac74956008ef47887932'/>
<id>34d032c4d59f0a3d53c5ac74956008ef47887932</id>
<content type='text'>
git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@8543 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@8543 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</pre>
</div>
</content>
</entry>
<entry>
<title>Do not rely on `nodes.Node.traverse()` returning a "list" instance.</title>
<updated>2019-09-06T13:16:34+00:00</updated>
<author>
<name>milde</name>
<email>milde@929543f6-e4f2-0310-98a6-ba3bd3dd1d04</email>
</author>
<published>2019-09-06T13:16:34+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/docutils.git/commit/?id=2192025ccbaff9ad9e154b9009b419507afade3c'/>
<id>2192025ccbaff9ad9e154b9009b419507afade3c</id>
<content type='text'>
While the current implementation actually returns a list of nodes,
the docstring specifies only: "Return an iterable ...".

git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@8387 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
While the current implementation actually returns a list of nodes,
the docstring specifies only: "Return an iterable ...".

git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@8387 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</pre>
</div>
</content>
</entry>
<entry>
<title>"rawsource" attribute for text of inline elements and definition list terms.</title>
<updated>2017-11-04T10:31:01+00:00</updated>
<author>
<name>milde</name>
<email>milde@929543f6-e4f2-0310-98a6-ba3bd3dd1d04</email>
</author>
<published>2017-11-04T10:31:01+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/docutils.git/commit/?id=188039b24395c6a42b8c43e7da64430cc949c017'/>
<id>188039b24395c6a42b8c43e7da64430cc949c017</id>
<content type='text'>
git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@8197 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@8197 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix bug #331: fixed the "trim" options of the "unicode" directive.</title>
<updated>2017-10-20T20:53:47+00:00</updated>
<author>
<name>goodger</name>
<email>goodger@929543f6-e4f2-0310-98a6-ba3bd3dd1d04</email>
</author>
<published>2017-10-20T20:53:47+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/docutils.git/commit/?id=a2ec4822d55ebb4b9ccd53ad1db4ab1c565c37ba'/>
<id>a2ec4822d55ebb4b9ccd53ad1db4ab1c565c37ba</id>
<content type='text'>
git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@8188 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@8188 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</pre>
</div>
</content>
</entry>
<entry>
<title>unroll problematic refs to their origin in document when reporting errors</title>
<updated>2017-05-04T20:10:03+00:00</updated>
<author>
<name>milde</name>
<email>milde@929543f6-e4f2-0310-98a6-ba3bd3dd1d04</email>
</author>
<published>2017-05-04T20:10:03+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/docutils.git/commit/?id=41321546d83c32ac7e54ec663af39ab0bfff5dd5'/>
<id>41321546d83c32ac7e54ec663af39ab0bfff5dd5</id>
<content type='text'>
Patch by Kirill Smelkov. This is part of the (partially outdated) suite of
patches on https://sourceforge.net/p/docutils/patches/67/.

git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@8067 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Patch by Kirill Smelkov. This is part of the (partially outdated) suite of
patches on https://sourceforge.net/p/docutils/patches/67/.

git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@8067 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</pre>
</div>
</content>
</entry>
<entry>
<title>Do not add a second ID to problematic references.</title>
<updated>2017-04-06T13:10:34+00:00</updated>
<author>
<name>milde</name>
<email>milde@929543f6-e4f2-0310-98a6-ba3bd3dd1d04</email>
</author>
<published>2017-04-06T13:10:34+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/docutils.git/commit/?id=9135c3ccc6f47ff55a321b2b1917c280bd86fd84'/>
<id>9135c3ccc6f47ff55a321b2b1917c280bd86fd84</id>
<content type='text'>
git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@8055 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@8055 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix [ 3607029 ] traceback with embedded alias pointing to missing target.</title>
<updated>2013-03-07T14:10:26+00:00</updated>
<author>
<name>milde</name>
<email>milde@929543f6-e4f2-0310-98a6-ba3bd3dd1d04</email>
</author>
<published>2013-03-07T14:10:26+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/docutils.git/commit/?id=ec995cbaa01ac4ee6a19ccadc1631ab4f300d35c'/>
<id>ec995cbaa01ac4ee6a19ccadc1631ab4f300d35c</id>
<content type='text'>
git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@7624 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@7624 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</pre>
</div>
</content>
</entry>
<entry>
<title>Cleanup: Use True/False for boolean values</title>
<updated>2012-01-19T22:33:02+00:00</updated>
<author>
<name>milde</name>
<email>milde@929543f6-e4f2-0310-98a6-ba3bd3dd1d04</email>
</author>
<published>2012-01-19T22:33:02+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/docutils.git/commit/?id=0f0ec1ede0a1a94585ba26a31422455bb47a3b1e'/>
<id>0f0ec1ede0a1a94585ba26a31422455bb47a3b1e</id>
<content type='text'>
git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk/docutils@7320 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@7320 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</pre>
</div>
</content>
</entry>
</feed>
