diff options
author | Vladimir Vissoultchev <wqweto@gmail.com> | 2015-07-27 21:58:51 +0300 |
---|---|---|
committer | Vladimir Vissoultchev <wqweto@gmail.com> | 2015-07-27 21:58:51 +0300 |
commit | 53bcf373c1d076dd14db6aff0247ae9dbdc49c77 (patch) | |
tree | 15918b18d80d8310568d1d20c6223bb1ee231f7b | |
parent | 31f6069dbe95cf54de50accca500e9fb95dd2f47 (diff) | |
download | gitea-53bcf373c1d076dd14db6aff0247ae9dbdc49c77.tar.gz gitea-53bcf373c1d076dd14db6aff0247ae9dbdc49c77.zip |
Allow explicit charset/codepage setting for ANSI source files to alleviate issue #1088
-rw-r--r-- | modules/base/template.go | 3 | ||||
-rw-r--r-- | modules/setting/setting.go | 2 |
2 files changed, 5 insertions, 0 deletions
diff --git a/modules/base/template.go b/modules/base/template.go index 1442bf0e84..bc69bb3b37 100644 --- a/modules/base/template.go +++ b/modules/base/template.go @@ -55,6 +55,9 @@ func ShortSha(sha1 string) string { func DetectEncoding(content []byte) (string, error) { detector := chardet.NewTextDetector() result, err := detector.DetectBest(content) + if result.Charset == "ISO-8859-1" { + return setting.AnsiCharset, err + } return result.Charset, err } diff --git a/modules/setting/setting.go b/modules/setting/setting.go index 2364c313a5..896e60ad13 100644 --- a/modules/setting/setting.go +++ b/modules/setting/setting.go @@ -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) |