Módulo:Asbox/Testes

Origem: Wikipédia, a enciclopédia livre.
Documentação do módulo[ver] [editar] [histórico] [purgar]


Módulo:Asbox (discussão ·  · hist · links · doc · subpages · testes (resultados· Testes ( · subpáginas))


Este módulo implementa a predefinição {{Asbox}}.

local WRAPPER_TEMPLATE, args = 'Predefinição:Asbox'
local p, Buffer, stubCats = {
    --Prevents dupli-cats... get it? Maybe not?
    cats = setmetatable({}, {__newindex = function(t, i, v)
        if not rawget(t, i) then
            rawset(t, i, v)
            table.insert(t, i)
        end
    end}),
    --initializes variables required by both p.main and p.templatepage
    init = function(self, frame, page)
        args, page = args or require('Módulo:Arguments').getArgs(frame, {
            wrappers = WRAPPER_TEMPLATE
        }), page or mw.title.getCurrentTitle()
        --Ensures demo parameter will never affect category() output for articles
        self.demo = self.demo or page.namespace ~= 0 and args.demo
        return args, page
    end
}, require('Módulo:Buffer')

--[[
Formats category links. Stores them until called with cat.done=true
Takes multiple or single categories in the form of 'cat'
or a table of strings and/or tables containing parts. (See below)
]]
local attention, catTag, catKey = Buffer'!Predefinições de mensagem de esboços que necessitam de atenção', '[[Categoria:%s]]', '%s|%s%s'
local function category(cat)
    for _, v in ipairs((tostring(cat) == cat or cat.t) and {cat} or cat) do
        --[[
        If v is a table:
            [1] = full category name; defaults to local attention if blank
            k = Category sort key. Prefix before v.t
            t = page.texto or args.tempsort#; appended after k (or in its place if omitted). Required if v is not a string
        Basically the same as v = (v[1] or attention) .. ' | ' .. (v.k or '') .. v.t
        ]]
        if v and v ~= true then--reject v = nil, false, or true
            p.cats[catTag:format(tostring(v) == v and
                v
                or (v[1] and Buffer(v[1]) or attention):_in(v.k):_(v.t):_str(2, nil, nil, '|')
            )] = true
        end
    end
    return cat.done and table.concat(p.cats, p.demo and ' | ' or nil) or ''
end

--[[
Makes an ombox warning;
Takes table {ifNot = Boolean, text, {cat. sort key, cat. sort name}}
Will return an empty string instead when ifNot evaluates to true
]]
local function ombox(v)
    if v.ifNot then return end
    p.ombox = p.ombox or require('Módulo:Message box').ombox
    category{v[2]}
    return p.ombox{
        type = 'content',
        text = v[1]
    }
end

--[[
Unlike original template, module now takes unlimited cats! This function also performs
most stub category error checks except for the ombox for when main |category= is omitted (See p.template())
]]
local function catStub(page, pageDoc)
    stubCats = {missing = {}, v = {}}
    local code
    for k, _ in pairs(args) do
        --Find category parameters and store the number (main cat = '')
        table.insert(stubCats, string.match(k, '^categoria(%d*)$'))
    end
    table.sort(stubCats)
    for k, v in ipairs(stubCats) do
        --Get category names and, if called by p.templatepage, the optional sort key
        local tsort, cat = args['tempsort' .. v], mw.ustring.gsub(args['categoria' .. v], '[^%w%p%s]', '')--remove all hidden unicode chars
        --Do not place template in main category if |tempsort = 'no'. However, DO place articles of that template in the main category.
        table.insert(stubCats.v,
             page and (--p.templatepage passes page; p.main does not, i.e. articles are categorized without sort keys.
                v=='' and tsort == 'no'--if true, inserts 'true' in table, which category() will reject
                or tsort and {cat, k = ' ', t = tsort}
                or {cat, k = ' *', t = page.texto}--note space in front of sort key
            )
            or cat
        )
        --Check category existance only if on the template page (i.e. stub documentation)
        if page then
            if not mw.title.new('Categoria:' .. cat).exists then
                code = code or mw.html.create'code':wikitext'|categoria'
                table.insert(stubCats.missing, tostring(mw.clone(code):wikitext(v)))
            end
            --[[
            Checks non-demo stub template for documentation and flags if doc is present.
            All stub cats names are checked and flagged if it does not match 'Category: [] stub'.
            The main stub cat is exempt from the name check if the stub template has its own doc
            (presumably, this doc would have an explanation as to why the main stub cat is non-conforming).
            ]]
            table.insert(stubCats.v, v == '' and not p.demo and pageDoc.exists and
                '!Predefinições de mensagem de esboços com subpáginas de documentação'
                or not cat:match'^!Esboços $' and {k = 'S', t = page.texto}
            )
        end
    end
    --Add category names after loop is completed
    category(stubCats.v)
    return #stubCats.missing > 0 and ombox{
        --Changed, original msg:
        --One or more of the stub categories defined in this template do not seem to exist!
        --Please double-check the parameters {{para|category}}, {{para|category1}} and {{para|category2}}.
        #stubCats.missing == 1 and 'O seguinte parâmetro define uma categoria de esboço que não existe:'
        or 'Os seguintes parâmetros definem categorias de esboço que não existem:'
        .. mw.text.listToText(stubCats.missing),
        {k = 'N', t = page.texto}
    }
end

--Shows population of categories found by catStub(). Outputs demo values if none
local function population()
    local wikitext, base = {}, '* [[:Categoria:%s]] (população: %s)\n'
    if not args.categoria and stubCats[1] ~= false then
        table.insert(stubCats, 1, false)
    end
    for _, v in ipairs(stubCats) do
        table.insert(wikitext, base:format(
            v and args['categoria' .. v] or '{{{categoria}}}',
            v and mw.site.stats.pagesInCategory(args['categoria' .. v], 'all') or 0
        ))
    end
    return table.concat(wikitext)
end

--Includes standard stub documention and flags stub templates with bad parameter values.
function p.templatepage(frame, page)
    args, page = p:init(frame, page)
    local tStubDoc = mw.title.new'Predefinição:Documentação de esboço'
    local pageDoc = page:subPageTitle('doc')
    --Reorganization note: Original Asbox alternates between outputting categories and checking on params |category#=.
    --Rather than checking multiple times and switching tasks, all stub category param operations have been rolled into catStub()
    return Buffer(
        ombox{--Show ombox warnings for missing args.
            ifNot = args.categoria,
            'O parâmetro {{parâmetro|categoria}} não está definido. Por favor adicione uma categoria de esboço apropriada.',
            {k = 'C', t = page.texto}
        })
        :_(ombox{
            ifNot = args.assunto or args.artigo or args.qualificador,
            'Esta predefinição de esboço não contém descrição! Ao menos um dos parâmetros {{parâmetro|assunto}}, {{parâmetro|artigo}} ou {{parâmetro|qualificador}} deve estar definido.',
            {k = 'D', t = page.texto}
        })
        :_(catStub(page, pageDoc))--catStub() may also return an ombox if there are non-existing categories
        :_(category{
            done = p.demo ~= 'doc',--Outputs categories if not doc demo
            '!Predefinições de mensagem de esboço',
            'Excluir ao imprimir',
            args.icon and
                '!Predefinições de mensagem de esboço que usam parâmetro ícone'
                or args.image and (
                    mw.title.new('Media:' .. mw.text.split(args.image, '|')[1]).exists--do nothing if exists. category() will reject true
                    or {k = 'B', t = page.texto}
                )
                or '!Predefinições de mensagem de esboço sem imagem',
            args.imagealt and {k = 'I', t = page.texto},
        })
        :_((not p.demo or p.demo == 'doc') and--Add standard stub template documentation
            require('Module:Documentação').main{
                content = Buffer(page.texto ~= 'Esboço' and--This comparison performed in {{Asbox/stubtree}} before it invokes Module:Asbox árvore de esboços
                        require('Module:Asbox árvore de esboços').subtree{args = {pagename = page.texto}}
                    )
                    :_in'\n== Acerca desta predefinição ==\nEsta predefinição é usada para identificar um esboço sobre':_(args.subject or args.assunto):_(args.qualifier or args.qualificador):_out' '--space
                    :_'. Ela usa {{[[Predefinição:Asbox|asbox]]}}, que é uma metapredefinição designada para facilitar o processo de criar e manter predefinições de esboço.\n=== Uso ===\nDdigitar '
                    :_(mw.html.create'code'
                        :wikitext('{{', page.texto == 'Esboço' and 'esboço' or page.texto == 'Esboço' and 'esboço' or page.texto, '}}')
                    )
                    :_' produz a mensagem exibida no começo e adiciona o artigo '
                    :_(#stubCats > 1 and 'às seguintes categorias' or 'à seguinte categoria')
                    :_':\n'
                    :_(population())
                    :_(pageDoc.exists and--transclusion of /doc if it exists
                        frame:expandTemplate{title = pageDoc.texto}
                    )
                    :_'\n== Informação geral ==\n'
                    :_(frame:expandTemplate{title = tStubDoc.texto})
                    :_'\n\n'(),
                ['link box'] = Buffer'Esta documentação é gerada automaticamente por [[Módulo:Asbox]].'
                    :_in'A informação geral é transcluída de [[Predefinição:Documentação de esboço]]. '
                        :_(mw.html.create'span'
                            :cssText'font-size:smaller;font-style:normal;line-height:130%'
                            :node(('([%s editar] | [%s histórico])'):format(
                                tStubDoc:fullUrl('action=edit', 'relative'),
                                tStubDoc:fullUrl('action=history', 'relative')
                            ))
                        )
                        :_out()
                    :_(page.protectionLevels.edit and page.protectionLevels.edit[1] == 'sysop' and
                        "Esta proteção está [[Wikipédia:Página protegida|completamente protegida]] e quaisquer [[WP:CAT|categorias]] devem ser adicionadas à subpágina ["
                        .. pageDoc:fullUrl('action=edit&preload=Template:Category_interwiki/preload', 'relative')
                        .. '| /doc] da predefinição, que não está protegida.'
                    )' <br/>'
            }
        )()
end

function p.main(frame, page)
    args, page = p:init(frame, page)
    local output = mw.html.create'table'
        :addClass'metadata plainlinks stub'
        :css{background = 'transparent'}
        :attr{role = 'presentation'}
        :tag'tr'
            :node((args.icon or args['ícone'] or args.image or args.imagem) and
                mw.html.create'td'
                    :wikitext(args.icon or args['ícone'] or ('[[Ficheiro:%s|%spx|alt=%s]]'):format(
                        args.image or args.imagem or '',
                        args.pix or '40x30',
                        args.imagealt or args.altimagem or 'Ícone de esboço'
                    ))
            )
            :tag'td'
                :tag'i'
                    :wikitext(
                        Buffer(args.article or args.artigo or 'Este artigo'):_(args.subject or args.assunto):_(args.qualifier or args.qualificador)' ',--space
                        ' é um [[Wikipédia:esboço|esboço]]. Pode ajudar a Wikipédia ao [',
                        page:fullUrl('action=edit', 'relative'),
                        ' expandi-lo].'
                    )
                :done()
                :node(args.name and
                    require'Módulo:Navbar'._navbar{
                        args.name,
                        mini = 'yes',
                        style = 'position: absolute; right: 15px; display: none;'
                    }
                )
                :node(args.note and
                    mw.html.create()
                        :tag'br':done()
                        :tag'span'
                            :css{['font-style'] = 'normal', ['font-size'] = 'smaller'}
                            :wikitext(args.note)
                        :done()
                )
        :allDone()
    --[[
    Stub categories for templates include a sort key; this ensures that all stub tags appear at the beginning of their respective categories.
    Articles using the template do not need a sort key since they have unique names.
    When p.demo equals 'doc', the demo stub categories will appear as those for a stub template.
    Otherwise, any non-nil p.demo will emulate article space categories (plus any error cats unless set to 'art')
    ]]
    if page.namespace == 0 then -- Main namespace
        category'!Esboços'
        catStub()
    elseif p.demo then
        if p.demo ~= 'doc' then catStub() end
        --Unless p.demo is set to 'art', it will also include error categories normally only shown on
        --the template but not in the article. The elseif after namespace == 0 means demo cats will never show in article space.
        p.demodoc = p.demo ~= 'art' and p.templatepage(frame, page)
        output = mw.html.create()
            :node(output)
            :tag'small':wikitext(
                'Categorias demo: ',
                (category{done = true}:gsub('(%[%[)(Categoria:)([^|%]]-)(%|)', '%1%2%3|%2%3%4'):gsub('(%[%[)(Categoria:)', '%1:%2'))
            ):done()
            :wikitext(p.demo == 'doc' and p.demodoc or nil)
    else
        --Checks for valid name; emulates original template's check using {{FULLPAGENAME:{{{name|}}}}}
        local normalizedName = mw.title.new(args.nome or '')
        if normalizedName and normalizedName.fullText == page.fullText then
            output = mw.html.create():node(output):wikitext(p.templatepage(frame, page))
        elseif not page.isSubpage and page.namespace == 10 then-- Template namespace and not a subpage
            category{{k = args.nome and 'E' or 'W', t = page.texto}}
        end
    end
    return output:wikitext(not p.demo and category{done = true} or nil)
end

return p