-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.py
84 lines (69 loc) · 1.94 KB
/
build.py
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
import glob
import markdown
import re
import os
import subprocess
_cache = {}
_site = {}
_root = os.path.join(os.path.abspath(os.getcwd()), '_content')
with open(".git/HEAD") as f:
d = f.read().strip()
_head = d.split("/")[-1]
with open(os.path.join('.git', d.split(":")[1].strip())) as f:
_sha = f.read().strip()
def call(args):
o = subprocess.call(args)
if o > 0:
exit()
def get_include(f, relative):
global _root
p = os.path.dirname(os.path.abspath(relative))
full = os.path.join(p, f)
if os.path.exists(full):
return compile_page(full)
elif p == _root:
return "<!-- INCLUDE NOT FOUND FOR {} -->".format(f)
else:
return get_include(f, os.path.join('..', p))
def compile_site():
global _site
global _root
pages = []
patts = ["*.md", "*.html"]
for p in patts:
pages.extend(glob.glob(os.path.join(_root, "**/", p)))
pages.extend(glob.glob(os.path.join(_root, p)))
for page in pages:
if page.split('/')[-1][0] == "_":
continue
_site[page.replace('.md', '.html')] = compile_page(page)
def compile_page(filename):
filename = os.path.abspath(filename)
if filename in _cache:
return _cache[filename]
# TODO: Markdown preprocessor for transclusion.
trans = re.compile(r'(^(?:<p>)?\s*!\s*(.*?)(?:</p>)?$)', re.MULTILINE)
with open(filename) as f:
d = f.read()
if filename[-2:] == "md": # Convert Markdown to HTML first.
out = markdown.markdown(d)
else:
out = d
trasclusions = trans.findall(out)
for m, t in trasclusions:
i = get_include(t, filename)
out = out.replace(m, get_include(t, filename))
_cache[filename] = out
return out
compile_site()
call(['git', 'checkout', 'gh-pages'])
for f, p in _site.items():
d = os.path.dirname(f).replace('/_content', '')
if d and not os.path.exists(d):
os.makedirs(d)
of = os.path.join(d, os.path.basename(f))
with open(of, 'w') as fp:
fp.write(p)
call(['git', 'add', '-A'])
call(['git', 'commit', '-m', 'Autobuild from {}'.format(_sha)])
call(['git', 'checkout', _head])