"Module:scripts" හි සංශෝධන අතර වෙනස්කම්
"script" සිට "අක්ෂරක්රමය" වෙතට |
No edit summary |
||
8 පේළිය: | 8 පේළිය: | ||
function Script:getCanonicalName() |
function Script:getCanonicalName() |
||
return self._rawData.canonicalName |
return self._rawData[1] or self._rawData.canonicalName |
||
end |
end |
||
36 පේළිය: | 36 පේළිය: | ||
end |
end |
||
function Script:getSystemCodes() |
|||
return type(self._rawData[2]) == "table" and self._rawData[2] or type(self._rawData[2]) == "string" and {self._rawData[2]} or {} |
|||
⚫ | |||
function Script:getSystems() |
function Script:getSystems() |
||
42 පේළිය: | 45 පේළිය: | ||
self._systemObjects = {} |
self._systemObjects = {} |
||
for _, |
for _, ws in ipairs(self:getSystemCodes()) do |
||
table.insert(self._systemObjects, m_systems.getByCode( |
table.insert(self._systemObjects, m_systems.getByCode(ws)) |
||
end |
end |
||
end |
end |
||
57 පේළිය: | 60 පේළිය: | ||
function Script:getType() |
function Script:getType() |
||
return " |
return "script" |
||
end |
end |
||
function Script:getCategoryName(nocap) |
function Script:getCategoryName(nocap) |
||
local name = self._rawData.canonicalName |
local name = self._rawData[1] or self._rawData.canonicalName |
||
-- If the name already has "code" or "semaphore" in it, don't add it. |
-- If the name already has "code" or "semaphore" in it, don't add it. |
||
-- No names contain "script". |
-- No names contain "script". |
||
if not name:find("[Cc]ode$") and not name:find("[Ss]emaphore$") then |
if not name:find("[Cc]ode$") and not name:find("[Ss]emaphore$") then |
||
name = name .. " |
name = name .. " script" |
||
end |
end |
||
if not nocap then |
if not nocap then |
||
99 පේළිය: | 102 පේළිය: | ||
return 0 |
return 0 |
||
-- Due to the number of Chinese characters, a different determination method is used when differentiating between traditional ("Hant") and simplified ("Hans") Chinese. |
-- Due to the number of Chinese characters, a different determination method is used when differentiating between traditional ("Hant") and simplified ("Hans") Chinese. |
||
elseif self |
elseif self:getCode() == "Hant" or self:getCode() == "Hans" then |
||
local charData, num = self:getCode() == "Hant" and mw.loadData("Module:zh/data/ts").ts or mw.loadData("Module:zh/data/st").st, 0 |
|||
local u = mw.ustring.char |
|||
for char in text:gmatch("[%z\1-\127\194-\244][\128-\191]*") do |
|||
local ts_data = mw.loadData("Module:zh/data/ts") |
|||
if charData[char] then num = num + 1 end |
|||
for codepoint in mw.ustring.gcodepoint(text) do |
|||
if ts_data.ts[u(codepoint)] then return 1 end |
|||
end |
end |
||
return |
return num |
||
elseif self._code == "Hans" then |
|||
local u = mw.ustring.char |
|||
local st_data = mw.loadData("Module:zh/data/st") |
|||
for codepoint in mw.ustring.gcodepoint(text) do |
|||
if st_data.st[u(codepoint)] then return 1 end |
|||
⚫ | |||
⚫ | |||
else |
else |
||
local _, num = mw.ustring.gsub(text, "[" .. self._rawData.characters .. "]", "") |
local _, num = mw.ustring.gsub(text, "[" .. self._rawData.characters .. "]", "") |
||
122 පේළිය: | 117 පේළිය: | ||
function Script:hasCapitalization() |
function Script:hasCapitalization() |
||
return not not self._rawData.capitalized |
return not not self._rawData.capitalized |
||
end |
|||
function Script:hasSpaces() |
|||
if type(self._rawData.spaces) == "boolean" then |
|||
return self._rawData.spaces |
|||
else |
|||
⚫ | |||
end |
|||
end |
end |
||
218 පේළිය: | 222 පේළිය: | ||
characters = self:getCharacters(), |
characters = self:getCharacters(), |
||
parent = self:getParent(), |
parent = self:getParent(), |
||
systems = self |
systems = self:getSystemCodes(), |
||
wikipediaArticle = self._rawData.wikipedia_article, |
wikipediaArticle = self._rawData.wikipedia_article, |
||
} |
} |
20:12, 8 මාර්තු 2023 තෙක් සංශෝධනය
- පහත දැක්වෙන උපදෙස්, Module:scripts/documentation හි පිහිටා ඇත. Module:scripts/documentation]]. [සංස්කරණය]
- ප්රයෝජනවත් සබැඳි: උප පිටු ලැයිස්තුව • සබැඳි • transclusions • testcases • sandbox
This module is used to retrieve and manage Wiktionary's various writing systems and the information associated with them. See Wiktionary:Scripts for more information.
The information itself is stored in Module:scripts/data. The data module should not be used directly by any other module, the data should only be accessed through the functions provided by Module:scripts.
For functions that allow templates to use this module, see Module:scripts/templates.
Finding and retrieving scripts
The module exports a number of functions that are used to find scripts.
export.makeObject
function export.makeObject(code, data)
This function lacks a documentation. Please add a description of its usages, inputs and outputs, or its difference from similar functions, or make it local to remove it from the function list.
export.getByCode
function export.getByCode(code, paramForError, disallowNil)
This function lacks a documentation. Please add a description of its usages, inputs and outputs, or its difference from similar functions, or make it local to remove it from the function list.
export.getByCanonicalName
function export.getByCanonicalName(name)
This function lacks a documentation. Please add a description of its usages, inputs and outputs, or its difference from similar functions, or make it local to remove it from the function list.
export.charToScript
function export.charToScript(char)
This function lacks a documentation. Please add a description of its usages, inputs and outputs, or its difference from similar functions, or make it local to remove it from the function list.
export.findBestScriptWithoutLang
function export.findBestScriptWithoutLang(text)
This function lacks a documentation. Please add a description of its usages, inputs and outputs, or its difference from similar functions, or make it local to remove it from the function list.
Script objects
A Script
object is returned from one of the functions above. It is a Lua representation of a script and the data associated with it. It has a number of methods that can be called on it, using the :
syntax. For example:
local m_scripts = require("Module:scripts")
local sc = m_scripts.getByCode("Latn")
local name = sc:getCanonicalName()
-- "name" will now be "Latin"
Script:getCode
function Script:getCode()
This function lacks a documentation. Please add a description of its usages, inputs and outputs, or its difference from similar functions, or make it local to remove it from the function list.
Script:getCanonicalName
function Script:getCanonicalName()
This function lacks a documentation. Please add a description of its usages, inputs and outputs, or its difference from similar functions, or make it local to remove it from the function list.
Script:getDisplayForm
function Script:getDisplayForm()
This function lacks a documentation. Please add a description of its usages, inputs and outputs, or its difference from similar functions, or make it local to remove it from the function list.
Script:getOtherNames
function Script:getOtherNames(onlyOtherNames)
This function lacks a documentation. Please add a description of its usages, inputs and outputs, or its difference from similar functions, or make it local to remove it from the function list.
Script:getAliases
function Script:getAliases()
This function lacks a documentation. Please add a description of its usages, inputs and outputs, or its difference from similar functions, or make it local to remove it from the function list.
Script:getVarieties
function Script:getVarieties(flatten)
This function lacks a documentation. Please add a description of its usages, inputs and outputs, or its difference from similar functions, or make it local to remove it from the function list.
Script:getParent
function Script:getParent()
This function lacks a documentation. Please add a description of its usages, inputs and outputs, or its difference from similar functions, or make it local to remove it from the function list.
Script:getSystemCodes
function Script:getSystemCodes()
This function lacks a documentation. Please add a description of its usages, inputs and outputs, or its difference from similar functions, or make it local to remove it from the function list.
Script:getSystems
function Script:getSystems()
This function lacks a documentation. Please add a description of its usages, inputs and outputs, or its difference from similar functions, or make it local to remove it from the function list.
Script:getType
function Script:getType()
This function lacks a documentation. Please add a description of its usages, inputs and outputs, or its difference from similar functions, or make it local to remove it from the function list.
Script:getCategoryName
function Script:getCategoryName(nocap)
This function lacks a documentation. Please add a description of its usages, inputs and outputs, or its difference from similar functions, or make it local to remove it from the function list.
Script:makeCategoryLink
function Script:makeCategoryLink()
This function lacks a documentation. Please add a description of its usages, inputs and outputs, or its difference from similar functions, or make it local to remove it from the function list.
Script:getWikipediaArticle
function Script:getWikipediaArticle()
This function lacks a documentation. Please add a description of its usages, inputs and outputs, or its difference from similar functions, or make it local to remove it from the function list.
Script:getCharacters
function Script:getCharacters()
This function lacks a documentation. Please add a description of its usages, inputs and outputs, or its difference from similar functions, or make it local to remove it from the function list.
Script:countCharacters
function Script:countCharacters(text)
This function lacks a documentation. Please add a description of its usages, inputs and outputs, or its difference from similar functions, or make it local to remove it from the function list.
Script:hasCapitalization
function Script:hasCapitalization()
This function lacks a documentation. Please add a description of its usages, inputs and outputs, or its difference from similar functions, or make it local to remove it from the function list.
Script:hasSpaces
function Script:hasSpaces()
This function lacks a documentation. Please add a description of its usages, inputs and outputs, or its difference from similar functions, or make it local to remove it from the function list.
Script:isTransliterated
function Script:isTransliterated()
This function lacks a documentation. Please add a description of its usages, inputs and outputs, or its difference from similar functions, or make it local to remove it from the function list.
Script:getDirection
function Script:getDirection()
This function lacks a documentation. Please add a description of its usages, inputs and outputs, or its difference from similar functions, or make it local to remove it from the function list.
Script:getRawData
function Script:getRawData()
This function lacks a documentation. Please add a description of its usages, inputs and outputs, or its difference from similar functions, or make it local to remove it from the function list.
Script:hasNormalizationFixes
function Script:hasNormalizationFixes()
This function lacks a documentation. Please add a description of its usages, inputs and outputs, or its difference from similar functions, or make it local to remove it from the function list.
Script:fixDiscouragedSequences
function Script:fixDiscouragedSequences(text)
This function lacks a documentation. Please add a description of its usages, inputs and outputs, or its difference from similar functions, or make it local to remove it from the function list.
Script:toFixedNFC
function Script:toFixedNFC(text)
This function lacks a documentation. Please add a description of its usages, inputs and outputs, or its difference from similar functions, or make it local to remove it from the function list.
Script:toFixedNFD
function Script:toFixedNFD(text)
This function lacks a documentation. Please add a description of its usages, inputs and outputs, or its difference from similar functions, or make it local to remove it from the function list.
Script:toFixedNFKC
function Script:toFixedNFKC(text)
This function lacks a documentation. Please add a description of its usages, inputs and outputs, or its difference from similar functions, or make it local to remove it from the function list.
Script:toFixedNFKD
function Script:toFixedNFKD(text)
This function lacks a documentation. Please add a description of its usages, inputs and outputs, or its difference from similar functions, or make it local to remove it from the function list.
Script:toJSON
function Script:toJSON()
This function lacks a documentation. Please add a description of its usages, inputs and outputs, or its difference from similar functions, or make it local to remove it from the function list.
Subpages
See also
local export = {}
local Script = {}
function Script:getCode()
return self._code
end
function Script:getCanonicalName()
return self._rawData[1] or self._rawData.canonicalName
end
function Script:getDisplayForm()
return self:getCategoryName("nocap")
end
function Script:getOtherNames(onlyOtherNames)
return require("Module:language-like").getOtherNames(self, onlyOtherNames)
end
function Script:getAliases()
return self._rawData.aliases or {}
end
function Script:getVarieties(flatten)
return require("Module:language-like").getVarieties(self, flatten)
end
function Script:getParent()
return self._rawData.parent
end
function Script:getSystemCodes()
return type(self._rawData[2]) == "table" and self._rawData[2] or type(self._rawData[2]) == "string" and {self._rawData[2]} or {}
end
function Script:getSystems()
if not self._systemObjects then
local m_systems = require("Module:writing systems")
self._systemObjects = {}
for _, ws in ipairs(self:getSystemCodes()) do
table.insert(self._systemObjects, m_systems.getByCode(ws))
end
end
return self._systemObjects
end
--function Script:getAllNames()
-- return self._rawData.names
--end
function Script:getType()
return "script"
end
function Script:getCategoryName(nocap)
local name = self._rawData[1] or self._rawData.canonicalName
-- If the name already has "code" or "semaphore" in it, don't add it.
-- No names contain "script".
if not name:find("[Cc]ode$") and not name:find("[Ss]emaphore$") then
name = name .. " script"
end
if not nocap then
name = mw.getContentLanguage():ucfirst(name)
end
return name
end
function Script:makeCategoryLink()
return "[[:Category:" .. self:getCategoryName() .. "|" .. self:getDisplayForm() .. "]]"
end
function Script:getWikipediaArticle()
return self._rawData.wikipedia_article or self:getCategoryName()
end
function Script:getCharacters()
if self._rawData.characters then
return self._rawData.characters
else
return nil
end
end
function Script:countCharacters(text)
if not self._rawData.characters then
return 0
-- Due to the number of Chinese characters, a different determination method is used when differentiating between traditional ("Hant") and simplified ("Hans") Chinese.
elseif self:getCode() == "Hant" or self:getCode() == "Hans" then
local charData, num = self:getCode() == "Hant" and mw.loadData("Module:zh/data/ts").ts or mw.loadData("Module:zh/data/st").st, 0
for char in text:gmatch("[%z\1-\127\194-\244][\128-\191]*") do
if charData[char] then num = num + 1 end
end
return num
else
local _, num = mw.ustring.gsub(text, "[" .. self._rawData.characters .. "]", "")
return num
end
end
function Script:hasCapitalization()
return not not self._rawData.capitalized
end
function Script:hasSpaces()
if type(self._rawData.spaces) == "boolean" then
return self._rawData.spaces
else
return true
end
end
function Script:isTransliterated()
if type(self._rawData.translit) == "boolean" then
return self._rawData.translit
else
return true
end
end
function Script:getDirection()
return self._rawData.direction
end
function Script:getRawData()
return self._rawData
end
-- Return true if the script requires fixes to Unciode normalization under certain circumstances.
function Script:hasNormalizationFixes()
return not not self._rawData.normalizationFixes
end
-- Corrects discouraged sequences of Unicode characters to the encouraged equivalents.
function Script:fixDiscouragedSequences(text)
if self:hasNormalizationFixes() and self._rawData.normalizationFixes.from then
local gsub
for i, from in ipairs(self._rawData.normalizationFixes.from) do
-- Most of the time, it's faster to check whether mw.ustring.gsub is actually necessary before using it, as it's a lot slower.
if from:match("[%%.[%]*+%-?]") then gsub = mw.ustring.gsub else gsub = string.gsub end
text = gsub(text, from, self._rawData.normalizationFixes.to[i] or "")
end
end
return text
end
-- Implements a modified form of Unicode normalization for instances where there are identified deficiencies in the default Unicode combining classes.
local function fixNormalization(text, self)
if self:hasNormalizationFixes() and self._rawData.normalizationFixes.combiningClasses then
local combiningClassFixes = self._rawData.normalizationFixes.combiningClasses
local charsToFix = table.concat(require("Module:table").keysToList(combiningClassFixes))
if mw.ustring.match(text, "[" .. charsToFix .. "]") then
local gsub, codepoint, u = mw.ustring.gsub, mw.ustring.codepoint, mw.ustring.char
-- Obtain the list of default combining classes.
local combiningClasses = mw.loadData("Module:scripts/data/combiningClasses")
-- For each character that needs fixing, find all characters with combining classes equal to or lower than its default class, but greater than its new class (i.e. intermediary characters).
for charToFix, newCombiningClass in pairs(combiningClassFixes) do
local intermediaryChars = {}
for character, combiningClass in pairs(combiningClasses) do
if newCombiningClass < combiningClass and combiningClass <= combiningClasses[codepoint(charToFix)] then
table.insert(intermediaryChars, u(character))
end
end
-- Swap the character with any intermediary characters that are immediately before it.
text = gsub(text, "([" .. table.concat(intermediaryChars) .. "]+)(" .. charToFix .. ")", "%2%1")
end
end
end
return text
end
function Script:toFixedNFC(text)
return fixNormalization(mw.ustring.toNFC(text), self)
end
function Script:toFixedNFD(text)
return fixNormalization(mw.ustring.toNFD(text), self)
end
function Script:toFixedNFKC(text)
return fixNormalization(mw.ustring.toNFKC(text), self)
end
function Script:toFixedNFKD(text)
return fixNormalization(mw.ustring.toNFKD(text), self)
end
function Script:toJSON()
local ret = {
canonicalName = self:getCanonicalName(),
categoryName = self:getCategoryName("nocap"),
code = self._code,
otherNames = self:getOtherNames(true),
aliases = self:getAliases(),
varieties = self:getVarieties(),
type = self:getType(),
direction = self:getDirection(),
characters = self:getCharacters(),
parent = self:getParent(),
systems = self:getSystemCodes(),
wikipediaArticle = self._rawData.wikipedia_article,
}
return require("Module:JSON").toJSON(ret)
end
Script.__index = Script
function export.makeObject(code, data)
return data and setmetatable({ _rawData = data, _code = code, _type = "script object" }, Script) or nil
end
function export.getByCode(code, paramForError, disallowNil)
if code == nil and not disallowNil then
return nil
end
if code == "IPAchar" then
require("Module:debug/track")("IPAchar")
end
local retval = export.makeObject(code, mw.loadData("Module:scripts/data")[code])
if not retval and paramForError then
require("Module:languages/error")(code, paramForError, "script code", nil, "not real lang")
end
return retval
end
function export.getByCanonicalName(name)
local code = mw.loadData("Module:scripts/by name")[name]
if not code then
return nil
end
return export.makeObject(code, mw.loadData("Module:scripts/data")[code])
end
--[=[
Takes a codepoint or a character and finds the script code (if any) that is
appropriate for it based on the codepoint, using the data module
[[Module:scripts/recognition data]]. The data module was generated from the
patterns in [[Module:scripts/data]] using [[Module:User:Erutuon/script recognition]].
Converts the character to a codepoint. Returns a script code if the codepoint
is in the list of individual characters, or if it is in one of the defined
ranges in the 4096-character block that it belongs to, else returns "None".
]=]
function export.charToScript(char)
return require("Module:scripts/charToScript").charToScript(char)
end
function export.findBestScriptWithoutLang(text)
return require("Module:scripts/charToScript").findBestScriptWithoutLang(text)
end
return export