To create new wiki account, please join us on #znc at Libera.Chat and ask admins to create a wiki account for you. You can say thanks to spambots for this inconvenience.

Module:ChangeLog: Difference between revisions

From ZNC
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
local p = {}
local p = {}
function p.prev(frame)
function p.prev(frame)
   return mw.text.split(frame:expandTemplate{title='ZNC-Versions'}, '%s')[4]
   local versions = mw.text.split(frame:expandTemplate{title='ZNC-Versions'}, '%s')
  local s = ''
  for i = 1, #versions, 1 do
    s = s .. ' ' .. tostring(i) .. '=' .. versions[i]
  end
  return s
end
end
function p.next(frame)
function p.next(frame)

Revision as of 09:02, 2 April 2017

Documentation for this module may be created at Module:ChangeLog/doc

local p = {}
function p.prev(frame)
  local versions = mw.text.split(frame:expandTemplate{title='ZNC-Versions'}, '%s')
  local s = ''
  for i = 1, #versions, 1 do
    s = s .. ' ' .. tostring(i) .. '=' .. versions[i]
  end
  return s
end
function p.next(frame)
  return 'Hello'
end
function p.stability(frame)
  return 'stable'
end
return p