From WikiChip
Difference between revisions of "Module:comptable"
Line 65: | Line 65: | ||
return '<tr class="comptable-header"><th class="unsortable">Model</th>' .. r .. '</tr>' | return '<tr class="comptable-header"><th class="unsortable">Model</th>' .. r .. '</tr>' | ||
+ | end | ||
+ | |||
+ | --------------------------------------------- | ||
+ | |||
+ | function p.main2(frame) | ||
+ | if frame == mw.getCurrentFrame() then | ||
+ | origArgs = frame:getParent().args | ||
+ | else | ||
+ | origArgs = frame | ||
+ | end | ||
+ | |||
+ | local r = '' | ||
+ | |||
+ | for i = 2, 30 do | ||
+ | local val = origArgs[i] | ||
+ | if not val then break end | ||
+ | if string.find(val, ":") then | ||
+ | r = r .. string.gsub(val, "(%d+):(.+)", '<th colspan="%1">%2</th>') | ||
+ | else | ||
+ | r = r .. '<th>' .. val .. '</th>' | ||
+ | end | ||
+ | end | ||
+ | |||
+ | return '<tr class="comptable2-header"><th> </th>' .. r .. '</tr>' | ||
+ | end | ||
+ | |||
+ | function p.lsep2(frame) | ||
+ | if frame == mw.getCurrentFrame() then | ||
+ | origArgs = frame:getParent().args | ||
+ | else | ||
+ | origArgs = frame | ||
+ | end | ||
+ | |||
+ | local r = '' | ||
+ | |||
+ | for i = 2, 30 do | ||
+ | local val = origArgs[i] | ||
+ | if not val then break end | ||
+ | if string.find(val, ":") then | ||
+ | r = r .. string.gsub(val, "(%d+):(.+)", '<th colspan="%1" style="text-align: left;">%2</th>') | ||
+ | else | ||
+ | r = r .. '<th style="text-align: left;">' .. val .. '</th>' | ||
+ | end | ||
+ | end | ||
+ | |||
+ | return '<tr class="comptable2-header"><th> </th>' .. r .. '</tr>' | ||
+ | end | ||
+ | |||
+ | function p.cols2(frame) | ||
+ | if frame == mw.getCurrentFrame() then | ||
+ | origArgs = frame:getParent().args | ||
+ | else | ||
+ | origArgs = frame | ||
+ | end | ||
+ | |||
+ | local r = '' | ||
+ | |||
+ | for i = 2, 30 do | ||
+ | local val = origArgs[i] | ||
+ | if not val then break end | ||
+ | if string.match(val, '^%%.+') then | ||
+ | r = r .. '<th data-sort-type="number">' .. string.sub(val, 2) .. '</th>' | ||
+ | else | ||
+ | r = r .. '<th>' .. val .. '</th>' | ||
+ | end | ||
+ | end | ||
+ | |||
+ | return '<tr class="comptable2-header"><th class="unsortable">Model</th>' .. r .. '</tr>' | ||
end | end | ||
return p | return p |
Revision as of 00:27, 28 November 2017
Documentation for this module may be created at Module:comptable/doc
local p = {}
function p.main(frame)
if frame == mw.getCurrentFrame() then
origArgs = frame:getParent().args
else
origArgs = frame
end
local r = ''
for i = 2, 30 do
local val = origArgs[i]
if not val then break end
if string.find(val, ":") then
r = r .. string.gsub(val, "(%d+):(.+)", '<th colspan="%1">%2</th>')
else
r = r .. '<th>' .. val .. '</th>'
end
end
return '<tr class="comptable-header"><th> </th>' .. r .. '</tr>'
end
function p.lsep(frame)
if frame == mw.getCurrentFrame() then
origArgs = frame:getParent().args
else
origArgs = frame
end
local r = ''
for i = 2, 30 do
local val = origArgs[i]
if not val then break end
if string.find(val, ":") then
r = r .. string.gsub(val, "(%d+):(.+)", '<th colspan="%1" style="text-align: left;">%2</th>')
else
r = r .. '<th style="text-align: left;">' .. val .. '</th>'
end
end
return '<tr class="comptable-header"><th> </th>' .. r .. '</tr>'
end
function p.cols(frame)
if frame == mw.getCurrentFrame() then
origArgs = frame:getParent().args
else
origArgs = frame
end
local r = ''
for i = 2, 30 do
local val = origArgs[i]
if not val then break end
if string.match(val, '^%%.+') then
r = r .. '<th data-sort-type="number">' .. string.sub(val, 2) .. '</th>'
else
r = r .. '<th>' .. val .. '</th>'
end
end
return '<tr class="comptable-header"><th class="unsortable">Model</th>' .. r .. '</tr>'
end
---------------------------------------------
function p.main2(frame)
if frame == mw.getCurrentFrame() then
origArgs = frame:getParent().args
else
origArgs = frame
end
local r = ''
for i = 2, 30 do
local val = origArgs[i]
if not val then break end
if string.find(val, ":") then
r = r .. string.gsub(val, "(%d+):(.+)", '<th colspan="%1">%2</th>')
else
r = r .. '<th>' .. val .. '</th>'
end
end
return '<tr class="comptable2-header"><th> </th>' .. r .. '</tr>'
end
function p.lsep2(frame)
if frame == mw.getCurrentFrame() then
origArgs = frame:getParent().args
else
origArgs = frame
end
local r = ''
for i = 2, 30 do
local val = origArgs[i]
if not val then break end
if string.find(val, ":") then
r = r .. string.gsub(val, "(%d+):(.+)", '<th colspan="%1" style="text-align: left;">%2</th>')
else
r = r .. '<th style="text-align: left;">' .. val .. '</th>'
end
end
return '<tr class="comptable2-header"><th> </th>' .. r .. '</tr>'
end
function p.cols2(frame)
if frame == mw.getCurrentFrame() then
origArgs = frame:getParent().args
else
origArgs = frame
end
local r = ''
for i = 2, 30 do
local val = origArgs[i]
if not val then break end
if string.match(val, '^%%.+') then
r = r .. '<th data-sort-type="number">' .. string.sub(val, 2) .. '</th>'
else
r = r .. '<th>' .. val .. '</th>'
end
end
return '<tr class="comptable2-header"><th class="unsortable">Model</th>' .. r .. '</tr>'
end
return p