“模块:WikidataIB/nolinks”的版本间的差异
来自中文乐谱库
wiki_>Xiplus 小 (已保护“模块:WikidataIB/nolinks”:高風險模板:121374引用([编辑=仅管理员](无限期)[移动=仅管理员](无限期))) |
小 (导入1个版本) |
(没有差异)
|
2020年7月7日 (二) 23:15的最新版本
此模块的文档可以在模块:WikidataIB/nolinks/doc创建
脚本错误:Lua错误:无法创建进程:proc_open(/dev/null): failed to open stream: Operation not permitted
local p ={}
--[[
The values here are the English sitelinks for items that should not be linked.
These 36 are not definitive and may be altered to suit.
--]]
p.items = {
"Australia",
"Austria",
"Belgium",
"Canada",
"China",
"Denmark",
"England",
"France",
"Germany",
"Greece",
"Hungary",
"Iceland",
"India",
"Republic of Ireland",
"Israel",
"Italy",
"Jamaica",
"Japan",
"Luxembourg",
"Mexico",
"Netherlands",
"New Zealand",
"Northern Ireland",
"Norway",
"Poland",
"Portugal",
"Russia",
"Scotland",
"South Africa",
"Spain",
"Sweden",
"Switzerland",
"Turkey",
"United Kingdom",
"United States",
"Wales",
}
--[[
This provides a convenient way to create a test whether an item is on the list.
--]]
p.itemsindex = {}
for i, v in ipairs(p.items) do
p.itemsindex[v] = true
end
return p