Related changes
Appearance
Enter a page name to see changes on pages linked to or from that page. (To see members of a category, enter Category:Name of category). Changes to pages on your Watchlist are shown in bold with a green bullet.
List of abbreviations (help):
- N
- New page
- m
- Minor edit
- b
- Bot edit]]
- (±123)
- Page byte size change
9 July 2026
| N 22:41 | Module:Urldecode/doc diffhist +617 Peter Harrison talk contribs (←Created page with '== Functions == * Function ''urlDecode'' reverses the transformation by magic word <code><nowiki>{{urlencode:}}</nowiki></code>. :: <code><nowiki>{{#invoke:</nowiki>{{#ifeq:{{#titleparts:{{PAGENAME}}||-1}}|doc|{{#titleparts:{{PAGENAME}}|-1}}|{{PAGENAME}}}}<nowiki>|urlDecode|C%C3%B4te+d%27Ivoire}}</nowiki></code> would produce <code>{{#invoke:{{#ifeq:{{#titleparts:{{PAGENAME}}||-1}}|doc|{{#titleparts:{{PAGENAME}}|-...') | ||||
| N 22:40 | Module:Urldecode diffhist +452 Peter Harrison talk contribs (←Created page with 'local p = {} function p.urlDecode( frame ) local enctype = frame.args[2] local ret = nil; if (frame.args[2] ~= nil) then enctype = mw.ustring.upper(enctype) if ((enctype == "QUERY") or (enctype == "PATH") or (enctype == "WIKI")) then ret = mw.uri.decode(frame.args[1],frame.args[2]) end else ret = mw.uri.decode(frame.args[1]) end ret = string.gsub(ret, "{", "{") ret = string.gsub(ret, "}", "}") retu...') | ||||