Extension:AJAXPoll/ru

From mediawiki.org
This page is a translated version of the page Extension:AJAXPoll and the translation is 38% complete.
Справка по расширениям MediaWiki
AJAXPoll
Статус релиза: стабильно
Реализация Расширение парсера
Описание Allows AJAX-based polls with ‎<poll> tag
Автор(ы)
Последняя версия 2.3.0 (2020-02-24)
MediaWiki 1.39.7+
Таблицы ajaxpoll_info
ajaxpoll_vote
Лицензия GNU Free Documentation License
Скачать
Пример Any ShoutWiki site
Ежеквартальные загрузки 26 (Ranked 112nd)
Переведите расширение AJAXPoll, если оно доступно на translatewiki.net
Проблемы Открытые задачи · Сообщить об ошибке

The AJAXPoll extension allows one or more AJAX-based polls on MediaWiki pages with ‎<poll> tag.

Установка

  • Скачайте и распакуйте файл(ы) в папку с названием AJAXPoll в вашей папке extensions/.
    Вместо этого разработчикам и соавторам кода следует установить расширение из Git, используя:cd extensions/
    git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/AJAXPoll
  • Добавьте следующий код в конце вашего файла LocalSettings.php :
    wfLoadExtension( 'AJAXPoll' );
    
  • Выполните скрипт обновления, который автоматически создаст необходимые таблицы, используемые расширением. Configure at your convenience.
  • Yes Готово – Перейдите на страницу Special:Version на своей вики, чтобы удостовериться в том, что расширение успешно установлено.

Конфигурация

# if you want to restrict the poll
# use the following code lines after calling the AJAXPoll extension
# to restrict to user group (example)

# The 'ajaxpoll-view-results-before-vote' group permission allows the specified
# group members to view poll results even without having voted
# but only if the high-level group permission 'ajaxpoll-vote' allows to view
# results in general.
#
# This 'ajaxpoll-view-results-before-vote' can be overwritten with the specific
# per-poll setting "show-results-before-voting" which takes precedence over the
# group permission.
#
# permission 'ajaxpoll-view-results' >>
# >> per-poll setting "show-results-before-voting" (if present)
# >> permission 'ajaxpoll-view-results-before-vote'

# anons
# default: anons cannot vote and will never see results
$wgGroupPermissions['*']['ajaxpoll-vote'] = false;
$wgGroupPermissions['*']['ajaxpoll-view-results'] = false;
$wgGroupPermissions['*']['ajaxpoll-view-results-before-vote'] = false;

# users
# default: users can vote and can see poll results - when they have voted
$wgGroupPermissions['user']['ajaxpoll-vote'] = true;
$wgGroupPermissions['user']['ajaxpoll-view-results'] = true;

If you want to disable the automatic tracking category then set the text of system message "MediaWiki:Ajaxpoll-tracking-category" in your wiki to "-" (minus).

Использование

Синтаксис

<poll>
Question
Choice 1
Choice 2
Choice 3
Choice 4
</poll>

Пример

<poll>
Do you like this poll ?
Yes, it is awesome.
Yes.
No, I do not like polls.
I have no idea, what this means.
</poll>

If you want this, you can allow or deny the result-viewing before voting per-poll by adding the show-results-before-voting parameter in the opening tag:

<poll show-results-before-voting>
<poll show-results-before-voting=1>
<poll show-results-before-voting=0>

If the first line after ‎<poll> is "STATS", then some statistics about the wiki and its polls will be displayed. These statistics are not localizable and this whole feature will probably be removed (or at least refactored, but probably removed) in the future.