Jump to content

Module:Highest archive number/doc: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
Examples: don't use the module sandbox in the examples
m change source to syntaxhighlight
Line 15: Line 15:
Load the module with the following code:
Load the module with the following code:


<source lang="lua">
<syntaxhighlight lang="lua">
local mHAN = require('Module:Highest archive number')
local mHAN = require('Module:Highest archive number')
</syntaxhighlight>
</source>


You can then use it like this:
You can then use it like this:


<source lang="lua">
<syntaxhighlight lang="lua">
mHAN._main(prefix, start)
mHAN._main(prefix, start)
</syntaxhighlight>
</source>


The <var>prefix</var> variable is the prefix of the archive set.
The <var>prefix</var> variable is the prefix of the archive set.

Revision as of 13:32, 7 July 2020

This module finds the highest archive number for a given set of numbered archive pages. The only input required is the prefix of the archive set. For example, for Talk:France/Archive 1, Talk:France/Archive 2, etc., the prefix would be "Talk:France/Archive ".

The module uses an exponential search algorithm, so it will make relatively few expensive function calls even for large numbers of archives. (The expensive function call is necessary to determine whether an individual archive exists.) For 1-10 archive pages, the module typically uses 4-6 expensive function calls; for 20-100 archives, it uses 6-12 calls; and for hundreds of archives, it uses 12-20 calls.

Because the module uses an exponential search, no gaps are allowed in the archive numbers; if there are any gaps, then the module may return the number of any archive page that exists where the following archive page does not exist. However, archive numbers do not have to start at 1; if they start at a higher number, you can specify this number in the start parameter.

Usage

From wikitext

From wikitext this module is usually used via the {{highest archive number}} template. However, it is also possible to use it directly from invoke with the syntax {{#invoke:highest archive number|main|prefix|start=start}}.

From Lua

Load the module with the following code:

local mHAN = require('Module:Highest archive number')

You can then use it like this:

mHAN._main(prefix, start)

The prefix variable is the prefix of the archive set.

Examples

#invoke code Lua code Result
{{#invoke:highest archive number|main|Wikipedia:Administrators' noticeboard/IncidentArchive}} mHAN._main("Wikipedia:Administrators' noticeboard/IncidentArchive") 1189
{{#invoke:highest archive number|main|Talk:Byzantine Empire/Archive }} mHAN._main("Talk:Byzantine Empire/Archive ") 18
{{#invoke:highest archive number|main|Wikipedia talk:WikiProject Chemicals/Archive |start=2005}} mHAN._main("Wikipedia talk:WikiProject Chemicals/Archive ", 2005) 2025