Module:TrainingPages
Appearance
![]() | This module is rated as ready for general use. It has reached a mature form and is thought to be relatively bug-free and ready for use wherever appropriate. It is ready to mention on help pages and other Wikipedia resources as an option for new users to learn. To reduce server load and bad output, it should be improved by sandbox testing rather than repeated trial-and-error editing. |
![]() | This module is subject to page protection. It is a highly visible module in use by a very large number of pages, or is substituted very frequently. Because vandalism or mistakes would affect many pages, and even trivial editing might cause substantial load on the servers, it is protected from editing. |
This module is intended to accept the name of a page (defaulting to the page currently being displayed), look it up in an index of pages, step forward or backward by some number of pages (usually 1), and give back the name of the page at that position.
Use {{#invoke:TrainingPages|function|parameters}}
to invoke. For example:
{{#invoke:TrainingPages|last_page|index=Wikipedia:Training/For students/Editing module index|page=Wikipedia:Training/For students/Where to get help|defaultpage=Wikipedia:Training/header}}
yields:
Script error: The function "last_page" does not exist.
Functions
The available functions are:
- next_page: the next page on the index list
- last_page: the preceding page on the index list
- page_number: the number the page indicated is in the list
- total_pages: the total number of pages in the index
- main: allows you to flip forward or backward an arbitrary number of pages
Parameters
(All parameters are available to every function, except displacement which only matters for main)
- page is the page you are starting from (the one you're looking up in the index)
- if page is blank or omitted, the mw.title.getCurrentTitle() function is used to locate the current page. (So far as I know, this is always the page that matters, the one everything ultimately gets transcluded to, not the template or module)
- if page is a number and doesn't contain any text, the page that number of positions down in the index will be the base page used. With "main" and no displacement set, this returns the name of page#N. Otherwise you can have it return some number of pages off from that number, or the default page, as it would if the name of the page in that position had been entered as text.
- defaultpage is the page to be returned if there is no next page, previous page, or page displaced by n in the index. Can be blank, in which case the module output will be blank if this happens.
- index is the name of the index module with the list of all the pages. The pages should be in a list from beginning to end. There are three ways to format this:
- Index can be in module space (e.g. Module:TrainingPages/default index) in which case they must consist of return {'Name of first page','Name of second page','Name of third page' ... etc.}.
- Index can be in some other space, not in module format, in which case it need merely contain a list of Wikilinks in double square brackets. Everything outside the brackets is ignored, and every link in double square brackets is counted. The only limitation is that in this version anything in double square brackets is taken as a link, even if nowiki applies or it is in other brackets or has a newline in it or something that prevents it from appearing as a proper link. You can put a pair of nowiki or noninclude tags between the two opening square brackets as a kludge to avoid having this happen, if need be.
- (If omitted, the index still defaults to Module:TrainingPages/default index, so common tasks might be added to it. However, no provision has been made to prevent from paging from one set into another, so unless this only sees use in one consistent overall set of trainingpages that is a bad idea unless upgraded.)
- displacement specifies how many pages to go forward or back in the main module.
- noerr suppresses error messages if the index file can't be found; an empty string is returned.
- anonymize - any nonblank value causes project specific pages (Wikipedia:) to be returned as Project:
--The purpose of this module is to take a list of page names and page numbers that define a module of one of the [[Wikipedia:Training]] series, and use it to determine the next and previous page to link to
local p = {}
-- Return the next page, used like: {{#invoke:TrainingPages| next_page | currentpage=Wikipedia:Training/Foo/Bar | {{listofpages}} }}
function p.next_page(frame)
local parent=frame.getParent(frame)
local currentpage,indexmodule,defaultpage
if parent then
currentpage=parent.args.page
indexmodule=parent.args.index -- index is a module return{'page1','page2', ...}
defaultpage=parent.args.defaultpage
end
currentpage = frame.args.page or currentpage
defaultpage = frame.args.defaultpage or "" -- don't know where to send people by default
indexmodule = frame.args.index or indexmodule or "Module:TrainingPages/default index" -- example given in Lua:Requests
if not(currentpage) then -- defaults to title of the current page
pagepointer=mw.title.getCurrentTitle()
assert(pagepointer,"failed to access getCurrentTitle")
currentpage=pagepointer.fullText
end
local index=mw.loadData(indexmodule)
local lookup={}
local i=0
repeat
i=i+1
local j=index[i]
if j then lookup[j]=i else break end -- lookup["page name"] => page number
until false
if (lookup[currentpage]) then
local nextpage=index[lookup[currentpage]+1] or defaultpage
else local nextpage=defaultpage
end
return tostring(nextpage)..currentpage.."---"..index[2]..next(lookup)
end
return p