Move yesno function out of inline and into IkiWiki core, not exported.
parent
d36361b010
commit
d101269bde
10
IkiWiki.pm
10
IkiWiki.pm
|
@ -337,7 +337,7 @@ sub readfile ($;$$) { #{{{
|
|||
return $ret;
|
||||
} #}}}
|
||||
|
||||
sub prep_writefile ($$) {
|
||||
sub prep_writefile ($$) { #{{{
|
||||
my $file=shift;
|
||||
my $destdir=shift;
|
||||
|
||||
|
@ -361,7 +361,7 @@ sub prep_writefile ($$) {
|
|||
}
|
||||
|
||||
return 1;
|
||||
}
|
||||
} #}}}
|
||||
|
||||
sub writefile ($$$;$$) { #{{{
|
||||
my $file=shift; # can include subdirs
|
||||
|
@ -1202,6 +1202,12 @@ sub gettext { #{{{
|
|||
}
|
||||
} #}}}
|
||||
|
||||
sub yesno ($) { #{{{
|
||||
my $val=shift;
|
||||
|
||||
return (defined $val && lc($val) eq gettext("yes"));
|
||||
} #}}}
|
||||
|
||||
sub pagespec_merge ($$) { #{{{
|
||||
my $a=shift;
|
||||
my $b=shift;
|
||||
|
|
|
@ -94,11 +94,6 @@ package IkiWiki;
|
|||
my %toping;
|
||||
my %feedlinks;
|
||||
|
||||
sub yesno ($) { #{{{
|
||||
my $val=shift;
|
||||
return (defined $val && lc($val) eq "yes");
|
||||
} #}}}
|
||||
|
||||
sub preprocess_inline (@) { #{{{
|
||||
my %params=@_;
|
||||
|
||||
|
|
|
@ -11,18 +11,13 @@ sub import { #{{{
|
|||
hook(type => "sessioncgi", id => "poll", call => \&sessioncgi);
|
||||
} # }}}
|
||||
|
||||
sub yesno ($) { #{{{
|
||||
my $val=shift;
|
||||
return (defined $val && lc($val) eq "yes");
|
||||
} #}}}
|
||||
|
||||
my %pagenum;
|
||||
sub preprocess (@) { #{{{
|
||||
my %params=(open => "yes", total => "yes", percent => "yes", @_);
|
||||
|
||||
my $open=yesno($params{open});
|
||||
my $showtotal=yesno($params{total});
|
||||
my $showpercent=yesno($params{percent});
|
||||
my $open=IkiWIki::yesno($params{open});
|
||||
my $showtotal=IkiWiki::yesno($params{total});
|
||||
my $showpercent=IkiWiki::yesno($params{percent});
|
||||
$pagenum{$params{page}}++;
|
||||
|
||||
my %choices;
|
||||
|
|
|
@ -17,6 +17,7 @@ ikiwiki (2.54) UNRELEASED; urgency=low
|
|||
numerous bugs.
|
||||
* meta: Support a guid option, to allow forcing a particular url or
|
||||
uuid in feeds. (smcv)
|
||||
* Move yesno function out of inline and into IkiWiki core, not exported.
|
||||
|
||||
-- Josh Triplett <josh@freedesktop.org> Wed, 09 Jul 2008 21:30:33 -0700
|
||||
|
||||
|
|
Loading…
Reference in New Issue