]> git.draconx.ca Git - homepage.git/blob - Rules
Tweak whitespace-preserving templates.
[homepage.git] / Rules
1 #!/usr/bin/env ruby
2 #
3 # Copyright © 2018 Nick Bowler
4 #
5 # This program is free software: you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation, either version 3 of the License, or
8 # (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program.  If not, see <https://www.gnu.org/licenses/>.
17
18 preprocess do
19     commit = nil
20     Open3.popen2("git", "rev-parse", "HEAD") do |stdin, stdout, result|
21         stdin.close
22         val = stdout.gets
23         stdout.close
24         commit = val.chomp if result.value.success?
25     end
26
27     if commit then
28         @items.each do |item|
29             item[:gitrev] = commit if item_source(item)
30         end
31     end
32 end
33
34 postprocess do
35     # Gzip all text items for nginx http_static
36     if !ENV['GZIP_SITE'].to_s.empty?
37         reps = @items.flat_map(&:reps).each do |rep|
38             file = rep.raw_path
39             next if !file or rep.binary?
40
41             if system("gzip", "-ck9", file, [:out]=>[file + ".gz.tmp", "wb"])
42                 system("touch", "-r", file, file + ".gz.tmp")
43                 File.rename(file + ".gz.tmp", file + ".gz")
44             else
45                 File.unlink(file + ".gz.tmp")
46             end
47         end
48     end
49 end
50
51 compile '/**/*.md' do
52     filter :kramdown, header_offset: 1
53     layout '/default.xml'
54     layout '/default.xsl'
55     filter :relativize_paths, type: :xml
56     filter :remove_wj
57     write to_xhtml
58 end
59
60 compile '/license/cc*.sgml' do
61     filter :sgml2xml
62     layout '/creativecommons.xsl'
63     layout '/default.xml'
64     layout '/default.xsl'
65     filter :relativize_paths, type: :xml
66     filter :remove_wj
67     write to_xhtml
68 end
69
70 compile '/license/cc*.xhtml' do
71     layout '/creativecommons.xsl'
72     layout '/default.xml'
73     layout '/default.xsl'
74     filter :relativize_paths, type: :xml
75     filter :remove_wj
76     write to_xhtml
77 end
78
79 passthrough '/**/*'
80 layout '/**/*.xsl', :xsl
81 layout '/**/*', :erb