All public logs

Jump to navigation Jump to search

Combined display of all available logs of Archiepyedia. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
(newest | oldest) View ( | older 100) (20 | 50 | 100 | 250 | 500)
  • 15:57, 28 April 2020 Jonathan talk contribs imported Template:Examples by file upload (1 revision)
  • 15:57, 28 April 2020 Jonathan talk contribs imported Template:Dubious by file upload (1 revision)
  • 15:57, 28 April 2020 Jonathan talk contribs imported Template:Documentation subpage by file upload (1 revision)
  • 15:57, 28 April 2020 Jonathan talk contribs imported Template:Documentation/en by file upload (1 revision)
  • 15:57, 28 April 2020 Jonathan talk contribs imported Template:Documentation by file upload (1 revision)
  • 15:57, 28 April 2020 Jonathan talk contribs imported Template:Dead link/en by file upload (1 revision)
  • 15:57, 28 April 2020 Jonathan talk contribs imported Template:Clarify by file upload (1 revision)
  • 15:57, 28 April 2020 Jonathan talk contribs imported Template:Citation needed span by file upload (1 revision)
  • 15:57, 28 April 2020 Jonathan talk contribs imported Template:Citation needed/doc by file upload (1 revision)
  • 15:57, 28 April 2020 Jonathan talk contribs imported Template:Category handler by file upload (1 revision)
  • 15:57, 28 April 2020 Jonathan talk contribs imported Template:By whom by file upload (1 revision)
  • 15:57, 28 April 2020 Jonathan talk contribs imported Template:= by file upload (1 revision)
  • 15:57, 28 April 2020 Jonathan talk contribs imported Template:Citation needed by file upload (1 revision)
  • 15:51, 28 April 2020 Jonathan talk contribs deleted page Module:Unsubst (content was: "local checkType = require('libraryUtil').checkType local p = {} local BODY_PARAM = '$B' local specialParams = { ['$params'] = 'parameter list', ['$aliases'] = 'parameter aliases', ['$flags'] = 'flags', ['$B'] = 'template content' } function p.main(frame, body) -- If we are substing, this function returns a template invocation, and if -- not, it returns the template body. The template body can be specified in -- the body parameter, or in the template parameter defined...")
  • 15:51, 28 April 2020 Jonathan talk contribs deleted page Module:Documentation/i18n (content was: "local format = require('Module:TNT').format local i18n = {} i18n['cfg-error-msg-type'] = format('I18n/Documentation', 'cfg-error-msg-type') i18n['cfg-error-msg-empty'] = format('I18n/Documentation', 'cfg-error-msg-empty') -- cfg['template-namespace-heading'] -- The heading shown in the template namespace. i18n['template-namespace-heading'] = format('I18n/Documentation', 'template-namespace-heading') -- cfg['module-namespace-heading'] -- The heading shown in the module namesp...")
  • 15:51, 28 April 2020 Jonathan talk contribs deleted page Module:Documentation/config (content was: "---------------------------------------------------------------------------------------------------- -- -- Configuration for Module:Documentation -- -- Here you can set the values of the parameters and messages used in Module:Documentation to -- localise it to your wiki and your language. Unless specified otherwise, values given here -- should be string values. ----------------------------------------------------------------------------------------...")
  • 15:51, 28 April 2020 Jonathan talk contribs deleted page Module:Documentation (content was: "-- This module implements {{documentation}}. -- Get required modules. local getArgs = require('Module:Arguments').getArgs local messageBox = require('Module:Message box') -- Get the config table. local cfg = mw.loadData('Module:Documentation/config') local i18n = mw.loadData('Module:Documentation/i18n') local p = {} -- Often-used functions. local ugsub = mw.ustring.gsub ---------------------------------------------------------------------------- -- Helper functions -- -- Th...")
  • 15:51, 28 April 2020 Jonathan talk contribs deleted page Module:Color contrast/colors (content was: "return { aliceblue = 0.92880068253475, antiquewhite = 0.84646951707754, aqua = 0.7874, aquamarine = 0.8078549208338, azure = 0.97265264954166, beige = 0.8988459998705, bisque = 0.80732327372979, black = 0, blanchedalmond = 0.85084439608156, blue = 0.0722, blueviolet = 0.12622014321946, brown = 0.098224287876511, burl...")
  • 15:50, 28 April 2020 Jonathan talk contribs deleted page Module:Color contrast (content was: "-- -- 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 *...")
  • 15:50, 28 April 2020 Jonathan talk contribs deleted page Module:Category handler/shared (content was: "-- This module contains shared functions used by Module:Category handler -- and its submodules. local p = {} function p.matchesBlacklist(page, blacklist) for i, pattern in ipairs(blacklist) do local match = mw.ustring.match(page, pattern) if match then return true end end return false end function p.getParamMappings(useLoadData) local dataPage = 'Module:Namespace detect/data' if useLoadData then return mw.loadData(dataPage).mappings else return require...")
  • 15:50, 28 April 2020 Jonathan talk contribs deleted page Module:Category handler/data (content was: "-- This module assembles data to be passed to Module:Category handler using -- mw.loadData. This includes the configuration data and whether the current -- page matches the title blacklist. local data = require('Module:Category handler/config') local mShared = require('Module:Category handler/shared') local blacklist = require('Module:Category handler/blacklist') local title = mw.title.getCurrentTitle() data.currentTitleMatchesBlacklist = mShared.matchesBlacklist( title....")
  • 15:50, 28 April 2020 Jonathan talk contribs deleted page Module:Category handler/config (content was: "-------------------------------------------------------------------------------- -- Module:Category handler configuration data -- -- Language-specific parameter names and values can be set here. -- -- For blacklist config, see Module:Category handler/blacklist. -- -------------------------------------------------------------------------------- local cfg = {} -- Don't edit this line. -----------------------------------...")
  • 15:50, 28 April 2020 Jonathan talk contribs deleted page Module:Category handler/blacklist (content was: "-- This module contains the blacklist used by Module:Category handler. -- Pages that match Lua patterns in this list will not be categorised unless -- categorisation is explicitly requested. return { '^Main Page$', -- don't categorise the main page. -- Don't categorise the following pages or their subpages. -- "%f[/\0]" matches if the next character is "/" or the end of the string. '^Wikipedia:Cascade%-protected items%f[/\0]', '^User:UBX%f[/\0]', -- T...")
  • 15:50, 28 April 2020 Jonathan talk contribs deleted page Module:Category handler (content was: "-------------------------------------------------------------------------------- -- -- -- CATEGORY HANDLER -- -- -- -- This module implements the {{category handler}} template in Lua, -- -- with a few improvements: all namespaces and all namespace aliases...")
  • 15:49, 28 April 2020 Jonathan talk contribs deleted page Module:Arguments (content was: "-- This module provides easy processing of arguments passed to Scribunto from -- #invoke. It is intended for use by other Lua modules, and should not be -- called from #invoke directly. local libraryUtil = require('libraryUtil') local checkType = libraryUtil.checkType local arguments = {} -- Generate four different tidyVal functions, so that we don't have to check the -- options every time we call it. local function tidyValDefault(key, val) if type(val) == 'string' then...")
  • 15:49, 28 April 2020 Jonathan talk contribs deleted page Template:Who (content was: "<!--{{Who}} begin-->{{Fix | subst = <includeonly>{{subst:</includeonly><includeonly>substcheck}}</includeonly> | link = Wikipedia:Avoid weasel words | text = who? | title = The material in the vicinity of this tag may use weasel words or too-vague attribution. | date = {{{date|}}} | cat = Category:All articles with specifically marked weasel-worded phrases | cat-date = Category:Articles with specifically marked weasel-worded phrases}}<!--{{Who}} end--><noinclude> {{Doc...")
  • 15:49, 28 April 2020 Jonathan talk contribs deleted page Template:When (content was: "<!--{{When}} begin-->{{Fix | subst = <includeonly>{{subst:</includeonly><includeonly>substcheck}}</includeonly> | link = Wikipedia:Manual_of_Style_(dates_and_numbers)#Chronological_items | text = when? | title = The time period in the vicinity of this tag is ambiguous | date = {{{date|}}} | cat-date = Category:Vague or ambiguous time }}<!--{{When}} end--><noinclude> {{Documentation}} </noinclude>")
  • 15:49, 28 April 2020 Jonathan talk contribs deleted page Template:Vague (content was: "<!--{{Vague}} begin-->{{Fix | subst = <includeonly>{{subst:</includeonly><includeonly>substcheck}}</includeonly> | link = Wikipedia:Vagueness | text = vague | title = You can help — {{{1|}}} | date = {{{date|}}} | cat = Category:All Wikipedia articles needing clarification | cat-date = Category:Wikipedia articles needing clarification}}<!--{{Vague}} end--><noinclude> {{Documentation}} </noinclude>")
  • 15:49, 28 April 2020 Jonathan talk contribs deleted page Template:TNT (content was: "#REDIRECT Template:Translatable template")
  • 15:48, 28 April 2020 Jonathan talk contribs deleted page Template:Tlx (content was: "<span style="font-family:"Consolas", monospace;">{{[[{{#if:{{{SISTER|}}}|{{{SISTER}}}Template|{{ns:Template}}}}:{{{1|Tlx}}}|{{{1|Tlx}}}]]{{#if:{{{2|}}}||{{{2}}}}}{{#if:{{{3|}}}||{{{3}}}}}{{#if:{{{4|}}}||{{{4}}}}}{{#if:{{{5|}}}||{{{5}}}}}{{#if:{{{6|}}}||{{{6}}}}}{{#if:{{{7|}}}||{{{7}}}}}{{#if:{{{8|}}}||''...''}}}}</span><noinclude> {{documentation}} </noinclude>")
  • 15:48, 28 April 2020 Jonathan talk contribs deleted page Template:Tl (content was: "{{[[Template:{{{1}}}|{{{1}}}]]}}<noinclude> {{documentation}} <!-- Categories go on the /doc subpage and interwikis go on Wikidata. --> </noinclude>")
  • 15:48, 28 April 2020 Jonathan talk contribs deleted page Template:Translatable template (content was: "<includeonly>{{#invoke:Template translation{{{sandbox|}}}|renderTranslatedTemplate|uselang={{{uselang|}}}|tntns={{{namespace|{{{tntns|}}}}}}|template={{#if:{{{noshift|}}}|{{{template}}}|{{{1}}}}}|noshift={{{noshift|}}}<!-- all other numbered or named parameters are found by the module using the parent frame -->}}</includeonly><noinclude>{{documentation}}</noinclude>")
  • 15:48, 28 April 2020 Jonathan talk contribs deleted page Template:Reference necessary (content was: "#REDIRECT Template:Citation needed span")
  • 15:48, 28 April 2020 Jonathan talk contribs deleted page Template:Para (content was: "<code class="nowrap" {{SAFESUBST:<noinclude />#if:{{{plain|}}}|style="border:none;background-color:inherit;color:inherit;"}}>|{{SAFESUBST:<noinclude />#if:{{{1|}}}|{{{1}}}=}}{{{2|}}}</code><noinclude> {{Documentation}} <!--Categories and interwikis go near the bottom of the /doc subpage.--> </noinclude>")
  • 15:47, 28 April 2020 Jonathan talk contribs deleted page Template:Navbox (content was: "<includeonly>{{#invoke:Navbox|navbox}}</includeonly><noinclude> {{Documentation}} </noinclude>")
  • 15:47, 28 April 2020 Jonathan talk contribs deleted page Template:Lua (content was: "<includeonly>{{#invoke:Lua banner|main}}</includeonly><noinclude> {{documentation}} <!-- Categories go on the /doc subpage and interwikis go on Wikidata. --> </noinclude>", and the only contributor was "Jonathan" (talk))
  • 15:47, 28 April 2020 Jonathan talk contribs deleted page Template:Inline tags (content was: "{{Navbox |name = Inline tags |state = {{{state<includeonly>|autocollapse</includeonly>}}} |title = Inline tags |bodyclass = hlist |group1 = Attribution |list1 = * {{tlx|By whom|date{{=}}January 2012}} * {{tlx|Who|date{{=}}January 2012}} |group2 = Citation |list2 = {{navbox|child |list1 = * {{tl|Citation needed}} ** {{tl|Citation needed span}} |group2 = Incomplete |list2 = * {{tlx|Author missing|date{{=}}January 2012}} * {{tlx|Dead link|date{{=}}January 2012}} }} |group3...")
  • 15:47, 28 April 2020 Jonathan talk contribs deleted page Template:Documentation subpage (content was: "<includeonly><!-- -->{{#ifeq:{{lc:{{SUBPAGENAME}}}} |{{{override|doc}}} | <!--(this template has been transcluded on a /doc or /{{{override}}} page)--> </includeonly><!-- -->{{#ifeq:{{{doc-notice|show}}} |show | {{Mbox | type = notice | style = margin-bottom:1.0em; | image = 40px|alt=|link= | text = '''This is a documentation w:W...")
  • 15:47, 28 April 2020 Jonathan talk contribs deleted page Template:Ifsubst (content was: "{{ {{{|safesubst:}}}#ifeq:{{ {{{|safesubst:}}}NAMESPACE}}|{{NAMESPACE}} |{{{no|{{{2|}}}}}} |{{{yes|{{{1|}}}}}} }}<noinclude> {{Documentation}} </noinclude>")
  • 15:47, 28 April 2020 Jonathan talk contribs deleted page Template:Fix-span (content was: "{{#if:{{{content|}}}|<span class="{{{span-class|cleanup-needed-content}}}" style="background-color:#fff9f9; color:DarkSlateGray;border:1px solid #ffdcdc">{{{content|}}}</span>|}}{{#if:{{{special|}}} |{{{special|}}} |<sup class="{{{class|noprint Inline-Template}}}" style="white-space:nowrap;">[<i>{{#if:{{{pre-text|}}} |{{{pre-text}}} }}{{{link|Wikipedia:Cleanup}}}|<span title="{{{title|{{{link|Wikipedia:Cleanup}}}}}}{{#if:{{{date|}}}|<nowiki/> from {{{date}}}}}">{{{...")
  • 15:46, 28 April 2020 Jonathan talk contribs deleted page Template:Fix (content was: "{{#switch:{{{subst|¬}}} |¬={{category handler |template=Category:Templates needing substitution checking |nocat={{{nocat|<noinclude>true</noinclude>}}} }} |SUBST=Category:Pages with incorrectly substituted templates }}{{Category handler |main={{Fix/category |cat-date={{{cat-date|}}} |cat={{{cat|}}} |cat-date2={{{cat-date2|}}} |cat2={{{cat2|}}} |cat-date3={{{cat-date3|}}} |cat3={{{cat3|}}} |date={{{date|}}} }} |template={{#if:{{{name|}}}|{...")
  • 15:46, 28 April 2020 Jonathan talk contribs deleted page Template:Examples (content was: "{{ {{{|safesubst:}}}ifsubst |<includeonly>{{subst:Unsubst|Examples| pre-text|{{{pre-text|¬}}} | post-text|{{{post-text|¬}}} | date|{{{date|{{subst:CURRENTMONTHNAME}} {{subst:CURRENTYEAR}}}}} }}</includeonly>| {{Fix | link = Wikipediawikipedia:Please clarify | text = examples needed | title = The text in the vicinity of this tag needs examples for clarification | date = {{{date|}}} | cat-date = Category:Articles needing clarification }} }}<noinclude> {{Documentation}} </n...")
  • 15:46, 28 April 2020 Jonathan talk contribs deleted page Template:Dubious (content was: "<!--{{Dubious}} begin-->{{Fix | subst = <includeonly>{{subst:</includeonly><includeonly>substcheck}}</includeonly> | link = Wikipedia:Wikipedia:Accuracy_dispute#Disputed_statement | text = dubious | post-text = <span class="metadata"> – [[{{TALKPAGENAME}}#{{{1|Dubious}}}|discuss]]</span> | title = The material in the vicinity of this tag may not be factual or accurate | date = {{{date|}}} | cat = Category:All accuracy disputes | cat-date = Category:Articles with...")
  • 15:46, 28 April 2020 Jonathan talk contribs deleted page Template:Documentation/en (content was: "<noinclude> <languages/> </noinclude><includeonly>{{#switch: | = {{#invoke:documentation|main|_content={{ {{#invoke:documentation|contentTitle}}}}}} | #default= {{#invoke:Template translation|renderTranslatedTemplate|template=Template:Documentation|noshift=1}} }}</includeonly><noinclude> {{documentation|content= {{Lua|Module:Documentation}} ==Usage== ===Customizing display=== Overrides exist to customize the output in special cases: * <nowiki>{{</nowiki>documentation{{!}}'...")
  • 15:46, 28 April 2020 Jonathan talk contribs deleted page Template:Documentation (content was: "<noinclude> <languages/> </noinclude><includeonly>{{#switch:<translate></translate> | = {{#invoke:documentation|main|_content={{ {{#invoke:documentation|contentTitle}}}}}} | #default= {{#invoke:Template translation|renderTranslatedTemplate|template=Template:Documentation|noshift=1}} }}</includeonly><noinclude> {{documentation|content= {{Lua|Module:Documentation}} <translate> ==Usage== <!--T:2--> ===Customizing display=== <!--T:3--> <!--T:4--> Overrides exist to customize t...")
  • 15:46, 28 April 2020 Jonathan talk contribs deleted page Template:Dead link/en (content was: "<noinclude> <languages/> </noinclude>{{#switch: | = <!--{{Dead link}} start--> {{Fix | subst = <includeonly>{{subst:</includeonly><includeonly>substcheck}}</includeonly> | special = <sup class="noprint Inline-Template"><span title="{{{title|}}}{{#if:{{{date|}}}| since {{{date}}}}}" style="white-space: nowrap;">[<i>{{#if: {{{url|}}}|[http://web.archive.org/web/*/{{{url|}}} dead link]|dead link}}</i>]</span></sup> | date = {{{date|}}} | cat =...")
  • 15:45, 28 April 2020 Jonathan talk contribs deleted page Template:Clarify (content was: "{{ {{{|safesubst:}}}ifsubst |<includeonly>{{subst:Unsubst|Clarify| reason|{{{reason|¬}}}| pre-text|{{{pre-text|¬}}}| post-text|{{{post-text|¬}}}| date|{{{date|{{subst:CURRENTMONTHNAME}} {{subst:CURRENTYEAR}}}}} }}</includeonly>| {{Fix |link=Wikipedia:Wikipedia:Please clarify |text=clarification needed |title={{{reason|The text in the vicinity of this tag needs clarification or removal of jargon}}} |date={{{date|}}} |pre-text={{{pre-text|}}} |post-text={{{post-text|}}} |cat-...")
  • 15:45, 28 April 2020 Jonathan talk contribs deleted page Template:Citation needed span (content was: "<noinclude>{{delete|Only used as an easily-removable "related template" by Template:Citation needed}}</noinclude>{{Fix-span |name=Cn-span |content={{{1|<noinclude>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</noinclude>}}} |link=Wikipedia:Citation needed |text=citation needed |class=Template-Fact |span-class=citation-needed-content |title=This claim needs references to reliable sources |date={{{...")
  • 15:45, 28 April 2020 Jonathan talk contribs deleted page Template:Citation needed/doc (content was: "{{Documentation subpage}} {{Tl|Citation needed}} (also known by the redirects {{Tl|Cn}} and {{Tl|Fact}}) is a template used to identify questionable claims that lack citation to a reliable source. The template produces a superscripted notation like the following: :Humphrey Bogart has won several snooker world championships.{{Citation needed|date={{CURRENTMONTHNAME}} {{CURRENTYEAR}}}}. While Humphrey Bogart ''may'' have played snooker at some po...")
  • 15:45, 28 April 2020 Jonathan talk contribs deleted page Template:Citation needed (content was: "{{ {{{|safesubst:}}}#invoke:Unsubst||date=__DATE__ |$B= {{Fix |name={{{name|Citation needed}}} |link=Archiepyedia:Citation needed |text=citation needed |class=Template-Fact |title={{{reason|This claim needs references to reliable sources.}}} |date={{{date|}}} |cat=Category:All articles with unsourced statements |cat-date=Category:Articles with unsourced statements }}{{#if:{{{1|}}}|Category:Pages containing citation needed template with deprecated parameters}} }}<noinclu...")
  • 15:45, 28 April 2020 Jonathan talk contribs deleted page Template:Category handler (content was: "{{#invoke:Category handler|main}}<noinclude> {{documentation}} <!-- Add categories to the /doc subpage, and interwikis to Wikidata. --> </noinclude>")
  • 15:44, 28 April 2020 Jonathan talk contribs deleted page Template:By whom (content was: "<noinclude>{{Delete|Only ever used as an example of an inline template, and never to actually doubt the attribution of a claim}}</noinclude> {{ {{{|safesubst:}}}ifsubst |<includeonly>{{subst:Unsubst|by whom| date|{{{date|{{subst:CURRENTMONTHNAME}} {{subst:CURRENTYEAR}}}}} }}</includeonly>| <!--{{By whom}} begin-->{{Fix | subst = <includeonly>{{subst:</includeonly><includeonly>substcheck}}</includeonly> | link = w:Wikipedia:Avoid weasel words | text = by whom? | title = The ma...")
  • 15:44, 28 April 2020 Jonathan talk contribs deleted page Template:= (content was: "=<noinclude> {{documentation}} Category:Workaround templates </noinclude>")
  • 15:31, 28 April 2020 Jonathan talk contribs imported Module:Unsubst by file upload (1 revision)
  • 15:28, 28 April 2020 Jonathan talk contribs imported Module:Documentation/i18n by file upload (1 revision)
  • 15:28, 28 April 2020 Jonathan talk contribs imported Module:Documentation/config by file upload (1 revision)
  • 15:28, 28 April 2020 Jonathan talk contribs imported Module:Documentation by file upload (1 revision)
  • 15:28, 28 April 2020 Jonathan talk contribs imported Module:Color contrast/colors by file upload (1 revision)
  • 15:28, 28 April 2020 Jonathan talk contribs imported Module:Color contrast by file upload (1 revision)
  • 15:28, 28 April 2020 Jonathan talk contribs imported Module:Category handler/shared by file upload (1 revision)
  • 15:28, 28 April 2020 Jonathan talk contribs imported Module:Category handler/data by file upload (1 revision)
  • 15:28, 28 April 2020 Jonathan talk contribs imported Module:Category handler/config by file upload (1 revision)
  • 15:28, 28 April 2020 Jonathan talk contribs imported Module:Category handler/blacklist by file upload (1 revision)
  • 15:28, 28 April 2020 Jonathan talk contribs imported Module:Category handler by file upload (1 revision)
  • 15:28, 28 April 2020 Jonathan talk contribs imported Module:Arguments by file upload (1 revision)
  • 15:28, 28 April 2020 Jonathan talk contribs imported Template:Who by file upload (1 revision)
  • 15:27, 28 April 2020 Jonathan talk contribs imported Template:When by file upload (1 revision)
  • 15:27, 28 April 2020 Jonathan talk contribs imported Template:Vague by file upload (1 revision)
  • 15:27, 28 April 2020 Jonathan talk contribs imported Template:Translatable template by file upload (1 revision)
  • 15:27, 28 April 2020 Jonathan talk contribs imported Template:Tlx by file upload (1 revision)
  • 15:27, 28 April 2020 Jonathan talk contribs imported Template:Tl by file upload (1 revision)
  • 15:27, 28 April 2020 Jonathan talk contribs imported Template:TNT by file upload (1 revision)
  • 15:27, 28 April 2020 Jonathan talk contribs imported Template:Reference necessary by file upload (1 revision)
  • 15:27, 28 April 2020 Jonathan talk contribs imported Template:Para by file upload (1 revision)
  • 15:27, 28 April 2020 Jonathan talk contribs imported Template:Navbox by file upload (1 revision)
  • 15:27, 28 April 2020 Jonathan talk contribs imported Template:Inline tags by file upload (1 revision)
  • 15:27, 28 April 2020 Jonathan talk contribs imported Template:Ifsubst by file upload (1 revision)
  • 15:27, 28 April 2020 Jonathan talk contribs imported Template:Fix-span by file upload (1 revision)
  • 15:27, 28 April 2020 Jonathan talk contribs imported Template:Fix by file upload (1 revision)
  • 15:27, 28 April 2020 Jonathan talk contribs imported Template:Examples by file upload (1 revision)
  • 15:27, 28 April 2020 Jonathan talk contribs imported Template:Dubious by file upload (1 revision)
  • 15:27, 28 April 2020 Jonathan talk contribs imported Template:Documentation subpage by file upload (1 revision)
  • 15:27, 28 April 2020 Jonathan talk contribs imported Template:Documentation/en by file upload (1 revision)
  • 15:27, 28 April 2020 Jonathan talk contribs imported Template:Documentation by file upload (1 revision)
  • 15:27, 28 April 2020 Jonathan talk contribs imported Template:Dead link/en by file upload (1 revision)
  • 15:27, 28 April 2020 Jonathan talk contribs imported Template:Clarify by file upload (1 revision)
  • 15:27, 28 April 2020 Jonathan talk contribs imported Template:Citation needed span by file upload (1 revision)
  • 15:27, 28 April 2020 Jonathan talk contribs imported Template:Citation needed/doc by file upload (1 revision)
  • 15:27, 28 April 2020 Jonathan talk contribs imported Template:Category handler by file upload (1 revision)
  • 15:27, 28 April 2020 Jonathan talk contribs imported Template:By whom by file upload (1 revision)
  • 15:27, 28 April 2020 Jonathan talk contribs imported Template:= by file upload (1 revision)
  • 15:27, 28 April 2020 Jonathan talk contribs imported Template:Citation needed by file upload (1 revision)
  • 15:05, 28 April 2020 Jonathan talk contribs created page Template:= (Created page with "=<noinclude> {{documentation}} Category:Workaround templates </noinclude>")
  • 14:45, 28 April 2020 Jonathan talk contribs created page Fred (Created page with "Here we go {{citation needed}}")
  • 14:37, 28 April 2020 Jonathan talk contribs created page Template:Lua (Created page with "<includeonly>{{#invoke:Lua banner|main}}</includeonly><noinclude> {{documentation}} <!-- Categories go on the /doc subpage and interwikis go on Wikidata. --> </noinclude>")
  • 14:36, 28 April 2020 Jonathan talk contribs created page Template:Documentation (Created page with "<noinclude> <languages/> </noinclude><includeonly>{{#switch:<translate></translate> | = {{#invoke:documentation|main|_content={{ {{#invoke:documentation|contentTitle}}}}}} | #...")
  • 14:35, 28 April 2020 Jonathan talk contribs created page Template:Category handler (Created page with "{{#invoke:Category handler|main}}<noinclude> {{documentation}} <!-- Add categories to the /doc subpage, and interwikis to Wikidata. --> </noinclude>")
  • 14:35, 28 April 2020 Jonathan talk contribs created page Template:Fix (Created page with "{{#switch:{{{subst|¬}}} |¬={{category handler |template=Category:Templates needing substitution checking |nocat={{{nocat|<noinclude>true</noinclude>}}} }} |SUBST=...")
  • 14:34, 28 April 2020 Jonathan talk contribs created page Template:Citation needed (Created page with "{{ {{{|safesubst:}}}#invoke:Unsubst||date=__DATE__ |$B= {{Fix |name={{{name|Citation needed}}} |link=Wikipedia:Citation needed |text=citation needed |class=Template-Fact |titl...")
  • 14:32, 28 April 2020 Jonathan talk contribs imported George Burgess by file upload (1 revision)
(newest | oldest) View ( | older 100) (20 | 50 | 100 | 250 | 500)