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.)
imported>FrozenPlum
m (Forgot to remove tempnote)
 
(12 intermediate revisions by 4 users not shown)
Line 1: Line 1:
{{DPL manual|section=Examples|subsection=Select by recently changed}}
=List DPL manual pages which were edited recently=
The following example:


==List pages recently edited==
<pre><nowiki>{{#dpl:
List the last edited pages from the ''Fruit examples'' category:
namespace=DPL

<pre>{{#dpl:
|category=Fruit examples
|namespace=
|addeditdate=true
|addeditdate=true
|ordermethod=lastedit
|ordermethod=lastedit
|order=descending
|order=descending
|count=10
|count=3
}}</nowiki></pre>
}}</pre>


'''Result:'''<br>
Would produce the last ten edited articles in the DPL namespace:


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


=List DPL manual pages with the oldest last edit dates=
==List pages with the oldest last edit dates==
List pages in the ''Fruit examples'' category with the oldest last edit dates.
The following example:


<pre><nowiki>{{#dpl:
<pre>{{#dpl:
|category=Fruit examples
namespace=DPL
|namespace=
|addeditdate=true
|addeditdate=true
|ordermethod=lastedit
|ordermethod=lastedit
|order=ascending
|order=ascending
|count=10
|count=3
}}</nowiki></pre>
}}</pre>


'''Result:'''<br>
Would produce the first ten edited articles in the DPL namespace:


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


=List the last seven revisions of DPL manual pages which have an edit date later or equal to July 19, 2015=
==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:
The following example:


<pre><nowiki>{{#dpl:
<pre>{{#dpl:
|category=Fruit examples
namespace=DPL
|namespace=
|addeditdate=true
|addeditdate=true
|allrevisionssince=2015-07-19
|allrevisionssince=2022-04-01
|ordermethod=lastedit
|ordermethod=lastedit
|order=ascending
|order=ascending
|count=7
|count=3
}}</nowiki></pre>
}}</pre>


'''Result:'''<br>
Would produce the last seven revision of articles in the DPL namespace:


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

[[Category:Miscellaneous examples]]

Latest revision as of 03:02, 3 October 2022

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