Jump to content
Main menu
Main menu
move to sidebar
hide
Navigation
Main page
Recent changes
Random page
Help about MediaWiki
Humanipedia
Search
Search
Appearance
Create account
Log in
Personal tools
Create account
Log in
Pages for logged out editors
learn more
Contributions
Talk
Editing
Module:Road data/parser/hooks
Module
Discussion
English
Read
Edit source
View history
Tools
Tools
move to sidebar
hide
Actions
Read
Edit source
View history
General
What links here
Related changes
Special pages
Page information
Appearance
move to sidebar
hide
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.
Anti-spam check. Do
not
fill this in!
local p = {} local parserModuleName = "Module:Road data/parser" -- SANDBOX REFERENCE function p.split(parameters, args) local route = tonumber(string.match(args.route, "%d+")) or 0 if route < parameters.split then return parameters.below else return parameters.above end end function p.splitlen(parameters, args) local route = args.route if #route < parameters.split then return parameters.below else return parameters.above end end function p.between(parameters, args) local lower = parameters.lower local upper = parameters.upper local route = tonumber(string.match(args.route, "%d+")) or 0 if route < lower or route >= upper then return parameters.no else return parameters.yes end end function p.mask(parameters, args) local baseParam = parameters.base local maskedParam = parameters.masked local maskModule = "Module:" .. parameters.mask local mask = mw.loadData(maskModule) args[maskedParam] = mask[args[baseParam]] return parameters.default end function p.padroute(parameters, args) local route = args.route local paddedLength = parameters.paddedLength args.paddedRoute = string.format("%0" .. tostring(paddedLength) .. "d", route) return parameters.default end function p.lowercase(parameters, args) local route = args.route args.lowercase = string.lower(route) return parameters.default end --[[ For the first element (pattern, action) in .actions such that args[.base] begins with pattern, return action. If no such element exists, return .default (nil if unspecified). ]] function p.beginswith(parameters, args) local baseParam = parameters.base local actions = parameters.actions local arg = args[baseParam] for pattern,action in pairs(actions) do if mw.ustring.sub(arg, 1, mw.ustring.len(pattern)) == pattern then return action end end return parameters.default end --[[ For the first element (pattern, action) in .actions such that require(Module:Road data/parser).parser(args, .entry, .path, .kind) matches pattern as a regular expression, return action. If no such element exists, return .default (nil if unspecified). .path and .kind are optional. ]] function p.match(parameters, args) local parserModule = require(parserModuleName) local parser = parserModule.parser local entry = parameters.entry local path = parameters.path local kind = parameters.kind local actions = parameters.actions local value = parser(args, entry, path, kind) for pattern,action in pairs(actions) do if mw.ustring.match(value, pattern) then return action end end return parameters.default end function p.iso3166Sub(parameters, args) local country = args.country local subParam = parameters.sub local subCode = args[subParam] local iso3166Module = require("Module:ISO 3166") args.iso3166Sub = iso3166Module.luaname{country, subCode} return parameters.default end function p.pagename(parameters, args) local pagename = mw.title.getCurrentTitle().text local article = parameters.article if article == pagename then return parameters.iftrue else return parameters.default or '' end end return p
Summary:
Please note that all contributions to Humanipedia 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
Humanipedia:Copyrights
for details).
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)
Debug console
* The module exports are available as the variable "p", including unsaved modifications. * Precede a line with "=" to evaluate it as an expression or use print(). Use mw.logObject() for tables. * Use mw.log() and mw.logObject() in module code to send messages to this console.
Module:Road data/parser/hooks/doc
(
edit
)