Modul:TemplateData: Unterschied zwischen den Versionen

2021-05-03
K (Datum)
(2021-05-03)
Zeile 1: Zeile 1:
local TemplateData = { suite  = "TemplateData",
local TemplateData = { suite  = "TemplateData",
                       serial = "2020-04-02",
                       serial = "2021-05-03",
                       item  = 46997995 }
                       item  = 46997995 }
--[=[
--[==[
improve template:TemplateData
improve template:TemplateData
]=]
]==]
local Failsafe = TemplateData
local Failsafe = TemplateData




Zeile 13: Zeile 12:
     basicCnf = { catProblem    = "strange",
     basicCnf = { catProblem    = "strange",
                 classNoNumTOC = "suppressTOCnum",
                 classNoNumTOC = "suppressTOCnum",
                classTable    = "classTable",
                 cssParWrap    = "cssTabWrap",
                 cssParWrap    = "cssTabWrap",
                 cssParams    = "cssTable",
                 cssParams    = "cssTable",
Zeile 31: Zeile 31:
                 msgDescMiss  = "solo",
                 msgDescMiss  = "solo",
                 tStylesTOCnum = "stylesTOCnum" },
                 tStylesTOCnum = "stylesTOCnum" },
--  classParams    = "classTable",
    classTable    = { "wikitable" },    -- classes for params table
--  classTable    = false,    -- class for params table
     debugmultilang = "C0C0C0",
     debugmultilang = "C0C0C0",
     loudly        = false,    -- show exported element, etc.
     loudly        = false,    -- show exported element, etc.
Zeile 49: Zeile 48:
     got    = false,    -- table, initial templatedata object
     got    = false,    -- table, initial templatedata object
     heirs  = false,    -- table, params that are inherited
     heirs  = false,    -- table, params that are inherited
    jump    = false,    -- source position at end of "params"
     less    = false,    -- main description missing
     less    = false,    -- main description missing
     lasting = false,    -- old syntax encountered
     lasting = false,    -- old syntax encountered
Zeile 67: Zeile 67:
}
}
local Permit = {
local Permit = {
     builder = { after     = "block",
     builder = { after           = "block",
                 align     = "block",
                 align           = "block",
                 block     = "block",
                 block           = "block",
                 compressed = "block",
                 compressed     = "block",
                 dense     = "block",
                 dense           = "block",
                 grouped   = "inline",
                 grouped         = "inline",
                 half       = "inline",
                 half           = "inline",
                 indent     = "block",
                 indent         = "block",
                 inline     = "inline",
                 inline         = "inline",
                 last       = "block",
                 last           = "block",
                 lead       = "block",
                 lead           = "block",
                 newlines   = "*",
                 newlines       = "*",
                 spaced     = "inline" },
                 spaced         = "inline" },
     colors  = { tableheadbg = "B3B7FF",
     colors  = { tableheadbg = "B3B7FF",
                 required    = "EAF3FF",
                 required    = "EAF3FF",
Zeile 85: Zeile 85:
                 optional    = "EAECF0",
                 optional    = "EAECF0",
                 deprecated  = "FFCBCB" },
                 deprecated  = "FFCBCB" },
     params  = { aliases     = "table",
     params  = { aliases         = "table",
                 autovalue   = "string",
                 autovalue       = "string",
                 default     = "string table I18N nowiki",
                 default         = "string table I18N nowiki",
                 deprecated = "boolean string I18N",
                 deprecated     = "boolean string I18N",
                 description = "string table I18N",
                 description     = "string table I18N",
                 example     = "string table I18N nowiki",
                 example         = "string table I18N nowiki",
                 label       = "string table I18N",
                 label           = "string table I18N",
                 inherits   = "string",
                 inherits       = "string",
                 required   = "boolean",
                 required       = "boolean",
                 style       = "string table",
                 style           = "string table",
                 suggested   = "boolean",
                 suggested       = "boolean",
                 type       = "string" },
                suggestedvalues = "string table number",
                 type           = "string" },
     root    = { description = "string table I18N",
     root    = { description = "string table I18N",
                 format      = "string",
                 format      = "string",
Zeile 212: Zeile 213:
                                   :gsub( "([%-.()+*?^$%[%]])",
                                   :gsub( "([%-.()+*?^$%[%]])",
                                           "%%%1" ) )
                                           "%%%1" ) )
     local i, k = Data.source:find( seek, at )
     local i, k, r, slice, source
     local r, slice, source
    if not Data.jump then
        Data.jump = Data.source:find( "params", 2 )
        if Data.jump then
            Data.jump = Data.jump + 7
        else
            Data.jump = 1
        end
    end
     i, k = Data.source:find( seek, at + Data.jump )
     while i  and  not r do
     while i  and  not r do
         source = Data.source:sub( k + 1 )
         source = Data.source:sub( k + 1 )
Zeile 224: Zeile 233:
             r = k
             r = k
         else
         else
             i, k = Data.source:find( seek, k )
             i, k = Data.source:find( seek, k )
         end
         end
     end    -- while i
     end    -- while i
Zeile 292: Zeile 301:
     --    adjust  -- string
     --    adjust  -- string
     -- Returns string, with adjusted text
     -- Returns string, with adjusted text
     local f = function ( a )
     local f   = function ( a )
                  return a:gsub( "%s*\n%s*", " " )
                    return a:gsub( "%s*\n%s*", " " )
                          :gsub( "%s%s+", " " )
                            :gsub( "%s%s+", " " )
              end
                end
     local r
     local tags = { { start = "<noexport>",
    if adjust:find( "<noexport>", 1, true ) then
                    stop  = "</noexport>" },
        local i    = 1
                  { start = "<exportonly>",
        local j, k = adjust:find( "<noexport>", i, true )
                    stop  = "</exportonly>",
        r = ""
                    l    = false }
        while j do
                }
            if j > 1 then
    local r = adjust
                r = r .. f( adjust:sub( i, j - 1 ) )
    local i, j, k, s, tag
             end
    for m = 1, 2 do
             i = k + 1
        tag = tags[ m ]
             j, k = adjust:find( "</noexport>", i, true )
        if r:find( tag.start, 1, true ) then
             if j then
            s    = r
                r   = r .. adjust:sub( i,  j - 1 )
             r    = ""
             i     = 1
            tag.l = true
             j, k = s:find( tag.start, i, true )
             while j do
                if j > 1 then
                    r = r .. f( s:sub( i,  j - 1 ) )
                end
                 i    = k + 1
                 i    = k + 1
                 j, k = adjust:find( "<noexport>", i, true )
                 j, k = s:find( tag.stop, i, true )
            else
                if j then
                Fault( "missing </noexport>" )
                    if m == 1 then
            end
                        r = r .. s:sub( i,  j - 1 )
        end    -- while j
                    end
        r = r .. adjust:sub( i )
                    i    = k + 1
     else
                    j, k = s:find( tag.start, i, true )
         r = f( adjust )
                else
                    Fault( "missing " .. tag.stop )
                end
            end    -- while j
            r = r .. s:sub( i )
        else
            r = f( r )
        end
    end -- for m
     if tags[ 2 ].l then
         r = r:gsub( "<exportonly>.*</exportonly>", "" )
     end
     end
     return r
     return r
Zeile 382: Zeile 408:
         if type( v ) == "string" then
         if type( v ) == "string" then
             v = mw.text.trim( v )
             v = mw.text.trim( v )
             if v ~= "" then
             if v ~= ""  and  type( k ) == "string" then
                 k = k:lower()
                 k = k:lower()
                 variants[ k ] = v
                 variants[ k ] = v
Zeile 650: Zeile 676:




local function feat()
local function feasible( about, at )
     -- Check and store parameter sequence
     -- Deal with suggestedvalues within parameter
     if Data.source then
    -- Parameter:
        local i = 0
    --    about  -- parameter details
        local s
     --              .suggestedvalues  -- table|string|number,
        for k, v in pairs( Data.tree.params ) do
    --                                    value and possibly description
            if i == 0 then
    --                                    .code  -- mandatory
                Data.order = { }
    --                                    .label  -- table|string
                i = 1
    --                                    .icon  -- string
                s = k
    --                                    .class  -- table|string
            else
    --                                    .css    -- table
                i = 2
    --                                    .style  -- string
                break -- for k, v
    --                                    .less  -- true: suppress code
            end
    --              .type
        end -- for k, v
    --    at    -- string, with parameter name
        if i > 1 then
    -- Returns
            local pointers = { }
    --    1: mw.html object
            local points  = { }
    --     2: sequence table with values, or nil
            local given    = { }
    local p = about.suggestedvalues
             for k, v in pairs( Data.tree.params ) do
    local s = type( p )
                 i = facet( k, 1 )
    local e, r1, r2, v
                 if type( v ) == "table" then
    if s == "table" then
                     if type( v.label ) == "string" then
        if #p > 0 then
                         s = mw.text.trim( v.label )
             for i = 1, #p do
                         if s == "" then
                 e = p[ i ]
                             s = k
                s = type( e )
                         end
                 if s == "table" then
                     if type( e.code ) == "string" then
                         s = mw.text.trim( e.code )
                         if s == "" then
                             e = nil
                        else
                            e.code = s
                        end
                    else
                        e = nil
                         s = string.format( "params.%s.%s[%d] %s",
                                          at,
                                          "suggestedvalues",
                                          i,
                                          "MISSING 'code:'" )
                    end
                elseif s == "string" then
                    s = mw.text.trim( e )
                    if s == "" then
                        e = nil
                        s = string.format( "params.%s.%s[%d] EMPTY",
                                          at, "suggestedvalues", i )
                        Fault( s )
                     else
                     else
                         s = k
                         e = { code = s }
                     end
                     end
                    if given[ s ] then
                elseif s == "number" then
                        if given[ s ] == 1 then
                    e = { code = tostring( e ) }
                            local scream = "Parameter label '%s' detected multiple times"
                else
                            Fault( string.format( scream, s ) )
                    s = string.format( "params.%s.%s[%d] INVALID",
                            given[ s ] = 2
                                      at, "suggestedvalues", i )
                        end
                    Fault( s )
                     else
                end
                         given[ s ] = 1
                if e then
                    v = v  or  { }
                    table.insert( v, e )
                end
            end -- for i
        else
            Fault( string.format( "params.%s.suggestedvalues %s",
                  at, "NOT AN ARRAY" ) )
        end
    elseif s == "string" then
        s = mw.text.trim( p )
        if s ~= "" then
            v = { }
            table.insert( v,
                          { code = s } )
        end
    elseif s == "number" then
        v = { }
        table.insert( v,
                      { code = tostring( p ) } )
    end
    if v then
        local d, less, story, swift, t, u
        r1 = mw.html.create( "ul" )
        r2 = { }
        for i = 1, #v do
            e = v[ i ]
            table.insert( r2, e.code )
            u    = mw.html.create( "li" )
            less = ( e.less == true )
            if not less then
                swift = e.code
                if about.type:sub( 1, 5 ) == "wiki-" then
                    local rooms = { file = 6,
                                    temp = 10,
                                    user = 2 }
                    local ns = rooms[ about.type:sub( 6, 9 ) ]  or  0
                    t = mw.title.makeTitle( ns, swift )
                     if t and t.exists then
                         swift = string.format( "[[:%s|%s]]",
                                              t.prefixedText, swift )
                     end
                     end
                 end
                 end
                 if i then
                 u:node( mw.html.create( "code" )
                    table.insert( points, i )
                              :css( "white-space", "nowrap" )
                    pointers[ i ] = k
                              :wikitext( swift ) )
                    i = facet( k, i )
            end
                    if i then
            if e.class then
                        s = "Parameter '%s' detected twice"
                s = type( e.class )
                        Fault( string.format( s, k ) )
                if s == "string" then
                     end
                    u:addClass( e.class )
                elseif s == "table" then
                    for k, s in pairs( e.class ) do
                        u:addClass( s )
                     end -- for k, s
                 else
                 else
                     s = "Parameter '%s' not detected"
                     s = string.format( "params.%s.%s[%d].class INVALID",
                     Fault( string.format( s, k ) )
                                      at, "suggestedvalues", i )
                     Fault( s )
                 end
                 end
             end -- for k, v
             end
             table.sort( points )
             if e.css then
            for i = 1, #points do
                if type( e.css ) == "table" then
                 table.insert( Data.order, pointers[ points[ i ] ] )
                    u:css( e.css )
             end -- i = 1, #points
                 else
        elseif s then
                    s = string.format( "params.%s.%s[%d].css INVALID",
            table.insert( Data.order, s )
                                      at, "suggestedvalues", i )
        end
                    Fault( s )
    end
                end
end -- feat()
             end
 
            if e.style then
 
                if type( e.style ) == "string" then
 
                    u:cssText( e.style )
local function feature( access )
                else
    -- Create table row for parameter, check and display violations
                    s = string.format( "params.%s.%s[%d].style INVALID",
    -- Parameter:
                                      at, "suggestedvalues", i )
    --    access  -- string, with name
                    Fault( s )
    -- Returns <tr>
                end
    local mode, s, status
            end
    local fine    = function ( a )
            if about.type == "wiki-file-name"  and  not e.icon then
                        s = mw.text.trim( a )
                e.icon = e.code
                        return a == s  and
            end
                              a ~= "" and
            if e.label then
                              not a:find( "%|=\n" ) and
                s = type( e.label )
                              not a:find( "%s%s" )
                if s == "string" then
                    s = mw.text.trim( e.label )
                    if s == "" then
                        s = string.format( "params.%s.%s[%d].label %s",
                                          at,
                                          "suggestedvalues",
                                          i,
                                          "EMPTY" )
                    else
                        story = s
                    end
                elseif s == "table" then
                    story = faraway( e.label )
                else
                    s = string.format( "params.%s.%s[%d].label INVALID",
                                      at, "suggestedvalues", i )
                    Fault( s )
                end
            end
            s = false
            if type( e.icon ) == "string" then
                t = mw.title.makeTitle( 6, e.icon )
                if t and t.file.exists then
                    s = string.format( "[[%s|16px]]", t.prefixedText )
                end
            end
            if not s  and not less  and  e.label then
                s = mw.ustring.char( 0x2013 )
            end
            if s then
                d = mw.html.create( "span" )
                          :wikitext( s )
                if TemplateData.ltr then
                    if not less then
                        d:css( "margin-left", "0.5em" )
                    end
                    if story then
                        d:css( "margin-right", "0.5em" )
                    end
                else
                    if not less then
                        d:css( "margin-right", "0.5em" )
                    end
                    if story then
                        d:css( "margin-left", "0.5em" )
                     end
                     end
     local begin  = mw.html.create( "td" )
                end
    local code    = mw.html.create( "code" )
                u:node( d )
    local desc    = mw.html.create( "td" )
            end
    local legal  = true
            if story then
     local param  = Data.tree.params[ access ]
                u:wikitext( story )
     local ranking = { "required", "suggested", "optional", "deprecated" }
            end
    local r      = mw.html.create( "tr" )
            r1:newline()
    local sort, typed
              :node( u )
        end -- for i
    end
     if not r1 then
        Fault( string.format( "params.%s.suggestedvalues INVALID", at ) )
        r1 = mw.html.create( "code" )
                    :addClass( "error" )
                    :wikitext( "INVALID" )
     end
     return r1, r2
end -- feasible()


    for k, v in pairs( param ) do
        if v == "" then
            param[ k ] = false
        end
    end -- for k, v


    -- label
    sort = param.label or access
    if sort:match( "^%d+$" ) then
        begin:attr( "data-sort-value",
                    string.format( "%05d", tonumber( sort ) ) )
    end
    begin:css( "font-weight", "bold" )
        :wikitext( sort )


    -- name and aliases
local function feat()
    code:css( "font-size", "92%" )
     -- Check and store parameter sequence
        :css( "white-space", "nowrap" )
     if Data.source then
        :wikitext( access )
         local i = 0
     if not fine( access ) then
         local s
        code:addClass( "error" )
         for k, v in pairs( Data.tree.params ) do
        Fault( string.format( "Bad ID params.<code>%s</code>", access ) )
             if i == 0 then
        legal = false
                 Data.order = { }
        begin:attr( "data-sort-value",  " " .. sort )
                 i = 1
     end
                 s = k
    code = mw.html.create( "td" )
                  :node( code )
    if access:match( "^%d+$" ) then
         code:attr( "data-sort-value",
                  string.format( "%05d", tonumber( access ) ) )
    end
    if type( param.aliases ) == "table" then
         local lapsus
         for k, v in pairs( param.aliases ) do
            code:tag( "br" )
             if type( v ) == "string" then
                 if not fine( v ) then
                    lapsus = true
                    code:node( mw.html.create( "span" )
                                      :addClass( "error" )
                                      :css( "font-style", "italic" )
                                      :wikitext( "string" ) )
                 end
                 code:node( mw.html.create( "code" )
          :css( "font-size", "92%" )
              :css( "white-space", "nowrap" )
                  :wikitext( s ) )
             else
             else
                 lapsus = true
                 i = 2
                 code:node( mw.html.create( "code" )
                 break -- for k, v
                                  :addClass( "error" )
                                  :wikitext( type( v ) ) )
             end
             end
         end -- for k, v
         end -- for k, v
         if lapsus then
         if i > 1 then
             s = string.format( "params.<code>%s</code>.aliases", access )
             local pointers = { }
             Fault(  factory( "invalid-value" ):gsub( "$1", s )  )
             local points  = { }
             legal = false
             local given    = { }
        end
            for k, v in pairs( Data.tree.params ) do
    end
                i = facet( k, 1 )
 
                if type( v ) == "table" then
    -- description etc.
                    if type( v.label ) == "string" then
    s = fashioned( param )
                        s = mw.text.trim( v.label )
    if s then
                        if s == "" then
        desc:node( s )
                            s = k
    end
                        end
    if param.style then
                     else
        s = type( param.style )
                         s = k
        if s == "table" then
            desc:css( param.style )
        elseif s == "string" then
            desc:cssText( param.style )
        end
    end
    if param.default or param.example or param.autovalue then
        local details = { "default", "example", "autovalue" }
        local dl      = mw.html.create( "dl" )
        local dd, section, show
        for i = 1, #details do
            s    = details[ i ]
            show = param[ s ]
            if show then
                dd      = mw.html.create( "dd" )
                section = factory( "doc-param-" .. s )
                if param.type == "boolean"   and
                  ( show == "0" or show == "1" ) then
                    local boole = Permit.boole[ ( show == "1" ) ]
                     if boole.lead == true then
                         dd:node( mw.html.create( "code" )
                                        :wikitext( show ) )
                          :wikitext( " " )
                     end
                     end
                     if type( boole.show ) == "string" then
                     if given[ s ] then
                        local v = mw.html.create( "span" )
                        if given[ s ] == 1 then
                                        :attr( "aria-hidden", "true" )
                            local scream = "Parameter label '%s' detected multiple times"
                                        :wikitext( boole.show )
                            Fault( string.format( scream, s ) )
                        if boole.css then
                             given[ s ] = 2
                             v:css( boole.css )
                         end
                         end
                         dd:node( v )
                    else
                         given[ s ] = 1
                     end
                     end
                     if type( boole.suffix ) == "string" then
                end
                        dd:wikitext( boole.suffix )
                if i then
                    end
                     table.insert( points, i )
                     if boole.lead == false then
                    pointers[ i ] = k
                         dd:wikitext( " " )
                    i = facet( k, i )
                          :node( mw.html.create( "code" )
                     if i then
                                        :wikitext( show ) )
                         s = "Parameter '%s' detected twice"
                        Fault( string.format( s, k ) )
                     end
                     end
                 else
                 else
                     dd:wikitext( show )
                     s = "Parameter '%s' not detected"
                    Fault( string.format( s, k ) )
                 end
                 end
                dl:node( mw.html.create( "dt" )
            end -- for k, v
                                :wikitext( section ) )
            table.sort( points )
                  :node( dd )
            for i = 1, #points do
             end
                table.insert( Data.order,  pointers[ points[ i ] ] )
        end -- i = 1, #details
             end -- i = 1, #points
         desc:node( dl )
         elseif s then
            table.insert( Data.order, s )
        end
     end
     end
end -- feat()


     -- type
local function feature( access )
     if type( param.type ) == "string" then
    -- Create table row for parameter, check and display violations
        param.type = mw.text.trim( param.type )
     -- Parameter:
        if param.type == "" then
     --    access  -- string, with name
            param.type = false
     -- Returns <tr>
        end
     local mode, s, status
     end
     local fine    = function ( a )
     if param.type then
                        s = mw.text.trim( a )
        s     = Permit.types[ param.type ]
                        return a == s and
        typed = mw.html.create( "td" )
                              a ~= "" and
        if s then
                              not a:find( "%|=\n" ) and
            if s == "string" then
                              not a:find( "%s%s" )
                Data.params[ access ].type = s
                    end
                typed:wikitext( factory( "doc-param-type-" .. s ) )
    local begin  = mw.html.create( "td" )
                    :tag( "br" )
    local code    = mw.html.create( "code" )
                typed:node( mw.html.create( "span" )
    local desc    = mw.html.create( "td" )
                                  :addClass( "error" )
    local legal  = true
                                  :wikitext( param.type ) )
    local param  = Data.tree.params[ access ]
                Data.lasting = true
    local ranking = { "required", "suggested", "optional", "deprecated" }
            else
    local r      = mw.html.create( "tr" )
                local support = Config[ "support4" .. param.type ]
    local styles = "mw-templatedata-doc-param-"
                s = factory( "doc-param-type-" .. param.type )
    local sort, typed
                if support then
 
                    s = string.format( "[[%s|%s]]", support, s )
    for k, v in pairs( param ) do
                end
        if v == "" then
                typed:wikitext( s )
             param[ k ] = false
            end
        else
            Data.params[ access ].type = "unknown"
            typed:addClass( "error" )
                :wikitext( "INVALID" )
            s = string.format( "params.<code>%s</code>.type", access )
            Fault( factory( "invalid-value" ):gsub( "$1", s )  )
             legal = false
         end
         end
     else
     end -- for k, v
        typed = mw.html.create( "td" )
                  :wikitext( factory( "doc-param-type-unknown" ) )
    end


     -- status
     -- label
     if param.required then
     sort = param.label or access
        mode = 1
    if sort:match( "^%d+$" ) then
        if param.autovalue then
         begin:attr( "data-sort-value",
            Fault( string.format( "autovalued <code>%s</code> required",
                    string.format( "%05d", tonumber( sort ) ) )
                                  access ) )
            legal = false
        end
         if param.default then
            Fault( string.format( "Defaulted <code>%s</code> required",
                                  access ) )
            legal = false
        end
        if param.deprecated then
            Fault( string.format( "Required deprecated <code>%s</code>",
                                  access ) )
            legal = false
        end
    elseif param.deprecated then
        mode = 4
    elseif param.suggested then
        mode = 2
    else
        mode = 3
     end
     end
     status = ranking[ mode ]
     begin:css( "font-weight", "bold" )
    ranking = factory( "doc-param-status-" .. status )
        :wikitext( sort )
     if mode == 1  or  mode == 4 then
 
        ranking = mw.html.create( "span" )
     -- name and aliases
                        :css( "font-weight", "bold" )
    code:css( "font-size", "92%" )
                        :wikitext( ranking )
        :css( "white-space", "nowrap" )
        if type( param.deprecated ) == "string" then
        :wikitext( access )
            ranking:tag( "br" )
    if not fine( access ) then
            ranking:wikitext( param.deprecated )
        code:addClass( "error" )
         end
        Fault( string.format( "Bad ID params.<code>%s</code>", access ) )
         legal = false
        begin:attr( "data-sort-value",  " " .. sort )
     end
     end
 
     code = mw.html.create( "td" )
     -- <tr>
                  :addClass( styles .. "name" )
    r:attr( "id",  "templatedata:" .. mw.uri.anchorEncode( access ) )
                  :node( code )
    :css( Permit.css[ status ] )
    if access:match( "^%d+$" ) then
    :node( begin )
        code:attr( "data-sort-value",
    :node( code )
                   string.format( "%05d", tonumber( access ) ) )
    :node( desc )
    :node( typed )
    :node( mw.html.create( "td" )
                  :attr( "data-sort-value", tostring( mode ) )
                   :node( ranking ) )
    :newline()
    if not legal then
        r:css( "border", "#FF0000 3px solid" )
     end
     end
     return r
     if type( param.aliases ) == "table" then
end -- feature()
        local lapsus, syn
 
        for k, v in pairs( param.aliases ) do
 
            code:tag( "br" )
 
            if type( v ) == "string" then
local function features()
                if not fine( v ) then
    -- Create <table> for parameters
                    lapsus = true
    -- Returns <table>, or nil
                    code:node( mw.html.create( "span" )
    local r
                                      :addClass( "error" )
    if Data.tree and Data.tree.params then
                                      :css( "font-style", "italic" )
        local tbl = mw.html.create( "table" )
                                      :wikitext( "string" ) )
                          :addClass( "wikitable" )
                        :wikitext( s )
        local tr  = mw.html.create( "tr" )
                else
        feat()
                    syn = mw.html.create( "span" )
        if Data.order  and  #Data.order > 1 then
                                :addClass( styles .. "alias" )
            tbl:addClass( "sortable" )
                                :css( "white-space", "nowrap" )
        end
                                :wikitext( s )
--      if Config.classTable then
                    code:node( syn )
--          tbl:addClass( Config.classTable )
                end
--      end
            else
        if Config.cssTable then
                lapsus = true
            if type( Config.cssTable ) == "table" then
                 code:node( mw.html.create( "code" )
                 tbl:css( Config.cssTable )
                                  :addClass( "error" )
            elseif type( Config.cssTable ) == "string" then
                                  :wikitext( type( v ) ) )
                -- deprecated
                tbl:cssText( Config.cssTable )
             end
             end
        end -- for k, v
        if lapsus then
            s = string.format( "params.<code>%s</code>.aliases", access )
            Fault(  factory( "invalid-value" ):gsub( "$1", s )  )
            legal = false
         end
         end
         tr:node( mw.html.create( "th" )
    end
                        :attr( "colspan", "2" )
 
                        :css( Permit.css.tablehead )
    -- description etc.
                        :wikitext( factory( "doc-param-name" ) ) )
    s = fashioned( param )
          :node( mw.html.create( "th" )
    if s then
                        :css( Permit.css.tablehead )
         desc:node( s )
                        :wikitext( factory( "doc-param-desc" ) ) )
    end
          :node( mw.html.create( "th" )
    if param.style then
                        :css( Permit.css.tablehead )
        s = type( param.style )
                        :wikitext( factory( "doc-param-type" ) ) )
        if s == "table" then
          :node( mw.html.create( "th" )
            desc:css( param.style )
                        :css( Permit.css.tablehead )
        elseif s == "string" then
                        :wikitext( factory( "doc-param-status" ) ) )
            desc:cssText( param.style )
        tbl:newline()
        end
--        :node( mw.html.create( "thead" )
    end
                        :node( tr )
    if param.suggestedvalues or
--              )
      param.default or
          :newline()
      param.example or
        if Data.order then
      param.autovalue then
            local leave, s
        local details = { "suggestedvalues",
            for i = 1, #Data.order do
                          "default",
                s = Data.order[ i ]
                          "example",
                if s:sub( 1, 1 ) == "=" then
                          "autovalue" }
                     leave = true
        local dl      = mw.html.create( "dl" )
                    tbl:node( fatten( s ) )
        local dd, section, show
                     Data.order[ i ] = false
        for i = 1, #details do
                 elseif s:match( "[=|]" ) then
            s    = details[ i ]
                     Fault( string.format( "Bad param <code>%s</code>",
            show = param[ s ]
                                          s ) )
            if show then
                 else
                dd      = mw.html.create( "dd" )
                     tbl:node( feature( s ) )
                section = factory( "doc-param-" .. s )
                if param.type == "boolean"  and
                  ( show == "0" or show == "1" ) then
                    local boole = Permit.boole[ ( show == "1" ) ]
                    if boole.lead == true then
                        dd:node( mw.html.create( "code" )
                                        :wikitext( show ) )
                          :wikitext( " " )
                    end
                    if type( boole.show ) == "string" then
                        local v = mw.html.create( "span" )
                                        :attr( "aria-hidden", "true" )
                                        :wikitext( boole.show )
                        if boole.css then
                            v:css( boole.css )
                        end
                        dd:node( v )
                    end
                    if type( boole.suffix ) == "string" then
                        dd:wikitext( boole.suffix )
                     end
                    if boole.lead == false then
                        dd:wikitext( " " )
                          :node( mw.html.create( "code" )
                                        :wikitext( show ) )
                     end
                 elseif s == "suggestedvalues" then
                     local html, values = feasible( param, access )
                    dd:newline()
                      :node( html )
                    Data.params[ access ].suggestedvalues = values
                 else
                     dd:wikitext( show )
                 end
                 end
            end -- for i = 1, #Data.order
                 dl:node( mw.html.create( "dt" )
            if leave then
                                :wikitext( section ) )
                 for i = #Data.order, 1, -1 do
                  :node( dd )
                    if not Data.order[ i ] then
                        table.remove( Data.order, i )
                    end
                end -- for i = #Data.order, 1, -1
             end
             end
            Data.tag.paramOrder = Data.order
         end -- i = 1, #details
         end
        desc:node( dl )
        if Config.cssTabWrap or Data.scroll then
            r = mw.html.create( "div" )
            if type( Config.cssTabWrap ) == "table" then
                r:css( Config.cssTabWrap )
            elseif type( Config.cssTabWrap ) == "string" then
                -- deprecated
                r:cssText( Config.cssTabWrap )
            end
            if Data.scroll then
                r:css( "height",   Data.scroll )
                :css( "overflow", "auto" )
            end
            r:node( tbl )
        else
            r = tbl
        end
     end
     end
    return r
end -- features()


 
    -- type
 
    if type( param.type ) == "string" then
local function finalize( advance )
        param.type = mw.text.trim( param.type )
     -- Wrap presentation into frame
        if param.type == "" then
     -- Parameter:
            param.type = false
     --    advance  -- true, for nice
        end
     -- Returns string
    end
     local r, lapsus
    if param.type then
     if Data.div then
        s    = Permit.types[ param.type ]
         r = tostring( Data.div )
        typed = mw.html.create( "td" )
     elseif Data.strip then
        if s then
         r = Data.strip
            if s == "string" then
     else
                Data.params[ access ].type = s
         lapsus = true
                typed:wikitext( factory( "doc-param-type-" .. s ) )
         r      = ""
                    :tag( "br" )
     end
                typed:node( mw.html.create( "span" )
     r = r .. failures()
                                  :addClass( "error" )
     if Data.source then
                                  :wikitext( param.type ) )
         local live = ( advance or lapsus )
                Data.lasting = true
         if not live then
            else
             live = TemplateData.frame:preprocess( "{{REVISIONID}}" )
                local support = Config[ "support4" .. param.type ]
             live = ( live == "" )
                s = factory( "doc-param-type-" .. param.type )
         end
                if support then
         if live then
                    s = string.format( "[[%s|%s]]", support, s )
             r = r .. fancy( advance, lapsus )
                end
         end
                typed:wikitext( s )
     end
            end
     return r
        else
end -- finalize()
            Data.params[ access ].type = "unknown"
 
            typed:addClass( "error" )
 
                :wikitext( "INVALID" )
 
            s = string.format( "params.<code>%s</code>.type", access )
local function find()
            Fault(  factory( "invalid-value" ):gsub( "$1", s )  )
     -- Find JSON data within page source (title)
            legal = false
     -- Returns string, or nil
        end
     local s = Data.title:getContent()
    else
     local i, j = s:find( "<templatedata>", 1, true )
        typed = mw.html.create( "td" )
     local r
                  :wikitext( factory( "doc-param-type-unknown" ) )
     if i then
        Data.params[ access ].type = "unknown"
        if param.default then
            Data.params[ access ].default = nil
            Fault( "Default value requires <code>type</code>" )
            legal = false
        end
    end
 
    -- status
    if param.required then
        mode = 1
        if param.autovalue then
            Fault( string.format( "autovalued <code>%s</code> required",
                                  access ) )
            legal = false
        end
        if param.default then
            Fault( string.format( "Defaulted <code>%s</code> required",
                                  access ) )
            legal = false
        end
        if param.deprecated then
            Fault( string.format( "Required deprecated <code>%s</code>",
                                  access ) )
            legal = false
        end
    elseif param.deprecated then
        mode = 4
    elseif param.suggested then
        mode = 2
    else
        mode = 3
    end
    status = ranking[ mode ]
    ranking = factory( "doc-param-status-" .. status )
    if mode == 1  or  mode == 4 then
        ranking = mw.html.create( "span" )
                        :css( "font-weight", "bold" )
                        :wikitext( ranking )
        if type( param.deprecated ) == "string" then
            ranking:tag( "br" )
            ranking:wikitext( param.deprecated )
        end
        if param.suggested  and  mode == 4 then
            s = string.format( "Suggesting deprecated <code>%s</code>",
                              access )
            Fault( s )
            legal = false
        end
    end
 
    -- <tr>
    r:attr( "id",  "templatedata:" .. mw.uri.anchorEncode( access ) )
    :css( Permit.css[ status ] )
    :node( begin )
    :node( code )
    :node( desc )
    :node( typed )
    :node( mw.html.create( "td" )
                  :attr( "data-sort-value", tostring( mode ) )
                  :node( ranking ) )
    :newline()
    if not legal then
        r:css( "border", "#FF0000 3px solid" )
    end
    return r
end -- feature()
 
 
 
local function features()
    -- Create <table> for parameters
    -- Returns <table>, or nil
    local r
    if Data.tree and Data.tree.params then
        local tbl = mw.html.create( "table" )
        local tr  = mw.html.create( "tr" )
        feat()
        if Data.order  and  #Data.order > 1 then
            tbl:addClass( "sortable" )
        end
        if type( Config.classTable ) == "table" then
            for k, v in pairs( Config.classTable ) do
                tbl:addClass( v )
            end -- for k, v
        end
        if type( Config.cssTable ) == "table" then
            tbl:css( Config.cssTable )
        end
        tr:node( mw.html.create( "th" )
                        :attr( "colspan", "2" )
                        :css( Permit.css.tablehead )
                        :wikitext( factory( "doc-param-name" ) ) )
          :node( mw.html.create( "th" )
                        :css( Permit.css.tablehead )
                        :wikitext( factory( "doc-param-desc" ) ) )
          :node( mw.html.create( "th" )
                        :css( Permit.css.tablehead )
                        :wikitext( factory( "doc-param-type" ) ) )
          :node( mw.html.create( "th" )
                        :css( Permit.css.tablehead )
                        :wikitext( factory( "doc-param-status" ) ) )
        tbl:newline()
--        :node( mw.html.create( "thead" )
                        :node( tr )
--              )
          :newline()
        if Data.order then
            local leave, s
            for i = 1, #Data.order do
                s = Data.order[ i ]
                if s:sub( 1, 1 ) == "=" then
                    leave = true
                    tbl:node( fatten( s ) )
                    Data.order[ i ] = false
                elseif s:match( "[=|]" ) then
                    Fault( string.format( "Bad param <code>%s</code>",
                                          s ) )
                else
                    tbl:node( feature( s ) )
                end
            end -- for i = 1, #Data.order
            if leave then
                for i = #Data.order, 1, -1 do
                    if not Data.order[ i ] then
                        table.remove( Data.order, i )
                    end
                end -- for i = #Data.order, 1, -1
            end
            Data.tag.paramOrder = Data.order
        end
        if Config.cssTabWrap or Data.scroll then
            r = mw.html.create( "div" )
            if type( Config.cssTabWrap ) == "table" then
                r:css( Config.cssTabWrap )
            elseif type( Config.cssTabWrap ) == "string" then
                -- deprecated
                r:cssText( Config.cssTabWrap )
            end
            if Data.scroll then
                r:css( "height",  Data.scroll )
                :css( "overflow", "auto" )
            end
            r:node( tbl )
        else
            r = tbl
        end
    end
    return r
end -- features()
 
 
 
local function fellow( any, assigned, at )
    -- Check sets[] parameter and issue error message, if necessary
    -- Parameter:
    --    any      -- should be number
    --    assigned  -- parameter name
    --    at        -- number, of set
    local s
    if type( any ) ~= "number" then
        s = "<code>sets[%d].params[%s]</code>??"
        Fault( string.format( s,
                              at,
                              mw.text.nowiki( tostring( any ) ) ) )
    elseif type( assigned ) == "string" then
        if not Data.got.params[ assigned ] then
            s = "<code>sets[%d].params %s</code> is undefined"
            Fault( string.format( s, at, assigned ) )
        end
    else
        s = "<code>sets[%d].params[%d] = %s</code>??"
        Fault( string.format( s,  k,  type( assigned ) ) )
    end
end -- fellow()
 
 
 
local function fellows()
    -- Check sets[] and issue error message, if necessary
    local s
    if type( Data.got.sets ) == "table" then
        if type( Data.got.params ) == "table" then
            for k, v in pairs( Data.got.sets ) do
                if type( k ) == "number" then
                    if type( v ) == "table" then
                        for ek, ev in pairs( v ) do
                            if ek == "label" then
                                s = type( ev )
                                if s ~= "string"  and
                                  s ~= "table" then
                                    s = "<code>sets[%d].label</code>??"
                                    Fault( string.format( s, k ) )
                                end
                            elseif ek == "params"  and
                                type( ev ) == "table" then
                                for pk, pv in pairs( ev ) do
                                    fellow( pk, pv, k )
                                end -- for pk, pv
                            else
                                ek = mw.text.nowiki( tostring( ek ) )
                                s  = "<code>sets[%d][%s]</code>??"
                                Fault( string.format( s, k, ek ) )
                            end
                        end -- for ek, ev
                    else
                        k = mw.text.nowiki( tostring( k ) )
                        v = mw.text.nowiki( tostring( v ) )
                        s = string.format( "<code>sets[%s][%s]</code>??",
                                          k, v )
                        Fault( s )
                    end
                else
                    k = mw.text.nowiki( tostring( k ) )
                    s = string.format( "<code>sets[%s]</code> ?????", k )
                    Fault( s )
                end
            end -- for k, v
        else
            s = "<code>params</code> required for <code>sets</code>"
            Fault( s )
        end
    else
        s = "<code>sets</code> needs to be of <code>object</code> type"
        Fault( s )
    end
end -- fellows()
 
 
 
local function finalize( advance )
     -- Wrap presentation into frame
     -- Parameter:
     --    advance  -- true, for nice
     -- Returns string
     local r, lapsus
     if Data.div then
         r = tostring( Data.div )
     elseif Data.strip then
         r = Data.strip
     else
         lapsus = true
         r      = ""
     end
     r = r .. failures()
     if Data.source then
         local live = ( advance or lapsus )
         if not live then
             live = TemplateData.frame:preprocess( "{{REVISIONID}}" )
             live = ( live == "" )
         end
         if live then
             r = r .. fancy( advance, lapsus )
         end
     end
     return r
end -- finalize()
 
 
 
local function find()
     -- Find JSON data within page source (title)
     -- Returns string, or nil
     local s = Data.title:getContent()
     local i, j = s:find( "<templatedata>", 1, true )
     local r
     if i then
         local k = s:find( "</templatedata>", j, true )
         local k = s:find( "</templatedata>", j, true )
         if k then
         if k then
Zeile 1.088: Zeile 1.425:


local function flat( adjust )
local function flat( adjust )
     -- Remove formatting from text string
     -- Remove formatting from text string for VE
     -- Parameter:
     -- Parameter:
     --    arglist  -- string, to be stripped, or nil
     --    arglist  -- string, to be stripped, or nil
Zeile 1.096: Zeile 1.433:
         r = adjust:gsub( "\n", " " )
         r = adjust:gsub( "\n", " " )
         if r:find( "<noexport>", 1, true ) then
         if r:find( "<noexport>", 1, true ) then
             r = r:gsub( "<noexport>(.*)</noexport>", "" )
             r = r:gsub( "<noexport>.*</noexport>", "" )
        end
        if r:find( "<exportonly>", 1, true ) then
            r = r:gsub( "</?exportonly>", "" )
         end
         end
         if r:find( "''", 1, true ) then
         if r:find( "''", 1, true ) then
Zeile 1.260: Zeile 1.600:
                     if type( elem ) ~= "nil" then
                     if type( elem ) ~= "nil" then
                         if not target then
                         if not target then
                            if access then
                            if access then
                                if not Data.tree.params then
                                if not Data.tree.params then
                                    Data.tree.params = { }
                                    Data.tree.params = { }
                                end
                                end
                                Data.tree.params[ slot ] = { }
                                Data.tree.params[ slot ] = { }
                                target = Data.tree.params[ slot ]
                                target = Data.tree.params[ slot ]
                            else
                            else
                                Data.tree = { }
                                Data.tree = { }
                                target    = Data.tree
                                target    = Data.tree
                            end
                            end
                         end
                         end
                         target[ k ] = elem
                         target[ k ] = elem
Zeile 1.292: Zeile 1.632:
                             end
                             end
                         end
                         end
                         if type( v ) ~= "nil" then
                         if type( v ) ~= "nil"  and
                          k ~= "suggestedvalues" then
                             tag[ k ] = v
                             tag[ k ] = v
                         end
                         end
Zeile 1.305: Zeile 1.646:
             end
             end
         end -- for k, v
         end -- for k, v
        if not access  and Data.got.sets then
            fellows()
        end
     else
     else
         Fault( f() .. " needs to be of <code>object</code> type" )
         Fault( f() .. " needs to be of <code>object</code> type" )
Zeile 1.434: Zeile 1.778:
                         end
                         end
                         if n > 1 then
                         if n > 1 then
                             spaced = string.rep( "_", n ) .. " "
                             spaced = string.rep( "_", n - 1 ) .. " "
                         end
                         end
                         show = show .. s
                         show = show .. s
Zeile 1.481: Zeile 1.825:
         end
         end
     end
     end
     if source then
     if source and Data.tag then
         Data.tag.format = source
         Data.tag.format = source
     end
     end
Zeile 1.713: Zeile 2.057:
     -- Retrieve versioning and check for compliance
     -- Retrieve versioning and check for compliance
     -- Precondition:
     -- Precondition:
     --    atleast  -- string, with required version or "wikidata" or "~"
     --    atleast  -- string, with required version
     --                 or false
     --                         or wikidata|item|~|@ or false
     -- Postcondition:
     -- Postcondition:
     --    Returns  string  -- with queried version, also if problem
     --    Returns  string  -- with queried version/item, also if problem
     --              false  -- if appropriate
     --              false  -- if appropriate
     local last  = ( atleast == "~" )
     -- 2020-08-17
     local since = atleast
     local since = atleast
    local last    = ( since == "~" )
    local linked  = ( since == "@" )
    local link    = ( since == "item" )
     local r
     local r
     if last  or  since == "wikidata" then
     if last or  link  or  linked or  since == "wikidata" then
         local item = Failsafe.item
         local item = Failsafe.item
         since = false
         since = false
         if type( item ) == "number"  and  item > 0 then
         if type( item ) == "number"  and  item > 0 then
             local entity = mw.wikibase.getEntity( string.format( "Q%d",
             local suited = string.format( "Q%d", item )
                                                                item ) )
            if link then
            if type( entity ) == "table" then
                r = suited
                local vsn = entity:formatPropertyValues( "P348" )
            else
                if type( vsn ) == "table"  and
                local entity = mw.wikibase.getEntity( suited )
                  type( vsn.value ) == "string"  and
                if type( entity ) == "table" then
                  vsn.value ~= "" then
                    local seek = Failsafe.serialProperty or "P348"
                    if last  and  vsn.value == Failsafe.serial then
                    local vsn = entity:formatPropertyValues( seek )
                         r = false
                    if type( vsn ) == "table"  and
                    else
                      type( vsn.value ) == "string"  and
                         r = vsn.value
                      vsn.value ~= "" then
                        if last  and  vsn.value == Failsafe.serial then
                            r = false
                         elseif linked then
                            if mw.title.getCurrentTitle().prefixedText
                              ==  mw.wikibase.getSitelink( suited ) then
                                r = false
                            else
                                r = suited
                            end
                         else
                            r = vsn.value
                        end
                     end
                     end
                 end
                 end
Anonymer Benutzer