mirror of
https://github.com/ToshioCP/Gtk4-tutorial.git
synced 2024-11-16 19:50:35 +01:00
147 lines
5 KiB
Ruby
147 lines
5 KiB
Ruby
require 'rake/clean'
|
|
require 'fileutils'
|
|
require_relative 'lib/lib_src_file.rb'
|
|
require_relative 'lib/lib_src2md.rb'
|
|
require_relative 'lib/lib_gen_main_tex.rb'
|
|
require_relative 'lib/lib_add_head_tail_html.rb'
|
|
|
|
secfiles = Sec_files.new(FileList['src/sec*.src.md'].to_a.map{|file| Sec_file.new(file)})
|
|
secfiles.renum!
|
|
otherfiles = ["src/turtle/turtle_doc.src.md",
|
|
"src/tfetextview/tfetextview_doc.src.md",
|
|
"src/Readme_for_developers.src.md"].map {|file| Src_file.new file}
|
|
srcfiles = secfiles + otherfiles
|
|
abstract = Src_file.new "src/abstract.src.md"
|
|
|
|
mdfiles = srcfiles.map {|file| "gfm/" + file.to_md}
|
|
htmlfiles = srcfiles.map {|file| "html/" + file.to_html}
|
|
sectexfiles = secfiles.map {|file| "latex/" + file.to_tex}
|
|
othertexfiles = otherfiles.map {|file| "latex/" + file.to_tex}
|
|
texfiles = sectexfiles + othertexfiles
|
|
abstract_tex = "latex/"+abstract.to_tex
|
|
|
|
["gfm", "html", "latex"].each{|d| Dir.mkdir(d) unless Dir.exist?(d)}
|
|
|
|
CLEAN.append(*mdfiles)
|
|
CLEAN << "Readme.md"
|
|
|
|
# tasks
|
|
|
|
task default: :md
|
|
task all: [:md, :html, :pdf]
|
|
|
|
task md: %w[Readme.md] + mdfiles
|
|
|
|
file "Readme.md" => [abstract] + secfiles do
|
|
src2md abstract, abstract.to_md, "gfm"
|
|
buf = [ "# Gtk4 Tutorial for beginners\n", "\n" ]\
|
|
+ File.readlines(abstract.to_md)\
|
|
+ ["\n", "## Table of contents\n", "\n"]
|
|
File.delete(abstract.to_md)
|
|
secfiles.each_with_index do |secfile, i|
|
|
h = File.open(secfile.path){|file| file.readline}.sub(/^#* */,"").chomp
|
|
buf << "1. [#{h}](gfm/#{secfile.to_md})\n"
|
|
end
|
|
File.write("Readme.md", buf.join)
|
|
end
|
|
|
|
# srcfiles => mdfiles
|
|
(0...srcfiles.size).each do |i|
|
|
file mdfiles[i] => [srcfiles[i]] + srcfiles[i].c_files do
|
|
src2md srcfiles[i], mdfiles[i], "gfm"
|
|
if srcfiles[i].instance_of? Sec_file
|
|
i = srcfiles[i].num.to_i - 1
|
|
if secfiles.size == 1
|
|
nav = "Up: [Readme.md](../Readme.md)\n"
|
|
elsif i == 0
|
|
nav = "Up: [Readme.md](../Readme.md), Next: [Section 2](#{secfiles[1].to_md})\n"
|
|
elsif i == secfiles.size - 1
|
|
nav = "Up: [Readme.md](../Readme.md), Prev: [Section #{i}](#{secfiles[i-1].to_md})\n"
|
|
else
|
|
nav = "Up: [Readme.md](../Readme.md), Prev: [Section #{i}](#{secfiles[i-1].to_md}), Next: [Section #{i+2}](#{secfiles[i+1].to_md})\n"
|
|
end
|
|
File.write(mdfiles[i], nav + "\n" + File.read(mdfiles[i]) + "\n" + nav)
|
|
end
|
|
end
|
|
end
|
|
|
|
task html: %w[html/index.html] + htmlfiles
|
|
|
|
file "html/index.html" => [abstract] + secfiles do
|
|
abstract_md = "html/#{abstract.to_md}"
|
|
src2md abstract, abstract_md, "html"
|
|
buf = ["# Gtk4 Tutorial for beginners\n", "\n"]\
|
|
+ File.readlines(abstract_md)\
|
|
+ ["\n", "## Table of contents\n", "\n"]
|
|
File.delete(abstract_md)
|
|
secfiles.each_with_index do |secfile, i|
|
|
h = File.open(secfile.path){|file| file.readline}.sub(/^#* */,"").chomp
|
|
buf << "1. [#{h}](#{secfile.to_html})\n"
|
|
end
|
|
File.write("html/index.md", buf.join)
|
|
sh "pandoc -o html/index.html html/index.md"
|
|
File.delete "html/index.md"
|
|
add_head_tail_html "html/index.html"
|
|
end
|
|
|
|
(0...srcfiles.size).each do |i|
|
|
file htmlfiles[i] => [srcfiles[i]] + srcfiles[i].c_files do
|
|
html_md = "html/#{srcfiles[i].to_md}"
|
|
src2md srcfiles[i], html_md, "html"
|
|
if srcfiles[i].instance_of? Sec_file
|
|
i = srcfiles[i].num.to_i - 1 # 0 based index
|
|
if secfiles.size == 1
|
|
nav = "Up: [index.html](index.html)\n"
|
|
elsif i == 0
|
|
nav = "Up: [index.html](index.html), Next: [Section 2](#{secfiles[1].to_html})\n"
|
|
elsif i == secfiles.size - 1
|
|
nav = "Up: [index.html](index.html), Prev: [Section #{i}](#{secfiles[i-1].to_html})\n"
|
|
else
|
|
nav = "Up: [index.html](index.html), Prev: [Section #{i}](#{secfiles[i-1].to_html}), Next: [Section #{i+2}](#{secfiles[i+1].to_html})\n"
|
|
end
|
|
File.write(html_md, nav + "\n" + File.read(html_md) + "\n" + nav)
|
|
end
|
|
sh "pandoc -o #{htmlfiles[i]} #{html_md}"
|
|
File.delete(html_md)
|
|
add_head_tail_html htmlfiles[i]
|
|
end
|
|
end
|
|
|
|
task pdf: %w[latex/main.tex] do
|
|
sh "cd latex; lualatex main.tex"
|
|
sh "cd latex; lualatex main.tex"
|
|
sh "mv latex/main.pdf latex/gtk4_tutorial.pdf"
|
|
end
|
|
|
|
file "latex/main.tex" => [abstract_tex] + texfiles do
|
|
gen_main_tex "latex", abstract.to_tex, sectexfiles, othertexfiles
|
|
end
|
|
|
|
file abstract_tex => abstract do
|
|
abstract_md = "latex/"+abstract.to_md
|
|
src2md abstract, abstract_md, "latex"
|
|
sh "pandoc --listings -o #{abstract_tex} #{abstract_md}"
|
|
File.delete(abstract_md)
|
|
end
|
|
|
|
(0...texfiles.size).each do |i|
|
|
file texfiles[i] => [srcfiles[i]] + srcfiles[i].c_files do
|
|
tex_md = "latex/#{srcfiles[i].to_md}"
|
|
src2md srcfiles[i], tex_md, "latex"
|
|
if srcfiles[i] == "src/Readme_for_developers.src.md"
|
|
sh "pandoc -o #{texfiles[i]} #{tex_md}"
|
|
else
|
|
sh "pandoc --listings -o #{texfiles[i]} #{tex_md}"
|
|
end
|
|
File.delete(tex_md)
|
|
end
|
|
end
|
|
|
|
task :clean
|
|
task :cleanhtml do
|
|
remove_entry_secure('html') if Dir.exist?('html')
|
|
end
|
|
task :cleanlatex do
|
|
remove_entry_secure('latex') if Dir.exist?('latex')
|
|
end
|
|
task cleanall: [:clean, :cleanhtml, :cleanlatex]
|