Help:Dynamic page list
From Memory Alpha, the free Star Trek reference.
DynamicPageList is a Mediawiki extension originally developed for Wikinews. It allows Memory Alpha users to create a list of pages that are listed in a set of categories. For more information see Dynamic Page List on MediaWiki.
Contents |
[edit] Use
DynamicPageList can be used with XML-like syntax in the wiki edit view. The parameters control the pages to list, the display order, and the display mode. See the following sections for information on each parameter. For example, the following are the oldest five pages on Memory Alpha that need one or more citations:
<dpl> category = Memory Alpha pages needing citation count = 5 order = ascending addfirstcategorydate = true </dpl>
- 16:06, 15 March 2008: A Private Little War (episode)
- 16:23, 15 March 2008: All Our Yesterdays (episode)
- 22:07, 22 January 2008: Anesthesia
- 21:37, 10 February 2008: Antigraviton
- 00:44, 13 April 2008: Antiproton
Below are some commonly-used options and parameters. For a complete set of DynamicPageList commands, see the manual on the DPL website.
[edit] Page selection
- category
- lists categories from which to select articles. DynamicPageList will list pages that are found in every category listed on a separate category line (i.e. an AND operation). To perform an OR operation, separate categories with the pipe character ("|") on a single category line. A minimum and maximum number of entries to list is set in the extension's source code. You may use magic words like {{CURRENTMONTHNAME}} in the category name.
- The syntax is
category = 1st category name | 2nd category name | ...
This example will list pages that have [[Category:TOS performers]] OR [[Category:TAS performers]], AND [[Category:ENT performers]]:
<dpl> category = TOS performers|TAS performers category = ENT performers </dpl>
- notcategory
- restricts the list of pages to those not in a particular category. You can use magic words like {{CURRENTMONTHNAME}} in the category name.
- The syntax is
notcategory = category name
This example will list pages that have [[Category:TAS performers]] but NOT [[Category:TOS performers]]:
<dpl> category = TAS performers notcategory = TOS performers </dpl>
- namespace
- restricts the list of pages displayed to those in one of the listed namespaces, specified by name (see the List of namespaces). To select the main namespace, use a null string as the namespace parameter (i.e.
namespace =). An invalid name produces an error message.- Note that namespace ids are no longer valid as namespace arguments.
- The syntax is
namespace = 1st namespace name | 2nd namespace name | ...
<dpl> category = Memory Alpha maintenance namespace = Template </dpl>
- redirects
- determines whether or not to include redirect pages. The value can be exclude (default, don't list redirects), include (list redirects), or only (don't list pages that aren't redirects).
<dpl> category = Nicknames redirects = only </dpl>
- count
- restricts the number of results that are shown. By default, the pages added to the category most recently are shown (see order). Note that the extension will not list more results than the maximum defined in the extension source code.
<dpl> category = Performers count = 3 </dpl>
[edit] Details displayed
- shownamespace
- displays the namespace in the page names. The value can be true (default, display in name: Help:Contents) or false (don't display in name: Contents).
- addfirstcategorydate
- shows the date each article was added to category. The value can be true (display date) or false (default, don't display date). If many categories are specified, it uses the first category. The linked page names are prepended with the date formatted according to your date display preferences.
<dpl> category = Aquans addfirstcategorydate = true </dpl>
- mode
- determines the format of the list. The value can be unordered (default, outputs a bulleted list, HTML tag "ul"), ordered (outputs numbered list, HTML tag "ol"), none (outputs plain text with line breaks), or inline (outputs an inline list separated by the character(s) specified in the 'inlinetext' parameter).
unordered: <dpl> category = Constellations mode = unordered </dpl> ordered: <dpl> category = Constellations mode = ordered </dpl> plain text: <dpl> category = Constellations mode = none </dpl> inline: <dpl> category = Constellations mode = inline </dpl>
unordered:
- Auriga
- Cygnus
- Eridanus
- Gemini (constellation)
- Great Horn
- Leo (constellation)
- Libra
- Orion (constellation)
- The Runners
ordered:
- Auriga
- Cygnus
- Eridanus
- Gemini (constellation)
- Great Horn
- Leo (constellation)
- Libra
- Orion (constellation)
- The Runners
plain text:
Auriga
Cygnus
Eridanus
Gemini (constellation)
Great Horn
Leo (constellation)
Libra
Orion (constellation)
The Runners
inline:
Auriga - Cygnus - Eridanus - Gemini (constellation) - Great Horn - Leo (constellation) - Libra - Orion (constellation) - The Runners
- inlinetext
- defines the inline text separator to be used when
mode = inlineis specified. The default is - .
<dpl> category = Asteroids mode = inline shownamespace = false inlinetext = • </dpl>
Asteroid alpha 331 • Asteroid beta 671 • Asteroid gamma 601 • Asteroid belts • Chamra Vortex asteroid • Internment Camp 371 • Rura Penthe • Yonada
[edit] Order
- ordermethod
- determines the order and date to display. The value can be categoryadd (output sorted by date pages added to first category), counter (output sorted based on number of times pages have been viewed, i.e. ~popularity), size (output sorted based on size of articles), firstedit (output sorted by date pages were first edited, i.e. page creation), lastedit (output sorted by date pages were last edited), title (default, output sorted by article (prefix+)title) or titlewithoutnamespace (output sorted by article title regardless of namespace).
lastedit: <dpl> category = Ba'ku addfirstcategorydate = true ordermethod = lastedit </dpl> categoryadd: <dpl> category = Ba'ku addfirstcategorydate = true ordermethod = categoryadd </dpl>
lastedit:
- 22:54, 7 February 2007: Artim
- 22:54, 7 February 2007: Anij
- 22:56, 7 February 2007: Tournel
- 22:55, 7 February 2007: Sojef
- 22:58, 7 February 2007: Unnamed Son'a
- 01:10, 8 February 2007: Ru'afo
- 22:55, 7 February 2007: Gallatin
categoryadd:
- order
- decides the sort direction. The value can be descending (default, most recent to oldest) or ascending (oldest to most recent).


