Editing Module:Arguments/doc

Jump to: navigation, search

Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then save the changes below to finish undoing the edit.
Latest revision Your text
Line 1: Line 1:
{{High-use|22800000|all-pages = yes}}
+
{{High-risk| 16,000,000+ }}
{{Used in system}}
 
{{Module rating|p}}
 
  
 
This module provides easy processing of arguments passed from #invoke. It is a meta-module, meant for use by other modules, and should not be called from #invoke directly. Its features include:
 
This module provides easy processing of arguments passed from #invoke. It is a meta-module, meant for use by other modules, and should not be called from #invoke directly. Its features include:
Line 7: Line 5:
 
* Arguments can be passed by both the current frame and by the parent frame at the same time. (More details below.)
 
* Arguments can be passed by both the current frame and by the parent frame at the same time. (More details below.)
 
* Arguments can be passed in directly from another Lua module or from the debug console.
 
* Arguments can be passed in directly from another Lua module or from the debug console.
 +
* Arguments are fetched as needed, which can help avoid (some) problems with {{tag|ref}} tags.
 
* Most features can be customized.
 
* Most features can be customized.
  
Line 13: Line 12:
 
First, you need to load the module. It contains one function, named <code>getArgs</code>.
 
First, you need to load the module. It contains one function, named <code>getArgs</code>.
  
<syntaxhighlight lang="lua">
+
<source lang="lua">
 
local getArgs = require('Module:Arguments').getArgs
 
local getArgs = require('Module:Arguments').getArgs
</syntaxhighlight>
+
</source>
  
 
In the most basic scenario, you can use getArgs inside your main function. The variable <code>args</code> is a table containing the arguments from #invoke. (See below for details.)
 
In the most basic scenario, you can use getArgs inside your main function. The variable <code>args</code> is a table containing the arguments from #invoke. (See below for details.)
  
<syntaxhighlight lang="lua">
+
<source lang="lua">
 
local getArgs = require('Module:Arguments').getArgs
 
local getArgs = require('Module:Arguments').getArgs
 
local p = {}
 
local p = {}
Line 29: Line 28:
  
 
return p
 
return p
</syntaxhighlight>
+
</source>
  
 
However, the recommended practice is to use a function just for processing arguments from #invoke. This means that if someone calls your module from another Lua module you don't have to have a frame object available, which improves performance.
 
However, the recommended practice is to use a function just for processing arguments from #invoke. This means that if someone calls your module from another Lua module you don't have to have a frame object available, which improves performance.
  
<syntaxhighlight lang="lua">
+
<source lang="lua">
 
local getArgs = require('Module:Arguments').getArgs
 
local getArgs = require('Module:Arguments').getArgs
 
local p = {}
 
local p = {}
Line 47: Line 46:
  
 
return p
 
return p
</syntaxhighlight>
+
</source>
  
 
If you want multiple functions to use the arguments, and you also want them to be accessible from #invoke, you can use a wrapper function.
 
If you want multiple functions to use the arguments, and you also want them to be accessible from #invoke, you can use a wrapper function.
  
<syntaxhighlight lang="lua">
+
<source lang="lua">
 
local getArgs = require('Module:Arguments').getArgs
 
local getArgs = require('Module:Arguments').getArgs
 
local p = {}
 
  
 
local function makeInvokeFunc(funcName)
 
local function makeInvokeFunc(funcName)
Line 62: Line 59:
 
end
 
end
 
end
 
end
 +
 +
local p = {}
  
 
p.func1 = makeInvokeFunc('_func1')
 
p.func1 = makeInvokeFunc('_func1')
Line 76: Line 75:
  
 
return p
 
return p
</syntaxhighlight>
+
</source>
  
 
=== Options ===
 
=== Options ===
Line 82: Line 81:
 
The following options are available. They are explained in the sections below.
 
The following options are available. They are explained in the sections below.
  
<syntaxhighlight lang="lua">
+
<source lang="lua">
 
local args = getArgs(frame, {
 
local args = getArgs(frame, {
 
trim = false,
 
trim = false,
Line 99: Line 98:
 
noOverwrite = true
 
noOverwrite = true
 
})
 
})
</syntaxhighlight>
+
</source>
  
 
=== Trimming and removing blanks ===
 
=== Trimming and removing blanks ===
Line 109: Line 108:
 
However, sometimes you want to use blank arguments as input, and sometimes you want to keep additional whitespace. This can be necessary to convert some templates exactly as they were written. If you want to do this, you can set the <code>trim</code> and <code>removeBlanks</code> arguments to <code>false</code>.
 
However, sometimes you want to use blank arguments as input, and sometimes you want to keep additional whitespace. This can be necessary to convert some templates exactly as they were written. If you want to do this, you can set the <code>trim</code> and <code>removeBlanks</code> arguments to <code>false</code>.
  
<syntaxhighlight lang="lua">
+
<source lang="lua">
 
local args = getArgs(frame, {
 
local args = getArgs(frame, {
 
trim = false,
 
trim = false,
 
removeBlanks = false
 
removeBlanks = false
 
})
 
})
</syntaxhighlight>
+
</source>
  
 
=== Custom formatting of arguments ===
 
=== Custom formatting of arguments ===
Line 121: Line 120:
  
 
Example 1: this function preserves whitespace for the first positional argument, but trims all other arguments and removes all other blank arguments.
 
Example 1: this function preserves whitespace for the first positional argument, but trims all other arguments and removes all other blank arguments.
<syntaxhighlight lang="lua">
+
<source lang="lua">
 
local args = getArgs(frame, {
 
local args = getArgs(frame, {
 
valueFunc = function (key, value)
 
valueFunc = function (key, value)
Line 135: Line 134:
 
end
 
end
 
})
 
})
</syntaxhighlight>
+
</source>
  
 
Example 2: this function removes blank arguments and converts all arguments to lower case, but doesn't trim whitespace from positional parameters.
 
Example 2: this function removes blank arguments and converts all arguments to lower case, but doesn't trim whitespace from positional parameters.
<syntaxhighlight lang="lua">
+
<source lang="lua">
 
local args = getArgs(frame, {
 
local args = getArgs(frame, {
 
valueFunc = function (key, value)
 
valueFunc = function (key, value)
Line 151: Line 150:
 
end
 
end
 
})
 
})
</syntaxhighlight>
+
</source>
  
 
Note: the above functions will fail if passed input that is not of type <code>string</code> or <code>nil</code>. This might be the case if you use the <code>getArgs</code> function in the main function of your module, and that function is called by another Lua module. In this case, you will need to check the type of your input. This is not a problem if you are using a function specially for arguments from #invoke (i.e. you have <code>p.main</code> and <code>p._main</code> functions, or something similar).
 
Note: the above functions will fail if passed input that is not of type <code>string</code> or <code>nil</code>. This might be the case if you use the <code>getArgs</code> function in the main function of your module, and that function is called by another Lua module. In this case, you will need to check the type of your input. This is not a problem if you are using a function specially for arguments from #invoke (i.e. you have <code>p.main</code> and <code>p._main</code> functions, or something similar).
Line 157: Line 156:
 
{{cot|Examples 1 and 2 with type checking}}
 
{{cot|Examples 1 and 2 with type checking}}
 
Example 1:
 
Example 1:
<syntaxhighlight lang="lua">
+
<source lang="lua">
 
local args = getArgs(frame, {
 
local args = getArgs(frame, {
 
valueFunc = function (key, value)
 
valueFunc = function (key, value)
Line 174: Line 173:
 
end
 
end
 
})
 
})
</syntaxhighlight>
+
</source>
  
 
Example 2:
 
Example 2:
<syntaxhighlight lang="lua">
+
<source lang="lua">
 
local args = getArgs(frame, {
 
local args = getArgs(frame, {
 
valueFunc = function (key, value)
 
valueFunc = function (key, value)
Line 192: Line 191:
 
end
 
end
 
})
 
})
</syntaxhighlight>
+
</source>
 
{{cob}}
 
{{cob}}
  
Line 202: Line 201:
  
 
{{cot|Module:ExampleArgs code}}
 
{{cot|Module:ExampleArgs code}}
<syntaxhighlight lang="lua">
+
<source lang="lua">
 
local getArgs = require('Module:Arguments').getArgs
 
local getArgs = require('Module:Arguments').getArgs
 
local p = {}
 
local p = {}
Line 218: Line 217:
  
 
return p
 
return p
</syntaxhighlight>
+
</source>
 
{{cob}}
 
{{cob}}
  
Line 302: Line 301:
 
Wrappers can be specified either as a string, or as an array of strings.
 
Wrappers can be specified either as a string, or as an array of strings.
  
<syntaxhighlight lang="lua">
+
<source lang="lua">
 
local args = getArgs(frame, {
 
local args = getArgs(frame, {
 
wrappers = 'Template:Wrapper template'
 
wrappers = 'Template:Wrapper template'
 
})
 
})
</syntaxhighlight>
+
</source>
  
  
<syntaxhighlight lang="lua">
+
<source lang="lua">
 
local args = getArgs(frame, {
 
local args = getArgs(frame, {
 
wrappers = {
 
wrappers = {
Line 317: Line 316:
 
}
 
}
 
})
 
})
</syntaxhighlight>
+
</source>
  
 
Notes:
 
Notes:
Line 328: Line 327:
 
Sometimes it can be useful to write new values to the args table. This is possible with the default settings of this module. (However, bear in mind that it is usually better coding style to create a new table with your new values and copy arguments from the args table as needed.)
 
Sometimes it can be useful to write new values to the args table. This is possible with the default settings of this module. (However, bear in mind that it is usually better coding style to create a new table with your new values and copy arguments from the args table as needed.)
  
<syntaxhighlight lang="lua">
+
<source lang="lua">
 
args.foo = 'some value'
 
args.foo = 'some value'
</syntaxhighlight>
+
</source>
  
 
It is possible to alter this behaviour with the <code>readOnly</code> and <code>noOverwrite</code> options. If <code>readOnly</code> is set then it is not possible to write any values to the args table at all. If <code>noOverwrite</code> is set, then it is possible to add new values to the table, but it is not possible to add a value if it would overwrite any arguments that are passed from #invoke.
 
It is possible to alter this behaviour with the <code>readOnly</code> and <code>noOverwrite</code> options. If <code>readOnly</code> is set then it is not possible to write any values to the args table at all. If <code>noOverwrite</code> is set, then it is possible to add new values to the table, but it is not possible to add a value if it would overwrite any arguments that are passed from #invoke.
Line 338: Line 337:
 
This module uses [[mw:Extension:Scribunto/Lua reference manual#Metatables|metatables]] to fetch arguments from #invoke. This allows access to both the frame arguments and the parent frame arguments without using the <code>pairs()</code> function. This can help if your module might be passed {{tag|ref}} tags as input.
 
This module uses [[mw:Extension:Scribunto/Lua reference manual#Metatables|metatables]] to fetch arguments from #invoke. This allows access to both the frame arguments and the parent frame arguments without using the <code>pairs()</code> function. This can help if your module might be passed {{tag|ref}} tags as input.
  
As soon as {{tag|ref}} tags are accessed from Lua, they are processed by the MediaWiki software and the reference will appear in the reference list at the bottom of the article. If your module proceeds to omit the reference tag from the output, you will end up with a phantom reference a reference that appears in the reference list but without any number linking to it. This has been a problem with modules that use <code>pairs()</code> to detect whether to use the arguments from the frame or the parent frame, as those modules automatically process every available argument.
+
As soon as {{tag|ref}} tags are accessed from Lua, they are processed by the MediaWiki software and the reference will appear in the reference list at the bottom of the article. If your module proceeds to omit the reference tag from the output, you will end up with a phantom reference - a reference that appears in the reference list, but no number that links to it. This has been a problem with modules that use <code>pairs()</code> to detect whether to use the arguments from the frame or the parent frame, as those modules automatically process every available argument.
  
 
This module solves this problem by allowing access to both frame and parent frame arguments, while still only fetching those arguments when it is necessary. The problem will still occur if you use <code>pairs(args)</code> elsewhere in your module, however.
 
This module solves this problem by allowing access to both frame and parent frame arguments, while still only fetching those arguments when it is necessary. The problem will still occur if you use <code>pairs(args)</code> elsewhere in your module, however.

Please note that all contributions to All About Ayrshire may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see All About Ayrshire:Copyrights for details). Do not submit copyrighted work without permission!

Cancel Editing help (opens in new window)