您好,米記123!歡迎加入維基百科!

感謝您對維基百科的興趣與貢獻,希望您會喜歡這裏。除了歡迎辭以外,也請您了解以下重要文章:

政策
政策
GNU
GNU
版權問題解答
貢獻內容必須是您所著或獲得授權
並同意在CC-BY-SA 3.0和GFDL條款下發佈
手冊
手冊
問號
問號
有問題?請到互助客棧詢問,或在我的對話頁提出。別忘記:討論後要簽名,方式之一是留下4個波浪紋「 ~~~~ 」。
If you have any questions about the Chinese Wikipedia, please leave a message here. Thank you for visiting!

-- Hkjacksonhk留言2018年8月5日 (日) 02:27 (UTC)回覆

Template:Election box系列模板

編輯

您好,閣下今日對該系列模版做出的編輯導致其他頁面如2018年雙溪甘迪斯補選受到影響。我曾經依照英文維基的進行更新,並進行本地化,然而這些編輯全數遭您改回,包括顏色、格式等。若閣下堅持要使用自己的模板,可以新創一個模板,謝謝。 angys 2018年8月17日 (五) 05:05 (UTC)回覆

2018年8月

編輯

  歡迎來到維基百科。我們歡迎每一位用戶對維基百科作出建設性編輯,惟閣下最近編輯中最少有一項(如閣下在Template:Election box系列模板中的編輯)並不具建設性且已被回退或移除。請使用沙盒進行編輯測試,並參閱歡迎頁面以了解更多關於貢獻維基百科的事宜。祝編安。-- angys 2018年8月17日 (五) 05:19 (UTC)回覆

  請停止一切無建設性編輯(如閣下於Template:Election box candidate的編輯)。閣下的編輯已對維基百科構成破壞,亦已遭回退。如果您仍需要進行測試,請使用沙盒。請不要再次回退至之前的版本,過時參數是可以更新的-- angys 2018年8月18日 (六) 04:40 (UTC)回覆

  請立即停止一切擾亂性編輯。如果閣下繼續破壞維基百科(如閣下於Template:港島巴士簡單列表的編輯),閣下將會遭受封禁。敬請合作。--Cohaf留言2018年8月21日 (二) 12:33 (UTC)回覆

 

這是對閣下的最後警告!
如果閣下再次破壞維基百科(如閣下於Template:過海隧道巴士簡單列表的編輯),就會被即時禁止編輯!--Cohaf留言2018年8月21日 (二) 12:40 (UTC)回覆

 

最後警告!
這是對閣下的惟一一次警告!如果再有任何破壞維基百科的行為(如閣下於Template:九龍新界巴士簡單列表的編輯),閣下將會被立即封禁!--Cohaf留言2018年8月21日 (二) 12:41 (UTC)回覆

 

這是對您的最後警告
如果您再次進行編輯測試(包括閣下曾經於模板:Election box candidate with party link的測試),閣下將被禁止編輯維基百科。恢復穩定版本,看看香港選區的條目,參數不能用,也不能顯示候選人--Cohaf留言2018年8月22日 (三) 12:23 (UTC)回覆

求更改模板

編輯

模塊:Sports table/WDL之中將

原本內容

function pp.status(Args) -- Declare status options -- ------------------------------------------------------------ -- NOTE: If you add to status_code, also add to status_called and status_letters!! -- Or functionality will be compromised -- ------------------------------------------------------------ local status_code, status_called = {} status_code = { A='晉級下一圈', C='冠軍', D='取消資格', E='確定淘汰出局',G='特邀嘉賓', H='東道主', O='附加賽勝者', P='升班', Q='獲得指定賽事參賽權', R='降班', S='衛冕球隊', T='晉級,但未定指定輪次', X='?', Y='?', Z='?'} status_called = { A=false, C=false, D=false, E=false, H=false, O=false, P=false, Q=false, R=false, S=false, T=false, X=false, Y=false, Z=false} local status_letters = 'ACDEHOPQRSTXYZ'

-- Status position (before or after read and default) local stat_pos_val = Args['status_pos'] or local status_position = 'after' -- Default location stat_pos_val = string.lower(stat_pos_val) if stat_pos_val=='before' then status_position = 'before' elseif stat_pos_val=='after' then status_position = 'after' end

-- Read in custom status options if Args['status_text_X'] then status_code.X = Args['status_text_X'] end if Args['status_text_Y'] then status_code.Y = Args['status_text_Y'] end if Args['status_text_Z'] then status_code.Z = Args['status_text_Z'] end

return {code=status_code, called=status_called, letters=status_letters, position=status_position} end

return pp

修改為

要更改之內容

function pp.status(Args) -- Declare status options -- ------------------------------------------------------------ -- NOTE: If you add to status_code, also add to status_called and status_letters!! -- Or functionality will be compromised -- ------------------------------------------------------------ local status_code, status_called = {}, {} status_code = { A='晉級下一圈', C='冠軍', D='取消資格', E='確定淘汰出局',G='特邀嘉賓', H='東道主', O='附加賽勝者', P='升班', Q='獲得指定賽事參賽權', R='降班', S='衛冕球隊', T='晉級,但未定指定輪次'} local status_letters = (Args['status_order'] or ) .. 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'

-- Status position (before or after read and default) local stat_pos_val = Args['status_pos'] or local status_position = 'after' -- Default location stat_pos_val = string.lower(stat_pos_val) if stat_pos_val=='before' then status_position = 'before' elseif stat_pos_val=='after' then status_position = 'after' end -- Read in custom status options for l in mw.text.gsplit(status_letters, ) do status_called[l] = false status_code[l] = status_code[l] or '?' status_letters = mw.ustring.gsub(status_letters, '(' .. l ..'.-)' .. l, '%1')

if Args['status_text_' .. l] then status_code[l] = Args['status_text_' .. l] end end

return {code=status_code, called=status_called, letters=status_letters, position=status_position} end

return pp

或者

要更改之內容-2

function pp.status(Args) -- Declare status options -- ------------------------------------------------------------ -- NOTE: If you add to status_code, also add to status_called and status_letters!! -- Or functionality will be compromised -- ------------------------------------------------------------ local status_code, status_called = {} status_code = { A='晉級下一圈', C='冠軍', D='取消資格', E='確定淘汰出局',G='特邀嘉賓', H='東道主', O='附加賽勝者', P='升班', Q='獲得指定賽事參賽權', R='降班', S='衛冕球隊', T='晉級,但未定指定輪次', X='?', Y='?', Z='?'} status_called = { A=false, C=false, D=false, E=false, H=false, O=false, P=false, Q=false, R=false, S=false, T=false, X=false, Y=false, Z=false} local status_letters = 'ACDEHOPQRSTXYZ'

-- Status position (before or after read and default) local stat_pos_val = Args['status_pos'] or local status_position = 'after' -- Default location stat_pos_val = string.lower(stat_pos_val) if stat_pos_val=='before' then status_position = 'before' elseif stat_pos_val=='after' then status_position = 'after' end

-- Read in custom status options

if Args['status_text_A'] then status_code.A = Args['status_text_A'] end if Args['status_text_B'] then status_code.B = Args['status_text_B'] end if Args['status_text_C'] then status_code.C = Args['status_text_C'] end if Args['status_text_D'] then status_code.D = Args['status_text_D'] end if Args['status_text_E'] then status_code.E = Args['status_text_E'] end if Args['status_text_F'] then status_code.F = Args['status_text_F'] end if Args['status_text_G'] then status_code.G = Args['status_text_G'] end if Args['status_text_H'] then status_code.H = Args['status_text_H'] end if Args['status_text_I'] then status_code.I = Args['status_text_I'] end if Args['status_text_J'] then status_code.J = Args['status_text_J'] end if Args['status_text_K'] then status_code.K = Args['status_text_K'] end if Args['status_text_L'] then status_code.L = Args['status_text_L'] end

       if Args['status_text_M'] then status_code.M = Args['status_text_M'] end

if Args['status_text_N'] then status_code.N = Args['status_text_N'] end

       if Args['status_text_O'] then status_code.O = Args['status_text_O'] end

if Args['status_text_P'] then status_code.P = Args['status_text_P'] end

       if Args['status_text_Q'] then status_code.Q = Args['status_text_Q'] end

if Args['status_text_R'] then status_code.R = Args['status_text_R'] end

       if Args['status_text_S'] then status_code.S = Args['status_text_S'] end

if Args['status_text_T'] then status_code.T = Args['status_text_T'] end

       if Args['status_text_U'] then status_code.U = Args['status_text_U'] end

if Args['status_text_V'] then status_code.V = Args['status_text_V'] end

       if Args['status_text_W'] then status_code.W = Args['status_text_W'] end

if Args['status_text_X'] then status_code.X = Args['status_text_X'] end if Args['status_text_Y'] then status_code.Y = Args['status_text_Y'] end if Args['status_text_Z'] then status_code.Z = Args['status_text_Z'] end

return {code=status_code, called=status_called, letters=status_letters, position=status_position} end

return pp


1.161.245.175留言2019年1月14日 (一) 15:25 (UTC)回覆

邀請您參與管理人員任免及仲裁委員會制度討論

編輯
註:此通告由MediaWiki message delivery留言)於2024年9月21日 (六) 13:45 (UTC)寄送。若您未來長期或目前暫時不欲接收任何類似訊息,可考慮婉拒消息發送回覆