Content deleted Content added
t |
m Cabayi moved page Module:Sandbox/For (;;) to Module:Sandbox/Cabayi without leaving a redirect: name change |
||
(7 intermediate revisions by the same user not shown) | |||
Line 5:
local entity = mw.wikibase.getEntityObject()
local rettxt = ""
-- local hansardcurr = 4068 -- use Harrington for now...
local hansardcurr = 2631 -- no, use Clegg for now...
-- Parliaments prior to 2005, millbanksystems.com
if entity['claims']["P2170"] then
end
for i = 1, 3 do -- at most 3 parliaments to date (2016)
if entity['claims']["P463"][i] == nil then
Line 14 ⟶ 22:
break -- no parliament found
elseif parlid == 21084471 then
-- Parliament 2006 - 2010, parliament.uk
rettxt = rettxt .. "\n* Contributions in [[List of MPs elected in the United Kingdom general election, 2005|the 2005–10 Parliament]] at ''[[Hansard]]'' {{*}} [http://www.publications.parliament.uk/pa/cm200607/cmhansrd/cmallfiles/mps/commons_hansard_" .. hansardcurr .. "_od.html 06-07] {{*}} [http://www.publications.parliament.uk/pa/cm200708/cmhansrd/cmallfiles/mps/commons_hansard_" .. hansardcurr .. "_od.html 07-08] {{*}} [http://www.publications.parliament.uk/pa/cm200809/cmhansrd/cmallfiles/mps/commons_hansard_" .. hansardcurr .. "_od.html 08-09] {{*}} [http://www.publications.parliament.uk/pa/cm200910/cmhansrd/cmallfiles/mps/commons_hansard_" .. hansardcurr .."_od.html 09-10]"
▲ rettxt = rettxt .. "[1]"
elseif parlid == 21084472 or parlid == 21084473 then
-- Parliament 2010 - present, digiminster.com using the number from P1996
rettxt = rettxt .. "\n* Contributions in [[List of MPs elected in the United Kingdom general election, 2010|the 2010–15 Parliament]] at ''[[Hansard]]'' {{*}} [http://www.publications.parliament.uk/pa/cm201011/cmhansrd/cmallfiles/mps/commons_hansard_" .. hansardcurr .. "_od.html 10-12(1)] {{*}} [http://www.publications.parliament.uk/pa/cm201212/cmhansrd/cmallfiles/mps/commons_hansard_" .. hansardcurr .. "_od.html 10-12(2)] {{*}} [http://www.publications.parliament.uk/pa/cm201213/cmhansrd/cmallfiles/mps/commons_hansard_" .. hansardcurr .. "_od.html 12-13] {{*}} [http://www.publications.parliament.uk/pa/cm201314/cmhansrd/cmallfiles/mps/commons_hansard_" .. hansardcurr .. "_od.html 13-14] {{*}} [http://www.publications.parliament.uk/pa/cm201415/cmhansrd/cmallfiles/mps/commons_hansard_" .. hansardcurr .. "_od.html 14-15]"
else
-- meh
end
end
return rettxt .."\n"
end
|