f97a35efee7b2a777c7521abdc3bc7146941649c
[www.jankratochvil.net.git] / project / postget / Index.html.pl
1 #! /usr/bin/perl
2
3 # $Id$
4 # Main page of 'My::Project::postget'
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 project::postget::Index;
22 require 5.6.0;  # at least 'use warnings;' but we need some 5.6.0+ modules anyway
23 our $VERSION=do { my @r=(q$Revision$=~/\d+/g); sprintf "%d.".("%03d"x$#r),@r; };
24 our $CVS_ID=q$Id$;
25 use strict;
26 use warnings;
27
28 BEGIN{ open F,"Makefile"; our $top_dir=pop @{[split /\s/,(grep /^top_srcdir/,<F>)[0]]}; eval "use lib '$top_dir'"; close F; }
29 use My::Web;
30 Wuse 'My::Project';
31 Wuse 'project::postget::ListItem';
32
33
34 My::Project->init_project(
35                 "__PACKAGE__"=>__PACKAGE__,
36                 "ListItem"=>\@project::postget::ListItem::ListItem,
37                 );
38
39
40 print <<"HERE";
41
42 <ul>
43         <li>
44                 <p>Store the
45                                 @{[ a_href $W->{"project_viewcvs"}."*checkout*/nethome/WWW/cgi-bin/postget.php?rev=HEAD",'downloaded file' ]}
46                 as <b>/home/lace/WWW/cgi-bin/postget.php</b>.</p>
47         </li>
48         <li>
49                 <p>Edit path to your <b>priv</b> directory in the stored
50                 <b>@{[ a_href $W->{"project_viewcvs"}."*checkout*/nethome/WWW/cgi-bin/postget.php?rev=HEAD",'postget.php' ]}</b>.
51         </li>
52         <li>
53                 <p>Bookmark the following @{[ a_href 'http://freshmeat.net/','Freshmeat' ]} URL:
54                                 @{[ CGI::escapeHTML(q{http://localhost/~lace/cgi-bin/postget.php?_postget=http%3A%2F%2Ffreshmeat.net%2Flogin%2F&url=%2F&username=YOUR_USERNAME&password=_priv_postget.freshmeat.net.pwd&persistent=1}) ]}
55                 </p>
56                 <p>(Replace <b>YOUR_USERNAME</b> with your @{[ a_href 'http://freshmeat.net/','Freshmeat' ]}
57                 account name.</p>
58         </li>
59         <li>
60                 <p>Store your @{[ a_href 'http://freshmeat.net/','Freshmeat' ]} account password
61                 to: <b>~/priv/postget.freshmeat.net.pwd</b></p>
62                 <p>Protect it by '<i>chgrp nobody postget.freshmeat.net.pwd</i>' and
63                 '<i>chmod 640 postget.freshmeat.net.pwd</i>' (it is not secure as long as
64                 someone else can supply pages served by the same
65                 @{[ a_href 'http://httpd.apache.org/','Apache webserver' ]}.</p>
66         </li>
67 </ul>
68
69 HERE
70
71
72 My::Web->footer();