All public logs

Jump to navigation Jump to search

Combined display of all available logs of Church of God Knowledge Encyclopedia. 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 ( | ) (20 | 50 | 100 | 250 | 500)
  • 16:08, 22 July 2022 Isaacp talk contribs created page Module:Footnotes/anchor id list (Created page with "require('Module:No globals'); local data = mw.loadData ('Module:Footnotes/anchor id list/data'); local whitelist = mw.loadData ('Module:Footnotes/whitelist'); local Lang_obj = mw.language.getContentLanguage(); -- used by template_list_add() to uppercase first letter of template name TODO: better way to do that? local redirects_date = { ['date'] = true, ['datetomos'] = true, ['formatdate'] = true, ['isotodmymdy'] = true, ['isotomos'] = true, } local redirect...")
  • 16:07, 22 July 2022 Isaacp talk contribs created page Module:Footnotes (Created page with "require('Module:No globals'); local getArgs = require ('Module:Arguments').getArgs; --[[--------------------------< A R G S _ D E F A U L T >------------------------------------------------------ a table to specify initial values. ]] local args_default = { bracket_left = '', bracket_right = '', bracket_year_left = '', bracket_year_right = '', postscript = '', page = '', pages = '', location = '', page_sep = ", p. ", pages_sep = ", pp. ", ref = '...")
  • 16:07, 22 July 2022 Isaacp talk contribs created page Module:File link (Created 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...")
  • 16:07, 22 July 2022 Isaacp talk contribs created page Module:Exponential search (Created page with "-- This module provides a generic exponential search algorithm. local checkType = require('libraryUtil').checkType local floor = math.floor local function midPoint(lower, upper) return floor(lower + (upper - lower) / 2) end local function search(testFunc, i, lower, upper) if testFunc(i) then if i + 1 == upper then return i end lower = i if upper then i = midPoint(lower, upper) else i = i * 2 end return search(testFunc, i, lower, upper) else...")
  • 16:07, 22 July 2022 Isaacp talk contribs created page Module:Effective protection level (Created 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...")
  • 16:06, 22 July 2022 Isaacp talk contribs created page Module:Effective protection expiry (Created 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...")
  • 16:05, 22 July 2022 Isaacp talk contribs created page Module:Delink (Created page with "-- This module de-links most wikitext. require("Module:No globals") local p = {} local getArgs local function delinkReversePipeTrick(s) if s:match("^%[%[|.*[|\n]") then -- Check for newlines or multiple pipes. return s end return s:match("%[%[|(.*)%]%]") end local function delinkPipeTrick(s) -- We need to deal with colons, brackets, and commas, per Help:Pipe trick. -- First, remove the text before the first colon, if any. if s:match(":") then s = s:ma...")
  • 16:05, 22 July 2022 Isaacp talk contribs created page Module:Cs1 documentation support (Created page with "require('Module:No globals'); local getArgs = require ('Module:Arguments').getArgs; local cfg = mw.loadData ('Module:Citation/CS1/Configuration'); -- load the configuration module local whitelist = mw.loadData ('Module:Citation/CS1/Whitelist'); -- load the whitelist module local exclusion_lists = { -- TODO: move these tables into a separate ~/data module and mw.loadData() it ['cite book'] = { ['agency'] = true, ['air-date'] = true, ['arxiv']...")
  • 16:05, 22 July 2022 Isaacp talk contribs created page Module:Color contrast/colors (Created page with "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...")
  • 16:05, 22 July 2022 Isaacp talk contribs created page Module:Color contrast (Created 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 *...")
  • 16:04, 22 July 2022 Isaacp talk contribs created page Module:Check for unknown parameters (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 local p = {} local function trim(s) return s:match('^%s*(.-)%s*$') end local function isnotempty(s) return s and s:match('%S') end local function clean(text) -- Return text cleaned for display and truncated if too long. -- Strip markers are replaced with dummy text representing the original wikitext...")
  • 16:03, 22 July 2022 Isaacp talk contribs created page Module:Category handler/shared (Created page with "-- 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...")
  • 16:03, 22 July 2022 Isaacp talk contribs created page Module:Category handler/data (Created page with "-- 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(...")
  • 16:03, 22 July 2022 Isaacp talk contribs created page Module:Category handler/config (Created page with "-------------------------------------------------------------------------------- -- 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. ----------------------------...")
  • 16:02, 22 July 2022 Isaacp talk contribs created page Module:Category handler/blacklist (Created page with "-- 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]', -- The userbo...")
  • 16:02, 22 July 2022 Isaacp talk contribs created page Module:Category handler (Created page with "-------------------------------------------------------------------------------- -- -- -- CATEGORY HANDLER -- -- -- -- This module implements the {{category handler}} template in Lua, -- -- with a few improvements: all namespaces and all namespace alia...")
  • 16:02, 22 July 2022 Isaacp talk contribs created page Module:Anchor (Created page with "-- This module implements {{anchor}}. local getArgs = require('Module:Arguments').getArgs local tableTools = require('Module:TableTools') local p = {} function p.main(frame) -- Get the positional arguments from #invoke, remove any nil values, -- and pass them to p._main. local args = getArgs(frame) local argArray = tableTools.compressSparseArray(args) return p._main(unpack(argArray)) end function p._main(...) -- Generate the list of anchors. local anchors = {....")
  • 13:43, 22 July 2022 Kimjin0 talk contribs deleted page Test1 (content was: "한국어 위키와 연결 확인을 위한 문서 입니다. 아버지 하나님과 연결이 됐다면 성공입니다. ko:화성봉담_하나님의_교회", and the only contributor was "Resultofunion" (talk))
  • 13:43, 22 July 2022 Kimjin0 talk contribs deleted page Church of god (content was: "f", and the only contributor was "Kimjin0" (talk))
  • 13:42, 22 July 2022 Kimjin0 talk contribs deleted page Churchofgod (content was: "섬네일|300px|right|하나님의교회 새예루살렘 판교성전", and the only contributor was "Kimjin0" (talk))
  • 13:42, 22 July 2022 Kimjin0 talk contribs created page MediaWiki:Mainpage (Created page with "Church_of_God")
  • 13:40, 22 July 2022 Kimjin0 talk contribs created page Church of God (Created page with "f")
  • 13:39, 22 July 2022 Kimjin0 talk contribs created page Church of god (Created page with "f")
  • 13:38, 22 July 2022 Kimjin0 talk contribs created page Churchofgod (Created page with "섬네일|300px|right|하나님의교회 새예루살렘 판교성전")
  • 17:00, 21 July 2022 Isaacp talk contribs created page Template:Str left (Created page with "<includeonly>{{safesubst:padleft:|{{{2|1}}}|{{{1}}}}}</includeonly><noinclude> {{documentation}} <!-- Categories go on the /doc subpage, and interwikis go on Wikidata. --> </noinclude>")
  • 16:52, 21 July 2022 Isaacp talk contribs created page Template:틀:지역교회 (Created page with "<onlyinclude> {{정보상자 |제목 = <div style="position:relative; width:100%; padding:8px 0; display:table; background:#4C6099;"><div style="position:absolute; bottom:0; right:0;"></div><span style="position:relative; width:100%; display:table-cell; vertical-align:middle; text-align:center; color:#FFFFFF">{{#ifeq:{{{이름|}}}|값찾기|{{#invoke:ArtworkInfo|getLabel}}|{{{이름|{{PAGENAME}}}}}}}</span></div> |그림 = {{{그림|}}} |항목모양 = width:25%; |항...")
  • 16:48, 21 July 2022 Isaacp talk contribs created page Module:Infobox/styles.css (Created page with "{{pp|small=y}}: * This TemplateStyles sheet deliberately does NOT include the full set of * infobox styles. We are still working to migrate all of the manual * infoboxes. See MediaWiki talk:Common.css/to do#Infobox * DO NOT ADD THEM HERE: * not strictly certain these styles are necessary since the modules now * exclusively output infobox-subbox or infobox, not both * just replicating the module faithfully: .infobox-subbox { padding: 0; borde...")
  • 16:47, 21 July 2022 Isaacp talk contribs created page 틀:지역교회 (Created page with "<onlyinclude> {{정보상자 |제목 = <div style="position:relative; width:100%; padding:8px 0; display:table; background:#4C6099;"><div style="position:absolute; bottom:0; right:0;"></div><span style="position:relative; width:100%; display:table-cell; vertical-align:middle; text-align:center; color:#FFFFFF">{{#ifeq:{{{이름|}}}|값찾기|{{#invoke:ArtworkInfo|getLabel}}|{{{이름|{{PAGENAME}}}}}}}</span></div> |그림 = {{{그림|}}} |항목모양 = width:25%; |항...")
  • 16:43, 21 July 2022 Isaacp talk contribs created page Template:' (Created page with "<span class="nowrap" style="padding-left:0.1em;">'</span><noinclude> {{documentation}} <!-- Categories go on the /doc subpage and interwikis go on Wikidata. --> </noinclude>")
  • 16:41, 21 July 2022 Isaacp talk contribs created page Module:Documentation/styles.css (Created page with "{{pp|small=yes}}: .documentation, .documentation-metadata { border: 1px solid #a2a9b1; background-color: #ecfcf4; clear: both; } .documentation { margin: 1em 0 0 0; padding: 1em; } .documentation-metadata { margin: 0.2em 0; same margin left-right as .documentation: font-style: italic; padding: 0.4em 1em; same padding left-right as .documentation: } .documentation-startbox { padding-bottom: 3px; border-bottom: 1px solid #aaa; margin-bott...")
  • 16:38, 21 July 2022 Isaacp talk contribs created page Template:!xt (Created page with "{{#ifeq:{{NAMESPACE}}|{{ns:0}}|{{FormattingError|[[:{{#invoke:TEMPLATENAME|main}}]] is only for examples of style and formatting. Do not use it in actual articles.}}|<span class="example deprecated-content example-bad" style="font-family: Georgia, 'DejaVu Serif', serif; color: #8B0000;" {{#if:{{{title|}}}|title="{{{title}}}"}}>{{{1|Example text}}}</span>}}<noinclude> {{Documentation}} </noinclude>")
  • 16:31, 21 July 2022 User account S921132820 talk contribs was created
  • 11:30, 21 July 2022 Isaacp talk contribs created page Module:Citation/CS1/styles.css (Created page with "Protection icon the following line controls the page-protection icon in the upper right corner it must remain within this comment {{sandbox other||{{pp-template}}}}: Overrides Some wikis do not override user agent default styles for HTML <cite> and <q>, unlike en.wp. On en.wp, keep these the same as MediaWiki:Common.css. The word-wrap and :target styles were moved here from Common.css. On en.wp, keep these the same as Template:Citation/styles.css.: ...")
  • 11:00, 21 July 2022 Kimjin0 talk contribs created page Module:Test/styles.css (Created page with "최근편집일, 개인정보처리방침, 면책조항 삭제: #footer-info-lastmod, #footer-places-privacy, #footer-places-disclaimer {display:none}")
  • 19:56, 20 July 2022 Isaacp talk contribs moved page Church of God in San Diego, CA, U.S. to The Church of God in San Diego, CA, U.S.
  • 19:22, 20 July 2022 Isaacp talk contribs created page Template:Family Site (Created page with "<div class="cog-related-site part-t"> <ul> <li> <div class="site-img site-img1">[https://watv.org/ watv-img1]</div> <div class="site-info"> <div>하나님의 교회 공식 사이트</div> <div class="cog-tag">[https://watv.org/ WATV.ORG]</div> </div> </li> <li> <div class="site-img site-img2">[https://ahnsahnghong.com/ watv...")
  • 17:19, 20 July 2022 Isaacp talk contribs created page Module:Documentation/config (Created page with "---------------------------------------------------------------------------------------------------- -- -- 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. ---------------------------------------------------------------------------------...")
  • 16:40, 20 July 2022 Isaacp talk contribs created page Template:패밀리 사이트 (Created page with "<div class="cog-related-site part-t"> <ul> <li> <div class="site-img site-img1">[https://watv.org/ watv-img1]</div> <div class="site-info"> <div>하나님의 교회 공식 사이트</div> <div class="cog-tag">[https://watv.org/ WATV.ORG]</div> </div> </li> <li> <div class="site-img site-img2">[https://ahnsahnghong.com/ watv...")
  • 16:33, 20 July 2022 Isaacp talk contribs created page Module:Citation/CS1/Suggestions (Created page with "-- Please insert new suggestions in alphabetical order -- The form is ['incorrect'] = 'correct', suggestions = { ['ASIN-TLD'] = 'asin-tld', -- old parameter name ['abruf'] = 'access-date', -- German ['abruf-verborgen'] = 'access-date', -- German ['accessmonth'] = 'access-date', ['accesso'] = 'access-date', -- Italian ['accessyear'] = 'access-date', ['acessodata'] = 'access-date', -- Brazilian Portuguese ['ad...")
  • 16:32, 20 July 2022 Isaacp talk contribs created page Module:Citation/CS1/COinS (Created page with "--[[--------------------------< F O R W A R D D E C L A R A T I O N S >-------------------------------------- ]] local has_accept_as_written, is_set, in_array, remove_wiki_link, strip_apostrophe_markup; -- functions in Module:Citation/CS1/Utilities local cfg; -- table of configuration tables that are defined in Module:Citation/CS1/Configuration --[[--------------------------< M A K E _ C O I N S _ T I T L E >----------------------------------------...")
  • 16:31, 20 July 2022 Isaacp talk contribs created page Module:Citation/CS1/Identifiers (Created page with "--[[--------------------------< F O R W A R D D E C L A R A T I O N S >-------------------------------------- ]] local has_accept_as_written, is_set, in_array, set_message, select_one, -- functions in Module:Citation/CS1/Utilities substitute, make_wikilink; local z; -- table of tables defined in Module:Citation/CS1/Utilities local cfg; -- table of configuration tables that are defined in Module:Citation/CS1/Configuration --[[-...")
  • 16:29, 20 July 2022 Isaacp talk contribs created page Module:Citation/CS1/Date validation (Created page with "--[[--------------------------< F O R W A R D D E C L A R A T I O N S >-------------------------------------- ]] local add_prop_cat, is_set, in_array, set_message, substitute, wrap_style; -- imported functions from selected Module:Citation/CS1/Utilities local cfg; -- table of tables imported from selected Module:Citation/CS1/Configuration --[[--------------------------< F I L E - S C O P E D E C L A R A T I O N S >--------------------------------...")
  • 16:29, 20 July 2022 Isaacp talk contribs created page Module:Citation/CS1/Utilities (Created page with "local z = { error_cats_t = {}; -- for categorizing citations that contain errors error_ids_t = {}; -- list of error identifiers; used to prevent duplication of certain errors; local to this module error_msgs_t = {}; -- sequence table of error messages maint_cats_t = {}; -- for categorizing citations that aren't erroneous per se, but could use a little work prop_cats_t = {}; -- for categorizing cit...")
  • 16:28, 20 July 2022 Isaacp talk contribs created page Module:Citation/CS1/Whitelist (Created page with "--[[--------------------------< S U P P O R T E D P A R A M E T E R S >-------------------------------------- Because a steady-state signal conveys no useful information, whitelist.basic_arguments[] list items can have three values: true - these parameters are valid and supported parameters false - these parameters are deprecated but still supported tracked - these parameters are valid and supported parameters tracked in an eponymous properties category nil - thes...")
  • 16:27, 20 July 2022 Isaacp talk contribs created page Module:Citation/CS1/Configuration (Created page with "local lang_obj = mw.language.getContentLanguage(); -- make a language object for the local language; used here for languages and dates --[[--------------------------< U N C A T E G O R I Z E D _ N A M E S P A C E S >------------------------------ List of namespaces that should not be included in citation error categories. Same as setting notracking = true by default. Note: Namespace names should use underscores instead of spaces. ]] local uncategorized_names...")
  • 16:07, 20 July 2022 Isaacp talk contribs created page Module:No globals (Created page with "local mt = getmetatable(_G) or {} function mt.__index (t, k) if k ~= 'arg' then error('Tried to read nil global ' .. tostring(k), 2) end return nil end function mt.__newindex(t, k, v) if k ~= 'arg' then error('Tried to write global ' .. tostring(k), 2) end rawset(t, k, v) end setmetatable(_G, mt)")
  • 15:57, 20 July 2022 Isaacp talk contribs created page Module:Arguments (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'...")
  • 15:57, 20 July 2022 Isaacp talk contribs created page Template:Template other (Created 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--><noinclude> {{documentation}} <!-- Add categories and interwikis to the /doc subpage, not here! --> </noinclude>")
  • 15:54, 20 July 2022 Isaacp talk contribs created page Module:Citation/CS1 (Created page with "require ('Module:No globals'); --[[--------------------------< F O R W A R D D E C L A R A T I O N S >-------------------------------------- each of these counts against the Lua upvalue limit ]] local validation; -- functions in Module:Citation/CS1/Date_validation local utilities; -- functions in Module:Citation/CS1/Utilities local z ={}; -- table of tables in Module:Citation/CS1/Utilities local identifiers;...")
  • 15:50, 20 July 2022 Isaacp talk contribs created page Module:Documentation (Created page with "-- This module implements {{documentation}}. -- Get required modules. local getArgs = require('Module:Arguments').getArgs -- Get the config table. local cfg = mw.loadData('Module:Documentation/config') local p = {} -- Often-used functions. local ugsub = mw.ustring.gsub ---------------------------------------------------------------------------- -- Helper functions -- -- These are defined as local functions, but are made available in the p -- table for testing purpos...")
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)