Extension:DynamicPageList3/ru
DynamicPageList3 Статус релиза: стабильно |
|
---|---|
Реализация | Тег , Функция парсера |
Описание | Create lists of other articles based on their category, namespace, title, references or template usage and include contents or arguments of template calls of those articles into your page. |
Автор(ы) | Universal Omega, Alexia E. Smith, Algorithmix, Dangerville, IlyaHaykinson, Theaitetos, Unendlich~dewiki |
Последняя версия | 3.5.2 (2023-01-14) |
MediaWiki | 1.39.0+ |
Изменения в БД | Да |
Composer | universal-omega/dynamic-page-list3 |
Лицензия | GNU General Public License 3.0 или позднее |
Скачать | GitHub: |
Пример | DynamicPageList3 Manual |
|
|
|
|
Переведите расширение DynamicPageList3 | |
The DynamicPageList3 extension is a reporting tool for MediaWiki, listing category members and intersections with various formats and details. For full documentation, see the manual.
When invoked with a basic set of selection parameters, DynamicPageList3 displays a list of pages in one or more categories. Selections may also be based on factors such as author, namespace, date, name pattern, usage of templates, or references to other articles. Output takes various forms, some of which incorporate elements of selected articles.
This extension is invoked with the parser function {{#dpl: .... }}
or parser tag <DPL>
.
A Wikimedia-compatible implementation of certain features can be invoked with <DynamicPageList>
.
Complex lookups can result in computationally expensive database queries. However, by default, all output is cached for one hour to reduce the need to rerun the query for every page load. The Parameters: Other Parameters manual page contains information on parameters that can be used to disable the cache and allow instant updates.
- Manual and Complete Documentation
- DynamicPageList3 manual
- Исходный код
- Исходный код на GitHub
- Bugs and Feature Requests
- Issue and request tracker
Установка
- Download и распакуйте файл(ы) в папку с названием
DynamicPageList3
в вашей папкеextensions/
. - Добавьте следующий код в конце вашего файла LocalSettings.php :
wfLoadExtension( 'DynamicPageList3' );
- If necessary configure as required.
- Готово – Перейдите на страницу Special:Version на своей вики, чтобы удостовериться в том, что расширение успешно установлено.
Конфигурация
These are DPL3's configuration settings, along with their default values.
To change them, ensure they are defined before including the extension on the wiki.
$dplSettings
to $wgDplSettings
. This was to facilitate compatibility with MediaWiki 1.25's extension registration change.Настройка | По умолчанию | Описание |
---|---|---|
$wgDplSettings['allowedNamespaces']
|
null
|
By default, all existing namespaces are used when DPL3 initializes. Customize this setting with an array of namespace constants to restrict DPL3 to work only in those namespaces. |
$wgDplSettings['allowUnlimitedCategories']
|
false
|
Set this to true to ignore 'maxCategoryCount' and allow unlimited categories. Please note that large amounts of categories in a query can slow down or crash servers.
|
$wgDplSettings['allowUnlimitedResults']
|
false
|
Set this to true to ignore 'maxResultCount' and allow unlimited results. Please note that large result sets may result in slow or failed page loads.
|
$wgDplSettings['alwaysCacheResults']
|
false
|
Set this to true to ignore 'allowcachedresults' and always enable the parser cache.
|
$wgDplSettings['categoryStyleListCutoff']
|
6
|
Maximum number of items in a category list before being cut off. |
$wgDplSettings['functionalRichness']
|
3
|
Set the level of parameters available to end users. |
$wgDplSettings['maxCategoryCount']
|
4
|
Maximum number of categories to allow in queries. |
$wgDplSettings['minCategoryCount']
|
0
|
Minimum number of categories to allow in queries. |
$wgDplSettings['maxResultCount']
|
500
|
Maximum number of results to return from a query. |
$wgDplSettings['recursiveTagParse']
|
false
|
Do recursive tag parsing on <dpl> parser tags converting tags and functions such as magic words like {{PAGENAME}} . This is similar to the {{#dpl}} parser function call, but may not work the same in all cases.
|
$wgDplSettings['runFromProtectedPagesOnly']
|
false
|
Set this to true to allow DPL3 to run from protected pages only. This is recommended if wiki administrators are having issues with malicious users creating computationally intensive queries.
|
$wgDplSettings['handleSectionTag']
|
false
|
Set this to true to have DPL3 handle <section> tags outside of DPL parser tags.
|
$wgDplSettings['maxQueryTime']
|
10000
|
Maximum allowed time for database queries in milliseconds. |
$wgDplSettings['queryCacheTime']
|
0
|
Configure query cache time. The query cache cannot be purged. Suggested value between 30 to 600. |
The global variable $wgNonincludableNamespaces is automatically respected by DynamicPageList3.
It will prevent the contents of the listed namespaces from appearing in DynamicPageList3's output.
$wgDplSettings['maxResultCount']
is a LIMIT on the SQL query itself. Some DynamicPageList3 query parameters like includematch
are applied after the SQL query, however, so results here may easily be misleading.Functional Richness
DynamicPageList3 has many features unlocked based on the maximum functional richness level.
Some can cause high CPU or database load and should be used sparingly.
{{{1}}}
- equivalent to Wikimedia's DynamicPageList (Intersection){{{1}}}
- adds additional formatting parameters{{{1}}}
- adds performance equivalent features for templates and pagelinks{{{1}}}
- allows more-expensive page inclusion features and regular expression queries{{{1}}}
- permits exotic and potentially dangerous batch update and delete operations; not recommended for public websites. Includes debugging parameters for testing and development.
Использование
Расширенная функциональность DPL
Extended dynamic page lists are invoked by using the parser function {{#dpl: .... }}
, or the parser extension tag <DPL>...</DPL>
.
Обратная совместимость
Functionality compatible with Wikimedia's DynamicPageList extension can be invoked with <DynamicPageList>...</DynamicPageList>
.
Further information can be found on the Compatibility manual page.
Usage Philosophy and Overview
With the assumption there are some articles written about countries those articles will typically have three things in common:
- They will belong to a common category
- They will have a similar chapter structure, i.e., they will contain paragraphs named 'Religion' or 'History'
- They will use a template which is used to present highly structured short data items ('Capital', 'Inhabitants', ..) nicely (e.g., as a wikitable)
Generate a report based on countries
If there was a need to assemble a report of what countries practice a certain religion, this could be easily done with the category
and linksto
parameters.
{{#dpl:
category=countries
|linksto=Pastafarianism
}}
With DynamicPageList3, one could:
- Generate a list of all those articles (or a random sample)
- Show metadata of the articles (popularity, date of last update, ..)
- Show one or more chapters of the articles ('transclude' content)
- Show parameter values which are passed to the common template
- Order articles appropriately
- Present the result in a sortable table
- Generate multiple column output
Какие шаги обязательны?
Find the articles you want to list:
- Select by a logical combination (AND, OR, NOT) of categories
- Specify a range for the number of categories the article must be assigned to
- Select by a logical combination (AND, OR, NOT) of namespaces
- Define a pattern which must match the article's name
- Name a page to which the article must or must not link
- Name a template which the article must or must not use
- Name a text pattern that must occur within external links from a page
- Exclude or include redirections
- Restrict your search to stable pages or quality pages ("flagged revisions")
- Use other criteria for selection like the author, date of last change, etc.
- Define regular expressions to match the contents of pages you want to include
Order the result list of articles according to
- Название страницы
- Размер страницы
- Дата последнего изменения
- Последний участник, вносивший правку
Define attributes you want to see
- Название страницы
- Пространство имён страницы
- Размер страницы
- Дата последнего изменения
- Дата последнего доступа
- Последний участник, вносивший правку
Define contents you want to show
- Вся страница
- Contents of certain sections (identified by headings)
- Text portions (defined by special marker tags in the article)
- Values of template calls
- Use a custom template to show output
Define the output format
- Specify header and footer for the default output
- Использовать упорядоченный список, неупорядоченный список
- Использовать таблицы
- Format table fields individually by applying templates to their content
- Use category style listing
Truncate title or contents to a certain maximum length
- Add a link to the article or one or more of its sections
Considerations
Performance
DPL3's code execution and database access are typically fast for category and article lookups.
However, using loose LIKE and REGEXP match parameters and/or requesting large data sets can result in long database access times.
Parser time should also be taken into consideration.
For example, having the query of image results go into a template that displays them will result in a parser media transform for each one.
This can quickly eat up 2MBs of RAM per media transform.
Version 3.4.0 introduces two new configuration options, $wgDplSettings['maxQueryTime']
, which allows configuration of the max execution length for queries, in milliseconds, and $wgDplSettings['queryCacheTime']
, which allows configuration of the query cache. It also supports PoolCounter to limit query concurrency.
См. также
Further reading
DynamicPageList3 can do much more than we can explain here.
A complete manual is available with full parameter documentation.
- Manual:Управление данными в MediaWiki – An overview and comparison.
Это расширение включено в следующие вики-фермы/хостинги и/или пакеты: Это не исчерпывающий список. Некоторые вики-фермы/хостинги и/или пакеты могут содержать это расширение, даже если они не перечислены здесь. Всегда сверяйтесь со своими вики-фермами/хостингами или комплектами/бандлами для подтверждения. |
- Stable extensions/ru
- Tag extensions/ru
- Parser function extensions/ru
- Extensions supporting Composer/ru
- GPL licensed extensions/ru
- Extensions in GitHub version control/ru
- ParserFirstCallInit extensions/ru
- LoadExtensionSchemaUpdates extensions/ru
- ParserAfterTidy extensions/ru
- All extensions/ru
- Extensions included in BlueSpice/ru
- Extensions included in Fandom/ru
- Extensions included in Miraheze/ru
- Extensions included in MyWikis/ru
- Extensions included in wiki.gg/ru
- Extensions included in WikiForge/ru
- Category extensions/ru
- List extensions/ru
- Namespace extensions/ru
- Special page extensions/ru
- Table extensions/ru
- Page content extensions/ru
- Tag cloud extensions/ru
- Category intersection extensions/ru