Difference between revisions of "Module:Sandbox01"

From Rhizome Artbase
m
Line 1: Line 1:
 
local p = {}
 
local p = {}
 +
 +
 
function p.id(frame)
 
function p.id(frame)
 +
 
     if not mw.wikibase then
 
     if not mw.wikibase then
 
         return "no mw.wikibase"
 
         return "no mw.wikibase"
 
     end
 
     end
 +
 
     entity = mw.wikibase.getEntityObject()
 
     entity = mw.wikibase.getEntityObject()
 +
 
     if entity == nil then
 
     if entity == nil then
 
         return "no entity"
 
         return "no entity"
 
     end
 
     end
 +
 
     return entity.id
 
     return entity.id
 
end
 
end
 +
 
   
 
   
 
function p.label(frame)
 
function p.label(frame)
 
     return mw.wikibase.label( frame.args[1] )
 
     return mw.wikibase.label( frame.args[1] )
 
end
 
end
 +
 
   
 
   
 
function p.list(frame)
 
function p.list(frame)
Line 19: Line 27:
 
         for item_number=1000,2000 do
 
         for item_number=1000,2000 do
 
             local item_id = "Q" .. item_number
 
             local item_id = "Q" .. item_number
 
 
             local label = mw.wikibase.label( item_id )
 
             local label = mw.wikibase.label( item_id )
 +
            local plug_ins = mw.wikibase.label (P86)
 
             if label == nil then
 
             if label == nil then
 
               label = ""
 
               label = ""
 
             end
 
             end
             row = "<tr><td>" .. item_id .. "</td><td>" .. label .. "</td></tr>\n"
+
             row = "<tr><td>" .. item_id .. "</td><td>" .. label .. "</td><td>" .. plug_ins .. "</td></tr>\n"
 
             rows = rows .. row
 
             rows = rows .. row
 
         end
 
         end
      
+
     return "<table class=\"wikitable sortable\">\n<tr><th>id</th><th>label</th></tr>\n" .. rows .. "</table>"
  -- return "<table class=\"wikitable sortable\">\n<tr><th>id</th><th>label</th></tr>\n" .. rows .. "</table>"
 
 
end
 
end
 
   
 
   
Line 37: Line 44:
 
     return instance_of.value
 
     return instance_of.value
 
end
 
end
 +
 
   
 
   
 
function p.page(frame)
 
function p.page(frame)

Revision as of 23:22, 8 May 2016


local p = {}
 
 
function p.id(frame)
 
    if not mw.wikibase then
        return "no mw.wikibase"
    end
 
    entity = mw.wikibase.getEntityObject()
 
    if entity == nil then
        return "no entity"
    end
 
    return entity.id
end
 
 
function p.label(frame)
    return mw.wikibase.label( frame.args[1] )
end
 
 
function p.list(frame)
        rows = ""
        for item_number=1000,2000 do
            local item_id = "Q" .. item_number
            local label = mw.wikibase.label( item_id )
            local plug_ins = mw.wikibase.label (P86)
            if label == nil then
               label = ""
            end
            row = "<tr><td>" .. item_id .. "</td><td>" .. label .. "</td><td>" .. plug_ins .. "</td></tr>\n"
            rows = rows .. row
        end
    return "<table class=\"wikitable sortable\">\n<tr><th>id</th><th>label</th></tr>\n" .. rows .. "</table>"
end
 
function p.getItem(frame)
 
    local item = mw.wikibase.getEntity( "Q1996" )
    local instance_of = item.formatPropertyValues( "P3" )
    return instance_of.value
end
 
 
function p.page(frame)
    if frame.args[1] == nil then
        entity = mw.wikibase.getEntityObject()
        if not entity then return nil end
        id = entity.id
    else
        id = frame.args[1]
    end
    return mw.wikibase.sitelink( id )
end
 
return p