]> sipb.mit.edu Git - ikiwiki.git/commitdiff
change calling convention for preprocessor functions
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>
Mon, 1 May 2006 23:18:09 +0000 (23:18 +0000)
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>
Mon, 1 May 2006 23:18:09 +0000 (23:18 +0000)
IkiWiki/Render.pm

index f9da33e300e6837cf9e1224b332dbb4e0383b22c..3006b64d46930276de4f630b6c5d3ee83874184b 100644 (file)
@@ -146,7 +146,7 @@ sub preprocess ($$) { #{{{
                        while ($params =~ /(\w+)=\"([^"]+)"(\s+|$)/g) {
                                $params{$1}=$2;
                        }
                        while ($params =~ /(\w+)=\"([^"]+)"(\s+|$)/g) {
                                $params{$1}=$2;
                        }
-                       return $commands{$command}->($page, %params);
+                       return $commands{$command}->(page => $page, %params);
                }
                else {
                        return "[[bad directive $command]]";
                }
                else {
                        return "[[bad directive $command]]";
@@ -188,7 +188,6 @@ sub get_inline_content ($$) { #{{{
 } #}}}
 
 sub preprocess_inline ($@) { #{{{
 } #}}}
 
 sub preprocess_inline ($@) { #{{{
-       my $parentpage=shift;
        my %params=@_;
        
        if (! exists $params{pages}) {
        my %params=@_;
        
        if (! exists $params{pages}) {
@@ -200,11 +199,11 @@ sub preprocess_inline ($@) { #{{{
        if (! exists $params{show} && $params{archive} eq "no") {
                $params{show}=10;
        }
        if (! exists $params{show} && $params{archive} eq "no") {
                $params{show}=10;
        }
-       if (! exists $depends{$parentpage}) {
-               $depends{$parentpage}=$params{pages};
+       if (! exists $depends{$params{page}}) {
+               $depends{$params{page}}=$params{pages};
        }
        else {
        }
        else {
-               $depends{$parentpage}.=" ".$params{pages};
+               $depends{$params{page}}.=" ".$params{pages};
        }
 
        my $ret="";
        }
 
        my $ret="";
@@ -216,7 +215,7 @@ sub preprocess_inline ($@) { #{{{
                $formtemplate->param(cgiurl => $config{cgiurl});
                $formtemplate->param(rootpage => $params{rootpage});
                if ($config{rss}) {
                $formtemplate->param(cgiurl => $config{cgiurl});
                $formtemplate->param(rootpage => $params{rootpage});
                if ($config{rss}) {
-                       $formtemplate->param(rssurl => rsspage(basename($parentpage)));
+                       $formtemplate->param(rssurl => rsspage(basename($params{page})));
                }
                $ret.=$formtemplate->output;
        }
                }
                $ret.=$formtemplate->output;
        }
@@ -224,7 +223,7 @@ sub preprocess_inline ($@) { #{{{
                # Add a rss link button.
                my $linktemplate=HTML::Template->new(blind_cache => 1,
                        filename => "$config{templatedir}/rsslink.tmpl");
                # Add a rss link button.
                my $linktemplate=HTML::Template->new(blind_cache => 1,
                        filename => "$config{templatedir}/rsslink.tmpl");
-               $linktemplate->param(rssurl => rsspage(basename($parentpage)));
+               $linktemplate->param(rssurl => rsspage(basename($params{page})));
                $ret.=$linktemplate->output;
        }
        
                $ret.=$linktemplate->output;
        }
        
@@ -235,10 +234,10 @@ sub preprocess_inline ($@) { #{{{
        
        my @pages;
        foreach my $page (blog_list($params{pages}, $params{show})) {
        
        my @pages;
        foreach my $page (blog_list($params{pages}, $params{show})) {
-               next if $page eq $parentpage;
+               next if $page eq $params{page};
                push @pages, $page;
                push @pages, $page;
-               $template->param(pagelink => htmllink($parentpage, $page));
-               $template->param(content => get_inline_content($parentpage, $page))
+               $template->param(pagelink => htmllink($params{page}, $page));
+               $template->param(content => get_inline_content($params{page}, $page))
                        if $params{archive} eq "no";
                $template->param(ctime => scalar(gmtime($pagectime{$page})));
                $ret.=$template->output;
                        if $params{archive} eq "no";
                $template->param(ctime => scalar(gmtime($pagectime{$page})));
                $ret.=$template->output;
@@ -248,8 +247,8 @@ sub preprocess_inline ($@) { #{{{
        # check_overwrite, but currently renderedfiles
        # only supports listing one file per page.
        if ($config{rss}) {
        # check_overwrite, but currently renderedfiles
        # only supports listing one file per page.
        if ($config{rss}) {
-               writefile(rsspage($parentpage), $config{destdir},
-                       genrss($parentpage, @pages));
+               writefile(rsspage($params{page}), $config{destdir},
+                       genrss($params{page}, @pages));
        }
        
        return $ret;
        }
        
        return $ret;