This is the documentation page for Module:Rfx
Template:Module rating
This is a library for getting information about individual requests for adminship (RfA) and requests for bureaucratship (RfB) pages on the English Wikipedia. It is not meant to be used directly from wiki pages, but rather to be used by other Lua modules.
Creating new objects
First of all, the library must be loaded, like this:
<syntaxhighlight lang="lua">
local rfx = require( 'Module:Rfx' )
</syntaxhighlight>
Once the library is loaded, you can make a new rfx object using rfx.new(). 
|  (see below ). 
 rfx.new()is used like this:
 <syntaxhighlight lang="lua">
local myRfx = rfx.new( pagename )
</syntaxhighlight>
 The pagenamevariable should be the name of a valid RfA or RfB page, for example: <syntaxhighlight lang="lua">
local exampleRfa = rfx.new( 'Wikipedia:Requests for adminship/Example' )
</syntaxhighlight>
 If pagenameis not specified, or the page is not a subpage of Wikipedia:Requests for adminship or Wikipedia:Requests for bureaucratship, thenrfx.newwill returnnil. Methods and propertiesOnce you have created a new rfxobject, there are a number of methods and properties that you can use. They are all read-only. Properties
 type: the type of the rfx. This is either "rfa" or "rfb".supports: the number of supports in the RfX.nilif the supports could not be processed.opposes: the number of opposes in the RfX.nilif the opposes could not be processed.neutrals: the number of neutrals in the RfX.nilif the neutrals could not be processed.percent: the support percentage. Calculated by \(\frac{\text{supports}}{\text{supports} + \text{opposes}} \times 100\) and rounded to the nearest integer.nilif it could not be processed.endTime: the end time of the RfX. This is a string value taken from the RfX page.nilif it could not be found.user: the username of the RfX candidate.nilif it could not be found.
 Methods
 Methods must be called with the colon syntax:
 <syntaxhighlight lang="lua">
local titleObject = exampleRfa:getTitleObject()
</syntaxhighlight>
 getTitleObject(): gets the title object for the RfX page. See the reference manual for details on how to use title objects.getSupportUsers(): gets an array containing the usernames that supported the RfX. If any usernames could not be processed, the text "Error parsing signature" is used instead, along with the text of the comment in question. N.b. this technique relies on the text of comment text being unique - if it is not unique thendupesExist()will treat the identical comments as duplicate votes. If the page content could not be parsed at all, this method returnsnil.getOpposeUsers(): gets an array containing the usernames that opposed the RfX. Functions similarly togetSupportUsers().getNeutralUsers(): gets an array containing the usernames that were neutral at the RfX. Functions similarly togetSupportUsers().dupesExist(): returns a boolean indicating whether there were any duplicate votes at the RfX. Returnsnilif the vote tables couldn't be processed.getSecondsLeft(): returns the number of seconds left before the RfX is due to close. Once it is due to close, shows zero. If the ending time cannot be found, returnsnil.getTimeLeft(): returns a string showing the time left before the RfX is due to close. The string is in the format "x days, y hours".getReport(): returns a URI object for X!'s RfA Analysis tool at Wikimedia Labs, preloaded with the RfX page.getStatus(): returns a string showing the current status of the RfX. This can be "successful", "unsuccessful", "open", or "pending closure". Returnsnilif the status could not be determined.
 You can compare rfxobjects with the==operator. This will return true only if the two objects point to the same page.tostring( rfx )will returnprefixedTitlefrom the RfX page's title object (see the reference manual). Expensive functionsThis module makes use of the title:getContent method to fetch RfX page sources. This method will be called for each RfX page being looked up, so each use of rfx.newwill count as an expensive function call. Please be aware that the library may fail for scripts which create many different RfX objects. (The current limit for the English Wikipedia is 500 expensive function calls per page.) Also, each RfX page that is looked up will count as a transclusion in Special:WhatLinksHere. |