<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/docutils.git/docutils/docs/ref, branch transforms</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>reverted last check-in; it was committed to "transforms" branch</title>
<updated>2005-09-18T16:03:19+00:00</updated>
<author>
<name>wiemann</name>
<email>wiemann@929543f6-e4f2-0310-98a6-ba3bd3dd1d04</email>
</author>
<published>2005-09-18T16:03:19+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/docutils.git/commit/?id=3d79be52ac7d39adea5f620b59b2b15c6df830d4'/>
<id>3d79be52ac7d39adea5f620b59b2b15c6df830d4</id>
<content type='text'>
instead of trunk, and it causes conflicts when merging to trunk; I'll
redo that change after merging the "transforms" branch into the trunk
in order to avoid unnecessary merge-work


git-svn-id: http://svn.code.sf.net/p/docutils/code/branches/transforms@3887 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
instead of trunk, and it causes conflicts when merging to trunk; I'll
redo that change after merging the "transforms" branch into the trunk
in order to avoid unnecessary merge-work


git-svn-id: http://svn.code.sf.net/p/docutils/code/branches/transforms@3887 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</pre>
</div>
</content>
</entry>
<entry>
<title>changed DanglingReferences priority back to 850</title>
<updated>2005-09-18T15:53:04+00:00</updated>
<author>
<name>wiemann</name>
<email>wiemann@929543f6-e4f2-0310-98a6-ba3bd3dd1d04</email>
</author>
<published>2005-09-18T15:53:04+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/docutils.git/commit/?id=e694172ab58257b7f3d8a9a809dbcb189d4e2a11'/>
<id>e694172ab58257b7f3d8a9a809dbcb189d4e2a11</id>
<content type='text'>
git-svn-id: http://svn.code.sf.net/p/docutils/code/branches/transforms@3886 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
git-svn-id: http://svn.code.sf.net/p/docutils/code/branches/transforms@3886 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</pre>
</div>
</content>
</entry>
<entry>
<title>incorporated David's suggestions for the transforms branch</title>
<updated>2005-09-17T23:43:53+00:00</updated>
<author>
<name>wiemann</name>
<email>wiemann@929543f6-e4f2-0310-98a6-ba3bd3dd1d04</email>
</author>
<published>2005-09-17T23:43:53+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/docutils.git/commit/?id=6dd49009e2c74ea22c562703eac888711c280e36'/>
<id>6dd49009e2c74ea22c562703eac888711c280e36</id>
<content type='text'>
git-svn-id: http://svn.code.sf.net/p/docutils/code/branches/transforms@3884 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
git-svn-id: http://svn.code.sf.net/p/docutils/code/branches/transforms@3884 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</pre>
</div>
</content>
</entry>
<entry>
<title>Turned components.Filter into components.WriterFilter.  When the</title>
<updated>2005-08-20T19:34:59+00:00</updated>
<author>
<name>wiemann</name>
<email>wiemann@929543f6-e4f2-0310-98a6-ba3bd3dd1d04</email>
</author>
<published>2005-08-20T19:34:59+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/docutils.git/commit/?id=54cb67323e7ad8dc099fe26b7209ab9f4ac0563b'/>
<id>54cb67323e7ad8dc099fe26b7209ab9f4ac0563b</id>
<content type='text'>
Filter transform is run, the only type of component which has not yet
been used *and* has the notion of a "format" is the writer.  I (Felix)
cannot imagine a use case where components.Filter would filter, say,
parser-specific nodes.  Thus, it's possible to make components.Filter
specific to writers without loss of functionality.

Added FormatSpecific node.  Made "meta" and "raw" subclasses of
nodes.FormatSpecific.

nodes.Node.traverse: When a class is passed as first argument, do not
check if it is a subclass of nodes.Node.  This is necessary because
some node classes (like nodes.FormatSpecific) aren't subclasses of
nodes.Node.

directives.meta: Do not insert pending nodes but rather the meta node
directly.

components.WriterFilter does no longer work on pending nodes but
traverses the document tree looking for FormatSpecific nodes.

Removed format-handling code for raw node from writers.  This is now
done by the WriterFilter transform.

Removed test/test_transforms/test_filter.py; that test isn't usable
for testing the WriterFilter transform.  components.WriterFilter is
automatically tested in the functional tests; that's enough for now.

Updated docs/ref/transforms.txt.

Partially updated docs/peps/pep-0258.txt.


git-svn-id: http://svn.code.sf.net/p/docutils/code/branches/transforms@3825 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Filter transform is run, the only type of component which has not yet
been used *and* has the notion of a "format" is the writer.  I (Felix)
cannot imagine a use case where components.Filter would filter, say,
parser-specific nodes.  Thus, it's possible to make components.Filter
specific to writers without loss of functionality.

Added FormatSpecific node.  Made "meta" and "raw" subclasses of
nodes.FormatSpecific.

nodes.Node.traverse: When a class is passed as first argument, do not
check if it is a subclass of nodes.Node.  This is necessary because
some node classes (like nodes.FormatSpecific) aren't subclasses of
nodes.Node.

directives.meta: Do not insert pending nodes but rather the meta node
directly.

components.WriterFilter does no longer work on pending nodes but
traverses the document tree looking for FormatSpecific nodes.

Removed format-handling code for raw node from writers.  This is now
done by the WriterFilter transform.

Removed test/test_transforms/test_filter.py; that test isn't usable
for testing the WriterFilter transform.  components.WriterFilter is
automatically tested in the functional tests; that's enough for now.

Updated docs/ref/transforms.txt.

Partially updated docs/peps/pep-0258.txt.


git-svn-id: http://svn.code.sf.net/p/docutils/code/branches/transforms@3825 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</pre>
</div>
</content>
</entry>
<entry>
<title>two more typos</title>
<updated>2005-08-14T20:24:03+00:00</updated>
<author>
<name>wiemann</name>
<email>wiemann@929543f6-e4f2-0310-98a6-ba3bd3dd1d04</email>
</author>
<published>2005-08-14T20:24:03+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/docutils.git/commit/?id=271534d9257a785f62791840fa64368dd7c4cdfa'/>
<id>271534d9257a785f62791840fa64368dd7c4cdfa</id>
<content type='text'>
git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk@3805 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk@3805 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed a typo in the Docutils release that introduced units</title>
<updated>2005-08-14T19:25:39+00:00</updated>
<author>
<name>lele</name>
<email>lele@929543f6-e4f2-0310-98a6-ba3bd3dd1d04</email>
</author>
<published>2005-08-14T19:25:39+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/docutils.git/commit/?id=faef4656baa15ce06175ae1fcf586b7ad3964b25'/>
<id>faef4656baa15ce06175ae1fcf586b7ad3964b25</id>
<content type='text'>
git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk@3804 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk@3804 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</pre>
</div>
</content>
</entry>
<entry>
<title>add "new in Docutils 0.3.8" notice to auto-enumerated lists</title>
<updated>2005-08-04T03:00:27+00:00</updated>
<author>
<name>goodger</name>
<email>goodger@929543f6-e4f2-0310-98a6-ba3bd3dd1d04</email>
</author>
<published>2005-08-04T03:00:27+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/docutils.git/commit/?id=8ca43b7878525deea807e9578ea8e9d5bde8adcc'/>
<id>8ca43b7878525deea807e9578ea8e9d5bde8adcc</id>
<content type='text'>
git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk@3786 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk@3786 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</pre>
</div>
</content>
</entry>
<entry>
<title>clarified/simplified</title>
<updated>2005-07-30T04:53:02+00:00</updated>
<author>
<name>goodger</name>
<email>goodger@929543f6-e4f2-0310-98a6-ba3bd3dd1d04</email>
</author>
<published>2005-07-30T04:53:02+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/docutils.git/commit/?id=f7ff55ddfe41d75a366399ca7dcba889df49ea68'/>
<id>f7ff55ddfe41d75a366399ca7dcba889df49ea68</id>
<content type='text'>
git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk@3779 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk@3779 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</pre>
</div>
</content>
</entry>
<entry>
<title>added hyperlinks to files</title>
<updated>2005-07-29T23:38:08+00:00</updated>
<author>
<name>goodger</name>
<email>goodger@929543f6-e4f2-0310-98a6-ba3bd3dd1d04</email>
</author>
<published>2005-07-29T23:38:08+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/docutils.git/commit/?id=076c39b48a71b8e0170b794d5855b6553c88889b'/>
<id>076c39b48a71b8e0170b794d5855b6553c88889b</id>
<content type='text'>
git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk@3777 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk@3777 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</pre>
</div>
</content>
</entry>
<entry>
<title>removed note on Unicode support of csv-table directive;</title>
<updated>2005-07-17T19:59:35+00:00</updated>
<author>
<name>wiemann</name>
<email>wiemann@929543f6-e4f2-0310-98a6-ba3bd3dd1d04</email>
</author>
<published>2005-07-17T19:59:35+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/docutils.git/commit/?id=0abd628d5e3ba9f414a25391b6afdc93d2f5db6a'/>
<id>0abd628d5e3ba9f414a25391b6afdc93d2f5db6a</id>
<content type='text'>
ASCII NUL limitation isn't worth being documented (there is an
explanatory error message); encoding option has been implemented

git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk@3761 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
ASCII NUL limitation isn't worth being documented (there is an
explanatory error message); encoding option has been implemented

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