Related changes
From CreationWiki, the encyclopedia of creation science
Jump to navigationJump to search
Enter a page name to see changes on pages linked to or from that page. (To see members of a category, enter Category:Name of category). Changes to pages on your Watchlist are in bold.
List of abbreviations:
- N
- This edit created a new page (also see list of new pages)
- m
- This is a minor edit
- b
- This edit was performed by a bot
- (±123)
- The page size changed by this number of bytes
10 November 2025
| N 19:48 | Module:Yesno diffhist +745 Jzyehoshua talk contribs (Created page with "-- Function allowing for consistent treatment of boolean-like wikitext input. -- It works similarly to the template {{yesno}}. return function (val, default) -- If your wiki uses non-ascii characters for any of "yes", "no", etc., you -- should replace "val:lower()" with "mw.ustring.lower(val)" in the -- following line. val = type(val) == 'string' and val:lower() or val if val == nil then return nil elseif val == true or val == 'yes' or val == 'y' or val =...") | ||||
| N 19:47 | Module:Uses Wikidata diffhist +2,066 Jzyehoshua talk contribs (Created page with "local p = {} function p.usesProperty(frame) local args = frame.getParent(frame).args or nil if mw.text.trim(args[1] or '') == '' then args = frame.args end local result = '<ul>' local ii = 1 while true do local p_num = mw.text.trim(args[ii] or '') if p_num ~= '' then local label = mw.wikibase.getLabel(p_num) or "NO LABEL" result = result .. "<li>middle|4px|link=|alt= <b><i>[[d:Property talk:" .. p_num .. "|" .. label ....") | ||||
| N 19:47 | Module:Transclusion count/data/B diffhist +4,467 Jzyehoshua talk contribs (Created page with "return { ["B-Class"] = 18000, ["BBC_Online"] = 3700, ["BBC_programme"] = 2700, ["BCGNIS"] = 2100, ["BDFA"] = 3900, ["BDFutbol"] = 8200, ["BEL"] = 8900, ["BGR"] = 5800, ["BIH"] = 4400, ["BLP"] = 1210000, ["BLP_one_source"] = 9100, ["BLP_others"] = 14000, ["BLP_primary_sources"] = 6000, ["BLP_sources"] = 99000, ["BLP_sources_section"] = 3400, ["BLP_unreferenced"] = 8100, ["BLP_unreferenced_section"] = 7800, ["BLP_unsourced"] = 7900, ["BLP_unsourced_section"] = 2300, ["BLR"...") | ||||
| N 19:46 | Module:Transclusion count diffhist +2,582 Jzyehoshua talk contribs (Created page with "local p = {} function p._fetch(args) local template = nil local return_value = nil -- Use demo parameter if it exists, otherwise use current template name local namespace = mw.title.getCurrentTitle().namespace if args["demo"] and args["demo"] ~= "" then template = mw.ustring.gsub(args["demo"],"^[Tt]emplate:","") elseif namespace == 10 then -- Template namespace template = mw.title.getCurrentTitle().text elseif namespace == 828 then -- Module namespace temp...") | ||||
| N 19:46 | Module:Template link general diffhist +4,468 Jzyehoshua talk contribs (Created page with "-- This implements Template:Template link general and various other templates in its family local getArgs = require('Module:Arguments').getArgs local p = {} -- Is a string non-empty? local function _ne(s) return s ~= nil and s ~= "" end local nw = mw.text.nowiki local function addTemplate(s) local i, _ = s:find(':', 1, true) if i == nil then return 'Template:' .. s end local ns = s:sub(1, i - 1) if ns == '' or mw.site.namespaces[ns] then return s else re...") | ||||
| N 19:46 | Module:TableTools diffhist +16,577 Jzyehoshua talk contribs (Created page with "------------------------------------------------------------------------------------ -- TableTools -- -- -- -- This module includes a number of functions for dealing with Lua tables. -- -- It is a meta-module, meant to be called from other Lua modules, and should not -- -- be called directly from #invoke....") | ||||
| N 19:45 | Module:String diffhist +19,366 Jzyehoshua talk contribs (Created page with "--[[ This module is intended to provide access to basic string functions. Most of the functions provided here can be invoked with named parameters, unnamed parameters, or a mixture. If named parameters are used, Mediawiki will automatically remove any leading or trailing whitespace from the parameter. Depending on the intended use, it may be advantageous to either preserve or remove such whitespace. Global options ignore_errors: If set to 'true' or 1, any error c...") | ||||
| N 19:43 | Module:Side box diffhist +3,691 Jzyehoshua talk contribs (Created page with "local yesno = require('Module:Yesno') local p = {} local function makeData(args) local data = {} -- Main table classes data.classes = {} if yesno(args.metadata) ~= false then table.insert(data.classes, 'metadata') end if args.position and args.position:lower() == 'left' then table.insert(data.classes, 'side-box-left') else table.insert(data.classes, 'side-box-right') end if args.collapsible then table.insert(data.classes, 'mw-collapsible') if args....") | ||||
| N 19:42 | Module:Shortcut/config diffhist +1,240 Jzyehoshua talk contribs (Created page with "-- This module holds configuration data for Module:Shortcut. return { -- The heading at the top of the shortcut box. It accepts the following parameter: -- $1 - the total number of shortcuts. (required) ['shortcut-heading'] = '{{PLURAL:Wikipedia:Shortcut|{{PLURAL:$1|Shortcut|Shortcuts}}|Shortcut|Shortcuts}}', -- The heading when |redirect=yes is given. It accepts the following parameter: -- $1 - the total number of shortcuts. (required) ['redirect-heading'] = '[[Wikipedia:Redirect|{{PLURAL...") | ||||
| N 19:42 | Module:Shortcut diffhist +4,336 Jzyehoshua talk contribs (Created page with "-- This module implements {{shortcut}}. -- Set constants local CONFIG_MODULE = 'Module:Shortcut/config' -- Load required modules local checkType = require('libraryUtil').checkType local yesno = require('Module:Yesno') local p = {} local function message(msg, ...) return mw.message.newRawMessage(msg, ...):plain() end local function makeCategoryLink(cat) return string.format('%s:%s', mw.site.namespaces[14].name, cat) end function p._main(shortcuts, options, fra...") | ||||
| N 19:41 | Module:Redirect diffhist +3,295 Jzyehoshua talk contribs (Created page with "-- This module provides functions for getting the target of a redirect page. local p = {} -- Gets a mw.title object, using pcall to avoid generating script errors if we -- are over the expensive function count limit (among other possible causes). local function getTitle(...) local success, titleObj = pcall(mw.title.new, ...) if success then return titleObj else return nil end end -- Gets the name of a page that a redirect leads to, or nil if it isn't a -- redi...") | ||||
| N 19:39 | Module:Navbox/configuration diffhist +5,454 Jzyehoshua talk contribs (Created page with "return { aria_label = 'Navbox', nowrap_item = '%s<span class="nowrap">%s</span>', templatestyles = mw.getCurrentFrame():extensionTag{ name = 'templatestyles', args = { src = 'Module:Navbox/styles.css' } }, hlist_templatestyles = 'Hlist/styles.css', plainlist_templatestyles = 'Plainlist/styles.css', -- do not localize marker table marker = { oddeven = '\127_ODDEVEN_\127', restart = '\127_ODDEVEN0_\127', regex = '\127_ODDEVEN(%d?)_\127' }, category = {...") | ||||
| N 19:39 | Module:Navbox diffhist +29,049 Jzyehoshua talk contribs (Created page with "require('strict') local p = {} local cfg = mw.loadData('Module:Navbox/configuration') local inArray = require("Module:TableTools").inArray local getArgs -- lazily initialized local hiding_templatestyles = {} -- global passthrough variables local passthrough = { [cfg.arg.above]=true,[cfg.arg.aboveclass]=true,[cfg.arg.abovestyle]=true, [cfg.arg.basestyle]=true, [cfg.arg.below]=true,[cfg.arg.belowclass]=true,[cfg.arg.belowstyle]=true, [cfg.arg.bodyclass]=true, [cfg.a...") | ||||
| N 19:37 | Module:Navbar/configuration diffhist +915 Jzyehoshua talk contribs (Created page with "return { ['templatestyles'] = 'Module:Navbar/styles.css', ['hlist_templatestyles'] = 'Hlist/styles.css', ['box_text'] = 'This box: ', -- default text box when not plain or mini ['title_namespace'] = 'Template', -- namespace to default to for title ['invalid_title'] = 'Invalid title ', ['classes'] = { -- set a line to nil if you don't want it ['navbar'] = 'navbar', ['plainlinks'] = 'plainlinks', -- plainlinks ['horizontal_list'] = 'hlist', -- horizontal lis...") | ||||
| N 19:36 | Module:Navbar diffhist +5,296 Jzyehoshua talk contribs (Created page with "local p = {} local cfg = mw.loadData('Module:Navbar/configuration') local function get_title_arg(is_collapsible, template) local title_arg = 1 if is_collapsible then title_arg = 2 end if template then title_arg = 'template' end return title_arg end local function choose_links(template, args) -- The show table indicates the default displayed items. -- view, talk, edit, hist, move, watch -- TODO: Move to configuration. local show = {true, true, true, false, false...") | ||||
| N 19:34 | Module:Message box/configuration diffhist +6,642 Jzyehoshua talk contribs (Created page with "-------------------------------------------------------------------------------- -- Message box configuration -- -- -- -- This module contains configuration data for Module:Message box. -- -------------------------------------------------------------------------------- return { ambox = { types = { speedy = { class = 'ambox-spee...") | ||||
| N 19:34 | Module:Message box diffhist +22,838 Jzyehoshua talk contribs (Created 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 ---------------------------------------------------------------------------...") | ||||
| N 19:33 | Module:Lua banner diffhist +3,908 Jzyehoshua talk contribs (Created page with "-- This module implements the {{lua}} template. local yesno = require('Module:Yesno') local mList = require('Module:List') local mTableTools = require('Module:TableTools') local mMessageBox = require('Module:Message box') local p = {} function p.main(frame) local origArgs = frame:getParent().args local args = {} for k, v in pairs(origArgs) do v = v:match('^%s*(.-)%s*$') if v ~= '' then args[k] = v end end return p._main(args) end function p._main(args)...") | ||||
| N 19:33 | Module:List diffhist +5,643 Jzyehoshua talk contribs (Created page with "local libUtil = require('libraryUtil') local checkType = libUtil.checkType local mTableTools = require('Module:TableTools') local p = {} local listTypes = { ['bulleted'] = true, ['unbulleted'] = true, ['horizontal'] = true, ['ordered'] = true, ['horizontal_ordered'] = true } function p.makeListData(listType, args) -- Constructs a data table to be passed to p.renderList. local data = {} -- Classes and TemplateStyles data.classes = {} data.templatestyles = ''...") | ||||
| N 19:33 | Module:High-use diffhist +9,348 Jzyehoshua talk contribs (Created page with "require('strict') local p = {} local getArgs = require('Module:Arguments').getArgs local _fetch = require('Module:Transclusion_count')._fetch -- _fetch looks at the 'demo' argument local yesno = require('Module:Yesno') local lang_obj = mw.getContentLanguage() -- this here because the language object is used multiple places in the module local large_count_cutoff = 100000 local approx_num_total_pages = 63000000 local user_subpage_info_page = 'Wikipedia:User pages#SUB'...") | ||||
| N 19:29 | Module:Date diffhist +47,974 Jzyehoshua talk contribs (Created page with "-- Date functions for use by other modules. -- I18N and time zones are not supported. local MINUS = '−' -- Unicode U+2212 MINUS SIGN local floor = math.floor local Date, DateDiff, diffmt -- forward declarations local uniq = { 'unique identifier' } local function is_date(t) -- The system used to make a date read-only means there is no unique -- metatable that is conveniently accessible to check. return type(t) == 'table' and t._id == uniq end local function is_...") | ||||
| N 19:21 | Module:Check for unknown parameters diffhist +4,561 Jzyehoshua talk contribs (Created page with "-- This module may be used to compare the arguments passed to the parent -- with a list of arguments, returning a specified result if an argument is -- not on the list require ('strict'); local p = {} local mapframe_params = { 'coord', 'coordinates', 'id', 'qid', 'mapframe', 'mapframe-area_km2', 'mapframe-area_mi2', 'mapframe-caption', 'mapframe-coord', 'mapframe-coordinates', 'mapframe-custom', 'mapframe-frame-coord', 'mapframe-frame-coordinates', 'mapf...") | ||||
| N 19:21 | Module:Arguments diffhist +10,054 Jzyehoshua talk contribs (Created page with "-- 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'...") | ||||
| N 19:20 | Template:\ diffhist +125 Jzyehoshua talk contribs (Created page with " / <noinclude> {{Documentation}} <!-- Add categories and interwikis to the /doc subpage, not here! --> </noinclude>") | ||||
| 19:19 | Template:Warning diffhist +14 Jzyehoshua talk contribs | ||||
| N 19:18 | Template:Tracks Wikidata diffhist +1,148 Jzyehoshua talk contribs (Created page with "{{Sister project | image = 40px|link=Wikipedia:Wikidata | position = {{{position|}}} | text = This {{template other | template | {{module other | module | {{category other | category | page <!-- not template, module, or category --> }} }} }} [[:Category:{{{cat|Wikidata tracking categories}}}|tracks]] {{#if:{{{section|}}} | one or more Wikidata properties; see {{Section...") | ||||
| 19:17 | Template:Tlp diffhist −603 Jzyehoshua talk contribs (Redirected page to Template:Template link with parameters) | ||||
| N 19:16 | Template:Tlb diffhist +93 Jzyehoshua talk contribs (Redirected page to Template:Template link with bold) | ||||
| 19:15 | Template:Tl diffhist −208 Jzyehoshua talk contribs (Redirected page to Template:Template link) | ||||
| N 19:15 | Template:Template shortcut diffhist +105 Jzyehoshua talk contribs (Created page with "<includeonly>{{#invoke:Shortcut|main|template=yes}}</includeonly><noinclude>{{Documentation}}</noinclude>") | ||||
| N 19:13 | Template:Template link with parameters diffhist +220 Jzyehoshua talk contribs (Created page with "<includeonly>{{#Invoke:Template link general|main|nowrap=yes}}</includeonly><noinclude> {{Documentation|1=Template:Tlg/doc |content = {{tlg/doc|tlp}} }} <!-- Add categories to the /doc subpage, not here! --> </noinclude>") | ||||
| N 19:13 | Template:Template link with link off diffhist +231 Jzyehoshua talk contribs (Created page with "<includeonly>{{#Invoke:Template link general|main|nowrap=yes|nolink=yes}}</includeonly><noinclude> {{Documentation|1=Template:Tlg/doc |content = {{tlg/doc|tlf}} }} <!-- Add categories to the /doc subpage, not here! --> </noinclude>") | ||||
| N 19:12 | Template:Template link with bold diffhist +190 Jzyehoshua talk contribs (Created page with "{{#Invoke:Template link general|main|bold=on}}<noinclude> {{Documentation|1=Template:Tlg/doc |content = {{tlg/doc|tlb}} }} <!-- Add categories to the /doc subpage, not here! --> </noinclude>") | ||||
| N 19:12 | Template:Template link diffhist +224 Jzyehoshua talk contribs (Created page with "<span class="nowrap">{{</span>[[Template:{{{1}}}|{{{1}}}]]<span class="nowrap">}}</span><noinclude> {{documentation}} <!-- Categories go on the /doc subpage and interwikis go on Wikidata. --> </noinclude>") | ||||
| N 19:11 | Template:Sister project diffhist +1,578 Jzyehoshua talk contribs (Created page with "{{Side box | templatestyles = Sister project/styles.css | metadata=no | position = {{{position|}}} | image = {{#switch: {{{image|}}} | none = <!-- "image=none", do nothing --> | = <!-- No image fed, select an image --> File:{{#switch: {{lc: {{{project|}}} }} | commons|c = Commons-logo.svg | meta|metawiki|m = Wikimedia Community Logo.svg | wikibooks|wbk|wb|b = Wikibooks-logo-en-noslogan.svg | wikidata|data...") | ||||
| N 19:10 | Template:Side box diffhist +142 Jzyehoshua talk contribs (Created page with "{{#invoke:Side box|main}}<noinclude> {{documentation}} <!-- Categories go on the /doc subpage, and interwikis go on Wikidata. --> </noinclude>") | ||||
| N 19:09 | Template:Resize diffhist +479 Jzyehoshua talk contribs (Created page with "{{safesubst<noinclude />:#if:{{{2|}}} |<{{safesubst<noinclude />:#ifeq:{{{div|}}}|yes|div|span}} style="font-size:{{{1|}}};">{{{2|}}}</{{safesubst<noinclude />:#ifeq:{{{div|}}}|yes|div|span}}> |<{{safesubst<noinclude />:#ifeq:{{{div|}}}|yes|div|span}} style="font-size:{{{size|90}}}%;">{{{1}}}</{{safesubst<noinclude />:#ifeq:{{{div|}}}|yes|div|span}}> }}<noinclude> {{Documentation}} <!-- Add categories to the /doc subpage and interwikis in Wikidata, not here! --> </noincl...") | ||||
| 19:07 | Template:Para diffhist +370 Jzyehoshua talk contribs | ||||
|
|
19:07 | Template:Notice 2 changes history −1,404 [Jzyehoshua (2×)] | |||
|
|
19:07 (cur | prev) −1,557 Jzyehoshua talk contribs | ||||
|
|
19:07 (cur | prev) +153 Jzyehoshua talk contribs | ||||
| N 19:06 | Template:No redirect diffhist +441 Jzyehoshua talk contribs (Created page with "{{safesubst:<noinclude/>#if: {{safesubst:<noinclude/>#invoke:Redirect|isRedirect|{{{1}}}}} | <span class="plainlinks">[{{safesubst:<noinclude/>fullurl:{{{1}}}|redirect=no}} {{{2|{{{1}}}}}}]</span><span style="display: none">[[:{{{1}}}]]</span> | {{safesubst:<noinclude/>#if:{{{2|}}}|[[:{{safesubst:<noinclude/>FULLPAGENAME:{{{1}}}}}|{{{2}}}]]|[[:{{safesubst:<noinclude/>FULLPAGENAME:{{{1}}}}}]]}} }}<noinclude> {{documentation}} </noinclude>") | ||||
| N 19:05 | Template:Navbox with collapsible groups diffhist +84 Jzyehoshua talk contribs (Created page with "{{#invoke:Navbox|with collapsible groups}}<noinclude> {{documentation}} </noinclude>") | ||||
| 19:05 | Template:Mbox diffhist −554 Jzyehoshua talk contribs | ||||
| 19:04 | Template:Main other diffhist +195 Jzyehoshua talk contribs | ||||
| N 19:04 | Template:Lua diffhist +196 Jzyehoshua talk contribs (Created page with "<includeonly>{{#invoke:Lua banner|main}}</includeonly><noinclude> {{Lua|Module:Lua banner}} {{documentation}} <!-- Categories go on the /doc subpage and interwikis go on Wikidata. --> </noinclude>") | ||||
| N 19:02 | Template:High-use diffhist +270 Jzyehoshua talk contribs (Created page with "{{#invoke:High-use|main|1={{{1|}}}|2={{{2|}}}|info={{{info|}}}|demo={{{demo|}}}|form={{{form|}}}|expiry={{{expiry|}}}|system={{{system|}}}}}<noinclude> {{Documentation}} <!-- Add categories to the /doc subpage; interwiki links go to Wikidata, thank you! --> </noinclude>") | ||||
| 19:01 | Template:Documentation subpage diffhist +298 Jzyehoshua talk contribs | ||||
| 19:00 | Template:Date-mf diffhist −59 Jzyehoshua talk contribs | ||||
| N 18:58 | Template:Clc diffhist +47 Jzyehoshua talk contribs (Redirected page to Template:Category link with count) | ||||
| N 18:57 | Template:Category link with count diffhist +360 Jzyehoshua talk contribs (Created page with "[[:Category:{{#invoke:string|replace|1={{{1}}}|2=^:?[Cc]ategory:|3=|plain=false}}|<!-- -->{{#if:{{{name|}}}|{{{name}}}|Category:{{#invoke:string|replace|1={{{1}}}|2=^:?[Cc]ategory:|3=|plain=false}}}}<!-- -->]] ({{PAGESINCATEGORY:{{#invoke:string|replace|1={{{1}}}|2=^:?[Cc]ategory:|3=|plain=false}}|{{{2|all}}}}})<noinclude> {{Documentation}} </noinclude>") | ||||