이음위키에서 사용할 수 있는 모든 기록이 표시됩니다. 기록 종류나 사용자 이름(대소문자 구별) 또는 영향을 받는 문서(대소문자 구별)를 선택하여 범위를 좁혀서 살펴볼 수 있습니다.
- 2023년 11월 19일 (일) 07:10 HyunJongSu 토론 기여님이 모듈:Multiple image 문서를 만들었습니다 (새 문서: -- implements template:multiple image local p = {} local autoscaledimages local nonautoscaledimages local function isnotempty(s) return s and s:match( '^%s*(.-)%s*$' ) ~= '' end local function removepx(s) return tostring(s or ''):match('^(.*)[Pp][Xx]%s*$') or s end local function getdimensions(s, w, h) if tonumber(w) and tonumber(h) then nonautoscaledimages = true return tonumber(w), tonumber(h) end local file = s and mw.title.new('파일:' .. mw.uri.decode(mw.u...)
- 2023년 11월 19일 (일) 07:10 HyunJongSu 토론 기여님이 모듈:Time ago 문서를 보호했습니다 [편집=관리자만 허용] (무기한) [이동=관리자만 허용] (무기한) (역사)
- 2023년 11월 19일 (일) 07:10 HyunJongSu 토론 기여님이 모듈:Time ago 문서를 만들었습니다 (새 문서: -- Implement Template:Time ago local numberSpell, yesno -- lazy load function numberSpell(arg) numberSpell = require('Module:NumberSpell')._main return numberSpell(arg) end function yesno(arg) yesno = require('Module:Yesno') return yesno(arg) end local p = {} -- Table to convert entered text values to numeric values. local timeText = { ['seconds'] = 1, ['초'] = 1, ['minutes'] = 60, ['분'] = 60, ['hours'] = 3600, ['시간'] = 3600, ['days'] = 86400, ['일'...)
- 2023년 11월 19일 (일) 06:59 HyunJongSu 토론 기여님이 모듈:Langname 문서를 보호했습니다 [편집=관리자만 허용] (무기한) [이동=관리자만 허용] (무기한) (역사)
- 2023년 11월 19일 (일) 06:58 HyunJongSu 토론 기여님이 모듈: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년 11월 19일 (일) 06:03 HyunJongSu 토론 기여님이 모듈:Weather box/설명문서 문서를 만들었습니다 (새 문서: == 사용법 == 이 모듈은 {{틀|Weather box}}에 의해 사용됩니다. {{#invoke:{{BASEPAGENAME}}|''function_name''}} <includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox|| <!-- Categories go here and interwikis go in Wikidata. --> }}</includeonly> {{Weather box{{#ifeq:{{SUBPAGENAME}}|sandbox|/sandbox}} |metric first = Y |single line = Y |collapsed = |location = Edmonton City Centre (Blatchford Field) Airport (1981−2010) |Jan record high C = 11.7 |Feb record high C...)
- 2023년 11월 19일 (일) 06:00 HyunJongSu 토론 기여님이 모듈:Weather box/colors 문서를 보호했습니다 [편집=관리자만 허용] (무기한) [이동=관리자만 허용] (무기한) (역사)
- 2023년 11월 19일 (일) 06:00 HyunJongSu 토론 기여님이 모듈:Weather box/colors 문서를 만들었습니다 (새 문서: local w = {} local math_mod = require('Module:Math') local function hex( value ) return string.format("%02X", value) end local function format_line( background, text_color ) return "background: #" .. background .. "; color:#" .. text_color .. ";" end local function range_pos( value, start, stop ) if start < stop then if value < start then return 0 elseif value > stop then return 1 else return (value - start) / (stop - start) end else if value < stop the...)
- 2023년 11월 19일 (일) 06:00 HyunJongSu 토론 기여님이 모듈:Weather box/row 문서를 보호했습니다 [편집=관리자만 허용] (무기한) [이동=관리자만 허용] (무기한) (역사)
- 2023년 11월 19일 (일) 06:00 HyunJongSu 토론 기여님이 모듈:Weather box/row 문서를 만들었습니다 (새 문서: local w = {} local math_mod = require('Module:Math') local wbc = require('Module:Weather box/colors') local traceText local Value Value = { lang = mw.getContentLanguage(), getDisplay = function (self, second) if not self:isValid() then return nil end local display = self.string if display == 'trace' then if second then -- If a cell displays "cm (inch)", show "trace" not "trace (trace)". return nil end return traceText or 'trace' end if math.abs...)
- 2023년 11월 19일 (일) 05:58 HyunJongSu 토론 기여님이 모듈:Weather box 문서를 보호했습니다 [편집=관리자만 허용] (무기한) [이동=관리자만 허용] (무기한) (역사)
- 2023년 11월 19일 (일) 05:58 HyunJongSu 토론 기여님이 모듈:Weather box 문서를 만들었습니다 (새 문서: -- Implement Template:Weather box. local precision = require('Module:Math')._precision local function stripToNil(text) -- If text is a non-empty string, return its trimmed content. -- Otherwise, return nothing (text is an empty string or is not a string). if type(text) == 'string' then return text:match('(%S.-)%s*$') end end local function isAny(args, suffix) local months = { 'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec' } for...)
- 2023년 11월 19일 (일) 05:58 HyunJongSu 토론 기여님이 모듈:Br separated entries 문서를 보호했습니다 [편집=관리자만 허용] (무기한) [이동=관리자만 허용] (무기한) (역사)
- 2023년 11월 19일 (일) 05:58 HyunJongSu 토론 기여님이 모듈:Br separated entries 문서를 만들었습니다 (새 문서: local p = {} local function _main( args ) local sep = '<br />' local lastsep local t = {} for i, v in ipairs( args ) do table.insert( t, v ) if mw.ustring.match( v, '%S' ) then table.insert( t, sep ) lastsep = #t end end if lastsep then table.remove( t, lastsep ) end return table.concat( t ) end function p.main( frame ) local origArgs if frame == mw.getCurrentFrame() then --...)
- 2023년 11월 19일 (일) 05:56 HyunJongSu 토론 기여님이 모듈:Convert/makeunits 문서를 보호했습니다 [편집=관리자만 허용] (무기한) [이동=관리자만 허용] (무기한) (역사)
- 2023년 11월 19일 (일) 05:56 HyunJongSu 토론 기여님이 모듈:Convert/makeunits 문서를 만들었습니다 (새 문서: -- 어떤 단위의 값을 다른 단위의 값으로 바꿔줍니다. -- 예: {{convert|123|lb|kg}} --> 123 파운드 (56 kg) -- 만약 다른 위키에 복사하실 예정이면 en:Template:Convert/Transwiki guide를 -- 보아주세요. local MINUS = '−' -- Unicode U+2212 MINUS SIGN (UTF-8: e2 88 92) local abs = math.abs local floor = math.floor local format = string.format local log10 = math.log10 local ustring = mw.ustring local ulen = ustring.len local usub = ustri...)
- 2023년 11월 19일 (일) 05:55 HyunJongSu 토론 기여님이 모듈:Convert/text 문서를 보호했습니다 [편집=관리자만 허용] (무기한) [이동=관리자만 허용] (무기한) (역사)
- 2023년 11월 19일 (일) 05:55 HyunJongSu 토론 기여님이 모듈:Convert/text 문서를 만들었습니다 (새 문서: -- 한국어 위키백과(ko.wikipedia.org)의 모듈:Convert에서 사용되는 텍스트 -- This is a separate module to simplify translation for use on another wiki. -- See en:Template:Convert/Transwiki guide if copying to another wiki. local translation_table = { omit_scale_sep = true, perunit_before_val = 2, currency_per_word = '당', per_word = '매', plural_suffix = '', specials = { utype = { -- ["로컬 언어 유닛 종류"] = "이_스크립트에_사...)
- 2023년 11월 19일 (일) 05:54 HyunJongSu 토론 기여님이 모듈:Convert/data 문서를 보호했습니다 [편집=관리자만 허용] (무기한) [이동=관리자만 허용] (무기한) (역사)
- 2023년 11월 19일 (일) 05:54 HyunJongSu 토론 기여님이 모듈:Convert/data 문서를 만들었습니다 (새 문서: -- 모듈:Convert이 사용하는 변환 데이터입니다. -- mw.loadData()을 통해 읽기 전용으로 접근하므로 문서당 한번씩만 불려집니다. -- 이 모듈을 다른 위키로 복사하기 전 en:Template:Convert/Transwiki guide를 -- 꼭 읽어주세요. -- -- 이곳의 데이터 테이블들은 다음과 같습니다: -- all_units 단위들의 기본 출력값을 포함한 모든 속성들 -- default_exceptions 기본 출력값을...)
- 2023년 11월 19일 (일) 05:53 HyunJongSu 토론 기여님이 모듈:Convert 문서를 보호했습니다 [편집=관리자만 허용] (무기한) [이동=관리자만 허용] (무기한) (역사)
- 2023년 11월 19일 (일) 05:53 HyunJongSu 토론 기여님이 모듈:Convert 문서를 만들었습니다 (새 문서: -- 어떤 단위의 값을 다른 단위의 값으로 바꿔줍니다. -- 예: {{convert|123|lb|kg}} --> 123 파운드 (56 kg) -- 만약 다른 위키에 복사하실 예정이면 en:Template:Convert/Transwiki guide를 -- 보아주세요. local MINUS = '−' -- Unicode U+2212 MINUS SIGN (UTF-8: e2 88 92) local abs = math.abs local floor = math.floor local format = string.format local log10 = math.log10 local ustring = mw.ustring local ulen = ustring.len local usub = ustri...)
- 2023년 10월 31일 (화) 07:22 HyunJongSu 토론 기여님이 파일:공항철도 공기청정기1.jpg 파일을 올렸습니다
- 2023년 10월 31일 (화) 07:22 HyunJongSu 토론 기여님이 파일:공항철도 공기청정기1.jpg 문서를 만들었습니다
- 2023년 10월 29일 (일) 19:46 HyunJongSu 토론 기여님이 틀:문서 체계/style.css 문서를 보호했습니다 [편집=관리자만 허용] (무기한) [이동=관리자만 허용] (무기한) (역사)
- 2023년 10월 29일 (일) 19:46 HyunJongSu 토론 기여님이 틀:문서 체계/style.css 문서를 만들었습니다 (새 문서: .pathnavbox { clear: both; border: 1px outset #eef; padding: 0.3em 0.6em; margin: 0 0 0.5em 0; background-color: #eef; font-size: smaller; } .pathnavbox ul { list-style: none; margin-top: 0; margin-bottom: 0; } .pathnavbox > ul { margin: 0; } .pathnavbox ul li { margin: 0; })
- 2023년 10월 1일 (일) 02:16 HyunJongSu 토론 기여님이 모듈:Citation/CS1/Suggestions 문서를 보호했습니다 [편집=관리자만 허용] (무기한) [이동=관리자만 허용] (무기한) (역사)
- 2023년 10월 1일 (일) 02:16 HyunJongSu 토론 기여님이 모듈:Citation/CS1/Suggestions 문서를 만들었습니다 (새 문서: --Please insert new suggestions in alphabetical order --The form is ['incorrect'] = 'correct', suggestions = { -- ['acccessdate'] = 'access-date', -- ['accesdate'] = 'access-date', -- ['access date'] = 'access-date', -- ['accessate'] = 'access-date', -- ['accessdare'] = 'access-date', -- ['accessdatte'] = 'access-date', -- ['accessddate'] = 'access-date', -- ['accessdte'] = 'access-date', -- ['accessed'] = 'access-date', -- ['accessedate'] = 'access-date', -- ['accesssdate'] =...)
- 2023년 10월 1일 (일) 02:02 HyunJongSu 토론 기여님이 틀:Plainlist/styles.css 문서를 보호했습니다 [편집=관리자만 허용] (무기한) [이동=관리자만 허용] (무기한) (역사)
- 2023년 10월 1일 (일) 02:02 HyunJongSu 토론 기여님이 틀:Plainlist/styles.css 문서를 만들었습니다 (새 문서: .plainlist ol, .plainlist ul { line-height: inherit; list-style: none; margin: 0; padding: 0; Reset Minerva default: } .plainlist ol li, .plainlist ul li { margin-bottom: 0; })
- 2023년 10월 1일 (일) 02:01 HyunJongSu 토론 기여님이 모듈:Sidebar/styles.css 문서를 보호했습니다 [편집=관리자만 허용] (무기한) [이동=관리자만 허용] (무기한) (역사)
- 2023년 10월 1일 (일) 02:01 HyunJongSu 토론 기여님이 모듈:Sidebar/styles.css 문서를 만들었습니다 (새 문서: TODO: Invert width design to be "mobile first": .sidebar { TODO: Ask if we should have max-width 22em instead: width: 22em; @noflip: float: right; @noflip: clear: right; @noflip: margin: 0.5em 0 1em 1em; background: #f8f9fa; border: 1px solid #aaa; padding: 0.2em; text-align: center; line-height: 1.4em; font-size: 88%; border-collapse: collapse; /* Timeless has display: none on .nomobile at mobile resolutions, so we * unhide it with dis...)
- 2023년 9월 30일 (토) 21:59 HyunJongSu 토론 기여님이 Counter-Strike 2 문서를 만들었습니다 (카운터 스트라이크 2 문서로 넘겨주기) 태그: 새 넘겨주기
- 2023년 9월 30일 (토) 21:52 HyunJongSu 토론 기여님이 카운터 스트라이크 2 문서를 만들었습니다 (새 문서: 분류:카운터 스트라이크 시리즈 분류:2023년 비디오 게임 {{게임 정보 |게임이름 = 카운터 스트라이크 2 |원어이름 = Counter-Strike 2 |배경색 = #e38717 |글자색 = #1e202f |그림 = 250픽셀 |그림설명 = |배급사 = 밸브 코퍼레이션 |개발사 = 밸브 코퍼레이션 |제작 = |작가 = |미술 = |작곡가 = |장르 = FPS |출시일 = 2023년 여...)
- 2023년 9월 30일 (토) 21:51 HyunJongSu 토론 기여님이 틀:게임 정보/설명문서 문서를 만들었습니다 (새 문서: {{설명문서 안내}} 비디오 게임을 설명할 때 사용하는 정보상자 틀입니다. 게임 시리즈는 {{틀|게임 시리즈 정보}}를, 비디오 게임 이외의 놀이(보드게임 등)은 {{틀|놀이 정보}}를 사용해야 합니다. == 사용법 == <pre style="width: 10em;"> {{게임 정보 |게임이름 = |원어이름 = |배경색 = |글자색 = |그림 = |그림설명 = |배급사 = |개발사 = |제작 = |작가 = |미...)
- 2023년 9월 30일 (토) 21:48 HyunJongSu 토론 기여님이 틀:게임 정보 문서를 만들었습니다 (새 문서: <onlyinclude><includeonly>{| class="infobox" style="width: 26em;{{#if:{{{배경색|}}}|border: 1px solid {{{배경색}}};}}" {{정보상자 주제칸|{{{게임이름}}}{{#if:{{{원어이름|}}}|<br /><small>{{{원어이름}}}</small>}}|배경색={{{배경색|}}}|글자색={{{글자색|}}}|style=font-size: larger;}} {{정보상자 큰칸|{{{그림|}}}{{#if: {{{그림설명|}}}|<br />{{{그림설명}}}}}}} {{정보상자 주제칸|게임 정보|배경색={{{배경색|}}}|글자색...)
- 2023년 9월 17일 (일) 09:14 HyunJongSu 토론 기여님이 모듈:Color contrast/colors 문서를 보호했습니다 [편집=관리자만 허용] (무기한) [이동=관리자만 허용] (무기한) (역사)
- 2023년 9월 17일 (일) 09:14 HyunJongSu 토론 기여님이 모듈:Color contrast/colors 문서를 만들었습니다 (새 문서: 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, burly...)
- 2023년 9월 17일 (일) 09:14 HyunJongSu 토론 기여님이 모듈:Color contrast 문서를 보호했습니다 [편집=관리자만 허용] (무기한) [이동=관리자만 허용] (무기한) (역사)
- 2023년 9월 17일 (일) 09:14 HyunJongSu 토론 기여님이 모듈:Color contrast 문서를 만들었습니다 (새 문서: -- -- 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 * s...)
- 2023년 9월 17일 (일) 09:13 HyunJongSu 토론 기여님이 모듈:Navbox with collapsible groups 문서를 보호했습니다 [편집=관리자만 허용] (무기한) [이동=관리자만 허용] (무기한) (역사)
- 2023년 9월 17일 (일) 09:13 HyunJongSu 토론 기여님이 모듈:Navbox with collapsible groups 문서를 만들었습니다 (새 문서: -- This module implements {{Navbox with collapsible groups}} local q = {} local Navbox = require('Module:Navbox') -- helper functions local function concatstrings(s) local r = table.concat(s, '') if r:match('^%s*$') then r = nil end return r end local function concatstyles(s) local r = table.concat(s, ';') while r:match(';%s*;') do r = mw.ustring.gsub(r, ';%s*;', ';') end if r:match('^%s*;%s*$') then r = nil end return r end function q._navbox(pargs) -- table for a...)
- 2023년 9월 17일 (일) 09:12 HyunJongSu 토론 기여님이 모듈:Navbox with collapsible groups 문서를 삭제했습니다 (내용: "-- This module implements {{Navbox with collapsible groups}} local q = {} local Navbox = require('Module:Navbox') -- helper functions local function concatstrings(s) local r = table.concat(s, '') if r:match('^%s*$') then r = nil end return r end local function concatstyles(s) local r = table.concat(s, ';') while r:match(';%s*;') do r = mw.ustring.gsub(r, '...". 유일한 편집자는 "118.32.163.239" (토론))
- 2023년 9월 13일 (수) 01:13 HyunJongSu 토론 기여님이 모듈:Coutput 문서를 보호했습니다 [편집=관리자만 허용] (무기한) [이동=관리자만 허용] (무기한) (역사)
- 2023년 9월 13일 (수) 01:10 HyunJongSu 토론 기여님이 모듈:Coutput 문서를 만들었습니다 (새 문서: --출력할 값을 담고 있다가 한번에 출력하는 모듈 local p = {} function p.print(o, value) if type(o) ~= "table" then return p end if type(value) == "nil" then return p end o[#o+1]=tostring(value) -- 입력받은 대로 하나씩 저장 return p --자기 자신을 리턴 end function p.printf(o, formatstring, ...) if type(o) ~= "table" then return p end --if type(value) == "nil" then return p end o[#o+1]=string.format(formatstring, ...) -- 입력받은...)
- 2023년 9월 13일 (수) 01:09 HyunJongSu 토론 기여님이 모듈:NeoBar 문서를 보호했습니다 [편집=관리자만 허용] (무기한) [이동=관리자만 허용] (무기한) (역사)
- 2023년 9월 13일 (수) 01:09 HyunJongSu 토론 기여님이 모듈:NeoBar 문서를 만들었습니다 (새 문서: --{{막대}} 틀을 개선하는 {{새막대}} 틀을 만들기 위한 모듈입니다 --사용가능한 함수는 bar입니다. local function drawBar ( bgcolor, length, str, type ) --막대를 그리는 함수 (막대의 색, 길이, 올림/내림/반올림) local t = require("모듈:Coutput") local color = 'white' local align= 'center' if length > 5000 then return '' end --길이가 5000보다 큰 경우에는 아무것도 그리지 않습니다. if length <= 0 then ret...)
- 2023년 8월 6일 (일) 19:54 HyunJongSu 토론 기여님이 파일:인천1호선 1차분 도색교체.jpg 파일을 올렸습니다 (출처: 인천교통공사)
- 2023년 8월 6일 (일) 19:54 HyunJongSu 토론 기여님이 파일:인천1호선 1차분 도색교체.jpg 문서를 만들었습니다 (출처: 인천교통공사)
- 2023년 7월 31일 (월) 09:40 HyunJongSu 토론 기여님이 Misskey 문서를 만들었습니다 (새 문서: == 개요 == Misskey(미스키}는 오픈소스 SNS 프로그램이다.' == 인스턴스 목록 == '''뉴 이음끼리''' * [https://k.lapy.link/ Misskey.lapy] * [https://daepi.so/ 대피소])