Module:Object weight
Appearance
| This module is rated as ready for general use. It has reached a mature state, is considered relatively stable and bug-free, and may be used wherever appropriate. It can be mentioned on help pages and other Wikipedia resources as an option for new users. To minimise server load and avoid disruptive output, improvements should be developed through sandbox testing rather than repeated trial-and-error editing. |
| This module is currently under extended confirmed protection. Extended confirmed protection prevents edits from all unregistered editors and registered users with fewer than 30 days tenure and 500 edits. The policy on community use specifies that extended confirmed protection can be applied to combat disruption, if semi-protection has proven to be ineffective. Extended confirmed protection may also be applied to enforce arbitration sanctions. Please discuss any changes on the talk page; you may submit an edit request to ask for uncontroversial changes supported by consensus. |
| This Lua module is used on approximately 2,600 pages and changes may be widely noticed. Test changes in the module's /sandbox or /testcases subpages, or in your own module sandbox. Consider discussing changes on the talk page before implementing them. |
This module is intended to aid in converting weights in {{Infobox mobile phone}}.
Usage
{{#invoke:Object weight|weight|123 g}}
See also
-- This module is based off of [[Module:Person weight]]
local p = {}
local function clean_weight(s)
s = mw.ustring.gsub(s, 'grams', 'g')
s = mw.ustring.gsub(s, 'gram', 'g')
s = mw.ustring.gsub(s, 'gs', 'g')
s = mw.ustring.gsub(s, 'g[%.,]', 'g')
s = mw.ustring.gsub(s, 'ounces', 'oz')
s = mw.ustring.gsub(s, 'ounce', 'oz')
s = mw.ustring.gsub(s, 'oz[%.,]', 'oz')
return s
end
local function isnumber(s)
if s then
s = mw.ustring.gsub(s, '%+%s*%d+%s*/%s*%d+%s*$', '')
s = mw.ustring.gsub(s, '%s*[–%-]%s*', '')
return tonumber(s)
end
return nil
end
local function get_convert_weight_args(s)
local prefer_g = (prefer or '') == 'g'
local force_g = (enforce or '') == 'g'
local prefer_oz = (prefer or '') == 'oz'
local force_oz = (enforce or '') == 'oz'
unconverted = clean_weight(s or '') -- basic unit cleaning
s = mw.ustring.gsub(unconverted, '&[Nn][Bb][Ss][Pp];', ' ')
local g = mw.ustring.find(s, 'g')
local oz = mw.ustring.find(s, 'oz')
if g == nil and oz == nil then
return '', unconverted
end
if g ~= nil and oz == nil then
local n = mw.ustring.sub(s, 1, g - 1)
if isnumber(n) then
return {n,'g','oz',0,['abbr']='on'}, mw.ustring.sub(s, g+1)
end
return '', unconverted
end
if oz ~= nil and g == nil then
local n = mw.ustring.sub(s, 1, oz - 1)
if isnumber(n) then
return {n,'oz','g',0,['abbr']='on'}, mw.ustring.sub(s, oz+2)
end
return '', unconverted
end
return '', unconverted
end
function convert_weight(frame, args)
local targs, str = get_convert_weight_args(args[1])
if type(targs) == 'table' then
return frame:expandTemplate{ title = 'convert', args = targs} .. str
else
return str
end
end
function p.weight(frame)
return convert_weight(frame, frame.args[1] and frame.args or frame:getParent().args)
end
return p