blob: c3ac2ffbcd863323ed10ecedb53a8ae4c751a249 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
#!/usr/bin/env ruby
# -*- coding: utf-8 -*-
require 'util'
require 'yaml'
# ARGV[0]
type = ARGV.shift
template = "bin/index.#{type}.erb"
erb = ERB.new(File.read(template));
erb.filename = template
# ARGV[1]
@path = ARGV.shift
webpath = (@path+'/').sub(/^(src|out)\//, '/')
if type == 'atom'
webpath += 'index.atom'
end
@url = URI::parse('https://www.andrewdm.me/') + webpath
indexyaml = @path.sub('out', 'src')+'/index.yaml'
if File.exists?(indexyaml)
metadata = YAML::load(File.read(indexyaml))
else
metadata = {}
end
@pages = []
for data in metadata['external']
@pages.push(ExternPage.new(data))
end
# ARGV[2..]
for filename in ARGV do
@pages.push(Page.new(filename))
end
# main
@title = metadata['title'] || @path.sub('out', '')
def guess_section(page)
for path in @sections.keys do
if @url.route_to(page.url).to_s.start_with?(path+'/')
return path
end
end
return ''
end
@sections = { '' => {'head' => '', 'body' => []} }
(metadata['sections'] || []).each do |path, name|
@sections[path] = {
'head' => name,
'body' => []
}
end
for page in @pages do
section = page.section || guess_section(page)
@sections[section]['body'].push(page)
end
erb.run()
|