Extension:Loops/ru
Loops Статус релиза: стабильно |
|
---|---|
Реализация | Функция парсера |
Описание | Предоставляет функции парсера для выполнения циклов |
Автор(ы) | |
Последняя версия | 0.5.2 (2019-08-05) |
MediaWiki | 1.34+ |
PHP | 5.6+ |
Изменения в БД | Нет |
Лицензия | Лицензия не указана |
Скачать | README RELEASE-NOTES |
Пример | sandbox.semantic-mediawiki.org |
Ежеквартальные загрузки | Lua error in Module:Extension at line 172: bad argument #1 to 'inNamespace' (unrecognized namespace name 'skin'). |
Использование общедоступными вики | Lua error in Module:Extension at line 172: bad argument #1 to 'inNamespace' (unrecognized namespace name 'skin'). |
Переведите расширение Loops, если оно доступно на translatewiki.net | |
Проблемы | Открытые задачи · Сообщить об ошибке |
The Loops extension provides Функции парсера for performing loops.
Currently, this extension is maintained on a basic level by MGChecker.
Использование
#while
{{#while}}
performs a loop (i.e. it repeatedly parses a given wiki markup block statement) so long as the condition mark-up evaluates to non-whitespace.
{{#while: | <condition text> | <block statement> }}
- Примеры
Вики-разметка:
{{#vardefine: i | 0 }}{{#while: | {{#ifexpr: {{#var: i }} < 5 | true }} | <nowiki /> * {{#var: i }}{{#vardefine: i | {{#expr: {{#var: i }} + 1 }} }} }}
produces the following:
- 0
- 1
- 2
- 3
- 4
{{#while}}
can also be used in a template to simulate a numbered array.
If the page "Template:Loops Test" contains
{{#vardefine: i | 0 }}{{#while: | {{{arg{{#var: i }} |}}} | <nowiki /> * {{{arg{{#var: i }} }}}{{#vardefine: i | {{#expr: {{#var: i }} + 1 }} }} }}
затем вики-разметка
{{Loops Test |arg0=ноль |arg1=один |arg2=два |arg3=три |arg4=четыре }}
produces
- ноль
- один
- два
- три
- четыре
It's important to note that whitespace, including newlines, tabs, and spaces, is stripped from the beginning and end of all the arguments of these parser functions.
If this is not desirable, adding any non-whitespace characters (including the HTML encoding for a whitespace character  
) will prevent further stripping (hence the <nowiki>
tags in the above examples).
#dowhile
{{#dowhile}}
performs exactly like {{#while}}
, with the exception that the block statement is guaranteed to be parsed and displayed (if it results in displayable text) at least once.
This is done before the condition text is evaluated.
#loop
{{#loop: <variable name> | <starting value> | <number of loops to be performed> | <wiki markup> }}
{{#loop}}
repeatedly parses and displays <wiki markup> a number of times equal to the absolute value of <number of loops to be performed>.
<Starting value> is placed in a variable (accessible by Variables extension's {{#var:}}
parser function) using the name <variable name>.
After each loop, the variable is incremented by one if <number of loops to be performed> is positive, or decremented by one if <number of loops to be performed> is negative.
#loop
should have the best performance since there is no condition which has to be expanded and validated for each cycle.- Примеры
Следующий код:
{{#loop: varname | 4 | 4 | <nowiki /> * This is round {{#var: varname }} and we have {{#expr: 7 - {{#var: varname }} }} more to go }}
produces
- This is round 4 and we have 3 more to go
- This is round 5 and we have 2 more to go
- This is round 6 and we have 1 more to go
- This is round 7 and we have 0 more to go
#forargs
(experimental)
{{#forargs}}
is to be used in templates.
It takes arguments that are passed to the template and puts them in variables accessible by Variables extension's {{#var:}}
parser function.
{{#forargs: <prefix> | <key> | <value> | <block statement> }}
This function iterates through each argument whose name begins with <prefix>.
With each iteration it puts the argument name minus <prefix> into <key> as if calling {{#vardefine: <key> }}
.
It then takes the value of the argument and puts it into <value> in a similar method.
The block statement is then expanded.
The block statement may contain {{#var: <key> }}
and {{#var: <value> }}
to access the stored arguments.
- Пример
Если страница "Template:Loops Test" содержит
{{#forargs: arg | key | value | <nowiki /> * {{#var: key }} = {{#var: value }} }}
then the wiki markup
{{Loops Test | arg1=val1 | spam=spammity | arg5=val5 | argument=value }}
produces
- 1 = val1
- 5 = val5
- ument = value
#fornumargs
(experimental)
{{#fornumargs: <key> | <value> | <block statement> }}
{{#fornumargs}}
performs similarly to {{#forargs}}
with two major differences: It doesn't take a prefix argument, and it only works on numbered arguments whether they're explicitly numbered,
{{Template | 1=one | 2=two }}
or implicitly numbered.
{{Template | one | two }}
Mixing these methods in a single template call may cause values to get overwritten, so be careful.
- Примеры
If "Template:Loops Test" is edited to contain:
{{#fornumargs: number | value | <nowiki /> * {{#var: number }} = {{#var: value }} }}
тогда
{{Loops Test | Apricot | B = Bolognese | Caramel slice | 5 = Eclair }}
will result in
- 1 = Apricot
- 2 = Caramel slice
- 5 = Eclair
Установка
- <translate> [[<tvar name=2>Special:ExtensionDistributor/Loops/ru</tvar>|Download]] and move the extracted <tvar name=name>
Loops/ru
</tvar> folder to your <tvar name=ext>extensions/
</tvar> directory.</translate>
<translate> Developers and code contributors should install the extension [[<tvar name=git>Special:MyLanguage/Download from Git</tvar>|from Git]] instead, using:</translate>cd extensions/
git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/Loops%2Fru - <translate> Add the following code at the bottom of your <tvar name=1>LocalSettings.php </tvar> file:</translate>
wfLoadExtension( 'Loops/ru' );
- Configure at your convenience
- File:OOjs UI icon check-constructive.svg <translate> Done</translate> – <translate> Navigate to <tvar name=special>Special:Version</tvar> on your wiki to verify that the extension is successfully installed.</translate>
Конфигурация
These configuration variables have to be set in the LocalSettings.php
file after the inclusion of this extension.
$egLoopsCountLimit
- This parameter sets the maximum number of loops a page is allowed to perform (default
100
). Setting it to-1
lets the loops run within the limits of phps environment. This parameter affects neither the{{#forargs:}}
nor{{#fornumargs:}}
parser functions.
$egLoopsEnabledFunctions
- Configuration variable (array) to define which Loops functions should be enabled. By default, all functions are enabled if the Variables extension is installed as well. If the Variables extension is not installed,
#loop
,#forargs
and#fornumargs
will be disabled since they do not work without it being installed. To enable the#fornumargs
and#forargs
functions only, one can use:
$egLoopsEnabledFunctions = array_diff(
$egLoopsEnabledFunctions, [
'forargs', 'fornumargs'
]
);
Смотрите также
- Extension:LoopFunctions - Ещё одно расширение для циклов
- Module:Loops
File:OOjs UI icon information-progressive.svg | <translate> This extension is included in the following wiki farms/hosts and/or packages:</translate>
<translate> This is not an authoritative list.</translate> <translate> Some wiki farms/hosts and/or packages may contain this extension even if they are not listed here.</translate> <translate> Always check with your wiki farms/hosts or bundle to confirm.</translate> |