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.
71 lines
2.3 KiB
Perl
71 lines
2.3 KiB
Perl
# Copyright (C) 2006 Alex Schroeder <alex@emacswiki.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('publish.pl', 'Publish Page Extension');
|
|
|
|
our ($q, %Action, %Page, $OpenPageName, @MyAdminCode, $ScriptName, $FullUrl);
|
|
our ($PublishTargetUrl);
|
|
|
|
$PublishTargetUrl = '';
|
|
|
|
$Action{publish} = \&DoPublish;
|
|
|
|
push(@MyAdminCode, \&PublishMenu);
|
|
|
|
sub PublishMenu {
|
|
my ($id, $menuref, $restref) = @_;
|
|
my $name = $id;
|
|
$name =~ s/_/ /g;
|
|
if ($id and $PublishTargetUrl) {
|
|
push(@$menuref, ScriptLink('action=publish;id=' . $id,
|
|
Ts('Publish %s', $name), 'publish'));
|
|
}
|
|
}
|
|
|
|
sub DoPublish {
|
|
my ($id) = @_;
|
|
ReportError(T('No target wiki was specified in the config file.'),
|
|
'500 INTERNAL SERVER ERROR')
|
|
unless $PublishTargetUrl;
|
|
ReportError(T('The target wiki was misconfigured.',
|
|
'500 INTERNAL SERVER ERROR'))
|
|
if $PublishTargetUrl eq $ScriptName or $PublishTargetUrl eq $FullUrl;
|
|
ReportError('LWP::UserAgent is not available',
|
|
'500 INTERNAL SERVER ERROR')
|
|
unless eval {require LWP::UserAgent};
|
|
my $ua = LWP::UserAgent->new;
|
|
OpenPage($id);
|
|
my %params = ( title=>$OpenPageName,
|
|
text=>$Page{text},
|
|
raw=>1,
|
|
username=>$Page{username},
|
|
summary=>$Page{summary},
|
|
pwd=>GetParam('pwd',''),
|
|
);
|
|
$params{recent_edit} = 'on' if $Page{minor};
|
|
my $response = $ua->post($PublishTargetUrl, \%params);
|
|
if ($response->code == 302 and $response->header('Location')) {
|
|
print $q->redirect($response->header('Location'));
|
|
} elsif ($response->code == 200) {
|
|
print $q->redirect($PublishTargetUrl . '?' . $id);
|
|
} else {
|
|
ReportError($response->content,
|
|
$response->code . ' ' . $response->message);
|
|
}
|
|
}
|