# HG changeset patch # User Martin Geisler # Date 1257676894 -3600 # Node ID 8bba9157b30a2a826b57eb1df51baac09c042289 # Parent 819e6c7085fc12d2a9ed4b0f22ce7636e00a28e7 rst2man: automatically write sections in uppercase Man pages have uppercased section titles but other formats do not. Letting rst2man handle the tranformation allows better reuse of text between man pages and other formats. diff -r 819e6c7085fc -r 8bba9157b30a doc/rst2man.py --- a/doc/rst2man.py Sun Nov 08 00:11:34 2009 +0100 +++ b/doc/rst2man.py Sun Nov 08 11:41:34 2009 +0100 @@ -1048,6 +1048,7 @@ raise nodes.SkipNode elif self.section_level == 1: self.body.append('.SH ') + node[:] = nodes.Text(node.astext().upper()) else: self.body.append('.SS ')