Select by recently changed (example): Difference between revisions

From DynamicPageList3 Manual
Content added Content deleted
m (Alianin moved page DPL:Example - Select by Recently Changed to Extension:DPL3/Example: Select by recently changed without leaving a redirect: Changing namespaces.)
No edit summary
Line 1: Line 1:
{{DPL manual|section=Examples|subsection=Select by recently changed}}
=List DPL manual pages which were edited recently=

==List Extension pages which were edited recently==
The following example:
The following example:


<pre><nowiki>{{#dpl:
<pre><nowiki>{{#dpl:
namespace=DPL
namespace=Extension
|addeditdate=true
|addeditdate=true
|ordermethod=lastedit
|ordermethod=lastedit
Line 10: Line 12:
}}</nowiki></pre>
}}</nowiki></pre>


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


{{#dpl:
{{#dpl:
namespace=DPL
namespace=Extension
|addeditdate=true
|addeditdate=true
|ordermethod=lastedit
|ordermethod=lastedit
Line 20: Line 22:
}}
}}


=List DPL manual pages with the oldest last edit dates=
==List Extension pages with the oldest last edit dates==
The following example:
The following example:


<pre><nowiki>{{#dpl:
<pre><nowiki>{{#dpl:
namespace=DPL
namespace=Extension
|addeditdate=true
|addeditdate=true
|ordermethod=lastedit
|ordermethod=lastedit
Line 31: Line 33:
}}</nowiki></pre>
}}</nowiki></pre>


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


{{#dpl:
{{#dpl:
Line 41: Line 43:
}}
}}


=List the last seven revisions of DPL manual pages which have an edit date later or equal to July 19, 2015=
==List the last seven revisions of Extension pages which have an edit date later or equal to July 19, 2015==
The following example:
The following example:


<pre><nowiki>{{#dpl:
<pre><nowiki>{{#dpl:
namespace=DPL
namespace=Extension
|addeditdate=true
|addeditdate=true
|allrevisionssince=2015-07-19
|allrevisionssince=2015-07-19
Line 53: Line 55:
}}</nowiki></pre>
}}</nowiki></pre>


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


{{#dpl:
{{#dpl:
namespace=DPL
namespace=Extension
|addeditdate=true
|addeditdate=true
|allrevisionssince=2015-07-19
|allrevisionssince=2015-07-19

Revision as of 10:32, 12 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=DPL |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 }}