Difference between revisions of "Module:Changes"

From Industrial-Craft-Wiki
Jump to navigation Jump to search
m (Logically this should be ok)
m (This will make it look nicer)
Line 5: Line 5:
   local s = nil
   local s = nil
   local n = 1
   local n = 1
   local back = "Arguments <br/><ul>"
   local back = "<br/><ul>" --"Arguments <br/><ul>"


   repeat s = args["change" .. n]
   repeat s = args["change" .. n]
Line 23: Line 23:
   back = p.list(args)
   back = p.list(args)
   if args["IC²"] ~= nil then
   if args["IC²"] ~= nil then
       back = "IC²" .. (args["version"] or "") .. back
       back = "IC² v" .. (args["version"] or "") .. back
   else
   else
       back = "IC" .. (args["version"] or "") .. back
       back = "IC v" .. (args["version"] or "") .. back
   end
   end
   if args["notlast"] ~= nil then
   if args["notlast"] ~= nil then

Revision as of 19:25, 10 February 2015

Template-info.png Documentation

Replacement Lua scripting to do what Template:Changes does/did, but in a more flexible way.

  • It supports the new structure of Version History.
  • It can have as many changes as needed, providing that they go up sequencially, and numbers are not missed out (change1, change2, change3 is ok, but change1, change3 isn't).
  • It should be faster.

Message me (Chocohead) either on the wiki (here) or on the Forum if you find any problems.

The above documentation is transcluded from Module:Changes/doc. (edit | history)


local p = {}

-- Generate list
function p.list( args )
   local s = nil
   local n = 1
   local back = "<br/><ul>" --"Arguments <br/><ul>"

   repeat s = args["change" .. n]
      if s ~= nil then
         back = back .. "<li>" .. s .. "</li>"
         n = n + 1
      end
   until s == nil

   return back .. "</ul>"
end

function p.changes( f )
   if f == mw.getCurrentFrame() then
       args = f:getParent().args
   end
   back = p.list(args)
   if args["IC²"] ~= nil then
      back = "IC² v" .. (args["version"] or "") .. back
   else
      back = "IC v" .. (args["version"] or "") .. back
   end
   if args["notlast"] ~= nil then
      back = back .. "<br/><hr style=\"width:auto;\"><br/>"
   end
   return back
end

return p