Changes

Jump to navigation Jump to search
no edit summary
Line 53: Line 53:  
item  = entity.id      -- look-up q-code
 
item  = entity.id      -- look-up q-code
 
elseif tonumber(item) then  -- if it is just the number than add "Q" in front
 
elseif tonumber(item) then  -- if it is just the number than add "Q" in front
item = 'Item:Q'..item
+
item = 'Q'..item
 
end
 
end
 
item = string.gsub( string.upper(item), 'PROPERTY:P', 'P') -- make all the properties the same and capitalize
 
item = string.gsub( string.upper(item), 'PROPERTY:P', 'P') -- make all the properties the same and capitalize
Line 61: Line 61:  
local langList = mw.language.getFallbacksFor(lang)
 
local langList = mw.language.getFallbacksFor(lang)
 
table.insert(langList, 1, lang)
 
table.insert(langList, 1, lang)
+
        -- CAN T GET THE FALLBACKCHAIN TO WORK RIGHT NOW
 +
        local langList = {"en"}
 
-- get label (visible part of the link)
 
-- get label (visible part of the link)
 
for _, language in ipairs(langList) do  -- loop over language fallback list looking for label in the specific language
 
for _, language in ipairs(langList) do  -- loop over language fallback list looking for label in the specific language
Line 96: Line 97:  
-- create URL part of the link
 
-- create URL part of the link
 
link_type = string.lower(link_type or '')
 
link_type = string.lower(link_type or '')
local dLink = 'd:'..item; -- create fallback wikidata link
+
local dLink = 'Item:'..item; -- create fallback wikidata link
 
if string.sub(item, 1, 1) == 'P' then
 
if string.sub(item, 1, 1) == 'P' then
dLink = 'd:Property:'.. item
+
dLink = 'Property:'.. item
 
end
 
end
 
if link_type=='-' then -- allow different link formats
 
if link_type=='-' then -- allow different link formats
 
link = ''            -- no link
 
link = ''            -- no link
 
elseif link_type=='wikidata' then
 
elseif link_type=='wikidata' then
link = "Item:"..item         -- link to wikidata
+
link = dLink         -- link to wikidata
 
elseif link_type=='wikidata talk' and string.sub(item, 1, 1)=='P' then
 
elseif link_type=='wikidata talk' and string.sub(item, 1, 1)=='P' then
link = 'd:Property talk:'.. item        -- link to wikidata property talk page
+
link = 'Property talk:'.. item        -- link to wikidata property talk page
 
elseif link_type=='wikidata talk' then
 
elseif link_type=='wikidata talk' then
link = 'd:Talk:'..item        -- link to wikidata talk page
+
link = 'Talk:'..item        -- link to wikidata talk page
 
elseif link_type=='commons' then
 
elseif link_type=='commons' then
 
link = getSitelink(item, entity, 'commons')  -- look for sitelink to commons
 
link = getSitelink(item, entity, 'commons')  -- look for sitelink to commons
Anonymous user

Navigation menu