Module:Sandbox/Keysanger

local p = {}
getArgs = require('Module:Arguments').getArgs
builder = mw.html.create()
local div_root = builder
    :tag('div')
    :cssText('float:left;border:2em;width:80%')
    :wikitext('This is div_root in main program\n')
--local cntnt = div_root
local cntnt = builder
    :tag('div')
    :cssText('text-align:left; padding:1em; font-size:95%; margin:2em; background:yellow;width:50%')
    :wikitext('that is cntnt in main program\n')

function p.getArgNums(frame)
    -- Returns a table containing the numbers of the arguments that exist
    -- for the specified prefix. For example, if the prefix was 'data', and
    -- 'data1', 'data2', and 'data5' exist, it would return {1, 2, 5}.
    local nums = {}
    local prefix='a'
    cntnt:wikitext('Das ist nun cntnt innerhalb GetArgsNums<br>')
    for k, v in pairs(frame.args) do
        local num = tostring(k):match('^' .. prefix .. '([1-9]%d*)$')
        if num then table.insert(nums, tonumber(num)) end
        cntnt:wikitext( 'Key= ' .. k .. ' Value= ' .. v .. '<br/>' )
    end
    -- Initially the table nums was returned
    table.sort(nums)
    -- I still don't know what to do with a table, so I return cntnt
    -- error: mv.log('testen der Funktion mw.log innerhalb einer Funktionsaufruf\n')
    cntnt:wikitext('Das ist nun cntnt am Ende von GetArgsNums\n')
    return tostring (cntnt)
end

function p.main (frame)
    local sOutputText = ""
    cntnt:wikitext('here is p.main in cntnt\n')
    div_root.wikitext('here is p.main in div_root\n')
    for iKey,sValue in pairs(frame.args) do 
        sOutputText = sOutputText  .. iKey .. sValue  .. "♣\n"
    end
    div_root:wikitext(sOutputText)
	return tostring(div_root)
end

return p

Content Disclaimer

Informasi ini disarikan dari Wikipedia dan disajikan kembali untuk tujuan edukasi. Konten tersedia di bawah lisensi CC BY-SA 3.0. Kami tidak bertanggung jawab atas ketidakakuratan data yang bersumber dari kontribusi publik tersebut.

  1. The information displayed on this website is sourced in part or in whole from Wikipedia and has been adapted for the purpose of restating it. We strive to provide accurate and relevant information, however:
  2. There is no guarantee of absolute accuracy. Wikipedia is an open, collaborative project that can be edited by anyone, so information is subject to change.
  3. It is not intended to constitute professional advice. The content displayed is for informational and educational purposes only. For important decisions (e.g., medical, legal, or financial), please consult a professional.
  4. Content copyright. Wikipedia is licensed under the Creative Commons Attribution-ShareAlike License (CC BY-SA). This means that content may be reused with appropriate attribution and shared under a similar license.
  5. Responsible use. Any risk arising from the use of information from this website is entirely the responsibility of the user.