blob: 9d00c7594c356e100e7a1c162f811dded4937817 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
# A static website generator
# Copyright (C) 2022 Alessandro Iezzi <aiezzi AT alessandroiezzi DOT it>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
require "erb"
require "optparse"
require "yaml"
require 'date'
class Page
attr_reader :pageFileName
attr :fileName
attr :title
attr :pageNames
attr :description
attr :date
attr :classes
attr :category
attr :master
attr :baseHref
def initialize(fileName, date = nil, baseHref = nil)
@fileName = fileName
@date = date
@baseHref = baseHref
parseConfig(fileName + '.config')
end
def parseConfig(configFile)
if (File.exist?(configFile))
config = YAML.load_file(configFile)
if (config != nil)
@title = config['title']
@pageNames = config['pageNames']
@description = config['description']
@classes = config['classes']
@master = config['master']
@category = config['category']
if (@date == nil)
@date = config['date']
end
if (@baseHref == nil)
@baseHref= config['baseHref']
end
end
end
end
attr_writer :fileName
attr_writer :title
attr_writer :pageNames
attr_writer :description
attr_writer :date
attr_writer :classes
attr_writer :category
attr_writer :master
attr_writer :content
attr_writer :baseHref
def initialize1 title, pageFileName, pageNames, description, date, classes, category
@title = title
@pageFileName = pageFileName
@pageNames = pageNames
@description = description
@date = date
@classes = classes
@category = category
end
def render1 path
content = File.read(File.expand_path(path))
t = ERB.new(content)
t.result(binding)
end
end
|