2 package IkiWiki::Plugin::progress;
8 my $percentage_pattern = qr/[0-9]+\%?/; # pattern to validate percentages
11 hook(type => "getsetup", id => "progress", call => \&getsetup);
12 hook(type => "preprocess", id => "progress", call => \&preprocess);
13 hook(type => "format", id => "progress", call => \&format);
16 sub getsetup () { #{{{
24 sub preprocess (@) { #{{{
29 if (defined $params{percent}) {
30 $fill = $params{percent};
31 ($fill) = $fill =~ m/($percentage_pattern)/; # fill is untainted now
32 if (! defined $fill || ! length $fill || $fill > 100 || $fill < 0) {
33 error("illegal percent value $params{percent}");
35 elsif ($fill !~ /%$/) {
39 elsif (defined $params{totalpages} and defined $params{donepages}) {
40 add_depends($params{page}, $params{totalpages});
41 add_depends($params{page}, $params{donepages});
43 my @pages=keys %pagesources;
46 foreach my $page (@pages) {
47 $totalcount++ if pagespec_match($page, $params{totalpages}, location => $params{page});
48 $donecount++ if pagespec_match($page, $params{donepages}, location => $params{page});
51 if ($totalcount == 0) {
55 my $number = $donecount/$totalcount*100;
56 $fill = sprintf("%u%%", $number);
60 error("need either `percent` or `totalpages` and `donepages` parameters");
64 <div class="progress">
65 <div class="progress-done" style="width: $fill">$fill</div>
73 # If HTMLScrubber has removed the style attribute, then bring it back
75 $params{content} =~ s!<div class="progress-done">($percentage_pattern)</div>!<div class="progress-done" style="width: $1">$1</div>!g;
77 return $params{content};