導覽
近期變更
隨機頁面
新手上路
新頁面
優質條目評選
繁體
不转换
简体
繁體
18.190.253.56
登入
工具
閱讀
檢視原始碼
特殊頁面
頁面資訊
求真百科歡迎當事人提供第一手真實資料,洗刷冤屈,終結網路霸凌。
檢視 模块:Lang/documentor tool 的原始碼
←
模块:Lang/documentor tool
前往:
導覽
、
搜尋
由於下列原因,您沒有權限進行 編輯此頁面 的動作:
您請求的操作只有這個群組的使用者能使用:
用戶
您請求的操作只有這個群組的使用者能使用:
管理員
您可以檢視並複製此頁面的原始碼。
require('Module:No globals'); local p = {}; --[[-------------------------< L A N G - X X _ S E T T I N G S >----------------------------------------------- {{#invoke:Lang/documentor tool|lang_xx_settings|template={{ROOTPAGENAME}}}} reads the content of the template and extracts the parameters from {{#invoke:Lang|...}} for display on the template's documentation page ]] function p.lang_xx_settings (frame) local page = mw.title.makeTitle ('Template', frame.args['template'] or frame.args[1]); -- get a page object for this page in 'Template:' namespace if not page then return ''; -- TODO: error message? end local content = page:getContent(); -- get unparsed content if not page then return ''; -- TODO: error message? end local out = {}; local params; local style; if content:match ('{{%s*#invoke:%s*[Ll]ang%s*|[^|]+|[^}]+}}') or content:match ('{{%s*#invoke:%s*[Ll]ang/sandbox%s*|[^|]+|[^}]+}}') then -- if this template uses [[Module:Lang]] params = content:match ('{{%s*#invoke:%s*[Ll]ang%s*|[^|]+(|[^}]+)}}') or content:match ('{{%s*#invoke:%s*[Ll]ang/sandbox%s*|[^|]+(|[^}]+)}}') -- extract the #invoke:'s parameters if not params then return ''; -- there should be at least one or the template/module won't work TODO: error message? end table.insert (out, '{| class="wikitable" style="text-align:right; float:right"\n|+设定') -- start a wikitable for k, v in params:gmatch ('%s*|%s*([^%s=]+)%s*=%s*([^%s|]+)') do -- get the parameter names (k) and values (v) if 'label' == k then -- special case for labels because spaces and pipes v = params:match ('label%s*=%s*(%[%[[^%]]+%]%])') or params:match ('label%s*=%s*([^|\n]+') or '缺少label'; end table.insert (out, table.concat ({k, '\n|', v})); -- make rudimentary wikitable entries end style = content:match ('lang_xx_([^|]+)'); return table.concat ({table.concat (out,'\n|-\n! scope="row" | '), '\n|-\n|colspan="2"|style: ', style, '\n|-\n|}'}); -- add inter-row markup and close the wikitable and done else return ''; -- does not use [[Module:Lang]] so abandon quietly end end --[[-------------------------< U S E S _ M O D U L E >--------------------------------------------------------- {{#invoke:Lang/documentor tool|uses_module|template={{ROOTPAGENAME}}}} reads the content of the template to determine if this {{lang-xx}} template uses Module:Lang. Returns the index of the substring '{{#invoke|lang|' in the template page content if true; empty string if false Used in template documentation {{#if:}} parser functions. ]] function p.uses_module (frame) local page = mw.title.makeTitle ('Template', frame.args['template'] or frame.args[1]); -- get a page object for this page in 'Template:' namespace if not page then return ''; -- TODO: error message? end local content = page:getContent(); -- get unparsed content if not page then return ''; -- TODO: error message? end return content:find ('{{%s*#invoke:[Ll]ang%s*|') or ''; -- return index or empty string end return p;
此頁面使用了以下模板:
模块:Lang/documentor tool/doc
(
檢視原始碼
)
返回「
模块:Lang/documentor tool
」頁面