Content deleted Content added
Tobias1984 (talk | contribs) add function printDatavalueEntity |
Tobias1984 (talk | contribs) implementing changes from de-Module |
||
Line 324:
end
function getReferences(frame, claim)
local result = ""
-- traverse through all references
Line 340:
end
end
if refparts then result = result .. frame:extensionTag("
end
return result
Line 391:
value, error = getValueOfClaim(claim, qualifierId, parameter)
if not value and showerrors then value = error end
if value and references then value = value .. getReferences(frame, claim) end
result[#result + 1] = value
end
Line 399:
local claim = claims[sortindices[1]]
result, error = getValueOfClaim(claim, qualifierId, parameter)
if result and references then result = result .. getReferences(frame, claim) end
end
|