aboutsummaryrefslogtreecommitdiffstats
path: root/modules
diff options
context:
space:
mode:
authorsilverwind <me@silverwind.io>2020-06-10 20:35:27 +0200
committerGitHub <noreply@github.com>2020-06-10 14:35:27 -0400
commit628ee1d82ed4afdae8734801be85c57d9a525322 (patch)
tree95e8448278b7cfe0a885e0e9a300cf1963a861f6 /modules
parent42752f3902f53d96598e5329a30374ecc82c9a19 (diff)
downloadgitea-628ee1d82ed4afdae8734801be85c57d9a525322.tar.gz
gitea-628ee1d82ed4afdae8734801be85c57d9a525322.zip
Replace jquery-datetimepicker with native date input (#11684)
This removes the jQuery plugin as well as the associated config options. Native input[type=date] does not require a language attribute as it is localized by default, except for the placeholder attribute for which I currently piggy-back the repo.issues.due_date_form localization option. Implementation should pretty much match GH. Of note is that Safari does not provide a UI for this input type, but I don't think providing one is neccessary and GH did not bother either. Co-authored-by: techknowlogick <techknowlogick@gitea.io>
Diffstat (limited to 'modules')
-rw-r--r--modules/setting/setting.go15
1 files changed, 2 insertions, 13 deletions
diff --git a/modules/setting/setting.go b/modules/setting/setting.go
index 91c3c4cf67..8efc832f9d 100644
--- a/modules/setting/setting.go
+++ b/modules/setting/setting.go
@@ -367,9 +367,8 @@ var (
}
// I18n settings
- Langs []string
- Names []string
- dateLangs map[string]string
+ Langs []string
+ Names []string
// Highlight settings are loaded in modules/template/highlight.go
@@ -394,15 +393,6 @@ var (
UILocation = time.Local
)
-// DateLang transforms standard language locale name to corresponding value in datetime plugin.
-func DateLang(lang string) string {
- name, ok := dateLangs[lang]
- if ok {
- return name
- }
- return "en"
-}
-
func getAppPath() (string, error) {
var appPath string
var err error
@@ -1012,7 +1002,6 @@ func NewContext() {
"español", "português do Brasil", "Português de Portugal", "polski", "български",
"italiano", "suomi", "Türkçe", "čeština", "српски", "svenska", "한국어"}
}
- dateLangs = Cfg.Section("i18n.datelang").KeysHash()
ShowFooterBranding = Cfg.Section("other").Key("SHOW_FOOTER_BRANDING").MustBool(false)
ShowFooterVersion = Cfg.Section("other").Key("SHOW_FOOTER_VERSION").MustBool(true)