Module:Random/doc

MyWikiBiz, Author Your Legacy — Wednesday May 22, 2024
< Module:Random
Revision as of 05:33, 16 July 2021 by Zoran (talk | contribs) (Pywikibot 6.4.0)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

This is the documentation page for Module:Random

Template:Module rating This module contains a number of functions that use random numbers. It can output random numbers, select a random item from a list, and reorder lists randomly. The randomly reordered lists can be output inline, or as various types of ordered and unordered lists. The available functions are outlined in more detail below.

Number

The number function outputs a random number.

{{#invoke:random|number|m|n|same=yes}}

The arguments m and n may be omitted, but if specified must be convertible to integers.

  • With no arguments, returns a real number in the range \([0,1)\).
  • With one argument, returns an integer in the range \([1,m]\), or, if m is negative, \((-m,0]\). If m is equal to 0 or 1, returns 1 (or 0 if \(m=-1\)).
  • With two arguments, returns an integer in the range \([m,n]\). m and n can be either positive or negative. If m is greater than n, returns an integer in the range \([n,m]\) instead.
  • If the Template:Para parameter is set to "yes", "y", "true", or "1", the same random number is returned for each module call on a given page.

Examples (

This box: view  talk  edit

)

  • {{#invoke:random|number}} → 0.15007505014077
  • {{#invoke:random|number|100}} → 64
  • {{#invoke:random|number|-100|-50}} → -85
  • {{#invoke:random|number|100|same=yes}} → 6
  • {{#invoke:random|number|100|same=yes}} → 6

The documentation for this function is partly taken from the Scribunto Lua reference manual, which is in turn based on the Lua 5.1 Reference Manual, available under the MIT License.

Date

The date function outputs a random date.

{{#invoke:random|date|timestamp1|timestamp2|format=date format|same=yes}}
  • If no timestamp arguments are specified, the module outputs a random date in the current year.
  • If timestamp1 and timestamp2 are specified, the module outputs a random date between the two timestamps. timestamp1 must be earlier than timestamp2.
  • If only timestamp1is specified, the module outputs a random date between the Unix epoch (1 Jan 1970) and the timestamp. timestamp1 must not be earlier than 1 Jan 1970.
  • Formatting can be specified with the Template:Para parameter. The default formatting is "hh:mm, DD Month YYYY (UTC)" (the same as the default Wikipedia timestamp).
  • The timestamps and the Template:Para parameter accept values compatible with the #time parser function. Please see the #time documentation for the full range of possible input values and formatting options.
  • If the Template:Para parameter is set to "yes", "y", "true", or "1", the same date is returned for each module call on a given page.

Examples (

This box: view  talk  edit

)

  • {{#invoke:random|date}} → 02:24, 14 May 2024 (UTC)
  • {{#invoke:random|date|format=F j}} → June 19
  • {{#invoke:random|date|1 Jan 1980|31 Dec 1999}} → 02:23, 12 April 1988 (UTC)
  • {{#invoke:random|date|1st January 1500|1st January 3000|format=g:i a, l d M Y}} → 8:03 am, Saturday 25 May 2757
  • {{#invoke:random|date|1970/06/01}} → 01:19, 11 January 1970 (UTC)
  • {{#invoke:random|date|same=yes}} → 22:52, 20 January 2024 (UTC)
  • {{#invoke:random|date|same=yes}} → 22:52, 20 January 2024 (UTC)

Item

The item function outputs a random item from a list.

{{#invoke:random|item|list item 1|list item 2|list item 3|...|same=yes}}

If the Template:Para parameter is set to "yes", "y", "true", or "1", the same item is returned for each module call on a given page.

Example (

This box: view  talk  edit

)

  • {{#invoke:random|item|egg|beans|sausage|bacon|spam}} → bacon
  • {{#invoke:random|item|egg|beans|sausage|bacon|spam|same=yes}} → sausage
  • {{#invoke:random|item|egg|beans|sausage|bacon|spam|same=yes}} → sausage

List

The list function outputs a list in a random order.

{{#invoke:random|list|list item 1|list item 2|list item 3|...|sep=separator|limit=number of items to display|same=yes}}

Named parameters

  • Template:Para or Template:Para - an optional separator for the list items. Some values are special; see the table below.
  • Template:Para - the maximum number of list items to display. The lowest possible is 0 and the highest possible is the length of the list.
  • Template:Para - if this is set to "yes", "y", "true", or "1", the list order is the same for each module call on a given page.
Possible separator values
Code Output
dot ⧼dot-separator⧽
pipe |
comma ,
tpt-languages ⧼tpt-languages-separator⧽
space a space
newline a newline character
any other value other values are used without modification

You cannot input spaces directly to the Template:Para parameter due to limitations in MediaWiki's template syntax. However, it is possible to work around this by using HTML entities. You can use &#32; to represent a normal space, and &nbsp; to represent a non-breaking space.

Examples (

This box: view  talk  edit

)

  • {{#invoke:random|list|egg|beans|sausage|bacon|spam}} → eggsausagebaconbeansspam
  • {{#invoke:random|list|egg|beans|sausage|bacon|spam|sep=dot}} → spam⧼dot-separator⧽egg⧼dot-separator⧽bacon⧼dot-separator⧽beans⧼dot-separator⧽sausage
  • {{#invoke:random|list|egg|beans|sausage|bacon|spam|sep=space}} → beans spam sausage egg bacon
  • {{#invoke:random|list|egg|beans|sausage|bacon|spam|sep=;&#32;}} → beans; bacon; sausage; spam; egg
  • {{#invoke:random|list|egg|beans|sausage|bacon|spam|sep=foo}} → baconfoosausagefooeggfoospamfoobeans
  • {{#invoke:random|list|egg|beans|sausage|bacon|spam|limit=3}} → spamsausagebeans
  • {{#invoke:random|list|egg|beans|sausage|bacon|spam|same=yes}} → baconspambeanseggsausage
  • {{#invoke:random|list|egg|beans|sausage|bacon|spam|same=yes}} → baconspambeanseggsausage

Text list

The text_list function outputs a list in a random order, text-style. In other words, it is like the list function, but with a different separator before the last item.

{{#invoke:random|text_list|list item 1|list item 2|list item 3|...|sep=separator|conj=conjunction|limit=number of items to display|same=yes}}

The separator can be specified with either the Template:Para or Template:Para parameters; its default value is ", ". The conjunction can be specified with either the Template:Para or Template:Para parameters; its default value is " and ". The separator and the conjunction can be specified with the same values as the separator in the list function.

The maximum number of list items to display can be set with the Template:Para parameter. The lowest possible is 0 and the highest possible is the length of the list.

If the Template:Para parameter is set to "yes", "y", "true", or "1", the list order is the same for each module call on a given page.

Examples (

This box: view  talk  edit

)

  • {{#invoke:random|text_list|egg|beans|sausage|bacon|spam}} → beans, spam, egg, bacon and sausage
  • {{#invoke:random|text_list|egg|beans|sausage|bacon|spam|sep=;&#32;}} → bacon; egg; spam; sausage and beans
  • {{#invoke:random|text_list|egg|beans|sausage|bacon|spam|sep=;&#32;|conj=&#32;or&#32;}} → beans; sausage; egg; bacon or spam
  • {{#invoke:random|text_list|egg|beans|sausage|bacon|spam|limit=3}} → sausage, spam and beans
  • {{#invoke:random|text_list|egg|beans|sausage|bacon|spam|same=yes}} → bacon, spam, beans, egg and sausage
  • {{#invoke:random|text_list|egg|beans|sausage|bacon|spam|same=yes}} → bacon, spam, beans, egg and sausage

HTML lists

If you wish to output an HTML list in a random order, you can choose between five different functions: bulleted_list, unbulleted_list, horizontal_list, ordered_list, and horizontal_ordered_list. These functions all use Module:List.

Function name Produces Example code Example output (
This box: view  talk  edit
)
bulleted_list Bulleted lists {{#invoke:random|bulleted_list|egg|sausage|spam}}
  • sausage
  • egg
  • spam
unbulleted_list Unbulleted lists {{#invoke:random|unbulleted_list|egg|sausage|spam}}
  • spam
  • egg
  • sausage
horizontal_list Horizontal bulleted lists {{#invoke:random|horizontal_list|egg|sausage|spam}}
  • spam
  • egg
  • sausage
ordered_list Ordered lists (numbered lists and alphabetical lists) {{#invoke:random|ordered_list|egg|sausage|spam}}
  1. egg
  2. spam
  3. sausage
horizontal_ordered_list Horizontal ordered lists {{#invoke:random|horizontal_ordered_list|egg|sausage|spam}}
  1. spam
  2. sausage
  3. egg
Basic usage
{{#invoke:random|function|list item 1|list item 2|list item 3|...|limit=number of items to display|same=yes}}
All parameters

Template:Pre2

The maximum number of list items to display can be set with the Template:Para parameter. The lowest possible is 0 and the highest possible is the length of the list.

If the Template:Para parameter is set to "yes", "y", "true", or "1", the list order is the same for each module call on a given page.

Please see Module:List for a full explanation of the other parameters.