diff options
author | Simon McVittie <smcv@debian.org> | 2015-11-30 20:58:54 +0000 |
---|---|---|
committer | Simon McVittie <smcv@debian.org> | 2015-11-30 20:58:54 +0000 |
commit | 72c3b81efb1079f8db070ac89e97e9b7bcedd61b (patch) | |
tree | c65f003c541a27f90fa56afe15e779af12fd1184 /IkiWiki | |
parent | b199349ffddce2b8afd89567882e182f7ef9bff1 (diff) | |
parent | e3e6ca2777990caf96e524f59e22925841c79e6e (diff) | |
download | ikiwiki-72c3b81efb1079f8db070ac89e97e9b7bcedd61b.tar ikiwiki-72c3b81efb1079f8db070ac89e97e9b7bcedd61b.tar.gz |
Merge remote-tracking branch 'smcv/pagestats-show'
Diffstat (limited to 'IkiWiki')
-rw-r--r-- | IkiWiki/Plugin/pagestats.pm | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/IkiWiki/Plugin/pagestats.pm b/IkiWiki/Plugin/pagestats.pm index 460a5969a..ac0a463e3 100644 --- a/IkiWiki/Plugin/pagestats.pm +++ b/IkiWiki/Plugin/pagestats.pm @@ -31,6 +31,19 @@ sub getsetup () { }, } +sub linktext ($%) { + # Return the text of the link to a tag, depending on option linktext. + my ($page, %params) = @_; + if (exists $params{show} && + exists $pagestate{$page} && + exists $pagestate{$page}{meta}{$params{show}}) { + return $pagestate{$page}{meta}{$params{show}}; + } + else { + return undef; + } +} + sub preprocess (@) { my %params=@_; $params{pages}="*" unless defined $params{pages}; @@ -84,7 +97,7 @@ sub preprocess (@) { return "<table class='".(exists $params{class} ? $params{class} : "pageStats")."'>\n". join("\n", map { "<tr><td>". - htmllink($params{page}, $params{destpage}, $_, noimageinline => 1). + htmllink($params{page}, $params{destpage}, $_, noimageinline => 1, linktext => linktext($_, %params)). "</td><td>".$counts{$_}."</td></tr>" } sort { $counts{$b} <=> $counts{$a} } keys %counts). @@ -107,7 +120,7 @@ sub preprocess (@) { $res.="<li>" if $style eq 'list'; $res .= "<span class=\"$class\">". - htmllink($params{page}, $params{destpage}, $page). + htmllink($params{page}, $params{destpage}, $page, linktext => linktext($page, %params)). "</span>\n"; $res.="</li>" if $style eq 'list'; |