<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/docutils.git/docutils/docs, 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>created "transforms" branch;</title>
<updated>2005-08-17T20:59:02+00:00</updated>
<author>
<name>wiemann</name>
<email>wiemann@929543f6-e4f2-0310-98a6-ba3bd3dd1d04</email>
</author>
<published>2005-08-17T20:59:02+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/docutils.git/commit/?id=68ef06b39013baa59dbdaca794f2126127647e0d'/>
<id>68ef06b39013baa59dbdaca794f2126127647e0d</id>
<content type='text'>
replaced default_transforms tuple attribute with get_transforms method
which returns a list;
removed concept of "universal", "global" transforms;
moved previously "universal" transforms into Reader and Writer default transforms

git-svn-id: http://svn.code.sf.net/p/docutils/code/branches/transforms@3822 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
replaced default_transforms tuple attribute with get_transforms method
which returns a list;
removed concept of "universal", "global" transforms;
moved previously "universal" transforms into Reader and Writer default transforms

git-svn-id: http://svn.code.sf.net/p/docutils/code/branches/transforms@3822 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</pre>
</div>
</content>
</entry>
<entry>
<title>added to-do list entry about block quotes</title>
<updated>2005-08-15T21:17:12+00:00</updated>
<author>
<name>wiemann</name>
<email>wiemann@929543f6-e4f2-0310-98a6-ba3bd3dd1d04</email>
</author>
<published>2005-08-15T21:17:12+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/docutils.git/commit/?id=6caf1bfa1d37fd0cc573c54d85ce0957cef9e662'/>
<id>6caf1bfa1d37fd0cc573c54d85ce0957cef9e662</id>
<content type='text'>
git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk@3812 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@3812 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</pre>
</div>
</content>
</entry>
<entry>
<title>added note about project data at BerliOS and SF</title>
<updated>2005-08-15T18:21:54+00:00</updated>
<author>
<name>wiemann</name>
<email>wiemann@929543f6-e4f2-0310-98a6-ba3bd3dd1d04</email>
</author>
<published>2005-08-15T18:21:54+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/docutils.git/commit/?id=887682d7b253a3c9ca976e7ac07f3e01a4371a9b'/>
<id>887682d7b253a3c9ca976e7ac07f3e01a4371a9b</id>
<content type='text'>
git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk@3808 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@3808 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>added target</title>
<updated>2005-08-14T15:19:50+00:00</updated>
<author>
<name>wiemann</name>
<email>wiemann@929543f6-e4f2-0310-98a6-ba3bd3dd1d04</email>
</author>
<published>2005-08-14T15:19:50+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/docutils.git/commit/?id=b980cd0f4a5a122295fd0cfc4e3c775688c76756'/>
<id>b980cd0f4a5a122295fd0cfc4e3c775688c76756</id>
<content type='text'>
git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk@3797 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@3797 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
</pre>
</div>
</content>
</entry>
</feed>
