Typo.
[www.jankratochvil.net.git] / Mailman.pl
1 #! /usr/bin/perl
2
3 # $Id$
4 # Mailman page Perl template.
5 # Copyright (C) 2003 Jan Kratochvil <project-www.jankratochvil.net@jankratochvil.net>
6
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; exactly version 2 of June 1991 is required
10
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19
20
21 package Mailman;
22 require 5.6.0;  # at least 'use warnings;' but we need some 5.6.0+ modules anyway
23 use vars qw($VERSION $CVS_ID);
24 $VERSION=do { my @r=(q$Revision$=~/\d+/g); sprintf "%d.".("%03d"x$#r),@r; };
25 $CVS_ID=q$Id$;
26 use strict;
27 use warnings;
28
29 BEGIN{ open F,"Makefile"; our $top_dir=pop @{[split /\s/,(grep /^top_srcdir/,<F>)[0]]}; eval "use lib '$top_dir'"; close F; }
30 use My::Web;
31 require CGI;
32 use URI::Escape;
33 require LWP::Simple;
34
35
36 my $W=My::Web->init(
37                 "__PACKAGE__"=>__PACKAGE__,
38                 "title"=>"Mailman Interface",
39                 "no_job"=>1,
40                 "args_check"=>{
41                                 "email"=>'',
42                                 "pw"=>'',
43                                 "pw-conf"=>'',
44                                 "list"=>['^[-\w]+$'],
45                                 "back"=>'',
46                                 },
47                 );
48 My::Web->heading();
49
50
51 for my $list (@{$W->{"args"}{"list"}}) {
52         print "<h1>List <i>$list</i></h1><blockquote>\n";
53                 my $url_base=&{$W->{"mailman_url_sub"}}()."/subscribe/$list";
54                 my $t=LWP::Simple::get("$url_base?"
55                                 .join('&',
56                                                 "list=$list",
57                                                 map({ $_."=".uri_escape($W->{"args"}{$_}); } qw(email pw pw-conf))));
58                 $t=($t=~m#^.*<body\b[^>]*>(.*?)</body>#is)[0];
59                 $t=~s#(href=")(../[^"]*)(")#$1$url_base/$2$3#gi;
60                 print $t;
61         print "</blockquote>\n";
62         }
63
64 if ($W->{"args"}{"back"}) {
65         print '<h1>'.a_href($W->{"args"}{"back"},'Back to the original page').'</h1>'."\n";
66         }
67
68
69 My::Web->footer();