All public logs
Combined display of all available logs of OtherX. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 12:42, 20 January 2024 OtherXAdmin talk contribs created page Module:Paramtest/doc (Created page with "{{documentation}} {{Helper module |name=Paramtest |fname1 = is_empty(arg) |ftype1 = String |fuse1 = Returns true if arg is not defined or contains only whitespace |fname2 = has_content(arg) |ftype2 = String |fuse2 = Returns true if arg exists and does not only contain whitespace |fname3 = default_to(arg1,arg2) |ftype3 = String, Any value |fuse3 = If arg1 exists and does not only contain whitespace, the function returns arg1, otherwise returns arg2 |fname4 = defaults{ {ar...")
- 12:42, 20 January 2024 OtherXAdmin talk contribs created page Module:Paramtest (Created page with "--[[ {{Helper module |name=Paramtest |fname1 = is_empty(arg) |ftype1 = String |fuse1 = Returns true if arg is not defined or contains only whitespace |fname2 = has_content(arg) |ftype2 = String |fuse2 = Returns true if arg exists and does not only contain whitespace |fname3 = default_to(arg1,arg2) |ftype3 = String, Any value |fuse3 = If arg1 exists and does not only contain whitespace, the function returns arg1, otherwise returns arg2 |fname4 = defaults{ {arg1,arg2},...}...")
- 12:41, 20 January 2024 OtherXAdmin talk contribs created page Module:Yesno/doc (Created page with "{{documentation}} {{Helper module|name=Yesno |fname1=(arg) |ftype1=Any value |fuse1=Reads arg for yes/no and returns the appropriate boolean or nil |fname2=(arg1,arg2) |ftype2=Any value, Any value |fuse2=Reads arg1 for yes/no and returns the appropriate boolean; returns arg2 if arg1 was not an applicable value }}")
- 12:41, 20 January 2024 OtherXAdmin talk contribs created page Module:Yesno (Created page with "--[[ {{Helper module|name=Yesno |fname1=(arg) |ftype1=Any value |fuse1=Reads arg for yes/no and returns the appropriate boolean or nil |fname2=(arg1,arg2) |ftype2=Any value, Any value |fuse2=Reads arg1 for yes/no and returns the appropriate boolean; returns arg2 if arg1 was not an applicable value }} --]] -- <pre> -- Used to evaluate args to booleans where applicable -- -- Based on <https://en.wikipedia.org/wiki/Module:Yesno> -- see page history there for contributors --...")
- 12:40, 20 January 2024 OtherXAdmin talk contribs created page Module:Mainonly/doc (Created page with "{{documentation}} {{Helper module|name=Mainonly |fname1=_main(arg) |ftype1=Any value |fuse1=If the module is invoked in the content namespace, it will return arg, otherwise, it will return an empty string |fname2=on_main() |ftype2=N/A |fuse2=Returns true if invoked in the content namespace, otherwise false }}")
- 12:40, 20 January 2024 OtherXAdmin talk contribs created page Module:Mainonly (Created page with "--[[ {{Helper module|name=Mainonly |fname1=_main(arg) |ftype1=Any value |fuse1=If the module is invoked in the content namespace, it will return arg, otherwise, it will return an empty string |fname2=on_main() |ftype2=N/A |fuse2=Returns true if invoked in the content namespace, otherwise false }} --]] -- -- Module to return text only when invoked in the content namespace -- local p = {} function p.main(frame) local ret = frame:getParent().args[1] or '' return p._main...")
- 12:39, 20 January 2024 OtherXAdmin talk contribs created page Module:Addcommas/doc (Created page with "{{documentation}} {{Helper module|name=Addcommas |fname1=_add(arg) |ftype1=Number |fuse1=Formats the number arg with commas |fname2=_strip(arg) |ftype2=Number |fuse2=Removes all commas from arg }}")
- 12:39, 20 January 2024 OtherXAdmin talk contribs created page Module:Addcommas (Created page with "--[[ {{Helper module|name=Addcommas |fname1=_add(arg) |ftype1=Number |fuse1=Formats the number arg with commas |fname2=_strip(arg) |ftype2=Number |fuse2=Removes all commas from arg }} --]] -- <nowiki> -- -- Implements {{Addcommas}} -- local p = {} -- -- main function -- keep public so it can be used in other modules -- function p._add( arg ) local lang = mw.language.getContentLanguage() local z = tostring( arg ) local y = mw.text.split( z, '[%-–]' ) l...")
- 12:37, 20 January 2024 OtherXAdmin talk contribs created page Module:Array (Created page with "local libraryUtil = require('libraryUtil') local checkType = libraryUtil.checkType local checkTypeMulti = libraryUtil.checkTypeMulti ---Returns the length of the array but it also works on proxy arrays ---@param arr any[] ---@return integer local function len(arr) local l = #arr if l == 0 then if arr[1] ~= nil then -- Exponential search to find length of proxy table local low = 1 local high = 1 local ceil = math.ceil while arr[high] ~= nil do high...")
- 12:37, 20 January 2024 OtherXAdmin talk contribs created page Template:No documentation/doc (Created page with "{{Documentation}} This template should be used when there is no documentation for a Module or Template.")
- 12:36, 20 January 2024 OtherXAdmin talk contribs created page Template:No documentation (Created page with "<includeonly>{{documentation|Template:No documentation|DependencyList=No}} <span class='plainlinks'>'''This {{PageType}} does not have any documentation.''' Please consider adding documentation at [[{{#replace:{{FULLPAGENAME}}|/doc}}/doc]]. <nowiki>[</nowiki>[{{fullurl:{{#replace:{{FULLPAGENAME}}|/doc}}/doc|action=edit}} edit]<nowiki>]</nowiki></span>{{#If:{{{DependencyList|}}}||{{DependencyList}}}}Category:Pages needing documentation</includeonly><noinclude>{{/doc}}...")
- 12:35, 20 January 2024 OtherXAdmin talk contribs created page Template:DependencyList/doc (Created page with "{{Documentation}} This template is meant to be used on module documentations. {{T|DependencyList|<Module name>|category=<true/false>}} All parameters are optional. If <code>Module name</code> is omitted the page name will be used instead; <code>/doc</code> is automatically removed. If <code>category</code> is <code>false</code> then no categories will be added to the page, the default value is <code>true</code>. ==Examples== {{T|DependencyList|Module:Infobox Monster...")
- 12:35, 20 January 2024 OtherXAdmin talk contribs created page Template:DependencyList (Created page with "<includeonly>{{#invoke:DependencyList|main}}</includeonly><noinclude>{{/doc}}</noinclude>")
- 12:34, 20 January 2024 OtherXAdmin talk contribs created page Module:DependencyList/doc (Created page with "{{Documentation}} This template is meant to be used on module documentations. {{T|DependencyList|<Module name>|category=<true/false>}} All parameters are optional. If <code>Module name</code> is omitted the page name will be used instead; <code>/doc</code> is automatically removed. If <code>category</code> is <code>false</code> then no categories will be added to the page, the default value is <code>true</code>. ==Examples== {{T|DependencyList|Module:Infobox Monster...")
- 12:34, 20 January 2024 OtherXAdmin talk contribs created page Module:DependencyList (Created page with "local p = {} local libraryUtil = require( 'libraryUtil' ) local arr = require( 'Module:Array' ) local yn = require( 'Module:Yesno' ) local param = require( 'Module:Paramtest' ) local dpl = require( 'Module:DPLlua' ) local tooltip = require( 'Module:Tooltip' ) local moduleIsUsed = false local COLLAPSE_LIST_LENGTH_THRESHOLD = 5 local MAX_DYNAMIC_REQUIRE_LIST_LENGTH = 30 local dynamicRequireListQueryCache = {} local builtins = { ["libraryUtil"] = { link = "mw:S...")
- 12:33, 20 January 2024 OtherXAdmin talk contribs created page Module:Documentation/doc (Created page with "{{External|meta|rs|rsc}} {{Documentation}} Implements Template:Documentation for templates and modules.")
- 12:32, 20 January 2024 OtherXAdmin talk contribs created page Module:Documentation (Created page with "-- <nowiki> local dependencyList = require( 'Module:DependencyList' ) local yn = require( 'Module:Yesno' ) local p = {} function p.doc( frame ) local title = mw.title.getCurrentTitle() local args = frame:getParent().args local page = args[1] or mw.ustring.gsub( title.fullText, '/doc$', '' ) local addDependencyList = yn( args.DependencyList or true ) local ret, cats, ret1, ret2, ret3 local onModule = title.namespace == 828 -- subpage head...")
- 12:31, 20 January 2024 OtherXAdmin talk contribs created page Module:Edit button/doc (Created page with "{{Documentation}} {{Helper module |name=Edit button |fname1=(text, page) |ftype1=string, string |fuse1=Creates an edit button for <code>page</code>. <code>page</code> defaults to the current page that the module is invoked on<br><br><code>text</code> defaults to "edit" }}")
- 12:30, 20 January 2024 OtherXAdmin talk contribs created page Module:Edit button (Created page with "-- {{Helper module|name=Edit button|fname1=(text)|ftype1=string|fuse1=Creates an edit button for the current page that the module is invoked on<br><br><code>text</code> defaults to "edit"}} -- Creates a link that opens the editor screen for whatever page this module is invoked on return function(text, page) local page_title = page or mw.title.getCurrentTitle().fullText local url = tostring(mw.uri.fullUrl(page_title,'action=edit')) return '['..url..' '..(text or 'edi...")
- 16:15, 17 January 2024 OtherXAdmin talk contribs created page Template:Character Card (Created page with "{{#invoke:Character Card|main}}<noinclude>{{/doc}}</noinclude>")
- 15:46, 17 January 2024 OtherXAdmin talk contribs created page File:Absentia club.png
- 15:46, 17 January 2024 OtherXAdmin talk contribs uploaded File:Absentia club.png
- 14:21, 17 January 2024 OtherXAdmin talk contribs deleted page Oda Info (content was: "left|Oda Percentages ==Gallery== <gallery heights="250" style="text-align:left"> Oda Percentages.png|An image of Oda percentages based on tier (Otherdex). Oda Tiers.png|An image of Oda types and their different tiers (Otherside Wiki). </gallery>", and the only contributor was "OtherXAdmin" (talk))
- 13:49, 17 January 2024 OtherXAdmin talk contribs created page File:DDUnclogged.png
- 13:49, 17 January 2024 OtherXAdmin talk contribs uploaded File:DDUnclogged.png
- 12:55, 17 January 2024 OtherXAdmin talk contribs deleted page File:DDU.png (content was: "DDU", and the only contributor was "OtherXAdmin" (talk))
- 12:55, 17 January 2024 OtherXAdmin talk contribs created page File:DDU.png
- 12:55, 17 January 2024 OtherXAdmin talk contribs uploaded File:DDU.png
- 12:54, 17 January 2024 OtherXAdmin talk contribs deleted page File:Dookey Dash Unclogged.webp (content was: "Dookey Dash Unclogged", and the only contributor was "OtherXAdmin" (talk))
- 15:27, 16 January 2024 OtherXAdmin talk contribs created page File:Dookey Dash Unclogged.webp
- 15:27, 16 January 2024 OtherXAdmin talk contribs uploaded File:Dookey Dash Unclogged.webp
- 15:16, 16 January 2024 OtherXAdmin talk contribs reverted File:Otherside bone background.png to an old version (Reverted to version as of 15:14, 16 January 2024 (EST))
- 15:15, 16 January 2024 OtherXAdmin talk contribs reverted File:Otherside bone background.png to an old version (Reverted to version as of 17:39, 15 January 2024 (EST))
- 15:14, 16 January 2024 OtherXAdmin talk contribs uploaded a new version of File:Otherside bone background.png
- 15:03, 16 January 2024 OtherXAdmin talk contribs uploaded a new version of File:Otherside bone background.png
- 15:02, 16 January 2024 OtherXAdmin talk contribs deleted page File:Otherside bone background.png (Deleted old revision 20240116200236!Otherside_bone_background.png: content before blanking was: "")
- 15:02, 16 January 2024 OtherXAdmin talk contribs reverted File:Otherside bone background.png to an old version (Reverted to version as of 17:39, 15 January 2024 (EST))
- 15:01, 16 January 2024 OtherXAdmin talk contribs uploaded a new version of File:Otherside bone background.png
- 13:36, 16 January 2024 OtherXAdmin talk contribs uploaded a new version of File:Oda.png
- 00:15, 16 January 2024 OtherXAdmin talk contribs created page File:Oda all.png
- 00:15, 16 January 2024 OtherXAdmin talk contribs uploaded File:Oda all.png
- 00:15, 16 January 2024 OtherXAdmin talk contribs deleted page File:Oda all.png (content was: "", and the only contributor was "OtherXAdmin" (talk))
- 00:03, 16 January 2024 OtherXAdmin talk contribs created page File:Discord logo icon.svg
- 00:03, 16 January 2024 OtherXAdmin talk contribs uploaded File:Discord logo icon.svg
- 00:03, 16 January 2024 OtherXAdmin talk contribs deleted page File:Discord logo icon.svg (content was: "", and the only contributor was "OtherXAdmin" (talk))
- 00:01, 16 January 2024 OtherXAdmin talk contribs created page File:Discord logo icon.svg
- 00:01, 16 January 2024 OtherXAdmin talk contribs uploaded File:Discord logo icon.svg
- 00:01, 16 January 2024 OtherXAdmin talk contribs deleted page File:Discord logo icon.svg (content was: "", and the only contributor was "OtherXAdmin" (talk))
- 23:59, 15 January 2024 OtherXAdmin talk contribs created page Koda (Created blank page) Tag: Visual edit: Switched
- 23:27, 15 January 2024 OtherXAdmin talk contribs deleted page File:Community.png (Deleted old revision 20240116042654!Community.png: content was: "alt=Bored Media Group|left|thumb|Bored Media Group", and the only contributor was "OtherXAdmin" (talk))