Select by recently changed (example): Difference between revisions

From DynamicPageList3 Manual
Content added Content deleted
imported>FrozenPlum
mNo edit summary
imported>FrozenPlum
(Fix these examples)
Line 2:
{{DPL manual|section=Examples|subsection=Select by recently changed}}
 
==List Extension pages which wererecently edited recently==
List the last edited pages from the ''Fruit examples'' category:
The following example:
 
<pre>{{#dpl:
|category=Fruit examples
|namespace=Extension
|addeditdate=true
|ordermethod=lastedit
|order=descending
|count=103
}}</pre>
 
'''Result:'''<br>
Would produce the last ten edited articles in the Extension namespace:
 
{{#dpl:
|category=Fruit examples
|namespace=Extension
|addeditdate=true
|ordermethod=lastedit
|order=descending
|count=103
}}
 
==List Extension pages with the oldest last edit dates==
List pages in the ''Fruit examples'' category with the oldest last edit dates.
The following example:
 
<pre>{{#dpl:
|category=Fruit examples
|namespace=Extension
|addeditdate=true
|ordermethod=lastedit
|order=ascending
|count=103
}}</pre>
 
'''Result:'''<br>
Would produce the first ten edited articles in the Extension namespace:
 
{{#dpl:
|category=Fruit examples
|namespace=Extension
|addeditdate=true
|ordermethod=lastedit
|order=ascending
|count=103
}}
 
==List the last seven revisions of Extension pages which have anfrom edit date later or equal to July 19, 2015==
List the last 3 revisions of ''Fruit examples'' which have an edit date later or equal to April 1, 2022:
The following example:
 
<pre>{{#dpl:
|category=Fruit examples
|namespace=Extension
|addeditdate=true
|allrevisionssince=20152022-0704-1901
|ordermethod=lastedit
|order=ascending
|count=73
}}</pre>
 
'''Result:'''<br>
Would produce the last seven revision of articles in the Extension namespace:
 
{{#dpl:
|category=Fruit examples
|namespace=Extension
|addeditdate=true
|allrevisionssince=20152022-0704-1901
|ordermethod=lastedit
|order=ascending
|count=73
}}
 

Revision as of 03:02, 3 October 2022

This example is currently non-working, it may be replaced or removed at a later date to improve the clarity of this manual. As this needs to be done at a deliberate pace, the Gamepedia DPL3 Manual can be used in the interim, keeping in mind some functions may have changed.
Manual Examples Select by recently changed

List pages recently edited

List the last edited pages from the Fruit examples category:

{{#dpl:
|category=Fruit examples
|namespace=
|addeditdate=true
|ordermethod=lastedit
|order=descending
|count=3
}}

Result:

{{#dpl: |category=Fruit examples |namespace= |addeditdate=true |ordermethod=lastedit |order=descending |count=3 }}

List pages with the oldest last edit dates

List pages in the Fruit examples category with the oldest last edit dates.

{{#dpl:
|category=Fruit examples
|namespace=
|addeditdate=true
|ordermethod=lastedit
|order=ascending
|count=3
}}

Result:

{{#dpl: |category=Fruit examples |namespace= |addeditdate=true |ordermethod=lastedit |order=ascending |count=3 }}

List the last revisions from edit date

List the last 3 revisions of Fruit examples which have an edit date later or equal to April 1, 2022:

{{#dpl:
|category=Fruit examples
|namespace=
|addeditdate=true
|allrevisionssince=2022-04-01
|ordermethod=lastedit
|order=ascending
|count=3
}}

Result:

{{#dpl: |category=Fruit examples |namespace= |addeditdate=true |allrevisionssince=2022-04-01 |ordermethod=lastedit |order=ascending |count=3 }}