Select by recently changed (example): Difference between revisions

From DynamicPageList3 Manual
Content added Content deleted
imported>FrozenPlum
m (FrozenPlum moved page Example: Select by recently changed to Select by recently changed (example) without leaving a redirect)
imported>FrozenPlum
m (Categorize for now so I know what needs cleaning up later)
Line 66: Line 66:
}}
}}


[[Category:Miscellaneous examples]]
<!-- Extension prefix in other languages:

[[de:Erweiterung:{{subst:BASEPAGENAME}}]]
[[es:Extensión:{{subst:BASEPAGENAME}}]]
[[fr:Extension:{{subst:BASEPAGENAME}}]]
[[it:Estensione:{{subst:BASEPAGENAME}}]]
[[nl:Uitbreiding:{{subst:BASEPAGENAME}}]]
[[pl:Rozszerzenie:{{subst:BASEPAGENAME}}]]
[[pt:Extensão:{{subst:BASEPAGENAME}}]]
[[ru:Расширение:{{subst:BASEPAGENAME}}]]
[[zh:扩展:{{subst:BASEPAGENAME}}]]
-->

Revision as of 05:49, 3 April 2022

Manual Examples Select by recently changed

List Extension pages which were edited recently

The following example:

{{#dpl:
namespace=Extension
|addeditdate=true
|ordermethod=lastedit
|order=descending
|count=10
}}

Would produce the last ten edited articles in the Extension namespace:

{{#dpl: namespace=Extension |addeditdate=true |ordermethod=lastedit |order=descending |count=10 }}

List Extension pages with the oldest last edit dates

The following example:

{{#dpl:
namespace=Extension
|addeditdate=true
|ordermethod=lastedit
|order=ascending
|count=10
}}

Would produce the first ten edited articles in the Extension namespace:

{{#dpl: namespace=Extension |addeditdate=true |ordermethod=lastedit |order=ascending |count=10 }}

List the last seven revisions of Extension pages which have an edit date later or equal to July 19, 2015

The following example:

{{#dpl:
namespace=Extension
|addeditdate=true
|allrevisionssince=2015-07-19
|ordermethod=lastedit
|order=ascending
|count=7
}}

Would produce the last seven revision of articles in the Extension namespace:

{{#dpl: namespace=Extension |addeditdate=true |allrevisionssince=2015-07-19 |ordermethod=lastedit |order=ascending |count=7 }}