Extension:DynamicPageList (third-party)/pl
A request to archive this extension has been made on Phabricator. See <translate> task <tvar name=1>T353927</tvar></translate> for the archival request and the rationale for the request, and to leave comments about the request. |
To rozszerzenie jest niekompatybilne z 1.35 lub jakimkolwiek późniejszym wydaniem MediaWiki! Zalecamy nie korzystać z tego rozszerzenia na działającej stronie. Dobrowolni programiści mogą zadeklarować chęć aktualizacji tego rozszerzenia tak, aby było zgodne z wersją MediaWiki 1.41 przez zamianę szablonu {{Incompatible }} na {{Incompatible |version=1.35|pledge=~~~~}} .Please see the following alternatives that you may wish to install instead of this extension: |
<translate> This extension is currently not actively maintained!</translate> <translate> Although it may still work, any bug reports or feature requests will more than likely be ignored.</translate> <translate> If you are interested in taking on the task of developing and maintaining this extension, [[<tvar name=request>Special:MyLanguage/Gerrit/Privilege policy#Requesting Gerrit privileges</tvar>|you can request repository ownership]].</translate> <translate> As a courtesy, you may want to contact the author.</translate> <translate> You should also remove this template and list yourself as maintaining the extension in the page's <tvar name=extension>{{Szablon:Rozszerzenie }}</tvar> infobox.</translate> |
DynamicPageList (third party) Status wydania: niewspierane |
|
---|---|
Realizacja | Znaczniki , Funkcja parsera |
Opis | Allows to 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. |
Autor(zy) | |
Ostatnia wersja | Continuous updates |
MediaWiki | 1.32.x - 1.34.x only |
Zmiany w bazie danych | Nie |
Licencja | GNU General Public License 2.0 or later |
Pobieranie | |
Przykład | various sample reports |
see description |
|
Quarterly downloads | Lua error in Module:Extension at line 172: bad argument #1 to 'inNamespace' (unrecognized namespace name 'skin'). |
Public wikis using | Lua error in Module:Extension at line 172: bad argument #1 to 'inNamespace' (unrecognized namespace name 'skin'). |
Przetłumacz rozszerzenie DynamicPageList (third-party) jeżeli jest dostępne na translatewiki.net | |
Problemy | Otwarte zadania · Zgłoś błąd |
The DynamicPageList (third-party) extension is a reporting tool for MediaWiki, listing category members and intersections with various formats and details. For full documentation, see the full original manual or manual (German Manual Hilfe:DynamicPageList).
In its most basic form, DPL 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 a variety of forms, some of which incorporate elements of selected articles.
This extension is invoked with the parser functionExtension:DynamicPageList3 (DPL3), version 3.5.2: Error: No selection criteria found! You must use at least one of the following parameters: category, namespace, titlematch, linksto, uses, createdby, modifiedby, lastmodifiedby, or their 'not' variants
or parser tag <DPL>
.
A Wikimedia-compatible implementation of certain features can be invoked with <DynamicPageList>
.
DPL can result in computationally-expensive database queries. For best performance, use the optional parameters allowcachedresults and/or dplcache where possible.
Instalacja
- <translate> [[<tvar name=2>Special:ExtensionDistributor/DynamicPageList</tvar>|Download]] and move the extracted <tvar name=name>
DynamicPageList
</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/DynamicPageList - <translate> Add the following code at the bottom of your <tvar name=1>LocalSettings.php </tvar> file:</translate>
require_once "$IP/extensions/DynamicPageList/DynamicPageList.php";
- Configure as required if necessary
- 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>
Konfiguracja
DPL configuration settings and their default values, from the manual:
Ustawienia | Domyślnie | Opis |
---|---|---|
ExtDynamicPageList::$allowedNamespaces |
null
|
To be initialized at first use of DPL, array of all namespaces except Media and Special, because we cannot use the DB for these to generate dynamic page lists. Cannot be customized. Use ExtDynamicPageList::$options['namespace'] or ExtDynamicPageList::$options['notnamespace'] for customization.
|
ExtDynamicPageList::$allowUnlimitedCategories |
true |
Allow unlimited categories in the Query |
ExtDynamicPageList::$allowUnlimitedResults |
false |
Allow unlimited results to be shown |
ExtDynamicPageList::$behavingLikeIntersection |
false |
Changes certain default values to comply with Extension:Intersection |
ExtDynamicPageList::$categoryStyleListCutoff |
6 | Max length to format a list of articles chunked by letter as bullet list, if list bigger, columnar format user (same as cutoff arg for CategoryPage::formatList() )
|
ExtDynamicPageList::$fixedCategories |
empty array |
categories has been used |
ExtDynamicPageList::$functionalRichness |
0 | The amount of functionality of DPL that is accesible for the user; to be set by DynamicPageList.php and DynamicPageListMigration.php see the fixcategory command |
ExtDynamicPageList::$maxCategoryCount |
4 | Maximum number of categories allowed in the Query |
ExtDynamicPageList::$maxResultCount |
500 | Maximum number of results to allow |
ExtDynamicPageList::$minCategoryCount |
0 | Minimum number of categories needed in the Query |
ExtDynamicPageList::$options |
no options | If you add a line like the following to your LocalSettings.php, DPL will only run from protected pages: ExtDynamicPageList::$options['RunFromProtectedPagesOnly'] = "Extension DPL (warning): current configuration allows execution from protected pages only."; . There is a whole bunch of other options too; see DPLSetup.php.
|
ExtDynamicPageList::$respectParserCache |
false for <dpl> but true for <DynamicPageList>. |
If set to 'true' DPL will no longer behave dynamically because its output is taken from the ParserCache. In other words, false = make page dynamic ; true = execute only when parser cache is refreshed |
These are all public static variables.
The global variable $wgNonincludableNamespaces is also respected by DPL. It will prevent the contents of the listed namespaces from appearing in DPL's output.
$maxResultCount
is a LIMIT on the SQL query itself. Some DPL query parameters like includematch
are applied after the SQL query, however, so results here may easily be misleading.Functional richness
DynamicPageList has many features; some are expensive, or dangerous in the wrong hands. It is important to choose an appropriate level of functionality for your wiki.
ExtDynamicPageList::setFunctionalRichness(0)
- equivalent to Wikimedia's DPLExtDynamicPageList::setFunctionalRichness(1)
- adds additional formatting parametersExtDynamicPageList::setFunctionalRichness(2)
- adds performance equivalent features for templates and pagelinksExtDynamicPageList::setFunctionalRichness(3)
- allows more-expensive page inclusion features and regular expression queries; expect to use the dplcache parameterExtDynamicPageList::setFunctionalRichness(4)
- permits exotic and potentially dangerous batch update and delete operations; not recommended for public websites
Użycie
Extended DPL functionality
Extension:DynamicPageList3 (DPL3), version 3.5.2: Error: No selection criteria found! You must use at least one of the following parameters: category, namespace, titlematch, linksto, uses, createdby, modifiedby, lastmodifiedby, or their 'not' variants
, or the parser extension tag <DPL>...</DPL>
.
Backwards-compatible functionality
Functionality compatible with Wikimedia's DPL extension can be invoked with <DynamicPageList> .... </DynamicPageList>
.
Overview
Assume you have written some articles about countries. Typically these articles will 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', ..) in a nice way (e.g. as a wikitable)
DPL generates reports on articles
Let us assume that there is an article on Islam. You want to give some information about the spreading of this religion over various countries. But you do not want to create redundancy by repeating information that was already given in the articles on the countries.
In our scenario the natural approach with DPL would be to generate a list of 'countries' (=category) where Islam plays a role (i.e. restrict your selection to articles of category 'Country' which contain a link to 'Islam'). Typically you would want to include part of the text chapter on 'Religion' from each of the relevant countries. You might also want to give the number of inhabitants for each country. The output should be shown as an alphabetically ordered table. It would be nice if the user could easily sort the table by inhabitants or some other criteria.
With DPL you can ..
- 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 (e.g.)
- use multi column output
Which steps are necessary?
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 which 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 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
- name
- date of last change
- popularity
- user who changed them last
- size
- restrict the output to the first n articles or to a random sample
- use descending or ascending sequence
Define attributes you want to see
- article name
- article namespace
- article size
- date of last change
- date of last access
- user who changed them last
Define contents you want to show
- whole article
- contents of certain chapters (identified by headings)
- text portions (defined by special marker tags in the article)
- values of template calls
- substitute the original template by a different one and show the output of that template
Define the output format
- specify headline and footer for your report
- use ordered list, unordered list
- use tables, sorted tables (using javascript)
- format table fields individually by applying templates to their content
- use category style listing
- create "tag clouds" by varying output text size depending on popularity of pages
- multi column output
- truncate title or contents to a certain maximum length
- add a link to the article or to one or more of its chapters
DPL generates reports on categories
Apart from producing a list of pages which match certain criteria, DPL can also create a list of categories a selected set of pages belongs to. This can be useful to get an idea of the semantic scope of a group of pages (which can be defined by some arbitrary criteria). One of the more useful applications would be question like: "To which categories do the pages belong which contain a reference to the current page?"
DPL can be used for bulk editing
Sometimes you want to perform a similar editing task on many articles (like adding a template at the beginning of the text). DPL has a feature which allows you to update other articles based on regular expressions. This feature is experimental and can be disabled in the DPL config file.
DPL interacts with other extensions
There is a special mechanism which allows you to call your own extension inside the result loop of a DPL query. This opens doors for assembling new 'applications' without having to program on php level. For example you can create menu trees for Extension:Treeview, you can generate nice bar graphs or pie charts using DPL together with Ploticus, you can call 'gallery' or whatever you want...
DPL is a platform for building other applications
The power of DPL makes it possible to create applications on wiki template level which would normally require PHP programming. One example of this is a light-weight "semantic wiki" approach. See the DPL demo page for details.
DPL and performance
With a few lines of DPL code it is possible to create huge output and CPU load (think of a DPL query which tries to include the contents of all articles in your mediawiki ;-)). Normally this is not a problem because users who write DPL queries have some level of expertise. If you are afraid, however, you can restrict the execution of DPL queries to protected articles.
Apart from that the general performance of DPL on medium-size wikis is quite acceptable (see the performance tests on the dpldemo website). Use of allowcachedresults and/or dplcache where possible can improve performance.
Zobacz też
Further reading
DPL can do much more than we can explain here. The complete full original manual or manual (German Manual Hilfe:DynamicPageList) describes more.
Related extensions
- Manual:Managing data in MediaWiki – An overview and comparison.
- Extension:Semantic MediaWiki turns links and data in wiki pages into queryable information
- Extension:NukeDPL deletes pages based on DynamicPageList; also useful for testing different DPL settings without actually deleting the pages
- Pages with script errors
- Pages with broken file links
- Extensions incompatible with 1.35/pl
- Unmaintained extensions/pl
- Tag extensions/pl
- Parser function extensions/pl
- Extensions with manual MediaWiki version
- GPL licensed extensions/pl
- Extensions in Wikimedia version control/pl
- All extensions/pl
- Extensions not in ExtensionJson
- Extensions not using extension registration
- Category extensions/pl
- List extensions/pl
- Namespace extensions/pl
- Special page extensions/pl
- Table extensions/pl
- Page content extensions/pl
- Tag cloud extensions/pl
- Category intersection extensions/pl