[issue4811] invalid reST markup in several documents

2009-01-04 Thread Georg Brandl
Georg Brandl added the comment: Thanks very much! I've added this to the Python doc tools in r68290. ___ Python tracker ___ ___ Python-bugs-lis

[issue4811] invalid reST markup in several documents

2009-01-04 Thread Gabriel Genellina
Changes by Gabriel Genellina : Added file: http://bugs.python.org/file12579/suspicious.rar ___ Python tracker ___ ___ Python-bugs-list mailing

[issue4811] invalid reST markup in several documents

2009-01-03 Thread Gabriel Genellina
Gabriel Genellina added the comment: This patch includes some (sort of) checker for suspicious constructs that resembles markup that has leaked into the final output. It's a new Builder for Sphinx, and works with the docutils nodes, not the source files directly. "doc-Makefile.diff" updates

[issue4811] invalid reST markup in several documents

2009-01-03 Thread Georg Brandl
Georg Brandl added the comment: Done. ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/opt

[issue4811] invalid reST markup in several documents

2009-01-03 Thread Akira Kitada
Akira Kitada added the comment: Could you also fix the indentation of "Queues" example code at http://docs.python.org/library/multiprocessing.html#exchanging-objects-between-processes ? -- nosy: +akitada ___ Python tracker

[issue4811] invalid reST markup in several documents

2009-01-02 Thread Gabriel Genellina
Gabriel Genellina added the comment: I did a search on the .html files using a regular expression, and manually filtered out the false positives. The expression used was this "::[^=]|:[a-zA-Z][a-zA-Z0-9]+|`|\.\.\s*\w +:" I'll try to come up with a useable tool.

[issue4811] invalid reST markup in several documents

2009-01-02 Thread Georg Brandl
Georg Brandl added the comment: Many thanks! Applied in r68171. Did you find those yourself, or with some sort of tool? -- resolution: -> accepted status: open -> closed ___ Python tracker ___

[issue4811] invalid reST markup in several documents

2009-01-02 Thread Gabriel Genellina
New submission from Gabriel Genellina : Several documents contain invalid reST markup that "leaks" into the html output (missing ``, incorrect indentation, etc.) This patch fixes the obvious ones. -- assignee: georg.brandl components: Documentation files: invalid-doc-markup.diff keyword