Content deleted Content added
Updating published sources: WikiProjectWorker: * Done. |
Updating published sources: WikiProjectTagger, WikiProjectWorker: * Retire these tasks, WikiProject templates have changed a bunch since I last ran these. |
||
(2 intermediate revisions by the same user not shown) | |||
Line 1:
{{ombox|type=notice|text= Approved 2009-04-08<br />[[Wikipedia:Bots/Requests for approval/AnomieBOT 28]]}}
{{ombox|type=notice|text= Retired 2024-01-29. Haven't had call to run this in a while, and the related templates have changed so I'd probably have to update this code to run it again.}}
<syntaxhighlight lang="perl">
package tasks::WikiProjectWorker;
Line 10 ⟶ 11:
Task: WikiProjectWorker
BRFA: Wikipedia:Bots/Requests for approval/AnomieBOT 28
Status:
Created: 2009-03-27
OnDemand: true
Line 32 ⟶ 33:
### Request link, for edit summary.
my $req="[[User:AnomieBOT/req/WikiProject
### Increment this number every time a new run is started, so we don't have to
### mess around with deleting previous runs' database entries.
my $seq=
### How to find the pages?
my %catmap = (
"Category:
);
my @cats=keys %catmap;
Line 80 ⟶ 74:
# Banner configurations.
my $main_banner='WikiProject
my %banner_cfgs=(
'WikiProject
meta =>
canonicalize => 'WikiProject Higher education',
},
);
# Extra parameters (e.g. workgroup).
my @extra_params=(
my $taggingwith = @extra_params ? '|' . join( '|', @extra_params ) : '';
Line 121 ⟶ 116:
=for info
Approved 2009-04-08<br />[[Wikipedia:Bots/Requests for approval/AnomieBOT 28]]
=for info
Retired 2024-01-29. Haven't had call to run this in a while, and the related templates have changed so I'd probably have to update this code to run it again.
=cut
|