diff options
author | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2006-05-05 18:20:52 +0000 |
---|---|---|
committer | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2006-05-05 18:20:52 +0000 |
commit | b2bd444f31fd9f294ee0dbc4b9a61b1e8c04055c (patch) | |
tree | b1ab7c05d2c2ed94dffea9a504ed46f36dfe0c96 /IkiWiki/Render.pm | |
parent | fbb0762ccf7b1dcac33006424e1dee7f457210a3 (diff) | |
download | ikiwiki-b2bd444f31fd9f294ee0dbc4b9a61b1e8c04055c.tar ikiwiki-b2bd444f31fd9f294ee0dbc4b9a61b1e8c04055c.tar.gz |
* Allow discussion links on pages to be turned off with --no-discussion.
Diffstat (limited to 'IkiWiki/Render.pm')
-rw-r--r-- | IkiWiki/Render.pm | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/IkiWiki/Render.pm b/IkiWiki/Render.pm index 9feaa6da7..854d5105e 100644 --- a/IkiWiki/Render.pm +++ b/IkiWiki/Render.pm @@ -174,6 +174,9 @@ sub genpage ($$$) { #{{{ $u=~s/\[\[file\]\]/$pagesources{$page}/g; $template->param(historyurl => $u); } + if ($config{discussion}) { + $template->param(discussionlink => htmllink($page, "Discussion", 1, 1)); + } $template->param(headercontent => $config{headercontent}); $template->param( @@ -182,7 +185,6 @@ sub genpage ($$$) { #{{{ parentlinks => [parentlinks($page)], content => $content, backlinks => [backlinks($page)], - discussionlink => htmllink($page, "Discussion", 1, 1), mtime => scalar(gmtime($mtime)), styleurl => styleurl($page), ); @@ -218,9 +220,14 @@ sub findlinks ($$) { #{{{ while ($content =~ /(?<!\\)$config{wiki_link_regexp}/g) { push @links, titlepage($2); } - # Discussion links are a special case since they're not in the text - # of the page, but on its template. - return @links, "$page/discussion"; + if ($config{discussion}) { + # Discussion links are a special case since they're not in the + # text of the page, but on its template. + return @links, "$page/discussion"; + } + else { + return @links; + } } #}}} sub render ($) { #{{{ |