모든 공개 기록
okerawiki에서 사용할 수 있는 모든 기록이 표시됩니다. 기록 종류나 사용자 이름(대소문자 구별) 또는 영향을 받는 문서(대소문자 구별)를 선택하여 범위를 좁혀서 살펴볼 수 있습니다.
- 2023년 7월 12일 (수) 22:52 Okera 토론 기여님이 모듈:Side box 문서를 만들었습니다 (새 문서: -- This module implements {{side box}}. local yesno = require('Module:Yesno') 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) local data = p.makeData(args) return p.renderSidebox(data) end function p.makeData(args) local data = {} -- Main table classes data.classes = {}...)
- 2023년 7월 12일 (수) 22:51 Okera 토론 기여님이 모듈:Shortcut/config 문서를 만들었습니다 (새 문서: -- 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'] = '단축', -- The heading when |redirect=yes is given. It accepts the following parameter: -- $1 - the total number of shortcuts. (required) ['redirect-heading'] = '넘겨주기', -- The error me...)
- 2023년 7월 12일 (수) 22:50 Okera 토론 기여님이 모듈:Shortcut 문서를 만들었습니다 (새 문서: -- 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, frame, cfg)...)
- 2023년 7월 12일 (수) 22:49 Okera 토론 기여님이 모듈:No globals 문서를 만들었습니다 (새 문서: 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))
- 2023년 7월 12일 (수) 22:49 Okera 토론 기여님이 모듈:Navbar 문서를 만들었습니다 (새 문서: local p = {} local getArgs local ul function p.addItem (mini, full, link, descrip, args, url) local l if url then l = {'[', '', ']'} else l = {'', ''} end ul:tag('li') :addClass('nv-'..full) :wikitext(l[1] .. link .. l[2]) :tag(args.mini and 'abbr' or 'span') :attr('title', '이 틀'.. descrip) :cssText(args.fontstyle) :wikitext(args.mini and mini or full) :done() :wikitext(l[3]) end function p.brackets (position, c, args, div) if args.b...)
- 2023년 7월 12일 (수) 22:48 Okera 토론 기여님이 모듈:Namespace detect/config 문서를 만들었습니다 (새 문서: -------------------------------------------------------------------------------- -- Namespace detect configuration data -- -- -- -- This module stores configuration data for Module:Namespace detect. Here -- -- you can localise the module to your wiki's language. -- --...)
- 2023년 7월 12일 (수) 22:47 Okera 토론 기여님이 모듈:Namespace detect 문서를 만들었습니다 (새 문서: --[[ -------------------------------------------------------------------------------- -- -- -- NAMESPACE DETECT -- -- -- -- This module implements the {{namespace detect}} template in Lua, with a -- -- few improvements: all namespaces and all namespace aliases are support...)
- 2023년 7월 12일 (수) 22:46 Okera 토론 기여님이 모듈:Main 문서를 만들었습니다 (새 문서: --[[ -- This module produces a link to a main article or articles. It implements the -- template {{main}}. -- -- If the module is used in category or category talk space, it produces "The -- main article for this category is xxx". Otherwise, it produces -- "Main article: xxx". --]] local mHatnote = require('Module:Hatnote') local mHatlist = require('Module:Hatnote list') local mArguments -- lazily initialise local p = {} function p.main(frame) mArguments = require('Module:Ar...)
- 2023년 7월 12일 (수) 22:44 Okera 토론 기여님이 문언문 문서를 만들었습니다 (한문 문서로 넘겨주기) 태그: 새 넘겨주기
- 2023년 7월 12일 (수) 22:39 Okera 토론 기여님이 모듈:Language 문서를 만들었습니다 (새 문서: local lang_overrides = { ["aae"] = "아르버레시어", ["ab"] = "압하스어", ["abq"] = "아바자어", ["abv"] = "바레인 아랍어", ["ady"] = "아디게어", ["aeb"] = "튀니지 아랍어", ["af"] = "아프리칸스어", ["aii"] = "아시리아 신아람어", ["ain"] = "아이누어", -- CLDR 중복 ["als"] = "토스크 알바니아어", ["ami"] = "아미어", ["ams"] = "남부 아마미어", ["ang"] = "고대...)
- 2023년 7월 12일 (수) 22:25 Okera 토론 기여님이 모듈:Langname/data 문서를 만들었습니다 (새 문서: --위키백과 참조 --[[ Module:Langname 의 데이터 파일. 언어 코드와 언어 이름의 대응 관계가 저장된다. lang_names: 언어 코드와 언어 이름의 대응 lang_articles: 언어 이름과 실제 위키백과 문서가 기술적 이유로 다른 경우. lang_wikipedia: ISO 코드를 따르지 않는 위키백과 코드. ]] local langdata = {} -- 언어 이름과 실제 문서가 다른 경우 langdata.lang_article = { ["be...)
- 2023년 7월 12일 (수) 22:15 Okera 토론 기여님이 모듈:Langname 문서를 만들었습니다 (새 문서: --This module provides a language name handling operations based on ISO 639 and Unicode CLDR information. - ChongDae local lang = {} local langdata = mw.loadData('Module:Langname/data') local lang_name = langdata.lang_name local lang_autonym = langdata.lang_autonym local lang_article = langdata.lang_article local lang_wikipedia = langdata.lang_wikipedia ---- Helper functions -- local function getCldrName(code) local name = mw.language.fetchLanguageName(cod...)
- 2023년 7월 12일 (수) 22:14 Okera 토론 기여님이 모듈:Hatnote list 문서를 만들었습니다 (새 문서: -------------------------------------------------------------------------------- -- 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 introduced...)
- 2023년 7월 12일 (수) 22:13 Okera 토론 기여님이 모듈:Hatnote 문서를 만들었습니다 (새 문서: -------------------------------------------------------------------------------- -- 모듈: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....)
- 2023년 7월 12일 (수) 22:12 Okera 토론 기여님이 모듈:Error 문서를 만들었습니다 (새 문서: -- This module implements {{error}}. local p = {} local function _error(args) local tag = mw.ustring.lower(tostring(args.tag)) -- Work out what html tag we should use. if not (tag == 'p' or tag == 'span' or tag == 'div') then tag = 'strong' end -- Generate the html. return tostring(mw.html.create(tag) :addClass('error') :wikitext(tostring(args.message or args[1] or error('지정된 메시지가 없습니다', 2))) ) end fun...)
- 2023년 7월 12일 (수) 21:39 Okera 토론 기여님이 파일:Camera Flat Icon Vector.svg 문서를 삭제했습니다
- 2023년 7월 12일 (수) 20:27 Okera 토론 기여님이 대문 문서를 보호했습니다 [편집=관리자만 허용] (무기한) [이동=관리자만 허용] (무기한) (역사)
- 2023년 7월 12일 (수) 20:27 Okera 토론 기여님이 파일:Camera Flat Icon Vector.svg 문서를 만들었습니다 ([https://videoplasty.com/|Videoplasty] created in Wikimedia Commons)
- 2023년 7월 12일 (수) 20:27 Okera 토론 기여님이 파일:Camera Flat Icon Vector.svg 파일을 올렸습니다 ([https://videoplasty.com/|Videoplasty] created in Wikimedia Commons)
- 2023년 7월 12일 (수) 20:24 Okera 토론 기여님이 파일:Emblem-relax.svg 문서를 만들었습니다 (David Vignoni created in Wikimedia Commons, from http://ftp.gnome.org/pub/GNOME/sources/gnome-themes-extras/0.9/gnome-themes-extras-0.9.0.tar.gz LGPL 2.1)
- 2023년 7월 12일 (수) 20:24 Okera 토론 기여님이 파일:Emblem-relax.svg 파일을 올렸습니다 (David Vignoni created in Wikimedia Commons, from http://ftp.gnome.org/pub/GNOME/sources/gnome-themes-extras/0.9/gnome-themes-extras-0.9.0.tar.gz LGPL 2.1)
- 2023년 7월 12일 (수) 20:22 Okera 토론 기여님이 파일:Comics baloon barnstar.png 문서를 만들었습니다 (Dixy52, Comics baloon barnstar.png in Wikimedia Commons (253px resized))
- 2023년 7월 12일 (수) 20:22 Okera 토론 기여님이 파일:Comics baloon barnstar.png 파일을 올렸습니다 (Dixy52, Comics baloon barnstar.png in Wikimedia Commons (253px resized))
- 2023년 7월 12일 (수) 20:21 Okera 토론 기여님이 파일:253px-Comics baloon barnstar.png 문서를 삭제했습니다
- 2023년 7월 12일 (수) 20:21 Okera 토론 기여님이 파일:253px-Comics baloon barnstar.png 문서를 만들었습니다 (Dixy52, Comics baloon barnstar.png in Wikimedia Commons)
- 2023년 7월 12일 (수) 20:21 Okera 토론 기여님이 파일:253px-Comics baloon barnstar.png 파일을 올렸습니다 (Dixy52, Comics baloon barnstar.png in Wikimedia Commons)
- 2023년 7월 11일 (화) 22:02 Okera 토론 기여님이 모듈:HelloWorld 문서를 만들었습니다 (새 문서: -- 위키백과의 모든 모듈은 테이블 변수를 정의해주는 것부터 시작해야 합니다. -- 이 변수는 모듈 외부에서 접근하는 함수들이 이 모듈을 쓸 수 있게끔 해줍니다. my_object = {}; -- 테이블 변수에 함수를 추가합니다. 함수를 쓸땐 #invoke 명령어로 쓸수 있습니다. -- "frame"엔 위키백과에서 함수를 호출했을 때 같이 전달된 데이터(매개변수 등)가 -- 포함되어 있을 것입니...)
- 2023년 7월 11일 (화) 22:00 Okera 토론 기여님이 모듈:TableTools 문서를 만들었습니다 (새 문서: --[[ ------------------------------------------------------------------------------------ -- 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....)
- 2023년 7월 11일 (화) 22:00 Okera 토론 기여님이 모듈:List 문서를 만들었습니다 (새 문서: -- This module outputs different kinds of lists. At the moment, bulleted, -- unbulleted, horizontal, ordered, and horizontal ordered lists are supported. 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) --...)
- 2023년 7월 11일 (화) 21:59 Okera 토론 기여님이 모듈:Namespace detect/data 문서를 만들었습니다 (새 문서: -- 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.p...)
- 2023년 7월 11일 (화) 21:59 Okera 토론 기여님이 모듈:Category handler/config 문서를 만들었습니다 (새 문서: -------------------------------------------------------------------------------- -- 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. ------------------------------------...)
- 2023년 7월 11일 (화) 21:58 Okera 토론 기여님이 모듈:Category handler/blacklist 문서를 만들었습니다 (새 문서: -- 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]', -- Th...)
- 2023년 7월 11일 (화) 21:58 Okera 토론 기여님이 모듈:Category handler/shared 문서를 만들었습니다 (새 문서: -- 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(...)
- 2023년 7월 11일 (화) 21:58 Okera 토론 기여님이 모듈:Category handler/data 문서를 만들었습니다 (새 문서: -- 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.p...)
- 2023년 7월 11일 (화) 21:58 Okera 토론 기여님이 틀:비자유 만화 문서를 만들었습니다 (새 문서: {{imbox |종류 = 저작권 |그림 = 64px|link=|저작권 |본문 = 이 파일은 저작권이 있는 '''만화, 웹 만화 또는 만화책의 표지 및 내부 그림'''입니다. 이 파일의 저작권은 보통 출판사나 저자 등이 갖고 있습니다. * 만화의 표지의 경우 ** 해당 만화의 호 문서이거나 ** 정기적으로 발행되는 만화의 여러 호 중 하나이거나 ** 등장인물의 모습...)
- 2023년 7월 11일 (화) 21:57 Okera 토론 기여님이 틀:비자유 미디어 문서를 만들었습니다 (새 문서: {{#ifeq:{{NAMESPACE}}|파일|분류:모든 비자유 미디어{{#if:{{{1|}}}|[[분류:{{{1}}}]]}}}}<noinclude> {{설명문서}} </noinclude>)
- 2023년 7월 11일 (화) 21:56 Okera 토론 기여님이 모듈:Arguments 문서를 만들었습니다 (새 문서: -- 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 v...)
- 2023년 7월 11일 (화) 21:55 Okera 토론 기여님이 모듈:Yesno 문서를 만들었습니다 (새 문서: -- 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 == 'true'...)
- 2023년 7월 11일 (화) 21:55 Okera 토론 기여님이 틀:Category handler 문서를 만들었습니다 (새 문서: {{#invoke:Category handler|main}}<noinclude> {{설명문서}}</noinclude>)
- 2023년 7월 11일 (화) 21:54 Okera 토론 기여님이 모듈:Category handler 문서를 만들었습니다 (새 문서: -------------------------------------------------------------------------------- -- -- -- CATEGORY HANDLER -- -- -- -- This module implements the {{category handler}} template in Lua, -- -- with a few improvements: all namespaces and all namespace aliases...)
- 2023년 7월 11일 (화) 21:54 Okera 토론 기여님이 모듈:Lua banner/설명문서 문서를 만들었습니다 (새 문서: {{틀|루아}}의 구현에 사용됩니다.)
- 2023년 7월 11일 (화) 21:54 Okera 토론 기여님이 모듈:Lua banner 문서를 만들었습니다 (새 문서: -- 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) local m...)
- 2023년 7월 11일 (화) 21:53 Okera 토론 기여님이 틀:루아/설명문서 문서를 만들었습니다 (새 문서: {{설명문서 안내}} 이 틀은 루아를 사용하는 틀임을 알려줄 때 사용됩니다. 틀의 /설명문서 페이지 최상단에 위치해야 하며, 이 틀을 사용하면 분류:루아 틀 또는 그 하위 분류에 자동 분류됩니다. == 사용법 == ; 기본: {{tlx|루아|''모듈명''}} ; 모든 매개 변수: {{tlx|루아|''모듈 1''|''모듈 2''|''모듈 3''|...|category{{=}}''custom category''|nocat{{=}}''tru...)
- 2023년 7월 11일 (화) 21:53 Okera 토론 기여님이 틀:루아 문서를 만들었습니다 (새 문서: <includeonly>{{#invoke:Lua banner|main}}</includeonly><noinclude> {{루아|Module:Lua banner}} {{설명문서}} </noinclude>)
- 2023년 7월 11일 (화) 21:52 Okera 토론 기여님이 모듈:Message box/localize 문서를 만들었습니다 (새 문서: -- localize param, message return { type_map = { ['신속'] = 'speedy', ['삭제'] = 'delete', ['내용'] = 'content', ['모양'] = 'style', ['이동'] = 'move', ['보호'] = 'protection', ['안내'] = 'notice', ['경고'] = 'warning', ['편집안내'] = 'editnotice', ['시스템'] = 'system', ['저작권'] = 'license', ['품질'] = 'featured' }, small_map = { ['작게'] = 'yes', ['크게'] = 'no', ['왼쪽'] = 'left' }, arg_map = { ['데모...)
- 2023년 7월 11일 (화) 21:52 Okera 토론 기여님이 모듈:Message box/configuration 문서를 만들었습니다 (새 문서: local ambox = { types = { speedy = { class = 'ambox-speedy', image = 'Ambox warning pn.svg' }, delete = { class = 'ambox-delete', image = 'Ambox warning pn.svg' }, content = { class = 'ambox-content', image = 'Ambox important.svg' }, style = { class = 'ambox-style', image = 'Edit-clear.svg' }, move = { class = 'ambox-move', image = 'Merge-split-transwiki default.svg' }, protection = { class = 'ambox-protection', image =...)
- 2023년 7월 11일 (화) 21:52 Okera 토론 기여님이 모듈:Message box 문서를 만들었습니다 (새 문서: -- This is a meta-module for producing message box templates, including -- {{mbox}}, {{ambox}}, {{imbox}}, {{tmbox}}, {{ombox}}, {{cmbox}} and {{fmbox}}. -- Load necessary modules. require('strict') local getArgs local categoryHandler = require('Module:Category handler')._main local yesno = require('Module:Yesno') local localize = mw.loadData('Module:Message box/localize') -- Get a language object for formatDate and ucfirst. local lang = mw.language.getContentLanguage() -----...)
- 2023년 7월 11일 (화) 21:51 Okera 토론 기여님이 틀:Imbox 문서를 만들었습니다 (새 문서: {{#invoke:Message box|imbox}}<noinclude> {{설명문서}} </noinclude>)
- 2023년 7월 11일 (화) 21:50 Okera 토론 기여님이 파일:Yamada Taking Picture Kirara style.jpg 문서를 만들었습니다 (하마지 아키 《봇치 더 록》에서, 아티스트 사진을 '키라라 점프' 스타일로 찍는 것을 생각하는 야마다 료)
- 2023년 7월 11일 (화) 21:50 Okera 토론 기여님이 파일:Yamada Taking Picture Kirara style.jpg 파일을 올렸습니다 (하마지 아키 《봇치 더 록》에서, 아티스트 사진을 '키라라 점프' 스타일로 찍는 것을 생각하는 야마다 료)