All public logs
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).
- 16:10, 22 July 2022 Isaacp talk contribs created page Module:High-use (Created page with "local p = {} -- _fetch looks at the "demo" argument. local _fetch = require('Module:Transclusion_count').fetch local yesno = require('Module:Yesno') function p.num(frame, count) if count == nil then if yesno(frame.args['fetch']) == false then if (frame.args[1] or '') ~= '' then count = tonumber(frame.args[1]) end else count = _fetch(frame) end end -- Build output string local return_value = "" if count == nil then if frame.args[1] == "risk" then...")
- 16:10, 22 July 2022 Isaacp talk contribs created page Module:Hatnote inline (Created page with "-------------------------------------------------------------------------------- -- Module:Hatnote-inline -- -- -- -- This module produces hatnote-style links, and links to related articles, -- -- but inside a <span>, instead of the <div> used by Module:Hatnote. It -- -- implements the {{hatnote-inline}} meta-template....")
- 16:09, 22 July 2022 Isaacp talk contribs created page Module:Hatnote/styles.css (Created 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; }")
- 16:09, 22 July 2022 Isaacp talk contribs created page Module:Hatnote (Created 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....")
- 16:09, 22 July 2022 Isaacp talk contribs created page Module:GetParameters (Created 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...")
- 16:09, 22 July 2022 Isaacp talk contribs created page Module:Footnotes/whitelist (Created page with "--[[--------------------------< W R A P P E R _ T E M P L A T E _ D E F A U L T S >---------------------------- A list of wrapper templates by their canonical names – spelling and capitalization is important. Each wrapper template has a table of two values: [1] is the wrapper's default name-list as it is used in an anchor ID; [2] is the default year. This table is indexed indirectly through the wrapper_templates table. This table is not available externally. ]] l...")
- 16:08, 22 July 2022 Isaacp talk contribs created page Module:Footnotes/anchor id list/data (Created page with "-- copied from Module:Ref info/data - maybe overkill here? -- for this application make lists from the redirect lists and force all template names first character uppercase require('Module:No globals'); --[[--------------------------< C S 1 _ T E M P L A T E _ P A T T E R N S >------------------------------------ These are patterns for cs1 templates and their redirects. These patterns exclude redirects that are vcite-like which redirects should be deleted because vci...")
- 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...")