Editing Module:Bankable items
Jump to navigation
Jump to search
The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.
Latest revision | Your text | ||
Line 1: | Line 1: | ||
local |
local smwjson = require('Module:SMW JSON') |
||
local pt = require('Module:Paramtest') |
local pt = require('Module:Paramtest') |
||
p = {} |
p = {} |
||
Line 11: | Line 11: | ||
local use_cols = pt.has_content(cols) or pt.has_content(col_width) |
local use_cols = pt.has_content(cols) or pt.has_content(col_width) |
||
local |
local data = mw.smw.ask{ |
||
"[[Bank::"..bank.."]]", |
"[[Bank::"..bank.."]]", |
||
"?#-=", |
|||
limit = 4000 |
limit = 4000 |
||
} |
} |
||
⚫ | |||
if askdata == nil then |
|||
return ":''No bankable items found. To force an update, click " |
|||
..purge('dml-'..mw.uri.anchorEncode(bank), 'here', 'span') |
|||
..".''" |
|||
end |
|||
data = {} |
|||
for _,d in ipairs(askdata) do |
|||
for _,v in ipairs(d) do |
|||
table.insert(data, v) |
|||
end |
|||
end |
|||
⚫ | |||
ret = mw.html.create('ul') |
ret = mw.html.create('ul') |
||
for _,value in ipairs(data) do |
for _,value in ipairs(data) do |
||
ret:tag('li'):wikitext(value) |
ret:tag('li'):wikitext('[['..value..']]') |
||
end |
end |
||
if use_cols then |
if use_cols then |