47
46
"timestamp": time.strftime("%Y-%m-%d %H:%M:%S +0000",tt),
48
47
"version": bzrlib.__version__,
50
nominated_filename = getattr(options, 'filename', None)
51
if nominated_filename is None:
54
topic_dir = bzrlib.osutils.dirname(nominated_filename)
55
49
outfile.write(rstx_preamble % params)
56
50
outfile.write(rstx_head % params)
57
outfile.write(_get_body(params, topic_dir))
51
outfile.write(_get_body(params))
58
52
outfile.write(rstx_foot % params)
61
def _get_body(params, topic_dir):
55
def _get_body(params):
62
56
"""Build the manual content."""
63
57
from bzrlib.help_topics import SECT_CONCEPT, SECT_LIST, SECT_PLUGIN
64
58
registry = bzrlib.help_topics.topic_registry
66
result.append(_get_section(registry, SECT_CONCEPT, "Concepts",
67
output_dir=topic_dir))
68
result.append(_get_section(registry, SECT_LIST, "Lists",
69
output_dir=topic_dir))
60
result.append(_get_section(registry, SECT_CONCEPT, "Concepts"))
61
result.append(_get_section(registry, SECT_LIST, "Lists"))
70
62
result.append(_get_commands_section(registry))
71
#result.append(_get_section(registry, SECT_PLUGIN, "Standard Plug-ins"))
63
#result.append(_get_section(registry, SECT_PLUGIN, "Core Plug-ins"))
72
64
return "\n".join(result)
75
def _get_section(registry, section, title, hdg_level1="#", hdg_level2="=",
77
"""Build the manual part from topics matching that section.
79
If output_dir is not None, topics are dumped into text files there
80
during processing, as well as being included in the return result.
67
def _get_section(registry, section, title, hdg_level1="=", hdg_level2="-"):
68
"""Build the manual part from topics matching that section."""
82
69
topics = sorted(registry.get_topics_for_section(section))
83
70
lines = [title, hdg_level1 * len(title), ""]
99
86
help = registry.get_detail(topic)
100
87
heading,text = help.split("\n", 1)
101
88
lines.append(heading)
102
if not text.startswith(hdg_level2):
103
lines.append(hdg_level2 * len(heading))
89
lines.append(hdg_level2 * len(heading))
104
90
lines.append(text)
106
92
# check that topic match heading
107
93
if topic != heading.lower():
108
94
links_glue.append((topic, heading))
109
# dump the text if requested
110
if output_dir is not None:
111
out_file = bzrlib.osutils.pathjoin(output_dir, topic + ".txt")
112
_dump_text(out_file, help)
114
96
# provide links glue for topics that don't match headings
115
97
lines.extend([".. _%s: `%s`_" % i for i in links_glue])
118
100
return "\n" + "\n".join(lines) + "\n"
121
def _dump_text(filename, text):
122
"""Dump text to filename."""
123
f = open(filename, "w")
128
def _get_commands_section(registry, title="Commands", hdg_level1="#",
130
"""Build the commands reference section of the manual."""
103
def _get_commands_section(registry, title="Commands", hdg_level1="=",
105
"""Build the comands reference section of the manual."""
131
106
lines = [title, hdg_level1 * len(title), ""]
132
107
cmds = sorted(bzrlib.commands.builtin_command_names())
133
108
for cmd_name in cmds: