跳转到内容

用户讨论:米记123

页面内容不支持其他语言。
维基百科,自由的百科全书
您好,米记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)[回复]

您好,阁下今日对该系列模版做出的编辑导致其他页面如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)寄送。若您未来长期或目前暂时不欲接收任何类似讯息,可考虑婉拒消息发送[回复]