]> git.draconx.ca Git - homepage.git/blob - Rules
Work around Nokogiri pretty-print issues.
[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 compile '/**/*.md' do
35     filter :kramdown, header_offset: 1
36     layout '/default.xml'
37     layout '/default.xsl'
38     filter :relativize_paths, type: :xml
39     filter :remove_wj
40     write to_xhtml
41 end
42
43 compile '/license/cc*.sgml' do
44     filter :sgml2xml
45     layout '/creativecommons.xsl'
46     layout '/default.xml'
47     layout '/default.xsl'
48     filter :relativize_paths, type: :xml
49     filter :remove_wj
50     write to_xhtml
51 end
52
53 compile '/license/cc*.xhtml' do
54     layout '/creativecommons.xsl'
55     layout '/default.xml'
56     layout '/default.xsl'
57     filter :relativize_paths, type: :xml
58     filter :remove_wj
59     write to_xhtml
60 end
61
62 passthrough '/**/*'
63 layout '/**/*.xsl', :xsl
64 layout '/**/*', :erb