Bug fix: Forgot to make it possible to create HTML pages of all man pages.
This commit is contained in:
parent
2f9fce6ee0
commit
4f03c8cc09
1 changed files with 5 additions and 2 deletions
7
man2book
7
man2book
|
|
@ -6,12 +6,12 @@ import os
|
||||||
# have no limit.
|
# have no limit.
|
||||||
LIMIT = 0
|
LIMIT = 0
|
||||||
MANPAGE_PATH = '/usr/share/man/'
|
MANPAGE_PATH = '/usr/share/man/'
|
||||||
OUTPUT_DIR = '~/code/man2book/output/'
|
OUTPUT_DIR = './output/'
|
||||||
TMP_DIR = '/tmp'
|
TMP_DIR = '/tmp'
|
||||||
|
|
||||||
|
|
||||||
__author__ = 'Johannes Findeisen <you@hanez.org>'
|
__author__ = 'Johannes Findeisen <you@hanez.org>'
|
||||||
__version__ = '0.0.1'
|
__version__ = '0.0.2'
|
||||||
|
|
||||||
|
|
||||||
def parse_args():
|
def parse_args():
|
||||||
|
|
@ -68,6 +68,9 @@ for section in sections:
|
||||||
# create and to create a toc. maybe the anchor in the toc can be a hash
|
# create and to create a toc. maybe the anchor in the toc can be a hash
|
||||||
os.system('/usr/bin/man -Thtml ' + manpage + ' > ' + OUTPUT_DIR + 'man' + section +
|
os.system('/usr/bin/man -Thtml ' + manpage + ' > ' + OUTPUT_DIR + 'man' + section +
|
||||||
'.' + manpage + '.html')
|
'.' + manpage + '.html')
|
||||||
|
else:
|
||||||
|
os.system('/usr/bin/man -Thtml ' + manpage + ' > ' + OUTPUT_DIR + 'man' + section +
|
||||||
|
'.' + manpage + '.html')
|
||||||
if LIMIT > 0:
|
if LIMIT > 0:
|
||||||
if x == LIMIT:
|
if x == LIMIT:
|
||||||
break
|
break
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue