Files
oddmuse/scripts/wanted.pl
Alex Schroeder 72cd669bf0 Changed nearly remaining code from GPLv2 to GPLv3
There were some files 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.
2016-08-16 18:01:26 +02:00

62 lines
1.9 KiB
Perl
Executable File

#!/usr/bin/perl
# Wanted Pages for Oddmuse Wikis
# Copyright (C) 2004 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 CGI qw/:standard/;
use CGI::Carp qw(fatalsToBrowser);
use LWP::UserAgent;
if (not param('url')) {
print header(),
start_html('Wanted Pages'),
h1('Wanted Pages'),
p('$Id: wanted.pl,v 1.3 2004/03/21 00:33:58 as Exp $'),
p('Returns a list of wanted pages based on a dot-file.'),
start_form(-method=>'GET'),
p('URL for dot-file: ', textfield('url'), br(),
'Example: http://www.emacswiki.org/cgi-bin/alex?action=links;raw=1'),
p('URL for list of nodes: ', textfield('nodes'), br(),
'Example: http://www.emacswiki.org/cgi-bin/alex?action=index;raw=1;near=1'),
p(submit()),
end_form(),
end_html();
exit;
}
print header(-type=>'text/plain; charset=UTF-8');
$ua = LWP::UserAgent->new;
$request = HTTP::Request->new('GET', param('url'));
$response = $ua->request($request);
$data = $response->content;
while ($data =~ m/"(.*?)" -> "(.*?)"/g) {
$page{$1} = 1;
$link{$2} = 1;
}
$request = HTTP::Request->new('GET', param('nodes'));
$response = $ua->request($request);
$data = $response->content;
foreach $pg (split(/\n/, $data)) {
$pg =~ s/_/ /g;
$page{$pg} = 1 if $pg;
}
foreach $link (sort keys %link) {
print $link, "\n" unless $page{$link};
}