User contributions for NeonWabbit

A user with 5,780 edits. Account created on 23 March 2023.
Search for contributionsExpandCollapse
⧼contribs-top⧽
⧼contribs-date⧽
(newest | oldest) View ( | older 250) (20 | 50 | 100 | 250 | 500)

28 March 2023

  • 01:1001:10, 28 March 2023 diff hist +2,552 N Module:Infobox/datesCreated page with "local getArgs = require('Module:Arguments').getArgs local default_error_category = "Category:Pages using infobox television with nonstandard dates" local p = {} function p.start_end_date_template_validation(frame) local args = getArgs(frame) local error_category = args.error_category or default_error_category local start_date = args.first_aired or args.released or args.airdate or args.release_date or args.airdate_overall if start_date then if not start_date..." current
  • 01:1001:10, 28 March 2023 diff hist +79 N Template:Greater color contrast ratioCreated page with "<includeonly>{{safesubst:#invoke:Color contrast|greatercontrast}}</includeonly>" current
  • 01:1001:10, 28 March 2023 diff hist +431 N Template:CenterCreated page with "<includeonly><div class="center" style="width:auto; margin-left:auto; margin-right:auto;{{#if: {{{style|}}} | {{{style}}};}}">{{{1|Category:Pages using center with no arguments}}}</div></includeonly>{{#invoke:Check for unknown parameters|check|unknown=_VALUE_{{PAGENAME}}|preview=Page using Template:Center with unknown parameter "_VALUE_"|ignoreblank=y| 1 | style }}" current
  • 01:1001:10, 28 March 2023 diff hist +339 N Template:AlignCreated page with "{{#switch: {{lc:{{{1|center}}}}} |left = <div style="float: left;{{#if: {{{style|}}} | {{{style}}};}}">{{{2}}}</div> |right = <div style="float: right;{{#if: {{{style|}}} | {{{style}}};}}">{{{2}}}</div> |center = {{center|{{{2}}}|style={{{style|}}} }} |#default = Error in Template:Align: the alignment setting "{{{1}}}" is invalid. }}" current
  • 01:0901:09, 28 March 2023 diff hist +21,173 N Module:Series overviewCreated page with "-- This module implements {{Series overview}}. require('strict') local yesno = require('Module:Yesno') local HTMLcolor = mw.loadData( 'Module:Color contrast/colors' ) -------------------------------------------------------------------------------- -- SeriesOverview class -- The main class. -------------------------------------------------------------------------------- local SeriesOverview = {} function SeriesOverview.cellspan(SeasonEntries, SeasonEntries_ordered, ke..." current
  • 01:0901:09, 28 March 2023 diff hist +17,537 N Module:NavboxCreated page with "local p = {} local navbar = require('Module:Navbar')._navbar local cfg = mw.loadData('Module:Navbox/configuration') local getArgs -- lazily initialized local args local format = string.format local function striped(wikitext, border) -- Return wikitext with markers replaced for odd/even striping. -- Child (subgroup) navboxes are flagged with a category that is removed -- by parent navboxes. The result is that the category shows all pages -- where a child navbox is no..." current
  • 01:0901:09, 28 March 2023 diff hist +8,068 N Module:Episode tableCreated page with "-- This module implements {{Episode table}} and {{Episode table/part}}. local HTMLcolor = mw.loadData( 'Module:Color contrast/colors' ) -------------------------------------------------------------------------------- -- EpisodeTable class -- The main class. -------------------------------------------------------------------------------- local contrast_ratio = require('Module:Color contrast')._ratio local EpisodeTable = {} function EpisodeTable.cell(background, width,..." current
  • 01:0801:08, 28 March 2023 diff hist +138 N Template:Remove first wordCreated page with "{{<includeonly>safesubst:</includeonly>#invoke:String|replace|source={{{1}}}|pattern=^[^{{{sep|%s}}}]*{{{sep|%s}}}*|replace=|plain=false}}" current
  • 01:0701:07, 28 March 2023 diff hist +716 N Module:Based onCreated page with "local p = {} function p.lua_main(frame) local s = frame.args[1] if frame.args[3] then local args = {} for i, v in ipairs(frame.args) do if i >= 2 then args[#args+1] = v end end args['style'] = 'display: inline' args['list_style'] = 'display: inline' args['item1_style'] = 'display: inline' h = mw.html.create('div') h:wikitext(s) h:tag('br') -- h:newline() is not working for some reason h:wikitext('by ') h:wikitext(frame:expan..." current
  • 01:0601:06, 28 March 2023 diff hist +6,484 N Module:Format linkCreated page with "-------------------------------------------------------------------------------- -- Format link -- -- Makes a wikilink from the given link and display values. Links are escaped -- with colons if necessary, and links to sections are detected and displayed -- with " § " as a separator rather than the standard MediaWiki "#". Used in -- the {{format link}} template. -------------------------------------------------------------------------------- local libraryUtil = require(..." current
  • 01:0501:05, 28 March 2023 diff hist +4,641 N Module:Labelled list hatnoteCreated page with "-------------------------------------------------------------------------------- -- Labelled list -- -- -- -- This module does the core work of creating a hatnote composed of a list -- -- prefixed by a colon-terminated label, i.e. "LABEL: [andList of pages]", -- -- for {{see also}} and similar templates...." current
  • 01:0501:05, 28 March 2023 diff hist +9,738 N Module:Formatted appearanceCreated page with "-- This module requires the use of Module:List. local list = require('Module:List') local p = {} -- Local function which is used to get a correctly formatted entry. -- Function checks if the array had a value added by checking the counter, -- and returns the relevant result. local function getFormattedEntry(args, counter) if (counter == 1) then -- Check if the counter stayed the same. return "" -- Nothing was added to array; R..." current
  • 01:0501:05, 28 March 2023 diff hist +6,971 N Module:Color contrastCreated page with "-- -- This module implements -- {{Color contrast ratio}} -- {{Greater color contrast ratio}} -- {{ColorToLum}} -- {{RGBColorToLum}} -- local p = {} local HTMLcolor = mw.loadData( 'Module:Color contrast/colors' ) local function sRGB (v) if (v <= 0.03928) then v = v / 12.92 else v = math.pow((v+0.055)/1.055, 2.4) end return v end local function rgbdec2lum(R, G, B) if ( 0 <= R and R < 256 and 0 <= G and G < 256 and 0 <= B and B < 256 ) then return 0.2126 *..." current
  • 01:0401:04, 28 March 2023 diff hist +7,451 N Module:Hatnote listCreated page with "-------------------------------------------------------------------------------- -- Module:Hatnote list -- -- -- -- This module produces and formats lists for use in hatnotes. In particular, -- -- it implements the for-see list, i.e. lists of "For X, see Y" statements, -- -- as used in {{about}}, {{redirect}}, and their variants. Also introd..." current
  • 01:0301:03, 28 March 2023 diff hist +4,255 N Module:Detect singularCreated page with "local p = {} local getArgs = require('Module:Arguments').getArgs local yesNo = require('Module:Yesno') local getPlain = require('Module:Text').Text().getPlain -- function to determine whether "sub" occurs in "s" local function plainFind(s, sub) return mw.ustring.find(s, sub, 1, true) end -- function to count the number of times "pattern" (a regex) occurs in "s" local function countMatches(s, pattern) local _, count = mw.ustring.gsub(s, pattern, '') return count end..." current
  • 01:0301:03, 28 March 2023 diff hist +1,541 N Module:Check for clobbered parametersCreated page with "local p = {} local function trim(s) return s:match('^%s*(.-)%s*$') end local function isnotempty(s) return s and s:match('%S') end function p.check(frame) local args = frame.args local pargs = frame:getParent().args local checknested = isnotempty(args['nested']) local delimiter = isnotempty(args['delimiter']) and args['delimiter'] or ';' local argpairs = {} for k, v in pairs(args) do if type(k) == 'number' then local plist = mw.text.split(v, delimiter)..." current
  • 01:0301:03, 28 March 2023 diff hist +67 N Template:Str leftCreated page with "<includeonly>{{safesubst:padleft:|{{{2|1}}}|{{{1}}}}}</includeonly>" current
  • 01:0201:02, 28 March 2023 diff hist +234 N Module:If emptyCreated page with "local p = {} function p.main(frame) local args = require('Module:Arguments').getArgs(frame, {wrappers = 'Template:If empty', removeBlanks = false}) for k,v in ipairs(args) do if v ~= '' then return v end end end return p" current
  • 01:0201:02, 28 March 2023 diff hist +2,509 N Module:ParameterCountCreated page with "-- This module produces a count of all the arguments passed to it. local yesno = require('Module:Yesno') -- Trim a string local function trim(s) return s:match('^%s*(.-)%s*$') end -- Test whether a string is blank local function isBlank(s) return not s:find('%S') end -- Tests whether a string is a valid positional key, and if so, returns it. If -- the key is invalid, this returns nil. local function isPositionalKey(s) s = trim(s) if s:find('^[1-9][0-9]*$') then..." current
  • 01:0201:02, 28 March 2023 diff hist +1,403 N Module:Separated entriesCreated page with "-- This module takes positional parameters as input and concatenates them with -- an optional separator. The final separator (the "conjunction") can be -- specified independently, enabling natural-language lists like -- "foo, bar, baz and qux". The starting parameter can also be specified. local compressSparseArray = require('Module:TableTools').compressSparseArray local p = {} function p._main(args) local separator = args.separator -- Decode (convert to Unicode) HT..." current
  • 01:0201:02, 28 March 2023 diff hist +1,480 N Module:AboutCreated page with "local mArguments --initialize lazily local mHatnote = require('Module:Hatnote') local mHatList = require('Module:Hatnote list') local libraryUtil = require('libraryUtil') local checkType = libraryUtil.checkType local p = {} function p.about (frame) -- A passthrough that gets args from the frame and all mArguments = require('Module:Arguments') args = mArguments.getArgs(frame) return p._about(args) end function p._about (args, options) -- Produces "about" hatnote...." current
  • 00:5900:59, 28 March 2023 diff hist +832 Main PageNo edit summary Tag: Visual edit: Switched
  • 00:4400:44, 28 March 2023 diff hist 0 N Category:CharactersCreated blank page
  • 00:3900:39, 28 March 2023 diff hist +322 N Template:Template otherCreated page with "{{#switch: <!--If no or empty "demospace" parameter then detect namespace--> {{#if:{{{demospace|}}} | {{lc: {{{demospace}}} }} <!--Use lower case "demospace"--> | {{#ifeq:{{NAMESPACE}}|{{ns:Template}} | template | other }} }} | template = {{{1|}}} | other | #default = {{{2|}}} }}<!--End switch-->" current
  • 00:3900:39, 28 March 2023 diff hist +35 N Template:NowrapCreated page with "<span class="nowrap">{{{1}}}</span>" current
  • 00:3900:39, 28 March 2023 diff hist +62 N Template:If emptyCreated page with "{{<includeonly>safesubst:</includeonly>#invoke:If empty|main}}" current
  • 00:3800:38, 28 March 2023 diff hist +69 N Template:Br separated entriesCreated page with "{{<includeonly>safesubst:</includeonly>#invoke:Separated entries|br}}" current
  • 00:3800:38, 28 March 2023 diff hist +52 N Template:Based onCreated page with "<includeonly>{{#invoke:Based on|main}}</includeonly>" current
  • 00:3800:38, 28 March 2023 diff hist +52 N Template:NavboxCreated page with "<includeonly>{{#invoke:Navbox|navbox}}</includeonly>" current
  • 00:3700:37, 28 March 2023 diff hist +275 N Template:Ensure AAA contrast ratioCreated page with "<includeonly>{{#if:{{{base|}}}|{{#ifexpr:{{#invoke:Color contrast|ratio|{{{base}}}|{{{other|}}}|error=21}} < 7 OR {{#invoke:Color contrast|ratio|{{{base}}}|black|error=0}} < 7 AND {{#invoke:Color contrast|ratio|{{{base}}}|white|error=0}} < 7|{{{category|}}}}}}}</includeonly>" current
  • 00:3700:37, 28 March 2023 diff hist +223 N Template:InfoboxCreated page with "{{#invoke:Infobox|infobox}}<includeonly>{{template other|{{#ifeq:{{PAGENAME}}|Infobox||{{#ifeq:{{str left|{{SUBPAGENAME}}|7}}|Infobox|{{remove first word|{{SUBPAGENAME}}}}}}}}|}}</includeonly>" current
  • 00:3700:37, 28 March 2023 diff hist +64 N Template:Unbulleted listCreated page with "{{<includeonly>safesubst:</includeonly>#invoke:list|unbulleted}}" current
  • 00:3700:37, 28 March 2023 diff hist +37 N Template:Pluralize from textCreated page with "{{#invoke:Detect singular|pluralize}}" current
  • 00:3600:36, 28 March 2023 diff hist +262 N Template:PlainlistCreated page with "<templatestyles src="Plainlist/styles.css"/><div class="plainlist {{{class|}}}" {{#if:{{{style|}}}{{{indent|}}}|style="{{#if:{{{indent|}}}|margin-left: {{#expr:{{{indent}}}*1.6}}em;}} {{{style|}}}"}}>{{#if:{{{1|}}}| {{{1}}} </div>}}<noinclude></div> </noinclude>" current
  • 00:3600:36, 28 March 2023 diff hist +190 N Template:CountCreated page with "{{safesubst<noinclude/>:#ifexpr:{{safesubst<noinclude/>:#invoke:ParameterCount|main|pattern1=^[%d]+$}}>0|{{safesubst<noinclude/>:#invoke:ParameterCount|main|pattern1=^[%d]+$}}|{{{base|0}}}}}" current
  • 00:3500:35, 28 March 2023 diff hist +289 N Template:URLCreated page with "<includeonly>{{#invoke:URL|url}}</includeonly>{{#invoke:Check for unknown parameters|check|unknown={{main other|_VALUE_{{PAGENAME}}}}|preview=Page using Template:URL with unknown parameter "_VALUE_"|ignoreblank=y | 1 | 2 }}" current
  • 00:3500:35, 28 March 2023 diff hist +59 N Template:Series overviewCreated page with "<includeonly>{{#invoke:Series overview|main}}</includeonly>" current
  • 00:3500:35, 28 March 2023 diff hist +652 N Template:NeonWabbit speciesCreated page with "{{Navbox | name = NeonWabbit species | title = Fictional species in NeonWabbit productions |basestyle = background: #1c1c1c; color: #fff; | bodyclass = hlist | group1 = Flagship species | list1 = * Alien galaxy lifeforce * Dummies * Mink-mink harpy * Wingless dragon | group2 = ''Nyah''-specific | list2 = * Creature * Parasite | group3 = Other species | list3 = * Aquarium dog * Canine deer * Ghost * Messenger *..."
  • 00:3400:34, 28 March 2023 diff hist +27 N Template:Main articleRedirected page to Template:Main current Tag: New redirect
  • 00:3400:34, 28 March 2023 diff hist +7,687 N Template:Infobox televisionCreated page with "{{Main other|{{Infobox television/Short description|released={{{released|}}}|first_aired={{{first_aired|}}}|country={{{country|}}}}}}} {{Infobox | italic title = {{{italic_title|<noinclude>no</noinclude>}}} | bodyclass = vevent | abovestyle = background-color: #CCCCFF; padding: 0.25em 1em; font-size: 125%; | aboveclass = summary | above = {{#invoke:Infobox television|above_title}} | headerclass = summary | headerstyle = background-color: #CCCCFF; paddi..." current
  • 00:3400:34, 28 March 2023 diff hist +14,805 N Template:Infobox personCreated page with "{{#invoke:infobox|infoboxTemplate|child={{{child|{{{embed|}}}}}} | bodyclass = biography vcard | above = {{Br separated entries | 1 = {{#if:{{{honorific prefix|{{{honorific_prefix|{{{honorific-prefix|{{{pre-nominals|}}}}}}}}}}}}|<div class="honorific-prefix" style="font-size: 77%; font-weight: normal; display:inline;">{{{honorific prefix|{{{honorific_prefix|{{{honorific-prefix|{{{pre-nominals|}}}}}}}}}}}}</div>}} | 2 = <div class="fn" style="display:inline">{{#i..." current
  • 00:3300:33, 28 March 2023 diff hist +4,183 N Template:Infobox fictional raceCreated page with "{{Infobox | bodystyle = border-spacing: 2px 5px; | above = {{If empty |{{{name|}}} |<includeonly>{{PAGENAMEBASE}}</includeonly> }} | abovestyle = background: {{If empty |{{{color|}}} |{{{colour|}}} |#DEDEE2 }}; {{#if: {{{color|}}}{{{colour|}}} | color: {{Greater color contrast ratio|{{If empty |{{{color|}}} |{{{colour|}}} }}|black|white }}; }} | subheader = {{#if: {{{series|}}}{{{franchise|}}} | {{#if: {{{series|}}} | ''{{{series|}}}'' | {{{franchise|}}} }}..." current
  • 00:3300:33, 28 March 2023 diff hist +13,208 N Template:Infobox companyCreated page with "{{Infobox | bodyclass = vcard | child = {{lc:{{{embed}}}}} | decat = yes | titleclass = fn org | title = {{#ifeq:{{lc:{{{embed}}}}} | yes | '''Company''' | {{#if:{{{name|}}} | {{{name}}} | {{#if:{{{company_name|}}}|{{{company_name}}}|<includeonly>{{PAGENAMEBASE}}</includeonly>}} }} }} | imageclass = logo | imagestyle = | image = {{#invoke:InfoboxImage |InfoboxImage |image={{#ifeq:{{lc:{{{embed}}}}} | yes | {{{logo|{{{company_logo|}}}}}} |{{#invoke:WikidataIB |getValue..."
  • 00:3300:33, 28 March 2023 diff hist +2,645 N Template:Infobox comic stripCreated page with "{{Infobox | italic title = {{{italic title|}}} | bodyclass = {{#ifeq:{{{collapsible|}}}|yes|collapsible {{{state|autocollapse}}}}} infobox vevent {{{bodyclass|}}} | bodystyle = {{#if:{{{align|}}}|float: {{{align}}};}} {{#if:{{{width|}}}|{{{width}}}}} | above = {{#ifeq:{{{collapsible|}}}|yes|{{pad|5em}}}}{{{title|<includeonly>{{PAGENAMEBASE}}</includeonly>}}} | aboveclass = summary | abovestyle = font-style: italic; background-color: {{{bgcolor|{{{bgcol..." current
  • 00:3300:33, 28 March 2023 diff hist +12,352 N Template:Infobox YouTube personalityCreated page with "<includeonly>{{Infobox | subbox = {{{subbox|}}} | child = {{Yesno|{{{embed|no}}}}} | bodyclass = biography vcard | title = {{#if:{{{embed|}}}|'''YouTube information'''}} | abovestyle = {{#if:{{{embed|}}}||background-color: #B60000; color: white; font-size: 125%}} | above = {{#if:{{{embed|}}}||{{br separated entries |1={{#if:{{{honorific_prefix|{{{honorific prefix|}}}}}}|<span class="honorific-prefix" style="font-size: small">{{{honorific_prefix|{{{..."
  • 00:3200:32, 28 March 2023 diff hist +46 N Template:ForCreated page with "<includeonly>{{#invoke:For|For}}</includeonly>" current
  • 00:3200:32, 28 March 2023 diff hist +23 N Template:AboutCreated page with "{{#invoke:about|about}}" current
  • 00:3100:31, 28 March 2023 diff hist +82 N Template:See alsoCreated page with "<includeonly>{{#invoke:Labelled list hatnote|labelledList|See also}}</includeonly>" current
  • 00:3100:31, 28 March 2023 diff hist +5,304 N Template:Infobox television seasonCreated page with "<includeonly>{{Short description|Season of television series|2=noreplace}}</includeonly> {{Infobox | italic title = {{#ifeq: {{Str left|{{PAGENAMEBASE}}|7}} | List of | no | {{{italic_title|<noinclude>no</noinclude>}}} }} | bodyclass = vevent | aboveclass = summary | abovestyle = background: {{If empty |{{{bg_colour|}}} |{{{bg_color|}}} |{{{bgcolour|}}} |{{{bgcolor|}}} |#CCCCFF }}; color: {{Greater color contrast ratio|{{If empty |{{{bg_colour|}}} |{{{bg..." current
  • 00:3100:31, 28 March 2023 diff hist +57 N Template:Episode tableCreated page with "<includeonly>{{#invoke:Episode table|main}}</includeonly>" current
  • 00:3000:30, 28 March 2023 diff hist +2,331 N Template:NyahCreated page with "{{navbox |name = Nyah |title = ''{{color|#fff|Nyah Has an Adventure}}'' |basestyle = background: #1c1c1c; color: #fff; |state = {{{state|autocollapse}}} |bodyclass = hlist |above = * {{color|#fff|''Nyah Has an Adventure'' (franchise)}} | group1 = Characters | list1 = {{Navbox|subgroup | basestyle = background: #1c1c1c; color: #fff; | group1 = Main characters | list1 = * Nyah (..."
  • 00:3000:30, 28 March 2023 diff hist +7,551 N Template:Infobox characterCreated page with "{{main other|{{short description|Fictional character|noreplace}}}} {{Infobox | bodystyle = border-spacing: 2px 5px; | above = {{If empty |{{{name|}}} |<includeonly>{{PAGENAMEBASE}}</includeonly> }} | abovestyle = background: {{If empty |{{{color|}}} |{{{colour|}}} |#DEDEE2 }}; {{#if: {{{color|}}}{{{colour|}}} | color: {{Greater color contrast ratio|{{If empty |{{{color|}}} |{{{colour|}}} }}|black|white }}; }} | subheader = {{#if: {{{series|}}}{{{franchis..." current
  • 00:3000:30, 28 March 2023 diff hist +121 N Template:MainCreated page with "<includeonly>{{#invoke:Labelled list hatnote|labelledList|Main article|Main articles|Main page|Main pages}}</includeonly>" current
  • 00:2700:27, 28 March 2023 diff hist −3,294 NeonWabbitNo edit summary Tag: Visual edit: Switched
  • 00:2600:26, 28 March 2023 diff hist +1,407 N Template:Reflist/styles.cssCreated page with "→‎{{pp|small=yes}}: →‎can we remove the font size declarations? .references gets a font-size in * common.css that is always 90, and there is nothing else in reflist out in * the wild. May affect column sizes.: .reflist { font-size: 90%; →‎Default font-size: margin-bottom: 0.5em; list-style-type: decimal; } .reflist .references { font-size: 100%; →‎Reset font-size when nested in div.reflist: margin-bottom: 0; /* Avoid dou..." current
  • 00:2600:26, 28 March 2023 diff hist +1,017 N Template:ReflistCreated page with "<templatestyles src="Reflist/styles.css" /><div class="reflist <!-- -->{{#if:{{{1|}}}{{{colwidth|}}}|reflist-columns references-column-width}} <!-- -->{{#switch:{{{liststyle|{{{group|}}}}}}|upper-alpha|upper-roman|lower-alpha|lower-greek|lower-roman=reflist-{{{liststyle|{{{group}}}}}}}} <!-- -->{{#if:{{{1|}}}|{{#iferror:{{#ifexpr: {{{1|1}}} > 1 }}||{{#switch:{{{1|}}}|1=|2=reflist-columns-2|#default=reflist-columns-3}} }}}}" <!-- end class -->{{#if: {{{1|}}}<!-- start sty..." current
  • 00:2500:25, 28 March 2023 diff hist +1,323 N The Aussie GoldmineCreated page with "{{Infobox comic strip}} '''''The Aussie Goldmine''''' is an upcoming webcomic written and illustrated by Darien Brice Dickinson under the Studio RGB-Newt / The Fishal Project brand, self-published on multiple social media accounts, webcomic hosting services, and RedGreenBlue.art at the RGB-Newt Comic Gallery. Originally envisioned as a collaborative animated series, the comic follows the adventures of an eccentric kangaroo, Gerald Symons,..."
  • 00:2300:23, 28 March 2023 diff hist +1,031 N Studio RGB-Newt / The Fishal ProjectCreated page with "{{Short description|Australian multimedia business}} {{Infobox company}} == History == == Structure == === Divisions === ==== Team Lewd the Newt ==== Team Lewd the Newt focuses on 18+ NSFW productions involving NeonWabbit's characters, mostly without their oversight. Their Twitter can be found at: {{URL|https://twitter.com/LewdTheNewt}} ==== Team Tadpole Cat ==== Team Tadpole Cat oversees everything to do with the Nyah Has an Adventure (franchise)|''Nyah Ha..."
  • 00:2300:23, 28 March 2023 diff hist +9,798 N Nyah Has an Adventure (season 2)Created page with "{{short description|2nd and final season of Nyah Has an Adventure}} {{Infobox television season | bg_colour = #000000 | image = | image_size = | image_upright = | image_alt = | caption = | starring = | module1 = | country = Australia | num_stories = | num_episodes = | network = | released = <!-- {{Start date|yyyy|mm|..."
  • 00:2300:23, 28 March 2023 diff hist +9,781 N Nyah Has an Adventure (season 1)Created page with "{{Short description|1st season of Nyah Has an Adventure}} {{Infobox television season | bg_colour = #000000 | image = | image_size = | image_upright = | image_alt = | caption = | starring = | module1 = | country = Australia | num_stories = | num_episodes = | network = | released = <!-- {{Start date|yyyy|mm|dd}} --> |..."
  • 00:2200:22, 28 March 2023 diff hist +2,553 N Nyah Has an AdventureCreated page with "{{Infobox television}} '''''Nyah Has an Adventure''''' is an animated sitcom, produced by Studio RGB-Newt and distributed by The Fishal Project. The series was developed by Darien Brice Dickinson, who based the main character on a design that he first saw Jordyn-Rae Morrison draw on a whiteboard wall at Raffles College in June 2015. In her words, this character was a mistake, which is why the series' opening titles include the words "B..."
  • 00:1900:19, 28 March 2023 diff hist +1,596 N List of Nyah Has an Adventure episodesCreated page with "{{Short description|Episode list for animated series ''Nyah Has an Adventure''}} {{DISPLAYTITLE:List of ''Nyah Has an Adventure'' episodes}} ''Nyah Has an Adventure'' is an Australian animated series, created by NeonWabbit and produced/distributed by Studio RGB-Newt / The Fishal Project. The series was developed around a character, Nyah, designed by The-F0X. Nyah is a parasite, trying to get by in a world where parasites are illegal and must be put..."
  • 00:1600:16, 28 March 2023 diff hist 0 Flye 'n' FrieNo edit summary Tag: Visual edit: Switched
  • 00:1500:15, 28 March 2023 diff hist +5,556 N Flye 'n' FrieCreated page with "{{Short description|Upcoming 3D sandbox platform game}} {{For|the individual articles on the titular characters that this video game is named after|Flye|Frie}} {{Infobox video game}} '''''Flye 'n' Frie''''' is an upcoming sandbox platform game developed by Studio RGB-Newt and published by The Fishal Project. Some gameplay and story elements were brought over from an early build of a previou..."

27 March 2023

  • 23:3823:38, 27 March 2023 diff hist +2,781 N Combat Practice 2Created page with "{{Short description|Upcoming crossover fighting game}} {{Infobox video game}} '''''Combat Practice 2''''' is an upcoming crossover fighting game developed by Studio RGB-Newt and published by The Fishal Project. It features characters by artist The-F0X, who made an animation titled ''The First Fairytale: Combat Practice'', which further inspired the game's name, logo, and certain charac..."
  • 23:2423:24, 27 March 2023 diff hist +99 N Template:PAGENAMEBASECreated page with "{{{{{|safesubst:}}}#Invoke:String|replace|{{{1|{{{{{|safesubst:}}}PAGENAME}}}}}|%s+%b()$||1|false}}" current
  • 16:5516:55, 27 March 2023 diff hist +1,910 N Whisper G. BeeCreated page with "{{Infobox character | color = <!-- headers background color; the foreground color is automatically computed --> | name = Whisper G. Bee | franchise = NeonWabbit | image = Whisper G. Bee.png | alt = | caption = | first_major = <!-- per MOS:MAJORWORK - major works include TV series, films, books, albums and games --> | first_minor = <!-- or |first_issue=; Per MOS:MINORWORK - minor wo..."
  • 16:5516:55, 27 March 2023 diff hist +1,852 N WewaCreated page with "{{Infobox character | color = <!-- headers background color; the foreground color is automatically computed --> | name = Wewa | franchise = NeonWabbit | image = Wewa.png | alt = | caption = | first_major = <!-- per MOS:MAJORWORK - major works include TV series, films, books, albums and games --> | first_minor = <!-- or |first_issue=; Per MOS:MINORWORK - minor works include TV episo..."
  • 16:5416:54, 27 March 2023 diff hist +1,888 N VoltereierCreated page with "{{Infobox character | color = <!-- headers background color; the foreground color is automatically computed --> | name = Voltereier | franchise = NeonWabbit | image = Voltereier.png | alt = | caption = | first_major = <!-- per MOS:MAJORWORK - major works include TV series, films, books, albums and games --> | first_minor = <!-- or |first_issue=; Per MOS:MINORWORK - minor works incl..."
  • 16:5416:54, 27 March 2023 diff hist +1,852 N VoidCreated page with "{{Infobox character | color = <!-- headers background color; the foreground color is automatically computed --> | name = Void | franchise = NeonWabbit | image = Void.png | alt = | caption = | first_major = <!-- per MOS:MAJORWORK - major works include TV series, films, books, albums and games --> | first_minor = <!-- or |first_issue=; Per MOS:MINORWORK - minor works include TV episo..."
  • 16:5416:54, 27 March 2023 diff hist +1,882 N VerabelleCreated page with "{{Infobox character | color = <!-- headers background color; the foreground color is automatically computed --> | name = Verabelle | franchise = NeonWabbit | image = Verabelle.png | alt = | caption = | first_major = <!-- per MOS:MAJORWORK - major works include TV series, films, books, albums and games --> | first_minor = <!-- or |first_issue=; Per MOS:MINORWORK - minor works includ..."
  • 16:5416:54, 27 March 2023 diff hist +1,863 N VelvetCreated page with "{{Infobox character | color = <!-- headers background color; the foreground color is automatically computed --> | name = Velvet | franchise = NeonWabbit | image = Velvet.png | alt = | caption = | first_major = <!-- per MOS:MAJORWORK - major works include TV series, films, books, albums and games --> | first_minor = <!-- or |first_issue=; Per MOS:MINORWORK - minor works include TV e..."
  • 16:5416:54, 27 March 2023 diff hist +1,851 N UxieCreated page with "{{Infobox character | color = <!-- headers background color; the foreground color is automatically computed --> | name = Uxie | franchise = NeonWabbit | image = Uxie.png | alt = | caption = | first_major = <!-- per MOS:MAJORWORK - major works include TV series, films, books, albums and games --> | first_minor = <!-- or |first_issue=; Per MOS:MINORWORK - minor works include TV episo..."
  • 16:5416:54, 27 March 2023 diff hist +1,875 N UhakyuriCreated page with "{{Infobox character | color = <!-- headers background color; the foreground color is automatically computed --> | name = Uhakyuri | franchise = NeonWabbit | image = Uhakyuri.png | alt = | caption = | first_major = <!-- per MOS:MAJORWORK - major works include TV series, films, books, albums and games --> | first_minor = <!-- or |first_issue=; Per MOS:MINORWORK - minor works include..."
  • 16:5416:54, 27 March 2023 diff hist +1,912 N Tricken TreateCreated page with "{{Infobox character | color = <!-- headers background color; the foreground color is automatically computed --> | name = Tricken Treate | franchise = NeonWabbit | image = Tricken Treate.png | alt = | caption = | first_major = <!-- per MOS:MAJORWORK - major works include TV series, films, books, albums and games --> | first_minor = <!-- or |first_issue=; Per MOS:MINORWORK - minor wo..."
  • 16:5316:53, 27 March 2023 diff hist +1,857 N TetraCreated page with "{{Infobox character | color = <!-- headers background color; the foreground color is automatically computed --> | name = Tetra | franchise = NeonWabbit | image = Tetra.png | alt = | caption = | first_major = <!-- per MOS:MAJORWORK - major works include TV series, films, books, albums and games --> | first_minor = <!-- or |first_issue=; Per MOS:MINORWORK - minor works include TV epi..."
  • 16:5316:53, 27 March 2023 diff hist +1,869 N SvachimCreated page with "{{Infobox character | color = <!-- headers background color; the foreground color is automatically computed --> | name = Svachim | franchise = NeonWabbit | image = Svachim.png | alt = | caption = | first_major = <!-- per MOS:MAJORWORK - major works include TV series, films, books, albums and games --> | first_minor = <!-- or |first_issue=; Per MOS:MINORWORK - minor works include TV..."
  • 16:5316:53, 27 March 2023 diff hist +1,857 N SuzieCreated page with "{{Infobox character | color = <!-- headers background color; the foreground color is automatically computed --> | name = Suzie | franchise = NeonWabbit | image = Suzie.png | alt = | caption = | first_major = <!-- per MOS:MAJORWORK - major works include TV series, films, books, albums and games --> | first_minor = <!-- or |first_issue=; Per MOS:MINORWORK - minor works include TV epi..."
  • 16:5316:53, 27 March 2023 diff hist +1,858 N SunnyCreated page with "{{Infobox character | color = <!-- headers background color; the foreground color is automatically computed --> | name = Sunny | franchise = NeonWabbit | image = Sunny.png | alt = | caption = | first_major = <!-- per MOS:MAJORWORK - major works include TV series, films, books, albums and games --> | first_minor = <!-- or |first_issue=; Per MOS:MINORWORK - minor works include TV epi..."
  • 16:5316:53, 27 March 2023 diff hist +1,851 N StopCreated page with "{{Infobox character | color = <!-- headers background color; the foreground color is automatically computed --> | name = Stop | franchise = NeonWabbit | image = Stop.png | alt = | caption = | first_major = <!-- per MOS:MAJORWORK - major works include TV series, films, books, albums and games --> | first_minor = <!-- or |first_issue=; Per MOS:MINORWORK - minor works include TV episo..."
  • 16:5216:52, 27 March 2023 diff hist +1,877 N StigCreated page with "{{Infobox character | color = <!-- headers background color; the foreground color is automatically computed --> | name = Stig | franchise = NeonWabbit | image = Stig.png | alt = | caption = | first_major = <!-- per MOS:MAJORWORK - major works include TV series, films, books, albums and games --> | first_minor = <!-- or |first_issue=; Per MOS:MINORWORK - minor works include TV episo..."
  • 16:5216:52, 27 March 2023 diff hist +1,875 N Star'leiCreated page with "{{Infobox character | color = <!-- headers background color; the foreground color is automatically computed --> | name = Star'lei | franchise = NeonWabbit | image = Star'lei.png | alt = | caption = | first_major = <!-- per MOS:MAJORWORK - major works include TV series, films, books, albums and games --> | first_minor = <!-- or |first_issue=; Per MOS:MINORWORK - minor works include..."
  • 16:5216:52, 27 March 2023 diff hist +1,835 N SpartoxCreated page with "{{Infobox character | color = <!-- headers background color; the foreground color is automatically computed --> | name = Spartox | franchise = NeonWabbit | image = Spartox.png | alt = | caption = | first_major = <!-- per MOS:MAJORWORK - major works include TV series, films, books, albums and games --> | first_minor = <!-- or |first_issue=; Per MOS:MINORWORK - minor works include TV..."
  • 16:5216:52, 27 March 2023 diff hist +1,941 N Skye AriesCreated page with "{{Infobox character | color = <!-- headers background color; the foreground color is automatically computed --> | name = Skye Aries | franchise = NeonWabbit | image = Skye Aries.png | alt = | caption = | first_major = <!-- per MOS:MAJORWORK - major works include TV series, films, books, albums and games --> | first_minor = <!-- or |first_issue=; Per MOS:MINORWORK - minor works incl..."
  • 16:5216:52, 27 March 2023 diff hist +1,850 N SkolCreated page with "{{Infobox character | color = <!-- headers background color; the foreground color is automatically computed --> | name = Skol | franchise = NeonWabbit | image = Skol.png | alt = | caption = | first_major = <!-- per MOS:MAJORWORK - major works include TV series, films, books, albums and games --> | first_minor = <!-- or |first_issue=; Per MOS:MINORWORK - minor works include TV episo..."
  • 16:5216:52, 27 March 2023 diff hist +1,858 N SaoriCreated page with "{{Infobox character | color = <!-- headers background color; the foreground color is automatically computed --> | name = Saori | franchise = NeonWabbit | image = Saori.png | alt = | caption = | first_major = <!-- per MOS:MAJORWORK - major works include TV series, films, books, albums and games --> | first_minor = <!-- or |first_issue=; Per MOS:MINORWORK - minor works include TV epi..."
  • 16:5116:51, 27 March 2023 diff hist +1,863 N SakuraCreated page with "{{Infobox character | color = <!-- headers background color; the foreground color is automatically computed --> | name = Sakura | franchise = NeonWabbit | image = Sakura.png | alt = | caption = | first_major = <!-- per MOS:MAJORWORK - major works include TV series, films, books, albums and games --> | first_minor = <!-- or |first_issue=; Per MOS:MINORWORK - minor works include TV e..."
  • 16:5116:51, 27 March 2023 diff hist +1,852 N RiahCreated page with "{{Infobox character | color = <!-- headers background color; the foreground color is automatically computed --> | name = Riah | franchise = NeonWabbit | image = Riah.png | alt = | caption = | first_major = <!-- per MOS:MAJORWORK - major works include TV series, films, books, albums and games --> | first_minor = <!-- or |first_issue=; Per MOS:MINORWORK - minor works include TV episo..."
  • 16:5116:51, 27 March 2023 diff hist +1,863 N RennayCreated page with "{{Infobox character | color = <!-- headers background color; the foreground color is automatically computed --> | name = Rennay | franchise = NeonWabbit | image = Rennay.png | alt = | caption = | first_major = <!-- per MOS:MAJORWORK - major works include TV series, films, books, albums and games --> | first_minor = <!-- or |first_issue=; Per MOS:MINORWORK - minor works include TV e..."
  • 16:5116:51, 27 March 2023 diff hist +1,869 N RaymoonCreated page with "{{Infobox character | color = <!-- headers background color; the foreground color is automatically computed --> | name = Raymoon | franchise = NeonWabbit | image = Raymoon.png | alt = | caption = | first_major = <!-- per MOS:MAJORWORK - major works include TV series, films, books, albums and games --> | first_minor = <!-- or |first_issue=; Per MOS:MINORWORK - minor works include TV..."
  • 16:5116:51, 27 March 2023 diff hist +1,857 N QuollCreated page with "{{Infobox character | color = <!-- headers background color; the foreground color is automatically computed --> | name = Quoll | franchise = NeonWabbit | image = Quoll.png | alt = | caption = | first_major = <!-- per MOS:MAJORWORK - major works include TV series, films, books, albums and games --> | first_minor = <!-- or |first_issue=; Per MOS:MINORWORK - minor works include TV epi..."
  • 16:5116:51, 27 March 2023 diff hist +1,893 N Pepper LilyCreated page with "{{Infobox character | color = <!-- headers background color; the foreground color is automatically computed --> | name = Pepper Lily | franchise = NeonWabbit | image = Pepper Lily.png | alt = | caption = | first_major = <!-- per MOS:MAJORWORK - major works include TV series, films, books, albums and games --> | first_minor = <!-- or |first_issue=; Per MOS:MINORWORK - minor works in..."
  • 16:5016:50, 27 March 2023 diff hist +1,857 N OkalmCreated page with "{{Infobox character | color = <!-- headers background color; the foreground color is automatically computed --> | name = Okalm | franchise = NeonWabbit | image = Okalm.png | alt = | caption = | first_major = <!-- per MOS:MAJORWORK - major works include TV series, films, books, albums and games --> | first_minor = <!-- or |first_issue=; Per MOS:MINORWORK - minor works include TV epi..."
  • 16:5016:50, 27 March 2023 diff hist +1,922 N NyahCreated page with "{{Infobox character | color = <!-- headers background color; the foreground color is automatically computed --> | name = Nyahline / "Nyah" | franchise = NeonWabbit | image = Nyah.png | alt = | caption = | first_major = <!-- per MOS:MAJORWORK - major works include TV series, films, books, albums and games --> | first_minor = <!-- or |first_issue=; Per MOS:MINORWORK - minor works inc..."
  • 16:5016:50, 27 March 2023 diff hist +1,863 N NuggetCreated page with "{{Infobox character | color = <!-- headers background color; the foreground color is automatically computed --> | name = Nugget | franchise = NeonWabbit | image = Nugget.png | alt = | caption = | first_major = <!-- per MOS:MAJORWORK - major works include TV series, films, books, albums and games --> | first_minor = <!-- or |first_issue=; Per MOS:MINORWORK - minor works include TV e..."
  • 16:5016:50, 27 March 2023 diff hist +1,876 N NewfoldeCreated page with "{{Infobox character | color = <!-- headers background color; the foreground color is automatically computed --> | name = Newfolde | franchise = NeonWabbit | image = Newfolde.png | alt = | caption = | first_major = <!-- per MOS:MAJORWORK - major works include TV series, films, books, albums and games --> | first_minor = <!-- or |first_issue=; Per MOS:MINORWORK - minor works include..."
  • 16:4916:49, 27 March 2023 diff hist +2,006 N Neon MascotCreated page with "{{Infobox character | color = <!-- headers background color; the foreground color is automatically computed --> | name = Neon Mascot | franchise = NeonWabbit | image = Neon Mascot.png | alt = | caption = | first_major = <!-- per MOS:MAJORWORK - major works include TV series, films, books, albums and games --> | first_minor = <!-- or |first_issue=; Per MOS:MINORWORK - minor works in..."
  • 16:4916:49, 27 March 2023 diff hist +4,063 N NeonWabbitCreated page with "{{Short description|Australian artist, director of Studio RGB-Newt / The Fishal Project}} {{About|the artist and director of Studio RGB-Newt / The Fishal Project|the associated brand mascot character who is a rabbit, but is not NeonWabbit's sona|Neon Mascot}} {{Infobox person | honorific_prefix = | name = Darien Brice Dickinson | honorific_suffix = | image = NeonWabbit.jpg | image_upright = | landscape = | alt..."
  • 16:4716:47, 27 March 2023 diff hist +2,253 N MorriganCreated page with "{{Infobox character | color = <!-- headers background color; the foreground color is automatically computed --> | name = Morrigan | franchise = NeonWabbit | image = Morrigan.png | alt = | caption = | first_major = <!-- per MOS:MAJORWORK - major works include TV series, films, books, albums and games --> | first_minor = <!-- or |first_issue=; Per MOS:MINORWORK - minor works include..."
  • 16:4716:47, 27 March 2023 diff hist +1,917 N MirageCreated page with "{{Infobox character | color = <!-- headers background color; the foreground color is automatically computed --> | name = Mirage | franchise = NeonWabbit | image = Mirage.png | alt = | caption = | first_major = <!-- per MOS:MAJORWORK - major works include TV series, films, books, albums and games --> | first_minor = <!-- or |first_issue=; Per MOS:MINORWORK - minor works include TV e..."
  • 16:4716:47, 27 March 2023 diff hist +9,928 N Mink-mink harpyCreated page with "{{Infobox fictional race | name = Mink-mink harpy | franchise = A NeonWabbit-owned closed | image = | alt = | caption = | first_major = | first_minor = | first_date = | last_major = | last_minor = | last_date = | creator = SilveroGhost | based_on = | adapted_by = NeonWabbit | genre = | other_n..."
  • 16:4716:47, 27 March 2023 diff hist +1,857 N MayleCreated page with "{{Infobox character | color = <!-- headers background color; the foreground color is automatically computed --> | name = Mayle | franchise = NeonWabbit | image = Mayle.png | alt = | caption = | first_major = <!-- per MOS:MAJORWORK - major works include TV series, films, books, albums and games --> | first_minor = <!-- or |first_issue=; Per MOS:MINORWORK - minor works include TV epi..."
  • 16:4616:46, 27 March 2023 diff hist +1,881 N Lone PannCreated page with "{{Infobox character | color = <!-- headers background color; the foreground color is automatically computed --> | name = Lone Pann | franchise = NeonWabbit | image = Lone Pann.png | alt = | caption = | first_major = <!-- per MOS:MAJORWORK - major works include TV series, films, books, albums and games --> | first_minor = <!-- or |first_issue=; Per MOS:MINORWORK - minor works includ..."
  • 16:4616:46, 27 March 2023 diff hist +1,868 N LanternCreated page with "{{Infobox character | color = <!-- headers background color; the foreground color is automatically computed --> | name = Lantern | franchise = NeonWabbit | image = Lantern.png | alt = | caption = | first_major = <!-- per MOS:MAJORWORK - major works include TV series, films, books, albums and games --> | first_minor = <!-- or |first_issue=; Per MOS:MINORWORK - minor works include TV..."
  • 16:4616:46, 27 March 2023 diff hist +1,863 N LandonCreated page with "{{Infobox character | color = <!-- headers background color; the foreground color is automatically computed --> | name = Landon | franchise = NeonWabbit | image = Landon.png | alt = | caption = | first_major = <!-- per MOS:MAJORWORK - major works include TV series, films, books, albums and games --> | first_minor = <!-- or |first_issue=; Per MOS:MINORWORK - minor works include TV e..."
  • 16:4616:46, 27 March 2023 diff hist +1,857 N KyubiCreated page with "{{Infobox character | color = <!-- headers background color; the foreground color is automatically computed --> | name = Kyubi | franchise = NeonWabbit | image = Kyubi.png | alt = | caption = | first_major = <!-- per MOS:MAJORWORK - major works include TV series, films, books, albums and games --> | first_minor = <!-- or |first_issue=; Per MOS:MINORWORK - minor works include TV epi..."
  • 16:4516:45, 27 March 2023 diff hist +1,857 N KohkoCreated page with "{{Infobox character | color = <!-- headers background color; the foreground color is automatically computed --> | name = Kohko | franchise = NeonWabbit | image = Kohko.png | alt = | caption = | first_major = <!-- per MOS:MAJORWORK - major works include TV series, films, books, albums and games --> | first_minor = <!-- or |first_issue=; Per MOS:MINORWORK - minor works include TV epi..."
  • 16:4516:45, 27 March 2023 diff hist +1,894 N Klaire MonaCreated page with "{{Infobox character | color = <!-- headers background color; the foreground color is automatically computed --> | name = Klaire Mona | franchise = NeonWabbit | image = Klaire Mona.png | alt = | caption = | first_major = <!-- per MOS:MAJORWORK - major works include TV series, films, books, albums and games --> | first_minor = <!-- or |first_issue=; Per MOS:MINORWORK - minor works in..."
  • 16:4516:45, 27 March 2023 diff hist +1,857 N KaigeCreated page with "{{Infobox character | color = <!-- headers background color; the foreground color is automatically computed --> | name = Kaige | franchise = NeonWabbit | image = Kaige.png | alt = | caption = | first_major = <!-- per MOS:MAJORWORK - major works include TV series, films, books, albums and games --> | first_minor = <!-- or |first_issue=; Per MOS:MINORWORK - minor works include TV epi..."
  • 16:4516:45, 27 March 2023 diff hist +1,852 N JuneCreated page with "{{Infobox character | color = <!-- headers background color; the foreground color is automatically computed --> | name = June | franchise = NeonWabbit | image = June.png | alt = | caption = | first_major = <!-- per MOS:MAJORWORK - major works include TV series, films, books, albums and games --> | first_minor = <!-- or |first_issue=; Per MOS:MINORWORK - minor works include TV episo..."
  • 16:4516:45, 27 March 2023 diff hist +1,857 N JonahCreated page with "{{Infobox character | color = <!-- headers background color; the foreground color is automatically computed --> | name = Jonah | franchise = NeonWabbit | image = Jonah.png | alt = | caption = | first_major = <!-- per MOS:MAJORWORK - major works include TV series, films, books, albums and games --> | first_minor = <!-- or |first_issue=; Per MOS:MINORWORK - minor works include TV epi..."
  • 16:4416:44, 27 March 2023 diff hist +1,846 N IvyCreated page with "{{Infobox character | color = <!-- headers background color; the foreground color is automatically computed --> | name = Ivy | franchise = NeonWabbit | image = Ivy.png | alt = | caption = | first_major = <!-- per MOS:MAJORWORK - major works include TV series, films, books, albums and games --> | first_minor = <!-- or |first_issue=; Per MOS:MINORWORK - minor works include TV episode..."
  • 16:4416:44, 27 March 2023 diff hist +3,578 N InkCreated page with "{{Infobox character | color = <!-- headers background color; the foreground color is automatically computed --> | name = | franchise = NeonWabbit | image = Ink.png | alt = Ink curled up in the shape of the letter U due to his long length. | caption = Ink, as rendered by The-F0X in 2014 | first_major = <!-- per MOS:MAJORWORK - major works include TV series, films, books, albums and games -..."
  • 16:4416:44, 27 March 2023 diff hist +1,863 N IndigoCreated page with "{{Infobox character | color = <!-- headers background color; the foreground color is automatically computed --> | name = Indigo | franchise = NeonWabbit | image = Indigo.png | alt = | caption = | first_major = <!-- per MOS:MAJORWORK - major works include TV series, films, books, albums and games --> | first_minor = <!-- or |first_issue=; Per MOS:MINORWORK - minor works include TV e..."
  • 12:5312:53, 27 March 2023 diff hist +1,863 N HyphenCreated page with "{{Infobox character | color = <!-- headers background color; the foreground color is automatically computed --> | name = Hyphen | franchise = NeonWabbit | image = Hyphen.png | alt = | caption = | first_major = <!-- per MOS:MAJORWORK - major works include TV series, films, books, albums and games --> | first_minor = <!-- or |first_issue=; Per MOS:MINORWORK - minor works include TV e..."
  • 12:5312:53, 27 March 2023 diff hist +1,857 N HeliaCreated page with "{{Infobox character | color = <!-- headers background color; the foreground color is automatically computed --> | name = Helia | franchise = NeonWabbit | image = Helia.png | alt = | caption = | first_major = <!-- per MOS:MAJORWORK - major works include TV series, films, books, albums and games --> | first_minor = <!-- or |first_issue=; Per MOS:MINORWORK - minor works include TV epi..."
  • 12:5312:53, 27 March 2023 diff hist +1,858 N GlassCreated page with "{{Infobox character | color = <!-- headers background color; the foreground color is automatically computed --> | name = Glass | franchise = NeonWabbit | image = Glass.png | alt = | caption = | first_major = <!-- per MOS:MAJORWORK - major works include TV series, films, books, albums and games --> | first_minor = <!-- or |first_issue=; Per MOS:MINORWORK - minor works include TV epi..."
  • 12:5212:52, 27 March 2023 diff hist +1,852 N GinaCreated page with "{{Infobox character | color = <!-- headers background color; the foreground color is automatically computed --> | name = Gina | franchise = NeonWabbit | image = Gina.png | alt = | caption = | first_major = <!-- per MOS:MAJORWORK - major works include TV series, films, books, albums and games --> | first_minor = <!-- or |first_issue=; Per MOS:MINORWORK - minor works include TV episo..."
  • 12:5212:52, 27 March 2023 diff hist +1,905 N Gerald SymonsCreated page with "{{Infobox character | color = <!-- headers background color; the foreground color is automatically computed --> | name = Gerald Symons | franchise = NeonWabbit | image = Gerald Symons.png | alt = | caption = | first_major = <!-- per MOS:MAJORWORK - major works include TV series, films, books, albums and games --> | first_minor = <!-- or |first_issue=; Per MOS:MINORWORK - minor work..."
  • 12:5212:52, 27 March 2023 diff hist +11,748 N Frie/character sheetCreated page with "== General Information == <u>'''Name:'''</u> Frie <u>'''Pronunciation:'''</u> Same as the word "free" <u>'''Name Origin:'''</u> Spur of the moment name choice to rhyme with "Brie", a type of cheese, as cheese is usually dropped onto the faces of cats, of which Frie shares feline traits. When it was realised that Flye's name shared the same first and last letter and length, the characters were paired with each other ever since, as a wordplay on the phrase "Flying..."
  • 12:5212:52, 27 March 2023 diff hist +5,285 N FrieCreated page with "{{Infobox character | color = <!-- headers background color; the foreground color is automatically computed --> | name = | franchise = NeonWabbit | image = Frie.png | alt = Frie with one foot on the ground, showing off all four of her wing arms. | caption = Frie in a non-chibi style,<br/>as rendered by LuckyCessy in 2021 | first_major = <!-- per MOS:MAJORWORK - major works include TV seri..."
  • 12:5212:52, 27 March 2023 diff hist +1,923 N FretretCreated page with "{{Infobox character | color = <!-- headers background color; the foreground color is automatically computed --> | name = Fretret | franchise = NeonWabbit | image = Fret.png | alt = | caption = | first_major = <!-- per MOS:MAJORWORK - major works include TV series, films, books, albums and games --> | first_minor = <!-- or |first_issue=; Per MOS:MINORWORK - minor works include TV ep..."
  • 12:5112:51, 27 March 2023 diff hist +2,345 N Flye 'n' Frie: Classic CollectionCreated page with "{{Short description|Upcoming compilation of select ''Flye 'n' Frie'' games}} {{Infobox video game | title = Flye 'n' Frie: Classic Collection | image = Title_FnF-CC.png | alt = Title screen with logo, the titular characters, and copyright notice. | caption = The game's title screen | developer = Studio RGB-Newt | publisher = The Fishal Project | engine = NESmaker, Unreal Engine 5 | platforms = PC (Windows, macOS, Linux) | released = {{Video game release|WW|{{TableTBA}}}}..."
  • 12:5112:51, 27 March 2023 diff hist +11,350 N Flye/character sheetCreated page with "== General Information == <u>'''Name:'''</u> Flye <u>'''Pronunciation:'''</u> Same as the word "fly" <u>'''Name Origin:'''</u> Original name attached to character design since inception. <u>'''Other Names:'''</u> N/A <u>'''Gender:'''</u> Male <hr> <u>'''Birth Date:'''</u> N/A <u>'''Birth Place:'''</u> N/A <u>'''Age in most canons:'''</u> 22 <u>'''First Word(s):'''</u> N/A <hr> <u>'''Death Date:'''</u> N/A <u>'''Death Place:'''</u> N/A <u>'''Manner of Death:..."
  • 12:5012:50, 27 March 2023 diff hist +4,701 N FlyeCreated page with "{{Infobox character | color = <!-- headers background color; the foreground color is automatically computed --> | name = | franchise = NeonWabbit | image = Flye.png | alt = The wingless dragon Flye balances on his tail, a firefly named Flitta hovers nearby. | caption = Flye in his feral form, with his pet firefly Flitta,<br/>as rendered by The-F0X in 2014 | first_major = <!-- per MOS:MA..."
  • 12:5012:50, 27 March 2023 diff hist +1,851 N ErisCreated page with "{{Infobox character | color = <!-- headers background color; the foreground color is automatically computed --> | name = Eris | franchise = NeonWabbit | image = Eris.png | alt = | caption = | first_major = <!-- per MOS:MAJORWORK - major works include TV series, films, books, albums and games --> | first_minor = <!-- or |first_issue=; Per MOS:MINORWORK - minor works include TV episo..."
  • 12:5012:50, 27 March 2023 diff hist +1,864 N DusterCreated page with "{{Infobox character | color = <!-- headers background color; the foreground color is automatically computed --> | name = Duster | franchise = NeonWabbit | image = Duster.png | alt = | caption = | first_major = <!-- per MOS:MAJORWORK - major works include TV series, films, books, albums and games --> | first_minor = <!-- or |first_issue=; Per MOS:MINORWORK - minor works include TV e..."
  • 12:5012:50, 27 March 2023 diff hist +1,869 N Dummy-XCreated page with "{{Infobox character | color = <!-- headers background color; the foreground color is automatically computed --> | name = Dummy-X | franchise = NeonWabbit | image = Dummy-X.png | alt = | caption = | first_major = <!-- per MOS:MAJORWORK - major works include TV series, films, books, albums and games --> | first_minor = <!-- or |first_issue=; Per MOS:MINORWORK - minor works include TV..."
  • 12:4912:49, 27 March 2023 diff hist +1,857 N DannyCreated page with "{{Infobox character | color = <!-- headers background color; the foreground color is automatically computed --> | name = Danny | franchise = NeonWabbit | image = Danny.png | alt = | caption = | first_major = <!-- per MOS:MAJORWORK - major works include TV series, films, books, albums and games --> | first_minor = <!-- or |first_issue=; Per MOS:MINORWORK - minor works include TV epi..."
  • 12:4912:49, 27 March 2023 diff hist +1,858 N CoriaCreated page with "{{Infobox character | color = <!-- headers background color; the foreground color is automatically computed --> | name = Coria | franchise = NeonWabbit | image = Coria.png | alt = | caption = | first_major = <!-- per MOS:MAJORWORK - major works include TV series, films, books, albums and games --> | first_minor = <!-- or |first_issue=; Per MOS:MINORWORK - minor works include TV epi..."
  • 12:4912:49, 27 March 2023 diff hist +1,858 N CoralCreated page with "{{Infobox character | color = <!-- headers background color; the foreground color is automatically computed --> | name = Coral | franchise = NeonWabbit | image = Coral.png | alt = | caption = | first_major = <!-- per MOS:MAJORWORK - major works include TV series, films, books, albums and games --> | first_minor = <!-- or |first_issue=; Per MOS:MINORWORK - minor works include TV epi..."
  • 12:4912:49, 27 March 2023 diff hist +1,863 N CloverCreated page with "{{Infobox character | color = <!-- headers background color; the foreground color is automatically computed --> | name = Clover | franchise = NeonWabbit | image = Clover.png | alt = | caption = | first_major = <!-- per MOS:MAJORWORK - major works include TV series, films, books, albums and games --> | first_minor = <!-- or |first_issue=; Per MOS:MINORWORK - minor works include TV e..."
  • 12:4812:48, 27 March 2023 diff hist +1,850 N CeilCreated page with "{{Infobox character | color = <!-- headers background color; the foreground color is automatically computed --> | name = Ceil | franchise = NeonWabbit | image = Ceil.png | alt = | caption = | first_major = <!-- per MOS:MAJORWORK - major works include TV series, films, books, albums and games --> | first_minor = <!-- or |first_issue=; Per MOS:MINORWORK - minor works include TV episo..."
  • 12:4812:48, 27 March 2023 diff hist +1,882 N BrunCreated page with "{{Infobox character | color = <!-- headers background color; the foreground color is automatically computed --> | name = Brun | franchise = NeonWabbit | image = Brun.png | alt = | caption = | first_major = <!-- per MOS:MAJORWORK - major works include TV series, films, books, albums and games --> | first_minor = <!-- or |first_issue=; Per MOS:MINORWORK - minor works include TV episo..."
  • 12:4812:48, 27 March 2023 diff hist +3,048 N BiscuitCreated page with "{{Infobox character | color = <!-- headers background color; the foreground color is automatically computed --> | name = Hibiscus / Biscuit | franchise = NeonWabbit | image = Biscuit.png | alt = Biscuit leaping to the left. | caption = Biscuit, as rendered by The-F0X in 2013 | first_major = <!-- per MOS:MAJORWORK - major works include TV series, films, books, albums and games --> | first_m..."
  • 12:4812:48, 27 March 2023 diff hist +1,852 N BibiCreated page with "{{Infobox character | color = <!-- headers background color; the foreground color is automatically computed --> | name = Bibi | franchise = NeonWabbit | image = Bibi.png | alt = | caption = | first_major = <!-- per MOS:MAJORWORK - major works include TV series, films, books, albums and games --> | first_minor = <!-- or |first_issue=; Per MOS:MINORWORK - minor works include TV episo..."
  • 12:4812:48, 27 March 2023 diff hist +1,869 N BarcodeCreated page with "{{Infobox character | color = <!-- headers background color; the foreground color is automatically computed --> | name = Barcode | franchise = NeonWabbit | image = Barcode.png | alt = | caption = | first_major = <!-- per MOS:MAJORWORK - major works include TV series, films, books, albums and games --> | first_minor = <!-- or |first_issue=; Per MOS:MINORWORK - minor works include TV..."
  • 12:4812:48, 27 March 2023 diff hist +1,863 N BanzeeCreated page with "{{Infobox character | color = <!-- headers background color; the foreground color is automatically computed --> | name = Banzee | franchise = NeonWabbit | image = Banzee.png | alt = | caption = | first_major = <!-- per MOS:MAJORWORK - major works include TV series, films, books, albums and games --> | first_minor = <!-- or |first_issue=; Per MOS:MINORWORK - minor works include TV e..."
  • 12:4712:47, 27 March 2023 diff hist +1,851 N AxolCreated page with "{{Infobox character | color = <!-- headers background color; the foreground color is automatically computed --> | name = Axol | franchise = NeonWabbit | image = Axol.png | alt = | caption = | first_major = <!-- per MOS:MAJORWORK - major works include TV series, films, books, albums and games --> | first_minor = <!-- or |first_issue=; Per MOS:MINORWORK - minor works include TV episo..."
  • 12:4712:47, 27 March 2023 diff hist +2,012 N Aurora AustralisCreated page with "{{Infobox character | color = <!-- headers background color; the foreground color is automatically computed --> | name = Aurora Australis | franchise = NeonWabbit | image = Aurora Australis.png | alt = | caption = | first_major = <!-- per MOS:MAJORWORK - major works include TV series, films, books, albums and games --> | first_minor = <!-- or |first_issue=; Per MOS:MINORWORK - mino..."
  • 12:4712:47, 27 March 2023 diff hist +1,925 N ArphedanCreated page with "{{Infobox character | color = <!-- headers background color; the foreground color is automatically computed --> | name = Arphedan | franchise = NeonWabbit | image = Arph.png | alt = | caption = | first_major = <!-- per MOS:MAJORWORK - major works include TV series, films, books, albums and games --> | first_minor = <!-- or |first_issue=; Per MOS:MINORWORK - minor works include TV e..."
  • 12:4612:46, 27 March 2023 diff hist +1,850 N AllyCreated page with "{{Infobox character | color = <!-- headers background color; the foreground color is automatically computed --> | name = Ally | franchise = NeonWabbit | image = Ally.png | alt = | caption = | first_major = <!-- per MOS:MAJORWORK - major works include TV series, films, books, albums and games --> | first_minor = <!-- or |first_issue=; Per MOS:MINORWORK - minor works include TV episo..."
  • 12:4312:43, 27 March 2023 diff hist +50 N The Fishal ProjectRedirected page to Studio RGB-Newt / The Fishal Project current Tag: New redirect
  • 12:4312:43, 27 March 2023 diff hist +50 N Studio RGB-NewtRedirected page to Studio RGB-Newt / The Fishal Project current Tag: New redirect
  • 12:3012:30, 27 March 2023 diff hist +44 N Amaze GameRedirected page to Flye 'n' Frie in... Amaze Game current Tag: New redirect
  • 12:2212:22, 27 March 2023 diff hist +1,025 Flye 'n' Frie in... Amaze GameNo edit summary Tag: Visual edit
  • 01:3301:33, 27 March 2023 diff hist +415 N Module:Hatnote/styles.cssCreated page with "→‎{{pp|small=y}}: .hatnote { font-style: italic; } →‎Limit structure CSS to divs because of [[Module:Hatnote inline]]: div.hatnote { →‎@noflip: padding-left: 1.6em; margin-bottom: 0.5em; } .hatnote i { font-style: normal; } →‎The templatestyles element inserts a link element before hatnotes. * TODO: Remove link if/when WMF resolves T200206: .hatnote + link + .hatnote { margin-top: -0.5em; }" current
  • 01:3101:31, 27 March 2023 diff hist +46,218 N Module:Protection banner/configCreated page with "-- This module provides configuration data for Module:Protection banner. return { -------------------------------------------------------------------------------- -- -- BANNER DATA -- -------------------------------------------------------------------------------- --[[ -- Banner data consists of six fields: -- * text - the main protection text that appears at the top of protection -- banners. -- * explanation - the text that appear..."
  • 01:2901:29, 27 March 2023 diff hist +1,494 N Module:Effective protection expiryCreated page with "local p = {} -- Returns the expiry of a restriction of an action on a given title, or unknown if it cannot be known. -- If no title is specified, the title of the page being displayed is used. function p._main(action, pagename) local title if type(pagename) == 'table' and pagename.prefixedText then title = pagename elseif pagename then title = mw.title.new(pagename) else title = mw.title.getCurrentTitle() end pagename = title.prefixedText if action == 'auto..." current
  • 01:2901:29, 27 March 2023 diff hist +1,807 N Module:GetParametersCreated page with "local p = {} --[[ Helper function that populates the argument list given that user may need to use a mix of named and unnamed parameters. This is relevant because named parameters are not identical to unnamed parameters due to string trimming, and when dealing with strings we sometimes want to either preserve or remove that whitespace depending on the application. ]] function p.getParameters( frame_args, arg_list ) local new_args = {}; local index = 1; loca..." current
  • 01:2801:28, 27 March 2023 diff hist +3,438 N Module:Effective protection levelCreated page with "local p = {} -- Returns the permission required to perform a given action on a given title. -- If no title is specified, the title of the page being displayed is used. function p._main(action, pagename) local title if type(pagename) == 'table' and pagename.prefixedText then title = pagename elseif pagename then title = mw.title.new(pagename) else title = mw.title.getCurrentTitle() end pagename = title.prefixedText if action == 'autoreview' then local leve..." current
  • 01:2701:27, 27 March 2023 diff hist +143 N Template:Smallcaps/styles.cssCreated page with "→‎{{pp-template}} Styling for Template:Smallcaps: span.smallcaps { font-variant: small-caps; } span.smallcaps-smaller { font-size: 85%; }" current
  • 01:2701:27, 27 March 2023 diff hist +6,037 N Module:HatnoteCreated page with "-------------------------------------------------------------------------------- -- Module:Hatnote -- -- -- -- This module produces hatnote links and links to related articles. It -- -- implements the {{hatnote}} and {{format link}} meta-templates and includes -- -- helper functions for other Lua hatnote modules...." current
  • 01:2701:27, 27 March 2023 diff hist +2,544 N Module:File linkCreated page with "-- This module provides a library for formatting file wikilinks. local yesno = require('Module:Yesno') local checkType = require('libraryUtil').checkType local p = {} function p._main(args) checkType('_main', 1, args, 'table') -- This is basically libraryUtil.checkTypeForNamedArg, but we are rolling our -- own function to get the right error level. local function checkArg(key, val, level) if type(val) ~= 'string' then error(string.format( "type error in..." current
  • 01:2701:27, 27 March 2023 diff hist +12,774 N Module:String2Created page with "local p = {} p.trim = function(frame) return mw.text.trim(frame.args[1] or "") end p.sentence = function (frame) -- {{lc:}} is strip-marker safe, string.lower is not. frame.args[1] = frame:callParserFunction('lc', frame.args[1]) return p.ucfirst(frame) end p.ucfirst = function (frame ) 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 = mw.ustring.find(s, "<li>"..." current
  • 01:2701:27, 27 March 2023 diff hist +702 N Module:Message box/fmbox.cssCreated page with "→‎{{pp|small=y}}: .fmbox { clear: both; margin: 0.2em 0; width: 100%; border: 1px solid #a2a9b1; background-color: #f8f9fa; →‎Default "system" gray: box-sizing: border-box; } .fmbox-warning { border: 1px solid #bb7070; →‎Dark pink: background-color: #ffdbdb; →‎Pink: } .fmbox-editnotice { background-color: transparent; } .fmbox .mbox-text { border: none; →‎@noflip: padding: 0.25em 0.9em; width: 100%; } .fmbox .mbox-image { border: no..." current
  • 01:2201:22, 27 March 2023 diff hist +260 N Template:IfsubstCreated page with "{{ safesubst:<noinclude/>#if:{{{demo|}}} |{{ safesubst:<noinclude/>#ifeq:{{{demo}}} |no |{{{no|{{{2|}}}}}} |{{{yes|{{{1|}}}}}} }} |{{ safesubst:<noinclude/>#ifeq:{{ safesubst:<noinclude/>NAMESPACE}}|{{NAMESPACE}} |{{{no|{{{2|}}}}}} |{{{yes|{{{1|}}}}}} }}}}" current
  • 01:2201:22, 27 March 2023 diff hist +193 N Template:SmallcapsCreated page with "{{<includeonly>safesubst:</includeonly>ifsubst | 1=<span style="font-variant:small-caps">{{{1}}}</span> | 2=<templatestyles src="smallcaps/styles.css"/><span class="smallcaps">{{{1}}}</span> }}" current
  • 01:2201:22, 27 March 2023 diff hist −22 Template:This is a redirect/rcatNo edit summary current
  • 01:1901:19, 27 March 2023 diff hist +52 N Template:Template linkCreated page with "{{[[Template:{{{1}}}|{{{1}}}]]}}" current
  • 01:1801:18, 27 March 2023 diff hist +3,104 N Module:Redirect templateCreated page with "require('strict') local p = {} -- key is beginning of arg name. value is table with namespace number and link -- alternatively, a function taking the namespace number and returning a validity -- can be used local namespaceCategories = { all = { function() return true end }, main = { 0, 'main' }, help = { 12, 'help' }, portal = { 100, 'portal' }, talk = { function(n) return n > 0 and n%2 == 1 end, '[[Help:Talk pa..." current
  • 01:1801:18, 27 March 2023 diff hist +83 N Template:TlRedirected page to Template:Template link current Tag: New redirect
  • 01:1801:18, 27 March 2023 diff hist +34 N Template:CatCreated page with "[[:Category:{{PAGENAME:{{{1}}}}}]]" current
  • 01:1701:17, 27 March 2023 diff hist +1,527 N Template:R from move/exceptCreated page with "<noinclude>This is the exception page for {{tl|R from move}}. This page makes exceptions that include certain pages that should not inhabit either {{cat|Unsynchronized talk page redirects}} or {{cat|Redirects from moves}}. If necessary, new exceptions may be added with no need to edit the main template, {{tl|R from move}}. </noinclude>{{#switch: {{FULLPAGENAME}} |MediaWiki:Move-redirect-text= |Template:R from move/except= |#default=Category:Redirects from moves }}{..." current
  • 01:1601:16, 27 March 2023 diff hist +158 N Template:SmallCreated page with "<span style="font-size:85%;">{{{1}}}</span><includeonly>{{SAFESUBST:#if:{{{1|}}}||Category:Pages using small with an empty input parameter}}</includeonly>" current
  • 01:1601:16, 27 March 2023 diff hist +318 N Template:Talk otherCreated page with "{{#switch: <!--If no or empty "demospace" parameter then detect namespace--> {{#if:{{{demospace|}}} | {{lc: {{{demospace}}} }} <!--Use lower case "demospace"--> | {{#ifeq:{{NAMESPACE}}|{{TALKSPACE}} | talk | other }} }} | talk = {{{1|}}} | other | #default = {{{2|}}} }}<!--End switch-->" current
  • 01:1601:16, 27 March 2023 diff hist +34 N Template:Redirect templateCreated page with "{{#invoke:Redirect template|main}}" current
  • 01:1501:15, 27 March 2023 diff hist +1,361 N Module:Message box/ombox.cssCreated page with "→‎{{pp|small=y}}: .ombox { margin: 4px 0; border-collapse: collapse; border: 1px solid #a2a9b1; →‎Default "notice" gray: background-color: #f8f9fa; box-sizing: border-box; } →‎For the "small=yes" option.: .ombox.mbox-small { font-size: 88%; line-height: 1.25em; } .ombox-speedy { border: 2px solid #b32424; →‎Red: background-color: #fee7e6; →‎Pink: } .ombox-delete { border: 2px solid #b32424; →‎Red: } .ombox-content { border: 1p..." current
  • 01:1501:15, 27 March 2023 diff hist +1,587 N Template:This is a redirect/rcatCreated page with "{{#ifeq:{{NAMESPACE}}|Template talk||'''{{small|{{smallcaps|When used with the}} "Redirect category shell" (Rcat shell) {{smallcaps|template:}}}}}}''' {{Mbox | name = This is a redirect/rcat | type = move | image = none | style = margin-top: 1.1em; border: solid 1px darkblue; border-left-width: 0.5em; | textstyle = padding-top: 0.9em; padding-bottom: 0.9em; | text = 25px|link= '''This page is a Wikipedia:Redirect|red..."
  • 01:1501:15, 27 March 2023 diff hist +54 N Template:HatnoteCreated page with "<includeonly>{{#invoke:Hatnote|hatnote}}</includeonly>" current
  • 01:1401:14, 27 March 2023 diff hist +553 N Template:R from moveCreated page with "<noinclude>{{hatnote|This rcat template is automatically added to all new redirects that result from page moves; it must be added manually to older redirects when appropriate.}}{{This is a redirect/rcat}} </noinclude>{{Redirect template |id=R from move |name=From a page move |from=a page that has been moved (renamed) |info=This page was kept as a redirect to avoid breaking links, both internal and external, that may have been made to the old page name. |all cat..." current
  • 01:1401:14, 27 March 2023 diff hist +1,678 N Module:Ns has subpagesCreated page with "-- This module implements Template:Ns has subpages. -- While the template is fairly simple, this information is made available to -- Lua directly, so using a module means that we don't have to update the -- template as new namespaces are added. local p = {} function p._main(ns, frame) -- Get the current namespace if we were not passed one. if not ns then ns = mw.title.getCurrentTitle().namespace end -- Look up the namespace table from mw.site.namespaces. Thi..." current
  • 01:1301:13, 27 March 2023 diff hist +69 N Template:Ns has subpagesCreated page with "{{<includeonly>safesubst:</includeonly>#invoke:Ns has subpages|main}}" current
  • 01:1201:12, 27 March 2023 diff hist +426 N Template:FULLROOTPAGENAMECreated page with "{{ safesubst:<noinclude/>#if: {{ safesubst:<noinclude/>Ns has subpages | {{ safesubst:<noinclude/>#if:{{{1|}}}|{{ safesubst:<noinclude/>NAMESPACE:{{{1}}}}}|{{ safesubst:<noinclude/>NAMESPACE}}}} }} | {{ safesubst:<noinclude/>#titleparts:{{ safesubst:<noinclude/>#if:{{{1|}}}|{{{1}}}|{{ safesubst:<noinclude/>FULLPAGENAME}}}}|1}} | {{ safesubst:<noinclude/>#if:{{{1|}}}|{{{1}}}|{{ safesubst:<noinclude/>FULLPAGENAME}}}} }}" current
  • 01:1201:12, 27 March 2023 diff hist +6,474 N Module:Message box/configurationCreated page with "-------------------------------------------------------------------------------- -- Message box configuration -- -- -- -- This module contains configuration data for Module:Message box. -- -------------------------------------------------------------------------------- return { ambox = { types = { speedy = { class = 'ambox-spee..." current
  • 01:1201:12, 27 March 2023 diff hist +29 N Template:FmboxCreated page with "{{#invoke:Message box|fmbox}}" current
  • 01:1101:11, 27 March 2023 diff hist +1,556 N Template:EditnoticeCreated page with "{{#ifeq:{{FULLROOTPAGENAME}}|Template:Editnotices |{{Editnotice/notice |expiry={{{expiry|¬}}} |redirect={{{redirect|}}} }} }}{{#ifexpr:{{#ifeq:{{FULLROOTPAGENAME}}|Template:Editnotices |1 |0 }}+{{#switch:{{{expiry|¬}}} |indefinite = 1 | |¬ = 1 <!-- Expiry not specified --> |#default = {{#iferror:{{#time:U|{{{expiry}}}}} |0 <!-- Invalid expiry time --> |{{#ifexpr:{{#time:U|{{{expiry}}}}}-{{#time:U|{{CURRENTTIMESTAMP}}}}>0 |1 <!--..." current
  • 01:1101:11, 27 March 2023 diff hist +61 N Template:Pp-templateCreated page with "<includeonly>{{#invoke:Protection banner|main}}</includeonly>" current
  • 01:1101:11, 27 March 2023 diff hist +18,580 N Module:Message boxCreated page with "require('strict') local getArgs local yesno = require('Module:Yesno') local lang = mw.language.getContentLanguage() local CONFIG_MODULE = 'Module:Message box/configuration' local DEMOSPACES = {talk = 'tmbox', image = 'imbox', file = 'imbox', category = 'cmbox', article = 'ambox', main = 'ambox'} -------------------------------------------------------------------------------- -- Helper functions ---------------------------------------------------------------------------..." current
  • 01:1101:11, 27 March 2023 diff hist +28 N Template:MboxCreated page with "{{#invoke:Message box|mbox}}" current
  • 01:1001:10, 27 March 2023 diff hist +26,018 N Module:Protection bannerCreated page with "-- This module implements {{pp-meta}} and its daughter templates such as -- {{pp-dispute}}, {{pp-vandalism}} and {{pp-sock}}. -- Initialise necessary modules. require('strict') local makeFileLink = require('Module:File link')._main local effectiveProtectionLevel = require('Module:Effective protection level')._main local effectiveProtectionExpiry = require('Module:Effective protection expiry')._main local yesno = require('Module:Yesno') -- Lazily initialise modules and..." current
  • 01:1001:10, 27 March 2023 diff hist +34 N Template:PpCreated page with "{{#invoke:Protection banner|main}}" current

26 March 2023

(newest | oldest) View ( | older 250) (20 | 50 | 100 | 250 | 500)