Módulo:List
Aspeto
test
-- Based on parseCollectionLine from https://gerrit.wikimedia.org/r/gitweb?p=mediawiki/extensions/Collection.git;a=blob;f=Collection.body.php;hb=f2bd4ee2be12ab3df5f2dcb3bd56ff17247fff66#l793)
-- Get "Book/Title" from a line in any of these formats:
-- :[[Book/Title]]
-- :[[Book/Title|Text]]
-- :[{{fullurl:Book/Title|oldid=12345}} Text]
function getChapterFromLine( line )
local title = string.match( line, "^%s*:%s*%[%[:?(.-)|(.-)%]%]%s*$" ) or
string.match( line, "^%s*:%s*%[%[:?(.-)%]%]%s*$" ) or
string.match( line, "^%s*:%s*%[{{fullurl:(.-)|oldid=.-}}%s+.-]%s*$" ) or
""
return title:gsub('_',' ')
end
-- Adapted from http://lua-users.org/wiki/SplitJoin
function getListOfChaptersFromText(str)
local delim = "\r?\n+"
local result = {}
if string.find(str, delim) == nil then
-- This book doesn't have a collection page
return result;
end
local pat = "(.-)" .. delim .. "()"
local nb = 0
local lastPos
for line, pos in string.gfind(str, pat) do
nb = nb + 1
result[nb] = getChapterFromLine( line )
lastPos = pos
end
result[nb + 1] = getChapterFromLine( string.sub(str, lastPos) )
return result
end