Question: fix Emacs version validator

Now it's a multi select, it needs to validate multiple versions
This commit is contained in:
TEC 2022-10-17 02:19:26 +08:00
parent 1cfc57a584
commit e7c18cdec6
Signed by: tec
SSH Key Fingerprint: SHA256:eobz41Mnm0/iYWBvWThftS0ElEs1ftBr6jamutnXc/A
1 changed files with 8 additions and 7 deletions

View File

@ -25,13 +25,14 @@ the questions you see now will not necessarily be in the final survey.",
"Which version(s) of Emacs do you use?",
["29 (master/HEAD)" => "29.0",
"28.2", "28.1", "27.2", "27.1", "26.3", :other],
validators = v -> if isnothing(match(r"^\d+\.\d+$", v))
"Please give the MAJOR.MINOR version number as your response"
elseif parse(VersionNumber, v) < v"18"
"Ok, this is pushing the bounds of believability a bit much..."
elseif parse(VersionNumber, v) > v"29.0"
"You should have mentioned that you're a time traveller!"
end),
validators = vs -> for v in vs
if isnothing(match(r"^\d+\.\d+$", v))
return "Please give the MAJOR.MINOR version number as your response, not $v"
elseif parse(VersionNumber, v) < v"18"
return "Ok, Emacs $v is pushing the bounds of believability a bit much..."
elseif parse(VersionNumber, v) > v"29.0"
return "You should have mentioned that you're a time traveller using Emacs $(v)!"
end end),
MultiSelect(:emacs_motivations_current,
"Which features keep you using Emacs?",
["Extensibility", "Package(s)", "Text editing features",