A modult a Modul:0pt-common/doc lapon tudod dokumentálni
local export = {}
local romut_module = "Module:0romance utilities"
local strutils_module = "Module:0string utilities"
local m_str_utils = require(strutils_module)
local concat = table.concat
local rsubn = m_str_utils.gsub
local rfind = m_str_utils.find
local rmatch = m_str_utils.match
local unaccented_vowel = "aeiouàAEIOUÀ"
local accented_vowel = "áéíóúýâêôÁÉÍÓÚÝÂÊÔ"
local maybe_accented_vowel = "ãõÃÕ"
local vowel = unaccented_vowel .. accented_vowel .. maybe_accented_vowel
local V = ""
export.V = V
local AV = ""
export.AV = AV
local NAV = ""
export.NAV = NAV
local C = ""
export.C = C
local remove_accent = {
="a", ="e", ="i", ="o", ="u", ="y", ="a", ="e", ="o",
="A", ="E", ="I", ="O", ="U", ="Y", ="A", ="E", ="O"
}
export.remove_accent = remove_accent
-- version of rsubn() that discards all but the first return value
local function rsub(term, foo, bar)
local retval = rsubn(term, foo, bar)
return retval
end
export.rsub = rsub
-- version of rsubn() that returns a 2nd argument boolean indicating whether
-- a substitution was made.
local function rsubb(term, foo, bar)
local retval, nsubs = rsubn(term, foo, bar)
return retval, nsubs > 0
end
export.rsubb = rsubb
-- apply rsub() repeatedly until no change
local function rsub_repeatedly(term, foo, bar)
while true do
local new_term = rsub(term, foo, bar)
if new_term == term then
return term
end
term = new_term
end
end
export.rsub_repeatedly = rsub_repeatedly
function export.remove_final_accent(stem)
return rsub(stem, "(" .. AV .. ")$", function(v) return remove_accent or v end)
end
local prepositions = {
-- a + optional article
"a ",
"às? ",
"aos? ",
-- de + optional article
"de ",
"ds? ",
"d'",
-- em + optional article
"em ",
"ns? ",
-- por + optional article
"por ",
"pels? ",
-- others
"até ",
"com ",
"como ",
"entre ",
"para ",
"sem ",
"sob ",
"sobre ",
}
local function call_handle_multiword(form, special, make_fun, fun_name)
local retval = require(romut_module).handle_multiword(form, special, make_fun, prepositions)
if retval then
if #retval ~= 1 then
error("Internal error: Should have one return value for " .. fun_name .. ": " .. concat(retval, ","))
end
return retval
end
return nil
end
function export.make_plural(form, special)
local retval = call_handle_multiword(form, special, export.make_plural, "make_plural")
if retval then
return retval
end
local function try(from, to)
local newform, changed = rsubb(form, from, to)
if changed then
form = newform
end
return changed
end
-- This is ported from the former ] except that the old code sometimes returned nil (final -ão
-- other than -ção and -são, final consonant other than ), whereas we always return a default plural
-- (all -ão -> ões, all final consonants other than are left unchanged).
local changed = try("ão$", "ões") or
try("aõ$", "oens") or
try("(" .. AV .. ".*)l$", "%1eis") or -- final unstressed -el or -il
try("el$", "éis") or -- final stressed -el
try("il$", "is") or -- final stressed -il
try("(" .. AV .. ".*)ol$", "%1ois") or -- final unstressed -ol
try("ol$", "óis") or -- final stressed -ol
try("(" .. V .. ")l$", "%1is") or -- any other vowel + -l
try("m$", "ns") or -- final -m
try("()$", "%1es") or -- final -r or -z
try("(" .. V .. ")$", "%1s") or -- final vowel
try("()$", "%1s") or -- ordinal indicator
try("(" .. AV .. ")s$", function(av) return (remove_accent or av) .. "ses" end) or -- final -ês, -ós etc.
try("^(" .. NAV .. "*" .. C .. "s)$", "%1es") -- final stressed -us or -is after consonant
return form
end
function export.make_feminine(form, special)
local retval = call_handle_multiword(form, special, export.make_feminine, "make_feminine")
if retval then
return retval
end
local function try(from, to)
local newform, changed = rsubb(form, from, to)
if changed then
form = newform
end
return changed
end
local changed =
-- Exceptions: ] (afegã), ] (alazã), ] (alemã), ] (anciã),
-- ] (anglo-saxã), ] (beirã/beiroa), ] (bretã), ] (cã),
-- ] (castelã/castelona/casteloa), ] (catalã), ] (chã),
-- ] (cristã), ] (fodão since from ]), ] (grã), ] (lapoa),
-- ] (letã), ] (meã), ] (órfã), ] (padrão), ] (pagã),
-- ] (paleocristã), ] (parmesã), ] (romã), ] (sã),
-- ] (saxã), ] (temporã), ] (teutona/teutã/teutoa), ] (vã),
-- ] (varoa), ] (invariable), ] (vilã/viloa)
try("ão$", "ona") or
try("o$", "a") or
-- ordinal indicator
try("º$", "ª") or
-- ], ], ], ] etc.
try("ês$", "esa") or
-- ], ], ], ] (archaic)
try("ez$", "eza") or
-- adjectives in:
-- * ], ] (], ], etc.), ] (], etc.)
-- * -tor (], ], ], etc.)
-- * -sor (], ], ], etc.)
-- but not:
-- * ]/]/]/]/]/]
-- * ]/]/]/etc., ], etc.
try("(r)$", "%1a") or
-- ], ], ], ], ], ], ], ],
-- ], ], ]/], ], ], ],
-- ]
-- Exceptions: ] (judia), ] (sandia)
try("eu$", "eia")
-- note: ] (espanhola), but this is the only case in ''-ol'' (vs. ], ] with no
-- change in the feminine)
return form
end
function export.make_masculine(form, special)
local retval = call_handle_multiword(form, special, export.make_masculine, "make_masculine")
if retval then
return retval
end
local function try(from, to)
local newform, changed = rsubb(form, from, to)
if changed then
form = newform
end
return changed
end
local changed =
try("()ora$", "%1or") or
try("a$", "o") or
-- ordinal indicator
try("ª$", "º")
return form
end
local function munge_form_for_ending(form, typ)
local function try(from, to)
local newform, changed = rsubb(form, from, to)
if changed then
form = newform
end
return changed
end
local changed =
try("ão$", "on") or
typ ~= "aug" and try("c$", "qu") or
typ ~= "aug" and try("g$", "gu") or
try("$", "") or
typ == "sup" and try("z$", "c") or
-- Adverb stems won't have the acute accent but we should handle them correctly regardless.
try("vel$", "abil") or
try("vel$", "ibil") or
try("eu$", "euz")
-- Remove accent (-ês, -ário, -ático, etc.) when adding ending.
form = rsub(form, "(" .. AV .. ")(.-)$", function(av, rest) return (remove_accent or av) .. rest end)
return form
end
function export.make_absolute_superlative(form, special)
local retval = call_handle_multiword(form, special, export.make_absolute_superlative, "make_absolute_superlative")
if retval then
return retval
end
return munge_form_for_ending(form, "sup") .. "íssimo"
end
function export.make_adverbial_absolute_superlative(form, special)
local retval = call_handle_multiword(form, special, export.make_adverbial_absolute_superlative, "make_adverbial_absolute_superlative")
if retval then
return retval
end
return munge_form_for_ending(form, "sup") .. "issimamente"
end
function export.make_diminutive(form, special)
local retval = call_handle_multiword(form, special, export.make_diminutive, "make_diminutive")
if retval then
return retval
end
return munge_form_for_ending(form, "dim") .. "inho"
end
function export.make_augmentative(form, special)
local retval = call_handle_multiword(form, special, export.make_augmentative, "make_augmentative")
if retval then
return retval
end
return munge_form_for_ending(form, "aug") .. "ão"
end
-- FIXME: Next two copied from ]. Move to a utilities module.
-- Add links around words. If multiword_only, do it only in multiword forms.
function export.add_links(form, multiword_only)
if form == "" or form == " " then
return form
end
if not form:find("%[%[") then
if rfind(form, "") then --optimization to avoid loading ] on single-word forms
local m_headword = require("Module:0headword")
if m_headword.head_is_multiword(form) then
form = m_headword.add_multiword_links(form)
end
end
if not multiword_only and not form:find("%[%[") then
form = "]"
end
end
return form
end
function export.strip_redundant_links(form)
-- Strip redundant brackets surrounding entire form.
return rmatch(form, "^%]*)%]%]$") or form
end
return export