HyunJongSu의 사용자 기여

기여 검색펼치기접기
⧼contribs-top⧽
⧼contribs-date⧽
(최신 | 오래됨) ( | ) (20 | 50 | 100 | 250 | 500) 보기

2023년 7월 9일 (일)

  • 09:012023년 7월 9일 (일) 09:01 차이 역사 +58 평산책방편집 요약 없음
  • 09:002023년 7월 9일 (일) 09:00 차이 역사 +740 새글 평산책방새 문서: {{법인 정보 |법인이름 = 재단법인 평산책방 |원어이름 = |로고 = |그림 = |그림설명 = |법인종류 = 재단법인 |주식코드 = |분야 = |창립자 = 안도현 |창립일 = |해산일 = |이전회사 = |이후회사 = |본사 = 경상남도 양산시 하북면 평산마을 1길 17 |지사수 = |인물 = 대표자 안도현 |자본금 = |매출액 = |영업이익 = |순이익 = |자산총액 = |주...

2023년 7월 6일 (목)

2023년 7월 4일 (화)

2023년 6월 24일 (토)

2023년 6월 22일 (목)

2023년 6월 21일 (수)

2023년 6월 20일 (화)

2023년 6월 19일 (월)

  • 18:052023년 6월 19일 (월) 18:05 차이 역사 0 잔글 모듈:Navboxes"모듈:Navboxes" 문서를 보호했습니다 ([편집=관리자만 허용] (무기한) [이동=관리자만 허용] (무기한)) 최신
  • 18:052023년 6월 19일 (월) 18:05 차이 역사 +1,991 새글 모듈:Navboxes새 문서: -- This implements Template:navboxes local p = {} local Navbox = require('Module:Navbox') local param_ko = { ['상태'] = 'state', ['제목'] = 'title', ['내용1'] = 'list1', ['내용'] = 'list', ['제목모양'] = 'titlestyle' } local function localname(parameter) return param_ko[parameter] or parameter end local function i18nHelper(args) local retArgs = args for k, v in pairs(args) do if v ~= '' then retArgs[localname(k)] = v end end return retArgs end l...

2023년 6월 16일 (금)

2023년 6월 14일 (수)

2023년 6월 9일 (금)

  • 23:502023년 6월 9일 (금) 23:50 차이 역사 0 잔글 모듈:Check for unknown parameters"모듈:Check for unknown parameters" 문서를 보호했습니다 ([편집=관리자만 허용] (무기한) [이동=관리자만 허용] (무기한)) 최신
  • 23:502023년 6월 9일 (금) 23:50 차이 역사 +3,312 새글 모듈:Check for unknown parameters새 문서: -- 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. local...
  • 23:422023년 6월 9일 (금) 23:42 차이 역사 0 잔글 모듈:PrevalenceData"모듈:PrevalenceData" 문서를 보호했습니다 ([편집=관리자만 허용] (무기한) [이동=관리자만 허용] (무기한)) 최신
  • 23:422023년 6월 9일 (금) 23:42 차이 역사 +2,211 새글 모듈:PrevalenceData새 문서: local p = {} p.main = function ( frame ) local qid = frame.args.qId or "" if qid == "" then qid = mw.wikibase.getEntityIdForCurrentPage() end if not qid then return nil end local prevalenceClaims = mw.wikibase.getBestStatements(qid, "P1193") local pRange = '' -- Run through all prevalence claims - the table prevalenceClaims always exists but may be empty for i, prevalenceClaim in ipairs( prevalenceClaims ) do local prevalenceValue = prevalenceClaim.mainsnak.datavalue a...
  • 23:372023년 6월 9일 (금) 23:37 차이 역사 0 잔글 모듈:String2"모듈:String2" 문서를 보호했습니다 ([편집=관리자만 허용] (무기한) [이동=관리자만 허용] (무기한)) 최신
  • 23:372023년 6월 9일 (금) 23:37 차이 역사 +4,551 새글 모듈:String2새 문서: local p = {} p.upper = function(frame) local s = mw.text.trim(frame.args[1] or "") return string.upper(s) end p.lower = function(frame) local s = mw.text.trim(frame.args[1] or "") return string.lower(s) end p.sentence = function (frame ) frame.args[1] = string.lower(frame.args[1]) return p.ucfirst(frame) end p.ucfirst = function (frame ) local s = mw.text.trim( frame.args[1] or "" ) local s1 = "" -- if it's a list chop off and (store as s1) everything up to the...

2023년 6월 4일 (일)

  • 01:192023년 6월 4일 (일) 01:19 차이 역사 0 잔글 모듈:HSV"모듈:HSV" 문서를 보호했습니다 ([편집=관리자만 허용] (무기한) [이동=관리자만 허용] (무기한)) 최신
  • 01:192023년 6월 4일 (일) 01:19 차이 역사 +4,408 새글 모듈:HSV새 문서: local p = {} function rgb2hsv(r, g, b) local max = math.max(r, g, b) local min = math.min(r, g, b) local c = max - min -- calculate hue local h if c == 0 then h = 0 elseif max == r then h = 60 * (0 + ((g - b)/c)) elseif max == g then h = 60 * (2 + ((b - r)/c)) elseif max == b then h = 60 * (4 + ((r - g)/c)) end if h < 0 then h = h + 360 end -- calculate value local v = max --...

2023년 5월 30일 (화)

2023년 5월 28일 (일)

  • 16:362023년 5월 28일 (일) 16:36 차이 역사 0 잔글 모듈:Zh"모듈:Zh" 문서를 보호했습니다 ([편집=관리자만 허용] (무기한) [이동=관리자만 허용] (무기한)) 최신
  • 16:352023년 5월 28일 (일) 16:35 차이 역사 +5,073 새글 모듈:Zh새 문서: require('strict') local p = {} local getArgs = require("Module:Arguments").getArgs -- 변수 처리를 단순화하는 함수 local function intersects(lst, mst) -- 겹침 여부 판단 for key in pairs(mst) do if lst[key] then return true end end return false end local function alias(args, p, hp) -- 동명 변수 처리 if not args[p] and args[hp] then args[p] = args[hp] end end local function setpref(args, order, orderlists) if args[order] and orderlists[a...

2023년 5월 17일 (수)

  • 00:142023년 5월 17일 (수) 00:14 차이 역사 0 잔글 모듈:Navbox"모듈:Navbox" 문서를 보호했습니다 ([편집=관리자만 허용] (무기한) [이동=관리자만 허용] (무기한)) 최신
  • 00:132023년 5월 17일 (수) 00:13 차이 역사 +14,964 새글 모듈:Navbox새 문서: -- -- This module implements {{Navbox}} -- 이 모듈은 {{둘러보기 상자}}의 구현에 사용됩니다 -- local p = {} local navbar = require('Module:Navbar')._navbar local getArgs -- lazily initialized local args local border local listnums local ODD_EVEN_MARKER = '\127_ODDEVEN_\127' local RESTART_MARKER = '\127_ODDEVEN0_\127' local REGEX_MARKER = '\127_ODDEVEN(%d?)_\127' local function striped(wikitext) -- Return wikitext with markers replaced for odd/even striping...

2023년 5월 16일 (화)

  • 03:392023년 5월 16일 (화) 03:39 차이 역사 0 잔글 Css-sanitizer"Css-sanitizer" 문서를 보호했습니다 ([편집=관리자만 허용] (무기한) [이동=관리자만 허용] (무기한)) 최신
  • 03:382023년 5월 16일 (화) 03:38 차이 역사 +2,737 새글 Css-sanitizer새 문서: The '''CSS Sanitizer''' library implements a CSS tokenizer, parser, and grammar matcher in PHP that mostly follows the [https://www.w3.org/TR/2014/CR-css-syntax-3-20140220/ CSS Syntax Module Level 3 candidate recommendation dated 20 February 2014], the [https://www.w3.org/TR/2016/CR-css-values-3-20160929/ CSS Values and Units Module Level 3], and the [https://www.w3.org/TR/2011/REC-css3-selectors-20110929/ CSS Selectors Level 3] grammar. It also provides a sanitizer (<code>[http...

2023년 5월 15일 (월)

  • 13:262023년 5월 15일 (월) 13:26 차이 역사 0 잔글 모듈:Error"모듈:Error" 문서를 보호했습니다 ([편집=관리자만 허용] (무기한) [이동=관리자만 허용] (무기한)) 최신
  • 13:262023년 5월 15일 (월) 13:26 차이 역사 +1,144 새글 모듈: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 fu...

2023년 5월 13일 (토)

2023년 5월 10일 (수)

(최신 | 오래됨) ( | ) (20 | 50 | 100 | 250 | 500) 보기