]> sipb.mit.edu Git - ikiwiki.git/blobdiff - IkiWiki/Plugin/progress.pm
Provide a UUID in edittemplate templates.
[ikiwiki.git] / IkiWiki / Plugin / progress.pm
index 3b664f4cb29ecc4df553db0cf6722de7d00ce585..d27df5ca894b3aacf77fb441901fb5e47cf359b9 100644 (file)
@@ -18,6 +18,7 @@ sub getsetup () {
                plugin => {
                        safe => 1,
                        rebuild => undef,
+                       section => "widget",
                },
 }
 
@@ -36,16 +37,12 @@ sub preprocess (@) {
                $fill.="%";
        }
        elsif (defined $params{totalpages} and defined $params{donepages}) {
-               add_depends($params{page}, $params{totalpages}, content => 0);
-               add_depends($params{page}, $params{donepages}, content => 0);
-
-               my @pages=keys %pagesources;
-               my $totalcount=0;
-               my $donecount=0;
-               foreach my $page (@pages) {
-                       $totalcount++ if pagespec_match($page, $params{totalpages}, location => $params{page});
-                       $donecount++ if pagespec_match($page, $params{donepages}, location => $params{page});
-               }
+               my $totalcount=pagespec_match_list(
+                       $params{page}, $params{totalpages},
+                       deptype => deptype("presence"));
+               my $donecount=pagespec_match_list(
+                       $params{page}, $params{donepages},
+                       deptype => deptype("presence"));
                
                if ($totalcount == 0) {
                        $fill = "100%";