Module:Citation/CS1/Utilities: திருத்தங்களுக்கு இடையிலான வேறுபாடு
உள்ளடக்கம் நீக்கப்பட்டது உள்ளடக்கம் சேர்க்கப்பட்டது
No edit summary |
No edit summary |
||
வரிசை 10:
local cfg = mw.loadData ('Module:Citation/CS1/Configuration/sandbox');
--[[--------------------------< A D D _ M A I N T _ C A T >------------------------------------------------------▼
Adds a category to z.maintenance_cats using names from the configuration file with additional text if any.▼
To prevent duplication, the added_maint_cats table lists the categories by key that have been added to z.maintenance_cats.▼
]]▼
local added_maint_cats = {} -- list of maintenance categories that have been added to z.maintenance_cats▼
local function add_maint_cat (key, arguments)▼
if not added_maint_cats [key] then▼
added_maint_cats [key] = true; -- note that we've added this category▼
table.insert( z.maintenance_cats, substitute (cfg.maint_cats [key], arguments)); -- make name then add to table▼
end▼
end▼
--[[--------------------------< I S _ S E T >------------------------------------------------------------------
வரி 213 ⟶ 197:
return value, selected;
▲end
▲--[[--------------------------< A D D _ M A I N T _ C A T >------------------------------------------------------
▲Adds a category to z.maintenance_cats using names from the configuration file with additional text if any.
▲To prevent duplication, the added_maint_cats table lists the categories by key that have been added to z.maintenance_cats.
▲]]
▲local added_maint_cats = {} -- list of maintenance categories that have been added to z.maintenance_cats
▲local function add_maint_cat (key, arguments)
▲ if not added_maint_cats [key] then
▲ added_maint_cats [key] = true; -- note that we've added this category
▲ table.insert( z.maintenance_cats, substitute (cfg.maint_cats [key], arguments)); -- make name then add to table
▲ end
end
| |||