-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
constants.go
53 lines (50 loc) · 1.59 KB
/
constants.go
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
/*
* Copyright (c) 2013 Dario Castañé.
* This file is part of Zas.
*
* Zas is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Zas 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with Zas. If not, see <http://www.gnu.org/licenses/>.
*/
package zas
import (
"fmt"
"path/filepath"
"golang.org/x/text/cases"
"golang.org/x/text/language"
)
var (
ZAS = "zas"
ZAS_PREFIX = "zs"
ZAS_NAME = cases.Title(language.English).String(ZAS)
ZAS_DIR = fmt.Sprintf(".%s", ZAS)
ZAS_CONF_FILE = filepath.Join(ZAS_DIR, "config.yml")
ZAS_I18N_FILE = filepath.Join(ZAS_DIR, "i18n.yml")
ZAS_DIR_CONF_FILE = fmt.Sprintf(".%s.yml", ZAS)
ZAS_DEFAULT_DIR_PERM = 0o755
ZAS_DEFAULT_FILE_PERM = 0o644
ZAS_DEFAULT_CONF = ConfigSection{
ZAS: ConfigSection{
"layout": filepath.Join(ZAS_DIR, "layout.html"),
"deploy": filepath.Join(ZAS_DIR, "deploy"),
},
"site": ConfigSection{
"baseurl": "http://example.com",
"language": "en",
},
"mimetypes": ConfigSection{
"text/markdown": "markdown",
"text/plain": "plain",
"text/html": "html",
},
}
)