ThisPerl script can be used to updateWP:WSS/ST. It takes 3 filenames as parameters:
To run the script on *nix systems, you may need to correct the path to perl on your machine found in the first line.
#!/usr/bin/perlopen Sizes, $ARGV[0] || die "Cannot open $ARGV[0]: $!\n";open Types, $ARGV[1] || die "Cannot open $ARGV[1]: $!\n";open Out, ">$ARGV[2]" || die "Cannot open $ARGV[2]: $!\n";sub Bin { my $v = $_[0]; if ($v > 800) { return sprintf("'''%i pages'''", $v/200 + 1); } if ($v >= 100) { return sprintf("<%i00", $v/100 + 1); } return "<100" if $v >= 50; return "<50" if $v >= 25; return "<25" if $v >= 10; return "<10";}while ($str = <Sizes>) { if ($str =~ /\{\{cl\|(.*)\}\}\s+'*(\d+)'*/) { $category = $1;$number = $2;$category =~ s/_/ /g; $size{$category} = $number; }}while ($str = <Types>) { if ($str =~ /(.*?\[\[\:Category\:([^|]*)\|.*\{\{tl\|.*\}\})/ && $size{$2}) { $bin = Bin($size{$2});print Out "$1 - $bin on March 16\n"; } else { print Out $str; }}This is the list of stub types that are not listed atWP:WSS/ST. The stub types that are listed in nonstanard way (and therefore weren't caught by the script) are also here. Feel free to remove such stub types from this list.
| This userpage has been blanked. If this is your userpage, you can retrieve the contents of this page in thepage history. Alternatively, if you would like it deleted, simply replace the content of this page with {{db-u1}}. |