Difference between revisions of "Module:Changes"

From Industrial-Craft-Wiki
Jump to navigation Jump to search
m (Gah, I have other things that need to be done. I'll fix this later)
m (Lots of that might not be working simply as n was nil...)
Line 6: Line 6:
   local groups = {}
   local groups = {}
   local s = nil
   local s = nil
  local n = 1


   if f == mw.getCurrentFrame() then
   if f == mw.getCurrentFrame() then
Line 11: Line 12:
   end
   end
   
   
   --repeat s = args["change" .. n]
   repeat s = args["change" .. n]
  --if args["loop"] == nil then
      groups[n] = "<li>" .. args["change" .. n] .. "</li>"
   --  local loop = 0
      n = n + 1
  --else
   until s == nil
  --  local loop = tonumber(args["loop"])
 
  --end
   --for i = 1,loop,1 do
   --for i = 1,loop,1 do
       s = args["change" .. i]
       --s = args["change" .. i]
       groups[i] = "<li>" .. s .. "</li>"
       --groups[i] = "<li>" .. s .. "</li>"
      --groups[n] = "<li>" .. args["change" .. n] .. "</li>"
  --until s == nil
   --end
   --end



Revision as of 17:05, 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 = {}

-- Changes
function p.changes( f )
   local args = f
   local groups = {}
   local s = nil
   local n = 1

   if f == mw.getCurrentFrame() then
       args = f:getParent().args
   end
 
   repeat s = args["change" .. n]
      groups[n] = "<li>" .. args["change" .. n] .. "</li>"
      n = n + 1
   until s == nil

   --for i = 1,loop,1 do
      --s = args["change" .. i]
      --groups[i] = "<li>" .. s .. "</li>"
   --end

   local back = "Arguments <br/>"
   for key,value in pairs(groups) do 
      back = back .. value .. "<br/>"
   end
   return back
end

return p