Chunghwamc的使用者貢獻
2024年3月23日 (星期六)
- 14:462024年3月23日 (六) 14:46 差異 歷史 +12,811 新 模組:Math 建立內容為「--This module provides a number of basic mathematical operations. local yesno, getArgs -- lazily initialized local p = {} -- Holds functions to be returned from #invoke, and functions to make available to other Lua modules. local wrap = {} -- Holds wrapper functions that process arguments from #invoke. These act as intemediary between functions meant for #invoke and functions meant for Lua. --Helper functions used to avoid redundant code. l…」的新頁面 目前
- 14:442024年3月23日 (六) 14:44 差異 歷史 +317 新 模組:No globals 建立內容為「local mt = getmetatable(_G) or {} function mt.__index (t, k) if k ~= 'arg' then error('嘗試讀取空全域變數:' .. tostring(k), 2) end return nil end function mt.__newindex(t, k, v) if k ~= 'arg' then error('嘗試寫入全域變數:' .. tostring(k), 2) end rawset(t, k, v) end setmetatable(_G, mt)」的新頁面 目前
- 14:432024年3月23日 (六) 14:43 差異 歷史 +23,554 新 模組:Coordinates 建立內容為「--[[ This module is intended to replace the functionality of {{Coord}} and related templates. It provides several methods, including {{#invoke:Coordinates | coord }} : General function formatting and displaying coordinate values. {{#invoke:Coordinates | dec2dms }} : Simple function for converting decimal degree values to DMS format. {{#invoke:Coordinates | dms2dec }} : Simple function for converting DMS format to decimal degree format. {{#invoke:Coordin…」的新頁面 目前
- 14:422024年3月23日 (六) 14:42 差異 歷史 +1,849 新 模板:Infobox settlement/columns 建立內容為「<table style="display:table; width:100%; background:none;"> <tr>{{#if:{{{0|}}} |<!-- if 0 -->{{#if:{{{1|}}}{{{2|}}}{{{3|}}}{{{4|}}}{{{5|}}} |<!-- if 0 and (1 or 2 or 3 or 4 or 5) --><td><table style="width:100%; background:none;"> {{#if:{{{1|}}} |<tr><td style="vertical-align:middle; text-align:center;">{{{1|}}}</td></tr> }}{{#if:{{{2|}}} |<tr><td style="vertical-align:middle; text-align:center;">{{{2|}}}</td></tr> }}{{#if:{{{3|}}} |<tr><td style="vertica…」的新頁面 目前
- 14:402024年3月23日 (六) 14:40 差異 歷史 +19,145 新 模組:String 建立內容為「--[[ This module is intended to provide access to basic string functions. Most of the functions provided here can be invoked with named parameters, unnamed parameters, or a mixture. If named parameters are used, Mediawiki will automatically remove any leading or trailing whitespace from the parameter. Depending on the intended use, it may be advantageous to either preserve or remove such whitespace. Global options ignore_errors: If set to 'true…」的新頁面 目前
- 14:402024年3月23日 (六) 14:40 差異 歷史 +99 新 模板:PAGENAMEBASE 建立內容為「{{{{{|safesubst:}}}#Invoke:String|replace|{{{1|{{{{{|safesubst:}}}PAGENAME}}}}}|%s+%b()$||1|false}}」的新頁面 目前
- 14:392024年3月23日 (六) 14:39 差異 歷史 +53 新 模板:ShareCSS/infobox.css 建立內容為「body.skin-minerva .infobox table { display: table; }」的新頁面 目前
- 14:362024年3月23日 (六) 14:36 差異 歷史 −5 小 幻想鄉 無編輯摘要 標籤:視覺化編輯
- 14:322024年3月23日 (六) 14:32 差異 歷史 −140 中華麥塊 無編輯摘要 標籤:視覺化編輯器:已切換
- 14:312024年3月23日 (六) 14:31 差異 歷史 +306 中華民國 無編輯摘要 標籤:視覺化編輯器:已切換
- 14:302024年3月23日 (六) 14:30 差異 歷史 +18 新 檔案:中華民國國徽.webp 無編輯摘要 目前
- 14:282024年3月23日 (六) 14:28 差異 歷史 +21 新 檔案:青天白日滿地紅.webp 無編輯摘要 目前
- 14:262024年3月23日 (六) 14:26 差異 歷史 +8,849 新 模組:InfoboxImage 建立內容為「local i = {}; local placeholder_image = { "Blue - Replace this image female.svg", "Blue - Replace this image male.svg", "Female no free image yet.png", "Flag of None (square).svg", "Flag of None.svg", "Flag of.svg", "Green - Replace this image female.svg", "Green - Replace this image male.svg", "Image is needed female.svg", "Image is needed male.svg", "Location map of None.svg", "Male no free image yet.png",…」的新頁面 目前
- 14:262024年3月23日 (六) 14:26 差異 歷史 +1,323 新 模板:Infobox country/imagetable 建立內容為「{{#if:{{both|{{{image1a|}}}{{{image1b|}}}|{{{image2|}}}}}| <div style="display:table; width:100%;"> <div style="display:table-cell; vertical-align:middle; padding-left:5px;"> {{#if:{{{image1a|}}}|<div style="padding-bottom:3px;">{{{image1a|}}}</div>}}{{#if:{{{image1b|}}}|<div style="padding: 2px 0px 3px;">{{{image1b|}}}</div>}} <div style="font-size:90%;">{{{caption1|}}}</div> </div> <div style="display:tab…」的新頁面 目前
- 14:182024年3月23日 (六) 14:18 差異 歷史 +44,379 模板:國家資料 無編輯摘要 目前
- 14:182024年3月23日 (六) 14:18 差異 歷史 +2,230 新 模組:Check for unknown parameters 建立內容為「local p = {} local function trim(s) return s:match('^%s*(.-)%s*$') end local function isnotempty(s) return s and trim(s) ~= '' end function p.check (frame) local args = frame.args local pargs = frame:getParent().args local ignoreblank = isnotempty(frame.args['ignoreblank']) local showblankpos = isnotempty(frame.args['showblankpositional']) local knownargs = {} local unknown = frame.args['unknown'] or 'Found _VALUE_, ' local preview = frame.args['…」的新頁面 目前
- 14:162024年3月23日 (六) 14:16 差異 歷史 +9,868 新 模組:Arguments 建立內容為「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 val = val:match('^%s*(.-)%s*$') if val == '' then return nil else return val end else return val end end local function tidyValTrimOnly(key, val) if…」的新頁面 目前
- 14:152024年3月23日 (六) 14:15 差異 歷史 +1,018 新 模組:If empty 建立內容為「local p = {} function p.main(frame) local args = require('Module:Arguments').getArgs(frame, {wrappers = 'Template:If empty', removeBlanks = false}) -- For backwards compatibility reasons, the first 8 parameters can be unset instead of being blank, -- even though there's really no legitimate use case for this. At some point, this will be removed. local lowestNil = math.huge for i = 8,1,-1 do if args[i] == nil then args[i] = '' lowestNil = i e…」的新頁面 目前
- 14:142024年3月23日 (六) 14:14 差異 歷史 +102 新 模板:If empty 建立內容為「{{<includeonly>safesubst:</includeonly>#invoke:If empty|main}}<noinclude>{{Documentation}}</noinclude>」的新頁面 目前
- 14:092024年3月23日 (六) 14:09 差異 歷史 0 模板:國家資料 無編輯摘要
- 14:082024年3月23日 (六) 14:08 差異 歷史 +2,141 新 模板:國家資料 建立內容為「<includeonly>{{Infobox | above = {{{國家名稱|}}}{{#if:{{{第二語言國家名稱|}}}|<br>{{{第二語言國家名稱|}}}}}{{#if:{{{第三語言國家名稱|}}}|<br>{{{第三語言國家名稱|}}}}} | abovestyle =background:#E3E3E3; font-weight:bold; color:black; | image = {{#if:{{{組織標誌|}}}|[[File:{{{組織標誌|}}}|{{#if:{{{標誌大小|}}}|{{{標誌大小|}}}|150px}}]]}}{{#if:{{{組織標誌|}}}|<br>{{#if:{{{組織標誌名稱|}}}|{{{組織標…」的新頁面
- 13:562024年3月23日 (六) 13:56 差異 歷史 +155 101年 無編輯摘要
- 13:552024年3月23日 (六) 13:55 差異 歷史 +149 102年 無編輯摘要
- 13:542024年3月23日 (六) 13:54 差異 歷史 +75 105年 無編輯摘要
- 13:542024年3月23日 (六) 13:54 差異 歷史 +76 112年 無編輯摘要
- 13:532024年3月23日 (六) 13:53 差異 歷史 +144 107年 無編輯摘要
- 13:412024年3月23日 (六) 13:41 差異 歷史 +22 模板:年份時間軸 無編輯摘要
- 13:222024年3月23日 (六) 13:22 差異 歷史 +17 101年 無編輯摘要
- 13:222024年3月23日 (六) 13:22 差異 歷史 +17 102年 無編輯摘要
- 13:222024年3月23日 (六) 13:22 差異 歷史 +17 103年 無編輯摘要
- 13:222024年3月23日 (六) 13:22 差異 歷史 +17 104年 無編輯摘要 目前
- 13:212024年3月23日 (六) 13:21 差異 歷史 +19 113年 無編輯摘要
- 13:212024年3月23日 (六) 13:21 差異 歷史 +19 112年 無編輯摘要
- 13:212024年3月23日 (六) 13:21 差異 歷史 +19 111年 無編輯摘要
- 13:212024年3月23日 (六) 13:21 差異 歷史 +19 110年 無編輯摘要
- 13:212024年3月23日 (六) 13:21 差異 歷史 +19 109年 無編輯摘要
- 13:212024年3月23日 (六) 13:21 差異 歷史 +19 108年 無編輯摘要
- 13:202024年3月23日 (六) 13:20 差異 歷史 +19 107年 無編輯摘要
- 13:202024年3月23日 (六) 13:20 差異 歷史 0 105年 改錯 標籤:視覺化編輯器:已切換
- 13:202024年3月23日 (六) 13:20 差異 歷史 +19 105年 無編輯摘要
- 13:202024年3月23日 (六) 13:20 差異 歷史 −83 106年 無編輯摘要
- 13:192024年3月23日 (六) 13:19 差異 歷史 +2 104年 無編輯摘要
- 13:192024年3月23日 (六) 13:19 差異 歷史 +2 103年 無編輯摘要
- 13:182024年3月23日 (六) 13:18 差異 歷史 +2 102年 無編輯摘要 標籤:視覺化編輯器:已切換
- 13:182024年3月23日 (六) 13:18 差異 歷史 +2 101年 無編輯摘要 標籤:視覺化編輯器:已切換
- 13:172024年3月23日 (六) 13:17 差異 歷史 +184 模板:年份序言 無編輯摘要
- 13:172024年3月23日 (六) 13:17 差異 歷史 −143 模板:年份時間軸 無編輯摘要
- 12:592024年3月23日 (六) 12:59 差異 歷史 0 模板:年份時間軸 無編輯摘要
- 12:572024年3月23日 (六) 12:57 差異 歷史 +1,383 模板:年份時間軸 無編輯摘要
- 12:542024年3月23日 (六) 12:54 差異 歷史 +1,413 模板:年份時間軸 無編輯摘要