<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://blog.gmane.org/gmane.text.docutils.devel">
    <title>gmane.text.docutils.devel</title>
    <link>http://blog.gmane.org/gmane.text.docutils.devel</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.text.docutils.devel/6102"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.text.docutils.devel/6101"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.text.docutils.devel/6098"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.text.docutils.devel/6092"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.text.docutils.devel/6091"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.text.docutils.devel/6090"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.text.docutils.devel/6088"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.text.docutils.devel/6087"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.text.docutils.devel/6086"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.text.docutils.devel/6085"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.text.docutils.devel/6084"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.text.docutils.devel/6083"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.text.docutils.devel/6082"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.text.docutils.devel/6080"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.text.docutils.devel/6075"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.text.docutils.devel/6072"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.text.docutils.devel/6071"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.text.docutils.devel/6070"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.text.docutils.devel/6069"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.text.docutils.devel/6067"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://comments.gmane.org/gmane.text.docutils.devel/6102">
    <title>[ docutils-Patches-3527397 ] Add indentation toliteral blocks in manpage writer</title>
    <link>http://comments.gmane.org/gmane.text.docutils.devel/6102</link>
    <description>&lt;pre&gt;Patches item #3527397, was opened at 2012-05-16 13:42
Message generated for change (Settings changed) made by grubert
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&amp;amp;atid=422032&amp;amp;aid=3527397&amp;amp;group_id=38414

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Joshua Graff (joshuagraff)
Summary: Add indentation to literal blocks in manpage writer

Initial Comment:
The current manpage writer does not add or maintain any type of indentation on literal blocks. 

Example: 

$ cat example.rst
=====
Title
=====
  
:Version: 1.1
:Author: joe.user&amp;lt; at &amp;gt;example.com
  
  
Example
=======
  
Example::
  
  $ man ls

$ rst2man.py example.rst &amp;gt; example.man
$ man ./example.man
NAME
       Title -

EXAMPLE
       Example:

       $ man ls

AUTHOR
       joe.user&amp;lt; at &amp;gt;example.com



In the above example '$ &lt;/pre&gt;</description>
    <dc:creator>SourceForge.net</dc:creator>
    <dc:date>2012-05-25T04:23:30</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.text.docutils.devel/6101">
    <title>[ docutils-Patches-3527401 ] manpage writeraddmonition's don't preserve indentation</title>
    <link>http://comments.gmane.org/gmane.text.docutils.devel/6101</link>
    <description>&lt;pre&gt;Patches item #3527401, was opened at 2012-05-16 14:12
Message generated for change (Comment added) made by grubert
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&amp;amp;atid=422032&amp;amp;aid=3527401&amp;amp;group_id=38414

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Joshua Graff (joshuagraff)
Summary: manpage writer addmonition's don't preserve indentation

Initial Comment:
In the manpage writer admonitions use troff's ``.IP``/``.RE`` for paragraph 
indentation. This unfortunately does not appear to preserve indentation for 
bullets and other block types (literal) that might be contained within an 
admonition.

Example:

$ cat example.rst
=====
Title
=====
  
:Version: 1.1
:Author: joe.user&amp;lt; at &amp;gt;example.com
  
  
Example
=======
  
This is an example.
  
.. NOTE::
   This is an important note.
 &lt;/pre&gt;</description>
    <dc:creator>SourceForge.net</dc:creator>
    <dc:date>2012-05-25T04:22:57</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.text.docutils.devel/6098">
    <title>[ docutils-Bugs-3527842 ] Extra directories forpython 3</title>
    <link>http://comments.gmane.org/gmane.text.docutils.devel/6098</link>
    <description>&lt;pre&gt;Bugs item #3527842, was opened at 2012-05-18 04:40
Message generated for change (Tracker Item Submitted) made by toddrme2178
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&amp;amp;atid=422030&amp;amp;aid=3527842&amp;amp;group_id=38414

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Todd Rme (toddrme2178)
Assigned to: Nobody/Anonymous (nobody)
Summary: Extra directories for python 3

Initial Comment:
 When compiling docutils 9 for python 3 I get the same directories I get with python 2:

{root}/{prefix}/bin/
{root}/{prefix}/{site-packages}/docutils/

However, I also extra directories that are not present in the python 2 version. These are:

{root}/{prefix}/{site-packages}/test/
{root}/{prefix}/{site-packages}/tools/

I was told that these directories are not supposed to be there.

----------------&lt;/pre&gt;</description>
    <dc:creator>SourceForge.net</dc:creator>
    <dc:date>2012-05-18T11:40:39</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.text.docutils.devel/6092">
    <title>[ docutils-Patches-3527401 ] manpage writeraddmonition's don't preserve indentation</title>
    <link>http://comments.gmane.org/gmane.text.docutils.devel/6092</link>
    <description>&lt;pre&gt;Patches item #3527401, was opened at 2012-05-16 14:12
Message generated for change (Tracker Item Submitted) made by joshuagraff
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&amp;amp;atid=422032&amp;amp;aid=3527401&amp;amp;group_id=38414

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Joshua Graff (joshuagraff)
Assigned to: Nobody/Anonymous (nobody)
Summary: manpage writer addmonition's don't preserve indentation

Initial Comment:
In the manpage writer admonitions use troff's ``.IP``/``.RE`` for paragraph 
indentation. This unfortunately does not appear to preserve indentation for 
bullets and other block types (literal) that might be contained within an 
admonition.

Example:

$ cat example.rst
=====
Title
=====
  
:Version: 1.1
:Author: joe.user&amp;lt; at &amp;gt;example.com
  
  
Example
=======
  
This is an e&lt;/pre&gt;</description>
    <dc:creator>SourceForge.net</dc:creator>
    <dc:date>2012-05-16T21:12:28</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.text.docutils.devel/6091">
    <title>[ docutils-Patches-3527397 ] Add indentation toliteral blocks in manpage writer</title>
    <link>http://comments.gmane.org/gmane.text.docutils.devel/6091</link>
    <description>&lt;pre&gt;Patches item #3527397, was opened at 2012-05-16 13:42
Message generated for change (Tracker Item Submitted) made by joshuagraff
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&amp;amp;atid=422032&amp;amp;aid=3527397&amp;amp;group_id=38414

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Joshua Graff (joshuagraff)
Assigned to: Nobody/Anonymous (nobody)
Summary: Add indentation to literal blocks in manpage writer

Initial Comment:
The current manpage writer does not add or maintain any type of indentation on literal blocks. 

Example: 

$ cat example.rst
=====
Title
=====
  
:Version: 1.1
:Author: joe.user&amp;lt; at &amp;gt;example.com
  
  
Example
=======
  
Example::
  
  $ man ls

$ rst2man.py example.rst &amp;gt; example.man
$ man ./example.man
NAME
       Title -

EXAMPLE
       Example:

       $ man ls

AUTHOR
      &lt;/pre&gt;</description>
    <dc:creator>SourceForge.net</dc:creator>
    <dc:date>2012-05-16T20:42:49</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.text.docutils.devel/6090">
    <title>C reStructuredText parser</title>
    <link>http://comments.gmane.org/gmane.text.docutils.devel/6090</link>
    <description>&lt;pre&gt;Hello,

There's a C project I'm involved with where it might make sense to use the
reStructuredText format, but the portability and dependency policies mandate
only C dependencies, so we can't use docutils.

I looked around for a reStructuredText parser implemented in C, but came up
empty.  Anybody know of one?

If not, would it be realistic to attempt a parser based on the Lemon
parser generator, which is an LALR(1) parser generator similar to yacc?  I'm
not a parsing guru, but I've had some success writing parsers with Lemon
in the past.

    http://www.hwaci.com/sw/lemon/

Cheers,

Marvin Humphrey

------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
&lt;/pre&gt;</description>
    <dc:creator>Marvin Humphrey</dc:creator>
    <dc:date>2012-05-16T13:40:57</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.text.docutils.devel/6088">
    <title>[Latex support in docutils] Problem with therestructuredtext reference.</title>
    <link>http://comments.gmane.org/gmane.text.docutils.devel/6088</link>
    <description>&lt;pre&gt;Hello,

I tried to compile the restructured text reference manual with 
rst2latex, and I had several warnings in doing so :

#!/bin/bash

mkdir tmp &amp;amp;&amp;amp; cd tmp
wget http://docutils.sourceforge.net/docs/ref/rst/restructuredtext.txt
rst2latex2 restructuredtext.txt rst.tex
pdflatex rst.tex

We have problems with references, and some chars are not translated 
properly. However it works rather well. But do you think it would be a 
good idea to propose a fix for perfectionnists ?

Cheers,

David

------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
&lt;/pre&gt;</description>
    <dc:creator>David Kremer</dc:creator>
    <dc:date>2012-05-14T13:24:51</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.text.docutils.devel/6087">
    <title>[ docutils-Bugs-3525847 ]test_directives/test_include.py: UnicodeEncodeError</title>
    <link>http://comments.gmane.org/gmane.text.docutils.devel/6087</link>
    <description>&lt;pre&gt;Bugs item #3525847, was opened at 2012-05-11 07:18
Message generated for change (Comment added) made by milde
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&amp;amp;atid=422030&amp;amp;aid=3525847&amp;amp;group_id=38414

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: None
Priority: 5
Private: No
Submitted By: Jakub Wilk (jakub-wilk)
Assigned to: Nobody/Anonymous (nobody)
Summary: test_directives/test_include.py: UnicodeEncodeError

Initial Comment:
If LC_ALL=C is set to C, test_directives/test_include.py fails with UnicodeEncodeError:

$ LC_ALL=C python test/test_parsers/test_rst/test_directives/test_include.py
................E.............
======================================================================
ERROR: test/test_parsers/test_rst/test_directives/test_include.py: totest['include'][14]; test_parser (DocutilsTestSupport.ParserTestCase)
--------------&lt;/pre&gt;</description>
    <dc:creator>SourceForge.net</dc:creator>
    <dc:date>2012-05-11T20:59:10</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.text.docutils.devel/6086">
    <title>[ docutils-Bugs-3525847 ]test_directives/test_include.py: UnicodeEncodeError</title>
    <link>http://comments.gmane.org/gmane.text.docutils.devel/6086</link>
    <description>&lt;pre&gt;Bugs item #3525847, was opened at 2012-05-11 07:18
Message generated for change (Tracker Item Submitted) made by jakub-wilk
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&amp;amp;atid=422030&amp;amp;aid=3525847&amp;amp;group_id=38414

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Jakub Wilk (jakub-wilk)
Assigned to: Nobody/Anonymous (nobody)
Summary: test_directives/test_include.py: UnicodeEncodeError

Initial Comment:
If LC_ALL=C is set to C, test_directives/test_include.py fails with UnicodeEncodeError:

$ LC_ALL=C python test/test_parsers/test_rst/test_directives/test_include.py
................E.............
======================================================================
ERROR: test/test_parsers/test_rst/test_directives/test_include.py: totest['include'][14]; test_parser (DocutilsTest&lt;/pre&gt;</description>
    <dc:creator>SourceForge.net</dc:creator>
    <dc:date>2012-05-11T14:18:23</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.text.docutils.devel/6085">
    <title>[ docutils-Bugs-3495454 ]http://diveintopython.org/ is gone</title>
    <link>http://comments.gmane.org/gmane.text.docutils.devel/6085</link>
    <description>&lt;pre&gt;Bugs item #3495454, was opened at 2012-02-28 15:39
Message generated for change (Settings changed) made by milde
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&amp;amp;atid=422030&amp;amp;aid=3495454&amp;amp;group_id=38414

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: None
Resolution: Wont Fix
Priority: 5
Private: No
Submitted By: Jakub Wilk (jakub-wilk)
Assigned to: Nobody/Anonymous (nobody)
Summary: http://diveintopython.org/ is gone 

Initial Comment:
roman.py contains the following text:

  This program is part of "Dive Into Python", a free Python tutorial for
  experienced programmers.  Visit http://diveintopython.org/ for the
  latest version.

However, http://diveintopython.org/ currently reads:

  The requested resource / is no longer available on this server and there is no forwarding address. Please remove all references to this resource.

You mi&lt;/pre&gt;</description>
    <dc:creator>SourceForge.net</dc:creator>
    <dc:date>2012-05-03T11:50:49</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.text.docutils.devel/6084">
    <title>[ docutils-Bugs-2993756 ] PIL import error</title>
    <link>http://comments.gmane.org/gmane.text.docutils.devel/6084</link>
    <description>&lt;pre&gt;Bugs item #2993756, was opened at 2010-04-28 11:44
Message generated for change (Settings changed) made by milde
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&amp;amp;atid=422030&amp;amp;aid=2993756&amp;amp;group_id=38414

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: None
Status: Closed
Priority: 5
Private: No
Submitted By: Jared ()
Assigned to: Nobody/Anonymous (nobody)
Summary: PIL import error

Initial Comment:
Docutils uses "import Image" to use the Python Imaging Library, which conflicts with django's "from PIL import Image" (essentially the module is imported twice and chokes. See this post http://jaredforsyth.com/blog/2010/apr/28/accessinit-hash-collision-3-both-1-and-1/ for more info).

I've attached a patch which fixes this problem.

----------------------------------------------------------------------

Date: 2012-05-03 02:51

Message:
The momentom seem&lt;/pre&gt;</description>
    <dc:creator>SourceForge.net</dc:creator>
    <dc:date>2012-05-03T09:51:47</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.text.docutils.devel/6083">
    <title>release 0.9</title>
    <link>http://comments.gmane.org/gmane.text.docutils.devel/6083</link>
    <description>&lt;pre&gt;Release 0.9 (2012-05-02)

bigger changes are

General:
- reStructuredText "code" role and directive with syntax highlighting
by Pygments.
  "code" option of the "include" directive.
- Fix [ 3402314 ] allow non-ASCII whitespace, punctuation characters
and "international" quotes around inline markup.
- Fix handling of missing stylesheets.


setup.py
- Fix [ 2971827 ] and [ 3442827 ] extras/roman.py moved to
docutils/utils/roman.py


docutils/utils.py -&amp;gt; docutils/utils/__init__.py
- docutils.utils is now a package (providing a place for sub-modules)


docutils/writers/html4css1/__init__.py
- change default for math-output setting to MathJax


docutils/writers/latex2e/__init__.py
- Support the abbreviation and acronym standard roles.
- Record only files required to generate the LaTeX source as dependencies.
- Use \setcounter{secnumdepth}{0} instead of *-versions when
suppressing LaTeX section numbering.

please report any problems

all the best
  engelbert

&lt;/pre&gt;</description>
    <dc:creator>engelbert gruber</dc:creator>
    <dc:date>2012-05-02T19:37:49</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.text.docutils.devel/6082">
    <title>[ docutils-Bugs-3519169 ] rst2pdf crashes inspanFixDim()</title>
    <link>http://comments.gmane.org/gmane.text.docutils.devel/6082</link>
    <description>&lt;pre&gt;Bugs item #3519169, was opened at 2012-04-18 08:26
Message generated for change (Comment added) made by grubert
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&amp;amp;atid=422030&amp;amp;aid=3519169&amp;amp;group_id=38414

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: James Hunt (jamesodhunt)
Assigned to: Nobody/Anonymous (nobody)
Summary: rst2pdf crashes in spanFixDim()

Initial Comment:
I have a large rst document [1] which passes through 'rst2html --strict' correctly but which fails with rst2pdf:

rst2pdf -o /tmp/upstart_cookbook.pdf /tmp/upstart_cookbook.rst
Traceback (most recent call last):
  File "/usr/bin/rst2pdf", line 9, in &amp;lt;module&amp;gt;
    load_entry_point('rst2pdf==0.16', 'console_scripts', 'rst2pdf')()
  File "/usr/lib/pymodules/python2.7/rst2pdf/createpdf.py", line 1456, in main
    co&lt;/pre&gt;</description>
    <dc:creator>SourceForge.net</dc:creator>
    <dc:date>2012-05-02T08:33:51</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.text.docutils.devel/6080">
    <title>[ docutils-Bugs-3479603 ] rst.el: self-modifyingcode</title>
    <link>http://comments.gmane.org/gmane.text.docutils.devel/6080</link>
    <description>&lt;pre&gt;Bugs item #3479603, was opened at 2012-01-25 05:31
Message generated for change (Comment added) made by smerten
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&amp;amp;atid=422030&amp;amp;aid=3479603&amp;amp;group_id=38414

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: emacs mode
Group: None
Priority: 6
Private: No
Submitted By: Jakub Wilk (jakub-wilk)
Assigned to: Stefan Merten (smerten)
Summary: rst.el: self-modifying code

Initial Comment:
I'm forwarding a bug reported by Samuel Bronson, originally at &amp;lt;http://bugs.debian.org/657269&amp;gt;:

This is the expression for the default value of the customization setting `rst-adornment-faces-alist':

,----
|   (let ((alist '((t . font-lock-keyword-face)
|  (nil . font-lock-keyword-face)))
| (i 1))
|     (while (&amp;lt;= i rst-level-face-max)
|       (nconc alist (list (cons i (intern (format "rst-level-%d-face" i)))))
|       (setq i (1+ i)))
&lt;/pre&gt;</description>
    <dc:creator>SourceForge.net</dc:creator>
    <dc:date>2012-04-30T14:50:51</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.text.docutils.devel/6075">
    <title>Version 1.2.1 of rst.el released</title>
    <link>http://comments.gmane.org/gmane.text.docutils.devel/6075</link>
    <description>&lt;pre&gt;Hi!

I just released version 1.2.1 of rst.el. AFAICS this also will end up
in the upcoming release 0.9 of docutils.

I'll soon integrate a version based on this release into Emacs main
line. My goal is to have the same release in Emacs repository as in
Docutils repository.

User visible changes:

* Symbols follow reStructuredText syntax more closely

  This implies that role and directive names with internal
  underscores, plus signs and colons are handled correctly. This is
  particularly important for Sphinx users where embedded colons are
  used frequently for this purpose.

* `rst-compile-toolsets` is now customizable

  In addition the default value first looks for a `rst2*.py` and uses
  it if found or uses the `rst2*` command.

  Thanks to Emacs developers for this.

* Use faces not variables for font-lock customization

  There are now customizable `rst-*` faces which are used. The old
  `rst-*-face` variables are still there but deprecated.

  Thanks to Emacs developers for this.

* Font-locking rev&lt;/pre&gt;</description>
    <dc:creator>Stefan Merten</dc:creator>
    <dc:date>2012-04-29T15:10:09</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.text.docutils.devel/6072">
    <title>python 2.3 unittest assertTrue missing</title>
    <link>http://comments.gmane.org/gmane.text.docutils.devel/6072</link>
    <description>&lt;pre&gt;hei

in python 2.3 unittest.TestCase has no assertTrue
this bites several times::

      8 AttributeError: 'ConfigEnvVarFileTests' object has no
attribute 'assertTrue'
      8 AttributeError: 'ConfigFileTests' object has no attribute 'assertTrue'
      3 AttributeError: 'ElementTests' object has no attribute 'assertTrue'
      2 AttributeError: 'EmptySMTests' object has no attribute 'assertTrue'
      2 AttributeError: 'EmptySMWSTests' object has no attribute 'assertTrue'
     20 AttributeError: 'FunctionalTestCase' object has no attribute
'assertTrue'
      1 AttributeError: 'InputTests' object has no attribute 'assertTrue'
      1 AttributeError: 'MiscTests' object has no attribute 'assertTrue'
      2 AttributeError: 'PublishDoctreeTestCase' object has no
attribute 'assertTrue'
      2 AttributeError: 'PublisherTests' object has no attribute 'assertTrue'
      1 AttributeError: 'SMWSTests' object has no attribute 'assertTrue'
      1 AttributeError: 'StopTraversalTests' object has no attribute
'assertTrue&lt;/pre&gt;</description>
    <dc:creator>engelbert gruber</dc:creator>
    <dc:date>2012-04-29T14:46:15</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.text.docutils.devel/6071">
    <title>0.9 repository pre release testing</title>
    <link>http://comments.gmane.org/gmane.text.docutils.devel/6071</link>
    <description>&lt;pre&gt;hei.

starting the release with a test run

* sourceforge shell python 2.4.3::

    ERROR: test_parsers/test_rst/test_directives/test_include.py:
totest['include'][14]; test_parser
(DocutilsTestSupport.ParserTestCase)
    UnicodeEncodeError: 'ascii' codec can't encode characters in
position 0-2: ordinal not in range(128)

    FAIL: test_raw_url (test_error_reporting.ErrorReportingTests)
      test_error_reporting.py", line 324, in test_raw_url
      self.parser.parse, source, self.document)
    AssertionError: SystemMessage not raised

* macosx 10.6.8

  * python 2.5.4: OK
  * python 2.6.1::

                  Problems with "include" directive path:
      -           InputError: [Errno 2] No such file or directory:
'nonexistent.txt'.
      +          InputError: (2, 'No such file or directory').
              &amp;lt;literal_block xml:space="preserve"&amp;gt;
                  .. include:: nonexistent.txt

    the same for other path errors

  * python 3.2: OK

* ubuntu 8.04 (old i know)

  * python 2.3 stops here::

    &lt;/pre&gt;</description>
    <dc:creator>engelbert gruber</dc:creator>
    <dc:date>2012-04-29T10:57:55</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.text.docutils.devel/6070">
    <title>[ docutils-Bugs-3521168 ] test_buildhtml.pyfails with Python 3</title>
    <link>http://comments.gmane.org/gmane.text.docutils.devel/6070</link>
    <description>&lt;pre&gt;Bugs item #3521168, was opened at 2012-04-24 14:30
Message generated for change (Tracker Item Submitted) made by jakub-wilk
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&amp;amp;atid=422030&amp;amp;aid=3521168&amp;amp;group_id=38414

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Jakub Wilk (jakub-wilk)
Assigned to: Nobody/Anonymous (nobody)
Summary: test_buildhtml.py fails with Python 3

Initial Comment:
$ python3 test_buildhtml.py 
EE
======================================================================
ERROR: test_1 (__main__.BuildHtmlTests)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "test_buildhtml.py", line 61, in setUp
    self.root = os.tempnam()
AttributeError: 'module' object has no attribute 'tempnam'

=============&lt;/pre&gt;</description>
    <dc:creator>SourceForge.net</dc:creator>
    <dc:date>2012-04-24T21:30:04</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.text.docutils.devel/6069">
    <title>[ docutils-Bugs-3521167 ] allow runningtest_buildhtml.py in any directory</title>
    <link>http://comments.gmane.org/gmane.text.docutils.devel/6069</link>
    <description>&lt;pre&gt;Bugs item #3521167, was opened at 2012-04-24 14:28
Message generated for change (Tracker Item Submitted) made by jakub-wilk
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&amp;amp;atid=422030&amp;amp;aid=3521167&amp;amp;group_id=38414

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Jakub Wilk (jakub-wilk)
Assigned to: Nobody/Anonymous (nobody)
Summary: allow running test_buildhtml.py in any directory

Initial Comment:
test_buildhtml.py currently succeeds only if working directory is tools/tests/.
Please allow running the test in any directory.


----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&amp;amp;atid=422030&amp;amp;aid=3521167&amp;amp;group_id=38414

---------------------------------------------------------------------&lt;/pre&gt;</description>
    <dc:creator>SourceForge.net</dc:creator>
    <dc:date>2012-04-24T21:28:41</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.text.docutils.devel/6067">
    <title>Request for sandbox write access</title>
    <link>http://comments.gmane.org/gmane.text.docutils.devel/6067</link>
    <description>&lt;pre&gt;Hi,

I would like to request write access to the docutils sandbox, so that
I might add a rst2wiki writer I have been working on.
This writer converts RST into either TWiki or Atlassian Confluence Wiki markup.

My SF userid is 'joshuagraff'.

Thanks,
-Josh

------------------------------------------------------------------------------
For Developers, A Lot Can Happen In A Second.
Boundary is the first to Know...and Tell You.
Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
http://p.sf.net/sfu/Boundary-d2dvs2
&lt;/pre&gt;</description>
    <dc:creator>Joshua Graff</dc:creator>
    <dc:date>2012-04-18T19:52:13</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.text.docutils.devel/6066">
    <title>[ docutils-Bugs-3519169 ] rst2pdf crashes inspanFixDim()</title>
    <link>http://comments.gmane.org/gmane.text.docutils.devel/6066</link>
    <description>&lt;pre&gt;Bugs item #3519169, was opened at 2012-04-18 08:26
Message generated for change (Tracker Item Submitted) made by jamesodhunt
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&amp;amp;atid=422030&amp;amp;aid=3519169&amp;amp;group_id=38414

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: James Hunt (jamesodhunt)
Assigned to: Nobody/Anonymous (nobody)
Summary: rst2pdf crashes in spanFixDim()

Initial Comment:
I have a large rst document [1] which passes through 'rst2html --strict' correctly but which fails with rst2pdf:

rst2pdf -o /tmp/upstart_cookbook.pdf /tmp/upstart_cookbook.rst
Traceback (most recent call last):
  File "/usr/bin/rst2pdf", line 9, in &amp;lt;module&amp;gt;
    load_entry_point('rst2pdf==0.16', 'console_scripts', 'rst2pdf')()
  File "/usr/lib/pymodules/python2.7/rst2pdf/createpdf.py", line 1456, i&lt;/pre&gt;</description>
    <dc:creator>SourceForge.net</dc:creator>
    <dc:date>2012-04-18T15:26:38</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.text.docutils.devel">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.text.docutils.devel</link>
  </textinput>
</rdf:RDF>

