]> git.draconx.ca Git - homepage.git/blob - Rules
Tweak the footer styles a bit.
[homepage.git] / Rules
1 #!/usr/bin/env ruby
2 #
3 # Copyright © 2018-2019 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 '/license/gpl*.md' do
52     filter :kramdown, auto_ids: false, header_offset: -1
53     layout '/default.xml'
54     layout '/gpl.xsl'
55     layout '/default.xsl'
56     filter :relativize_paths, type: :xml
57     filter :remove_wj
58     write to_xhtml
59 end
60
61 compile '/**/*.md' do
62     filter :erb
63     filter :kramdown, auto_ids: false, header_offset: 1
64     snapshot :rawbody
65     layout '/default.xml'
66     layout '/default.xsl'
67     filter :relativize_paths, type: :xml
68     filter :remove_wj
69     write to_xhtml
70 end
71
72 compile '/license/cc*.sgml' do
73     filter :sgml2xml
74     layout '/creativecommons.xsl'
75     layout '/default.xml'
76     layout '/default.xsl'
77     filter :relativize_paths, type: :xml
78     filter :remove_wj
79     write to_xhtml
80 end
81
82 compile '/license/cc*.xhtml' do
83     layout '/creativecommons.xsl'
84     layout '/default.xml'
85     layout '/default.xsl'
86     filter :relativize_paths, type: :xml
87     filter :remove_wj
88     write to_xhtml
89 end
90
91 passthrough '/**/*'
92 layout '/**/*.xsl', :xsl
93 layout '/**/*', :erb