aboutsummaryrefslogtreecommitdiff
path: root/py2man
diff options
context:
space:
mode:
authorPavlos Ratis <dastergon@gentoo.org>2015-01-05 17:56:40 +0200
committerBrian Dolbec <dolsen@gentoo.org>2015-01-05 14:21:53 -0800
commita051bd81ac741839c74c94060e4d509e3d4b06b0 (patch)
tree6f444df5fb47e96b4cad49f8720ee5b35ee33d6f /py2man
parentgkeys, gkeyldap: Update updatefiles() config handling (diff)
downloadgentoo-keys-a051bd81ac741839c74c94060e4d509e3d4b06b0.tar.gz
gentoo-keys-a051bd81ac741839c74c94060e4d509e3d4b06b0.tar.bz2
gentoo-keys-a051bd81ac741839c74c94060e4d509e3d4b06b0.zip
py2man: tiny updates
Diffstat (limited to 'py2man')
-rw-r--r--py2man/command.template3
-rw-r--r--py2man/manpages.py16
-rw-r--r--py2man/sub-command.template3
3 files changed, 11 insertions, 11 deletions
diff --git a/py2man/command.template b/py2man/command.template
index 5879a05..e2111e3 100644
--- a/py2man/command.template
+++ b/py2man/command.template
@@ -28,4 +28,5 @@ Gentoo Keys project is under GPL-2 License.
.BR gkeys.conf (1),
%(actions)s
-(This man page was auto-generated from source)
+.SH NOTE
+This is an auto-generated man page from source
diff --git a/py2man/manpages.py b/py2man/manpages.py
index 0fd82ed..d5828f8 100644
--- a/py2man/manpages.py
+++ b/py2man/manpages.py
@@ -5,12 +5,12 @@
import os
from datetime import datetime
-from .options import LONG_OPTIONS, SHORT_OPTS
+from options import LONG_OPTIONS, SHORT_OPTS
ActionStr = '.BR gkeys-%s (1),'
-ExampleHeader = '''.SH Example'''
+EXAMPLEHEADER = '''.SH Example'''
BreakStr = '''.br
%s'''
@@ -45,12 +45,12 @@ class ManPage(object):
wrapl = 72 + escapes
output = []
line = firstline.rstrip('%(opts)s') % data
- ll = len(line)
+ line_len = len(line)
l1 = True
for opt in opts:
- if (ll + len(SHORT_OPTS[opt])) < wrapl:
+ if (line_len + len(SHORT_OPTS[opt])) < wrapl:
line = line + '%s ' % SHORT_OPTS[opt]
- ll = len(line)
+ line_len = len(line)
else:
if l1:
output.append(line)
@@ -58,7 +58,7 @@ class ManPage(object):
else:
output.append(BreakStr % line)
line = indent + '%s ' % SHORT_OPTS[opt]
- ll = len(line)
+ line_len = len(line)
return '\n'.join(output)
@@ -101,10 +101,8 @@ class ManPage(object):
@staticmethod
def gen_subcmd(cmds):
- #print(cmds.values())
output = []
for cmd in list(cmds):
- print(cmd)
if cmd.startswith('--'):
output.append(SubCmdHdr % cmd.strip('-').upper())
else:
@@ -130,7 +128,7 @@ class ManPage(object):
data['long_desc'] = Action_Map[action]['long_desc']
if Action_Map[action]['example']:
data['example'] = self.gen_example(Action_Map[action]['example'])
- data['exampleheader'] = ExampleHeader
+ data['exampleheader'] = EXAMPLEHEADER
else:
data['example'] = ''
data['exampleheader'] = ''
diff --git a/py2man/sub-command.template b/py2man/sub-command.template
index 89d1b1b..f15fa0e 100644
--- a/py2man/sub-command.template
+++ b/py2man/sub-command.template
@@ -32,4 +32,5 @@ Gentoo Keys project is under GPL-2 License.
.BR gkeys.conf (1),
%(actions)s
-(This man page was auto-generated from source)
+.SH NOTE
+This is an auto-generated man page from source