]> git.draconx.ca Git - homepage.git/blob - Rules
Add links from generated pages to source code on gitweb.
[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         if result.value.success? then commit = val.chomp end
25     end
26
27     if commit then
28         @items.each do |item|
29             if item_source(item) then
30                 item[:gitrev] = commit
31             end
32         end
33     end
34 end
35
36 compile '/**/*.md' do
37     filter :kramdown, header_offset: 1
38     layout '/default.xml'
39     layout '/default.xsl'
40     filter :relativize_paths, type: :xml
41     write to_xhtml
42 end
43
44 passthrough '/**/*'
45 layout '/**/*.xsl', :xsl
46 layout '/**/*', :erb