forked from forgejo/forgejo
Allow explicit charset/codepage setting for ANSI source files to alleviate issue #1088
This commit is contained in:
parent
31f6069dbe
commit
53bcf373c1
2 changed files with 5 additions and 0 deletions
|
@ -84,6 +84,7 @@ var (
|
|||
// Repository settings.
|
||||
RepoRootPath string
|
||||
ScriptType string
|
||||
AnsiCharset string
|
||||
|
||||
// UI settings.
|
||||
IssuePagingNum int
|
||||
|
@ -312,6 +313,7 @@ func NewConfigContext() {
|
|||
RepoRootPath = path.Clean(RepoRootPath)
|
||||
}
|
||||
ScriptType = sec.Key("SCRIPT_TYPE").MustString("bash")
|
||||
AnsiCharset = sec.Key("ANSI_CHARSET").MustString("ISO-8859-1")
|
||||
|
||||
// UI settings.
|
||||
IssuePagingNum = Cfg.Section("ui").Key("ISSUE_PAGING_NUM").MustInt(10)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue