Extension:Newest Pages/ru

This page is a translated version of the page Extension:Newest Pages and the translation is 0% complete.
Справка по расширениям MediaWiki
Newest Pages
Статус релиза: стабильно
Реализация Служебная страница , Расширение парсера
Описание Provides a list of the most recently created pages on the wiki
Автор(ы) Rob Church (Robchurchобсуждение)
Последняя версия 1.22.0 (2019-09-16)
MediaWiki 1.40+
PHP 7.0+
Изменения в БД Нет
Лицензия GNU General Public License 2.0 или позднее
Скачать
README
CHANGELOG
$wgNewestPagesLimit
Использование общедоступными вики 1,403 (Ranked 209th)
Переведите расширение Newest Pages, если оно доступно на translatewiki.net
Проблемы Открытые задачи · Сообщить об ошибке

The Newest Pages extension provides a flexible dual-use special page which lists the most recently created pages on the wiki. This code doesn't use the recentchanges table, and so items do not expire, as with Special:Newpages.

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

Configuration

$wgNewestPagesLimit
The maximum number of pages that can be listed with this extension. In any case, the number of pages listed will be limited to 5000, but this variable can set a lower limit.

Usage

The list can be accessed as a conventional special page, or through inclusion into another page.

Special page

The special page is located at Special:Newestpages and provides a full interface to filter according to namespace, limit the number of results, and toggle the inclusion of redirect pages.

Inclusion

You can include a list of pages into another page using named parameters, e.g.

{{Special:Newestpages|namespace=User}}

will produce a list of the newest pages in the User namespace.

Available parameters:

  • namespace - Specify which namespace to show pages from (default: -1)
    • Use 0 or - for main namespace
    • Use -1 or all for all namespaces (except MediaWiki namespace)
    • Use namespace name (e.g. User, Talk, etc.) for specific namespaces
  • limit - Number of results to show
    • Default: 50 (can be changed with $wgNewestPagesLimit)
    • Maximum: 5000
  • redirects - Include redirect pages (1) or exclude them (0) (default: 1)

Examples:

Show 5 newest pages from main namespace:

{{Special:Newestpages|namespace=0|limit=5}}

Show 10 newest pages from all namespaces, excluding redirects:

{{Special:Newestpages|namespace=all|limit=10|redirects=0}}

Show 20 newest pages from User namespace, including redirects:

{{Special:Newestpages|namespace=User|limit=20|redirects=1}}