wiki.pl: Port some fixes from upstream
[Orgmuse.git] / modules / sistersites.pl
blob73aeef949635fb8b6d1b5ea3979a9f7a16dff623
1 # Copyright (C) 2007 Alex Schroeder <alex@emacswiki.org>
3 # This program is free software; you can redistribute it and/or modify
4 # it under the terms of the GNU General Public License as published by
5 # the Free Software Foundation; either version 2 of the License, or
6 # (at your option) any later version.
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # GNU General Public License for more details.
13 # You should have received a copy of the GNU General Public License
14 # along with this program; if not, write to the
15 # Free Software Foundation, Inc.
16 # 59 Temple Place, Suite 330
17 # Boston, MA 02111-1307 USA
19 $ModulesDescription .= '<p><a href="http://git.savannah.gnu.org/cgit/oddmuse.git/tree/modules/sistersites.pl">sistersites.pl</a>, see <a href="http://www.oddmuse.org/cgi-bin/oddmuse/Sister_Pages">Sister Pages</a></p>';
21 $Action{'sisterpages'} = \&DoSisterPages;
23 sub DoSisterPages {
24 print GetHttpHeader('text/plain');
25 my @pages = SisterPages();
26 foreach my $id (@pages) {
27 print $ScriptName . ($UsePathInfo ? '/' : '?') . UrlEncode($id)
28 . ' ' . NormalToFree($id) . "\n";
32 # Mostly DoIndex() without the printing.
33 sub SisterPages {
34 my @pages;
35 push(@pages, AllPagesList()) if GetParam('pages', 1);
36 push(@pages, keys %PermanentAnchors) if GetParam('permanentanchors', 1);
37 push(@pages, keys %NearSource) if GetParam('near', 0);
38 @pages = grep /$match/i, @pages if GetParam('match', '');
39 return sort @pages;