]> git.draconx.ca Git - homepage.git/blob - Rules
06f3a110b041d108383e37d6c4621b356da69761
[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     write to_xhtml
40 end
41
42 compile '/license/cc*.sgml' do
43     filter :sgml2xml
44     layout '/creativecommons.xsl'
45     layout '/default.xml'
46     layout '/default.xsl'
47     filter :relativize_paths, type: :xml
48     write to_xhtml
49 end
50
51 compile '/license/cc*.xhtml' do
52     layout '/creativecommons.xsl'
53     layout '/default.xml'
54     layout '/default.xsl'
55     filter :relativize_paths, type: :xml
56     write to_xhtml
57 end
58
59 passthrough '/**/*'
60 layout '/**/*.xsl', :xsl
61 layout '/**/*', :erb