Module:Layout/Production/View/Book
Uiterlijk
Deze module is nog in ontwikkeling (versie 0.0) en wordt getest.
De Module:Layout is bedoeld om snel, consistent en uitgebreid een pagina op te maken.
Er is een op de module afgestemde handleiding over deze onderwijswiki beschikbaar.
De module wordt geïnitialiseerd met de configuratie in Module:Layout/Production/Configuration.
local book = {};
local private = {};
function book.main( call )
local toc, infobox, progress, logo, definition, description, bookshelf, gradient, wikipedia, category, wikijunior =
call.include( "toc", "infobox", "progress", "logo", "definition", "description", "bookshelf", "gradient", "wikipedia", "category", "wikijunior" );
local br = mw.html.create('br');
local response = "";
local background_color = call.color[3].tints[8];
local box_color = call.color[3].shades[2];
local text_color = call.color[3].tints[2];
response = response .. toc.none();
response = response .. progress.box( call );
response = response .. infobox.icon( "", call );
response = response .. logo.box( call );
response = response .. definition.box( call.definition, background_color );
response = response .. description.box( call.description, text_color );
response = response .. bookshelf.box( box_color, call.content.series.image, call.content.series.link, call.content.series.book, call );
response = response .. toc.box( call.content.chapter, call.content.max_number_of_chapter_title_lines, call.content.max_number_of_chapter_headings)
response = response .. gradient.box( table.concat( call.content.text, tostring(br)..tostring(br) ), 'left', box_color, call.style.BLACK );
if call.content.wikipedia then
response = response .. wikipedia.box( call );
else
response = response .. category.link( call.message.CATEGORY.WIKIPEDIA_LINK_MISSING, call );
end
if call.content.wikijunior then response = response .. wikijunior.box( call ); end
return response;
end
return book;