Module:String2: Difference between revisions

Jump to navigation Jump to search
m
Protected "Module:String2": Highly visible template ([Edit=Require template editor access] (indefinite) [Move=Require template editor access] (indefinite))
m (1 revision imported)
 
m (Protected "Module:String2": Highly visible template ([Edit=Require template editor access] (indefinite) [Move=Require template editor access] (indefinite)))
Line 1: Line 1:
local p = {}
local p = {}


p.upper = function(frame)
p.upper = function(frame)
Line 10: Line 11:
return string.lower(s)
return string.lower(s)
end
end


p.sentence = function (frame )
p.sentence = function (frame )
frame.args[1] = string.lower(frame.args[1])
return p.ucfirst(frame)
end
p.ucfirst = function (frame )
local s =  mw.text.trim( frame.args[1] or "" )
local s =  mw.text.trim( frame.args[1] or "" )
local s1 = ""
-- if it's a list chop off and (store as s1) everything up to the first <li>
local lipos = string.find(s, "<li>" )
if lipos then
s1 = string.sub(s, 1, lipos + 3)
s = string.sub(s, lipos + 4)
end
-- s1 is either "" or the first part of the list markup, so we can continue
-- and prepend s1 to the returned string
if string.find(s, "^%[%[[^|]+|[^%]]+%]%]") then
if string.find(s, "^%[%[[^|]+|[^%]]+%]%]") then
-- this is a piped wikilink, so we capitalise the text, not the pipe
-- this is a piped wikilink, so we capitalise the text, not the pipe
local b, c = string.find(s, "|%A*%a") -- find the first letter after the pipe
local b, c = string.find(s, "|%A*%a") -- find the first letter after the pipe
return string.sub(s, 1, c-1) .. string.upper(string.sub(s, c, c)) .. string.sub(s, c+1)
return s1 .. string.sub(s, 1, c-1) .. string.upper(string.sub(s, c, c)) .. string.sub(s, c+1)
end
end
local letterpos = string.find(s, '%a')
local letterpos = string.find(s, '%a')
Line 23: Line 40:
local letter = string.sub(s, letterpos, letterpos)
local letter = string.sub(s, letterpos, letterpos)
local rest = string.sub(s, letterpos + 1)
local rest = string.sub(s, letterpos + 1)
return first .. string.upper(letter) .. string.lower(rest)
return s1 .. first .. string.upper(letter) .. rest
else
else
return s
return s1 .. s
end
end
end
end


p.title = function (frame )
p.title = function (frame )
Line 43: Line 61:
for i, s in ipairs(words) do
for i, s in ipairs(words) do
s = string.lower( s )
s = string.lower( s )
if( i > 1 ) then
if( i > 1 and alwayslower[s] == 1) then
if( alwayslower[s] ~= 1 ) then
-- leave in lowercase
s = mw.getContentLanguage():ucfirst(s)
end
else
else
s = mw.getContentLanguage():ucfirst(s)
s = mw.getContentLanguage():ucfirst(s)
Line 55: Line 71:
end
end


p.label = function (frame )
 
-- Capitalizing only first letter for fetched Wikidata labels.
-- stripZeros finds the first number and strips leading zeros (apart from units)
-- Wikidata English labels generally begin with a lowercase letter. [[:d:Help:Label#Capitalization]]
-- e.g "0940" -> "940"; "Year: 0023" -> "Year: 23"; "00.12" -> "0.12"
local s = mw.text.trim( frame.args[1] or "" )
p.stripZeros = function(frame)
if string.find(s, "^%[%[[^|]+|[^%]]+%]%]") then
local s = mw.text.trim(frame.args[1] or "")
-- this is a piped wikilink, so we capitalise the text, not the pipe
n = tonumber( string.match( s, "%d+" ) ) or ""
local b, c = string.find(s, "|%A*%a") -- find the first letter after the pipe
s = string.gsub( s, "%d+", n, 1 )
return string.sub(s, 1, c-1) .. string.upper(string.sub(s, c, c)) .. string.sub(s, c+1)
return s
end
end
local letterpos = string.find(s, '%a')
 
if letterpos then
 
local first = string.sub(s, 1, letterpos - 1)
-- nowiki ensures that a string of text is treated by the MediaWiki software as just a string
local letter = string.sub(s, letterpos, letterpos)
-- it takes an unnamed parameter and trims whitespace, then removes any wikicode
local rest = string.sub(s, letterpos + 1)
p.nowiki = function(frame)
return first .. string.upper(letter) .. rest
local str = mw.text.trim(frame.args[1] or "")
else
return mw.text.nowiki(str)
return s
end
end
 
 
-- posnq (position, no quotes) returns the numerical start position of the first occurrence
-- of one piece of text ("match") inside another ("str").
-- It returns nil if no match is found, or if either parameter is blank.
-- It takes the text to be searched in as the first unnamed parameter, which is trimmed.
-- It takes the text to match as the second unnamed parameter, which is trimmed and
-- any double quotes " are stripped out.
p.posnq = function(frame)
local str = mw.text.trim(frame.args[1] or "")
local match = mw.text.trim(frame.args[2] or ""):gsub('"', '')
if  str == "" or match == "" then return nil end
-- just take the start position
local pos = str:find(match, 1, true)
return pos
end
end


return p
return p
Anonymous user

Navigation menu