Difference between revisions of "Module:Autocat/data"

From blackwiki
Jump to navigation Jump to search
blackwiki>HastaLaVi2
(+ data)
blackwiki>HastaLaVi2
(+ data)
Line 15: Line 15:
 
stage = 4,
 
stage = 4,
 
see = {"beginnings"},
 
see = {"beginnings"},
 +
}
 +
 +
k["establishments"] = {
 +
parents = {"beginnings"},
 +
sort_keys = {"E"},
 +
stage = 4,
 +
see = {"disestablishments"},
 +
portals = {"history"},
 +
description = "This category is for organizations, places or other things founded or established {{{hide|in the}}} '''{{{type}}}''' {{{year}}}",
 +
}
 +
 +
k["disestablishments"] = {
 +
parents = {"endings"},
 +
sort_keys = {"D"},
 +
stage = 4,
 +
see = {"establishments"},
 +
portals = {"history"},
 +
description = "This category is for organizations, places or other things abolished or disestablished {{{hide|in the}}} '''{{{type}}}''' {{{year}}}",
 
}
 
}
  
 
return k
 
return k

Revision as of 17:27, 18 September 2020

Documentation for this module may be created at Module:Autocat/data/doc

local k = {}

--the list is in alphabetical order

k["beginnings"] = {
	parents = {"categories"},
	sort_keys = {"B"},
	stage = 4,
	see = {"endings"},
}

k["endings"] = {
	parents = {"categories"},
	sort_keys = {"E"},
	stage = 4,
	see = {"beginnings"},
}

k["establishments"] = {
	parents = {"beginnings"},
	sort_keys = {"E"},
	stage = 4,
	see = {"disestablishments"},
	portals = {"history"},
	description = "This category is for organizations, places or other things founded or established {{{hide|in the}}} '''{{{type}}}''' {{{year}}}",
}

k["disestablishments"] = {
	parents = {"endings"},
	sort_keys = {"D"},
	stage = 4,
	see = {"establishments"},
	portals = {"history"},
	description = "This category is for organizations, places or other things abolished or disestablished {{{hide|in the}}} '''{{{type}}}''' {{{year}}}",
}

return k