Select by recently changed (example): Difference between revisions

From DynamicPageList3 Manual
Content added Content deleted
mNo edit summary
Line 4: Line 4:
The following example:
The following example:


<pre><nowiki>{{#dpl:
<pre>{{#dpl:
namespace=Extension
namespace=Extension
|addeditdate=true
|addeditdate=true
Line 10: Line 10:
|order=descending
|order=descending
|count=10
|count=10
}}</nowiki></pre>
}}</pre>


Would produce the last ten edited articles in the Extension namespace:
Would produce the last ten edited articles in the Extension namespace:
Line 25: Line 25:
The following example:
The following example:


<pre><nowiki>{{#dpl:
<pre>{{#dpl:
namespace=Extension
namespace=Extension
|addeditdate=true
|addeditdate=true
Line 31: Line 31:
|order=ascending
|order=ascending
|count=10
|count=10
}}</nowiki></pre>
}}</pre>


Would produce the first ten edited articles in the Extension namespace:
Would produce the first ten edited articles in the Extension namespace:
Line 46: Line 46:
The following example:
The following example:


<pre><nowiki>{{#dpl:
<pre>{{#dpl:
namespace=Extension
namespace=Extension
|addeditdate=true
|addeditdate=true
Line 53: Line 53:
|order=ascending
|order=ascending
|count=7
|count=7
}}</nowiki></pre>
}}</pre>


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

Revision as of 23:19, 29 July 2019

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 }}