forked from github/kensanata.oddmuse
There were some modules that did not offer "or (at your option) any later version" in their license and these had to be left alone. This should solve the incorrect FSF address issue #4 on GitHub.
109 lines
2.8 KiB
Perl
109 lines
2.8 KiB
Perl
# Copyright (C) 2005-2007 Fletcher T. Penney <fletcher@freeshell.org>
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
use strict;
|
|
use v5.10;
|
|
|
|
AddModuleDescription('plainsite.pl', 'PlainSite Module');
|
|
|
|
our ($q, $OpenPageName, $HomePage, $CommentsPrefix, $RCName);
|
|
our ($PlainSiteAllowCommentLink);
|
|
|
|
*OldGetFooterLinks = \&GetFooterLinks;
|
|
*GetFooterLinks = \&PlainSiteGetFooterLinks;
|
|
|
|
sub PlainSiteGetFooterLinks {
|
|
return if (GetParam('action','') eq 'static');
|
|
if (UserIsAdmin() or UserIsEditor()) {
|
|
return OldGetFooterLinks(@_);
|
|
} else {
|
|
if ($PlainSiteAllowCommentLink) {
|
|
return CommentFooterLink(@_);
|
|
} else {
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
|
|
sub CommentFooterLink {
|
|
my ($id, $rev) = @_;
|
|
my @elements;
|
|
if ($id and $rev ne 'history' and $rev ne 'edit') {
|
|
if ($CommentsPrefix) {
|
|
if ($OpenPageName =~ /^$CommentsPrefix(.*)/) {
|
|
push(@elements, GetPageLink($1, undef, 'original'));
|
|
} else {
|
|
push(@elements, GetPageLink($CommentsPrefix . $OpenPageName, undef, 'comment'));
|
|
}
|
|
}
|
|
}
|
|
return @elements ? $q->span({-class=>'edit bar'}, $q->br(), @elements) : '';
|
|
}
|
|
|
|
*OldGetFooterTimestamp = \&GetFooterTimestamp;
|
|
*GetFooterTimestamp = \&PlainSiteGetFooterTimestamp;
|
|
|
|
sub PlainSiteGetFooterTimestamp {
|
|
return if (GetParam('action','') eq 'static');
|
|
if (UserIsAdmin() or UserIsEditor()) {
|
|
return OldGetFooterTimestamp(@_);
|
|
} else {
|
|
return;
|
|
}
|
|
}
|
|
|
|
*OldGetRcRss = \&GetRcRss;
|
|
*GetRcRss = \&PlainSiteGetRcRss;
|
|
|
|
sub PlainSiteGetRcRss {
|
|
# Have Rss point to HomePage rather than RecentChanges, since we want
|
|
# to avoid drawing visitors to RecentChanges
|
|
$RCName = $HomePage;
|
|
OldGetRcRss(@_);
|
|
}
|
|
|
|
*GetNearLinksUsed = \&PlainSiteGetNearLinksUsed;
|
|
|
|
sub PlainSiteGetNearLinksUsed {
|
|
return;
|
|
}
|
|
|
|
|
|
# Disable the Recent Change function on cluster pages
|
|
# Must load before clustermap module if that module is used
|
|
|
|
|
|
*OldPrintRc = \&PrintRc;
|
|
*PrintRc = \&PlainSitePrintRc;
|
|
|
|
sub PlainSitePrintRc{
|
|
my ($id, $standalone) = @_;
|
|
if (!(UserIsAdmin() or UserIsEditor())) {
|
|
DoRc(\&PlainSiteRcHtml);
|
|
} else {
|
|
return OldPrintRc($id, $standalone);
|
|
}
|
|
}
|
|
|
|
sub PlainSiteRcHtml {
|
|
my ($html, $inlist) = ('', 0);
|
|
if (!(UserIsAdmin() or UserIsEditor())) {
|
|
return;
|
|
} else {
|
|
*GetRcHtml = \&OldGetRcHtml;
|
|
return OldGetRcHtml();
|
|
}
|
|
}
|