+Support for: $W->{"css_push"}
[www.jankratochvil.net.git] / Mailman.pm
1 # $Id$
2 # Mailman page Perl template.
3 # Copyright (C) 2003-2005 Jan Kratochvil <project-www.jankratochvil.net@jankratochvil.net>
4
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; exactly version 2 of June 1991 is required
8
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
18
19 package Mailman;
20 require 5.6.0;  # at least 'use warnings;' but we need some 5.6.0+ modules anyway
21 use vars qw($VERSION $CVS_ID);
22 $VERSION=do { my @r=(q$Revision$=~/\d+/g); sprintf "%d.".("%03d"x$#r),@r; };
23 $CVS_ID=q$Id$;
24 use strict;
25 use warnings;
26
27 use My::Web;
28 require CGI;
29 use URI::Escape;
30 require LWP::Simple;
31
32
33 our $HTML_TEST=0;
34
35 sub handler
36 {
37 my $W=My::Web->init(
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"}."/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();
70 }
71 1;