Editing Module:Dict D'ni

From Guild of Archivists
Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.

Latest revision Your text
Line 9: Line 9:
local root
local root


local function getArgNums(prefix)
    -- 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 = {}
    for k, v in pairs(args) do
        local num = tostring(k):match('^' .. prefix .. '([1-9]%d*)$')
        if num then table.insert(nums, tonumber(num)) end
    end
    table.sort(nums)
    return nums
end


local function dnifont2ots(str)
local function strCategories()


    local output = mw.text.trim(str)
        local output
   
 
    output = mw.ustring.gsub(str,"%S", {["S"] = "sh",  
        -- Determine 'sort' based off of first character in Dnifont
        local sort = mw.ustring.sub(args['dnifont'],1,1)
        sort = sort:gsub("%S+", {["S"] = "sh",  
                                 ["T"] = "th",  
                                 ["T"] = "th",  
                                 ["O"] = "oy",  
                                 ["O"] = "oy",  
Line 29: Line 43:
                                 ["K"] = "k",
                                 ["K"] = "k",
                                 ["I"] = "ai",
                                 ["I"] = "ai",
                                ["k"] = "kh",
                                 ["å"] = "a",
                                 ["å"] = "a",
                                 })
                                 })


    return output
        output = output..'[[Category:D\'ni Words beginning with '..sort..']]\n'
end
        output = output..'[[Category:D\'ni Words|'..sort..']]\n'
 
local function dnifont2nts(str)
        return output
 
    local output = mw.text.trim(str)
   
    output = mw.ustring.gsub(str,"%S",  {["S"] = "š",
                                ["T"] = "þ",
                                ["O"] = "ó",
                                ["c"] = "ç",
                                ["E"] = "í",
                                ["A"] = "é",
                                ["U"] = "ú",
                                ["x"] = "c",
                                ["d"] = "ð",
                                ["D"] = "d",
                                ["k"] = "x",
                                ["K"] = "k",
                                ["I"] = "á",
                                ["å"] = "æ",
                                })
 
    return output
end


local function getArgNums(prefix)
    -- 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 = {}
    for k, v in pairs(args) do
        local num = tostring(k):match('^' .. prefix .. '([1-9]%d*)$')
        if num then table.insert(nums, tonumber(num)) end
    end
    table.sort(nums)
    return nums
end
end


local function _dni_entry()
local function _dni_word_entry()


         local output = ''
         local output
         local sort = dnifont2ots(mw.ustring.sub(args['dnifont'],1,1))
          
         local pagename = string.upper(mw.title.getCurrentTitle().text)
         output = '==D\'ni==\n'
        if (mw.ustring.sub(pagename,1,1) == '-') then
         output = output..'{{huge|<d\'ni>'..args['dnifont']..'</d\'ni>}}\n'
          pagename = mw.ustring.sub(pagename,2)
         output = output..'* [[wikipedia:International Phonetic Alphabet|IPA]]: ['..args['ipa']..']\n'
        end
         output = output..'* [[Dnifont]]: '..args['dnifont']..'\n'
 
         output = output..'* [[OTS]]: '..args['ots']..'\n'
        output = output..'{{#vardefine:language|D\'ni}}{{#set: Lang=D\'ni }}'
         output = output..'* [[NTS]]: '..args['nts']..'\n'
        output = output..'<h2>D\'ni</h2>\n'
         output = outout..strCategories()
         output = output..'{{huge|<dni>{{#vardefineecho:dnifont|'..args['dnifont']..'}}</dni>}}\n'
        output = output..'<h3>Romanization</h3>\n'
         output = output..'* [[Dnifont]]: [[Dnifont::'..args['dnifont']..']]\n'
         output = output..'* [[OTS]]: [[OTS::'..dnifont2ots(args['dnifont'])..']]\n'
         output = output..'* [[NTS]]: [[NTS::'..dnifont2nts(args['dnifont'])..']] '
         output = output..'[[Category:D\'ni words beginning with '..sort..']]'
        output = output..'[[Category:D\'ni words|'..sort..']]'
 
         output = output..'{{DEFAULTSORT:'..pagename..'}}'


     return output
     return output
Line 161: Line 135:
end
end
   
   
function p.dict_entry(frame)
function p.dict_word_entry(frame)
     -- If called via #invoke, use the args passed into the invoking template.
     -- If called via #invoke, use the args passed into the invoking template.
     -- Otherwise, for testing purposes, assume args are being passed directly in.
     -- Otherwise, for testing purposes, assume args are being passed directly in.
Line 171: Line 145:
      
      
     -- Parse the data parameters
     -- Parse the data parameters
    preprocessSingleArg('type')
     preprocessSingleArg('dnifont')
     preprocessSingleArg('dnifont')
 
    preprocessSingleArg('ipa')
     return frame:preprocess(_dni_entry())
    preprocessSingleArg('ots')
    preprocessSingleArg('nts')
 
     return frame:preprocess(_dni_word_entry())
end
end
   
   
function p.smw_format_gloss(frame)
    -- If called via #invoke, use the args passed into the invoking template.
    -- Otherwise, for testing purposes, assume args are being passed directly in.
    if frame == mw.getCurrentFrame() then
        origArgs = frame:getParent().args
    else
        origArgs = frame
    end
   
    -- Parse the data parameters
    preprocessSingleArg(1)
    preprocessSingleArg(2)
    wordtype = string.lower(string.gsub(args[1],'.*#',''))
    if (string.find(args[2],"^",1,true) == nil) then
      glosses = args[2]
    elseif (args[2] == nil) then
      glosses = ""
    else
      glosses = '<ol class="hlist-ordered"><li>'..string.gsub(args[2],"%^","</li><li>").."</li></ol>"
    end
    glosses = string.gsub(string.gsub(glosses,'%[%[%s*[Cc]ategory%s*:.-%]%]', ''),"|","{{!}}")
    output = "''"..wordtype.."''.&nbsp;"..glosses
    return output  --frame:preprocess(_dni_entry())
end
function p.smw_format_dict_line(frame)
    -- If called via #invoke, use the args passed into the invoking template.
    -- Otherwise, for testing purposes, assume args are being passed directly in.
    if frame == mw.getCurrentFrame() then
        origArgs = frame:getParent().args
    else
        origArgs = frame
    end
   
    -- Parse the data parameters
    preprocessSingleArg(1) --word
    preprocessSingleArg(2) --dnifont
    preprocessSingleArg(3) --glosses
    output = "'''''[[Dictionary:"..args[1].."|"..mw.ustring.lower(args[1]).."]]'''''&nbsp;-&nbsp;<span class='dni'>"..args[2].."</span>&nbsp;- "..args[3]
    return output --frame:preprocess(output)
end
function p.dnifont2ots(frame)
    -- If called via #invoke, use the args passed into the invoking template.
    -- Otherwise, for testing purposes, assume args are being passed directly in.
    if frame == mw.getCurrentFrame() then
        origArgs = frame:getParent().args
    else
        origArgs = frame
    end
    preprocessSingleArg(1)
    return dnifont2ots(args[1])
end
function p.dnifont2nts(frame)
    -- If called via #invoke, use the args passed into the invoking template.
    -- Otherwise, for testing purposes, assume args are being passed directly in.
    if frame == mw.getCurrentFrame() then
        origArgs = frame:getParent().args
    else
        origArgs = frame
    end
    preprocessSingleArg(1)
    return dnifont2nts(args[1])
end
return p
return p
Please note that all contributions to Guild of Archivists may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see GoArch:Copyrights for details). Do not submit copyrighted work without permission!
Cancel Editing help (opens in new window)

Template used on this page: