<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/docutils.git/docutils/test, 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>removed superfluous error message</title>
<updated>2005-08-17T13:32:03+00:00</updated>
<author>
<name>wiemann</name>
<email>wiemann@929543f6-e4f2-0310-98a6-ba3bd3dd1d04</email>
</author>
<published>2005-08-17T13:32:03+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/docutils.git/commit/?id=d9a42d4235f16da6dbe30b5d4eca399f204ac183'/>
<id>d9a42d4235f16da6dbe30b5d4eca399f204ac183</id>
<content type='text'>
git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk@3813 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@3813 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</pre>
</div>
</content>
</entry>
<entry>
<title>committed too early; sorry</title>
<updated>2005-08-15T20:10:27+00:00</updated>
<author>
<name>wiemann</name>
<email>wiemann@929543f6-e4f2-0310-98a6-ba3bd3dd1d04</email>
</author>
<published>2005-08-15T20:10:27+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/docutils.git/commit/?id=298b9b6a24008740aa968df4c0e628127c1d39ab'/>
<id>298b9b6a24008740aa968df4c0e628127c1d39ab</id>
<content type='text'>
git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk@3811 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@3811 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</pre>
</div>
</content>
</entry>
<entry>
<title>made Null writer "support" all formats</title>
<updated>2005-08-15T20:00:05+00:00</updated>
<author>
<name>wiemann</name>
<email>wiemann@929543f6-e4f2-0310-98a6-ba3bd3dd1d04</email>
</author>
<published>2005-08-15T20:00:05+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/docutils.git/commit/?id=bb0f1c591bc99e6cf806db870223a29df901566a'/>
<id>bb0f1c591bc99e6cf806db870223a29df901566a</id>
<content type='text'>
git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk@3810 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@3810 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</pre>
</div>
</content>
</entry>
<entry>
<title>restored a bug (removed in r3807) which lingers; added a commented-out test case for said bug; removed a bogus bug</title>
<updated>2005-08-15T19:45:02+00:00</updated>
<author>
<name>goodger</name>
<email>goodger@929543f6-e4f2-0310-98a6-ba3bd3dd1d04</email>
</author>
<published>2005-08-15T19:45:02+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/docutils.git/commit/?id=a5b08111aa169b92d4b448812077fb63ad3e8e25'/>
<id>a5b08111aa169b92d4b448812077fb63ad3e8e25</id>
<content type='text'>
git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk@3809 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@3809 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</pre>
</div>
</content>
</entry>
<entry>
<title>removed bug with indirect substitutions; seems to be fixed</title>
<updated>2005-08-14T23:18:36+00:00</updated>
<author>
<name>wiemann</name>
<email>wiemann@929543f6-e4f2-0310-98a6-ba3bd3dd1d04</email>
</author>
<published>2005-08-14T23:18:36+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/docutils.git/commit/?id=658652c0d222506647f2dc94873a6f2ee3856b99'/>
<id>658652c0d222506647f2dc94873a6f2ee3856b99</id>
<content type='text'>
git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk@3807 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@3807 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</pre>
</div>
</content>
</entry>
<entry>
<title>fixed enumerated list bug (SF#1254145)</title>
<updated>2005-08-10T02:49:06+00:00</updated>
<author>
<name>goodger</name>
<email>goodger@929543f6-e4f2-0310-98a6-ba3bd3dd1d04</email>
</author>
<published>2005-08-10T02:49:06+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/docutils.git/commit/?id=e85db209387be0e9aee380f2b394362562bb8e0c'/>
<id>e85db209387be0e9aee380f2b394362562bb8e0c</id>
<content type='text'>
git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk@3789 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@3789 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</pre>
</div>
</content>
</entry>
</feed>
