Editing Module:Documentation
Jump to navigation
Jump to search
The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.
Latest revision | Your text | ||
Line 181: | Line 181: | ||
-- env.subjectSpace - the number of the title's subject namespace. | -- env.subjectSpace - the number of the title's subject namespace. | ||
-- env.docSpace - the number of the namespace the title puts its documentation in. | -- env.docSpace - the number of the namespace the title puts its documentation in. | ||
-- env. | -- env.docpageRoot - the text of the base page of the /doc, /sandbox and /testcases pages, with namespace. | ||
-- env.compareUrl - URL of the Special:ComparePages page comparing the sandbox with the template. | -- env.compareUrl - URL of the Special:ComparePages page comparing the sandbox with the template. | ||
-- | -- | ||
Line 248: | Line 248: | ||
docpage = docname | docpage = docname | ||
else | else | ||
docpage = env. | docpage = env.docpageRoot .. '/' .. message('doc-subpage') | ||
end | end | ||
return mw.title.new(docpage) | return mw.title.new(docpage) | ||
Line 259: | Line 259: | ||
-- 'sandbox-subpage' --> 'sandbox' | -- 'sandbox-subpage' --> 'sandbox' | ||
--]] | --]] | ||
return mw.title.new(env. | return mw.title.new(env.docpageRoot .. '/' .. message('sandbox-subpage')) | ||
end | end | ||
Line 268: | Line 268: | ||
-- 'testcases-subpage' --> 'testcases' | -- 'testcases-subpage' --> 'testcases' | ||
--]] | --]] | ||
return mw.title.new(env. | return mw.title.new(env.docpageRoot .. '/' .. message('testcases-subpage')) | ||
end | end | ||
Line 290: | Line 290: | ||
end | end | ||
function envFuncs. | function envFuncs.docpageRoot() | ||
-- The base page of the /doc, /sandbox, and /testcases subpages. | -- The base page of the /doc, /sandbox, and /testcases subpages. | ||
-- For some namespaces this is the talk page, rather than the template page. | -- For some namespaces this is the talk page, rather than the template page. |