2003-12-01 02:12:49 -05:00
|
|
|
require 'rdoc/generators/html_generator'
|
|
|
|
|
|
|
|
module Generators
|
|
|
|
|
|
|
|
class CHMGenerator < HTMLGenerator
|
|
|
|
|
2004-03-02 02:30:35 -05:00
|
|
|
HHC_PATH = "c:/Program Files/HTML Help Workshop/hhc.exe"
|
2003-12-01 02:12:49 -05:00
|
|
|
|
2008-01-06 19:42:03 -05:00
|
|
|
##
|
2003-12-01 02:12:49 -05:00
|
|
|
# Standard generator factory
|
2008-01-06 19:42:03 -05:00
|
|
|
|
2003-12-01 02:12:49 -05:00
|
|
|
def CHMGenerator.for(options)
|
|
|
|
CHMGenerator.new(options)
|
|
|
|
end
|
|
|
|
|
|
|
|
def initialize(*args)
|
|
|
|
super
|
|
|
|
@op_name = @options.op_name || "rdoc"
|
|
|
|
check_for_html_help_workshop
|
|
|
|
end
|
|
|
|
|
|
|
|
def check_for_html_help_workshop
|
|
|
|
stat = File.stat(HHC_PATH)
|
|
|
|
rescue
|
|
|
|
$stderr <<
|
2008-01-06 19:42:03 -05:00
|
|
|
"\n.chm output generation requires that Microsoft's Html Help\n" <<
|
|
|
|
"Workshop is installed. RDoc looks for it in:\n\n " <<
|
|
|
|
HHC_PATH <<
|
|
|
|
"\n\nYou can download a copy for free from:\n\n" <<
|
|
|
|
" http://msdn.microsoft.com/library/default.asp?" <<
|
|
|
|
"url=/library/en-us/htmlhelp/html/hwMicrosoftHTMLHelpDownloads.asp\n\n"
|
|
|
|
|
2003-12-01 02:12:49 -05:00
|
|
|
exit 99
|
|
|
|
end
|
|
|
|
|
2008-01-06 19:42:03 -05:00
|
|
|
##
|
|
|
|
# Generate the html as normal, then wrap it in a help project
|
|
|
|
|
2003-12-01 02:12:49 -05:00
|
|
|
def generate(info)
|
|
|
|
super
|
|
|
|
@project_name = @op_name + ".hhp"
|
|
|
|
create_help_project
|
|
|
|
end
|
|
|
|
|
2008-01-06 19:42:03 -05:00
|
|
|
##
|
|
|
|
# The project contains the project file, a table of contents and an index
|
|
|
|
|
2003-12-01 02:12:49 -05:00
|
|
|
def create_help_project
|
|
|
|
create_project_file
|
|
|
|
create_contents_and_index
|
|
|
|
compile_project
|
|
|
|
end
|
|
|
|
|
2008-01-06 19:42:03 -05:00
|
|
|
##
|
2003-12-01 02:12:49 -05:00
|
|
|
# The project file links together all the various
|
|
|
|
# files that go to make up the help.
|
|
|
|
|
|
|
|
def create_project_file
|
|
|
|
template = TemplatePage.new(RDoc::Page::HPP_FILE)
|
|
|
|
values = { "title" => @options.title, "opname" => @op_name }
|
|
|
|
files = []
|
|
|
|
@files.each do |f|
|
2008-01-06 19:42:03 -05:00
|
|
|
files << { "html_file_name" => f.path }
|
2003-12-01 02:12:49 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
values['all_html_files'] = files
|
2008-01-06 19:42:03 -05:00
|
|
|
|
2003-12-01 02:12:49 -05:00
|
|
|
File.open(@project_name, "w") do |f|
|
|
|
|
template.write_html_on(f, values)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2008-01-06 19:42:03 -05:00
|
|
|
##
|
2003-12-01 02:12:49 -05:00
|
|
|
# The contents is a list of all files and modules.
|
|
|
|
# For each we include as sub-entries the list
|
|
|
|
# of methods they contain. As we build the contents
|
|
|
|
# we also build an index file
|
|
|
|
|
|
|
|
def create_contents_and_index
|
|
|
|
contents = []
|
|
|
|
index = []
|
|
|
|
|
|
|
|
(@files+@classes).sort.each do |entry|
|
2008-01-06 19:42:03 -05:00
|
|
|
content_entry = { "c_name" => entry.name, "ref" => entry.path }
|
|
|
|
index << { "name" => entry.name, "aref" => entry.path }
|
2003-12-01 02:12:49 -05:00
|
|
|
|
2008-01-06 19:42:03 -05:00
|
|
|
internals = []
|
2003-12-01 02:12:49 -05:00
|
|
|
|
2008-01-06 19:42:03 -05:00
|
|
|
methods = entry.build_method_summary_list(entry.path)
|
2003-12-01 02:12:49 -05:00
|
|
|
|
2008-01-06 19:42:03 -05:00
|
|
|
content_entry["methods"] = methods unless methods.empty?
|
2003-12-01 02:12:49 -05:00
|
|
|
contents << content_entry
|
2008-01-06 19:42:03 -05:00
|
|
|
index.concat methods
|
2003-12-01 02:12:49 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
values = { "contents" => contents }
|
|
|
|
template = TemplatePage.new(RDoc::Page::CONTENTS)
|
|
|
|
File.open("contents.hhc", "w") do |f|
|
2008-01-06 19:42:03 -05:00
|
|
|
template.write_html_on(f, values)
|
2003-12-01 02:12:49 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
values = { "index" => index }
|
|
|
|
template = TemplatePage.new(RDoc::Page::CHM_INDEX)
|
|
|
|
File.open("index.hhk", "w") do |f|
|
2008-01-06 19:42:03 -05:00
|
|
|
template.write_html_on(f, values)
|
|
|
|
end
|
2003-12-01 02:12:49 -05:00
|
|
|
end
|
|
|
|
|
2008-01-06 19:42:03 -05:00
|
|
|
##
|
2003-12-01 02:12:49 -05:00
|
|
|
# Invoke the windows help compiler to compiler the project
|
2008-01-06 19:42:03 -05:00
|
|
|
|
2003-12-01 02:12:49 -05:00
|
|
|
def compile_project
|
2004-03-02 02:30:35 -05:00
|
|
|
system(HHC_PATH, @project_name)
|
2003-12-01 02:12:49 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
2008-01-06 19:42:03 -05:00
|
|
|
|