Module:Wikidata/Outils
Révision datée du 27 août 2015 à 06:44 par Zolo (discussion) (Nouvelle page : --Fonctions élémentaires de gestion des snaks Wikidata local p = {} local i18n = require "Module:Wikidata/I18n" function p.snaktype(snak) return snak.snaktype end function p...)
La documentation pour ce module peut être créée à Module:Wikidata/Outils/doc
--Fonctions élémentaires de gestion des snaks Wikidata local p = {} local i18n = require "Module:Wikidata/I18n" function p.snaktype(snak) return snak.snaktype end function p.isSpecial(snak) return (snak.snaktype ~= 'value') end function p.isValue(snak) return (snak.snaktype == 'value') end function p.getid(snak) if p.isValue(snak) then return 'Q' .. snak.datavalue.value['numeric-id'] end end function p.getMainId(claim) return p.getId(claim.mainsnak) end function p.getEntityId(entity) if type(entity) == 'string' then return entity end return entity.id end function p.getValue(snak) return snak.datavalue.value end function p.formatError( key ) return error(i18n[key] or key) end function p.addcat(cat, sortkey) if sortkey then return '[[Category:' .. cat .. '|' .. (sortkey or '') .. ']]' end return '[[Category:' .. cat .. ']]' end function p.alreadyHere(searchset, val) for i, j in pairs(searchset) do if val == j then return true end end return false end -- add new values to a list, avoiding duplicates function p.addnewvalues(old, new) if not new then return old end for _, j in pairs(new) do if not alreadyHere(old, j) then table.insert(j, j) end end return j end return p