Modul:Country alias: Perbedaan antara revisi
Konten dihapus Konten ditambahkan
kTidak ada ringkasan suntingan |
kTidak ada ringkasan suntingan |
||
(43 revisi perantara oleh 6 pengguna tidak ditampilkan) | |||
Baris 4:
--[[
The following country code is used for multiple countries:
ANG (workaround: added ANG_CGF for use with
The following names have different names/flags based on sport/year
Baris 11:
Individual Olympic Athletes IOA, IOA_2000 (IOA changed to Independent Olympic Athletes in 2012)
Russian Athletes OAR (2018), ROC_2020 (2020 Summer, 2022 Winter)
SWZ Swaziland became Eswatini after the 2018
MKD Macedonia became North Macedonia in 2019
ART No "Athlete" before Refugee Team @ 2017 AIMAG
D.R. of the Congo Was Zaire (ZAI) and Congo-Kinshasa (COK_COD)
The following countries have multiple aliases due to CGF/IOC/FINA/IAAF/etc differences, or deprecated uses
Baris 68 ⟶ 69:
local fullName = stripToNil(args.fullName)
if fullName then
end
if alias == 'ANG' then
Baris 76:
end
elseif alias == 'ART' then
if games == '
alias = 'ART_AIMAG'
end
elseif alias == 'GBR' then
if games == '
alias = 'GBR_WCA'
elseif games == '
if year == 2018 then
alias = 'GBR_WCA'
Baris 151:
if year and year > 1992 and year < 2004 and games ~= 'Paralimpiade Musim Panas' then
alias = 'FR_YUG'
end
elseif alias == 'ZAI' or alias == 'COD' then
if year and year < 1971 then
alias = 'COK_COD'
elseif year and year <= 1996 then
alias = 'ZAI'
else
alias = 'COD'
end
elseif alias == 'COK' then
if year and year == 1968 then
alias = 'COK_COD'
else
alias = 'COK'
end
end
Baris 181 ⟶ 195:
end
local data = mw.loadData('
local function countryAlias(args)
local alias = getAlias(args)
Baris 209 ⟶ 223:
alias = code,
fullName = games,
year = games:match('
games = games:gsub('
}
local fullName = countryAlias(parms)
Baris 245 ⟶ 259:
-- Implement [[Template:FlagIOCathlete]].
dispType = 'athlete'
args[3] = 'Olimpiade ' .. (args[3] or '')
end
if dispType == 'name' or dispType == 'team' then
code = stripToNil(args[1]) or error('Parameter 1
games = stripToNil(args[2]) or error('Parameter 2
athletes = stripToNil(args[3])
elseif dispType == 'athlete' or dispType == 'medalist' then
Baris 260 ⟶ 274:
alias = code,
fullName = games,
year = games:match('
games = games:gsub('
}
local fullName = countryAlias(parms)
Baris 267 ⟶ 281:
local dispName = stripToNil(args.name)
if fullName == 'ROC' then
fullName = '
dispName = 'ROC'
if dispType == 'team' then dispType = 'name' end
|