modperl branch collapsed back to MAIN trunk, man!
[www.jankratochvil.net.git] / project / fixhtml / Index.html.pl
similarity index 55%
rename from project/fixhtml/index.html.pl
rename to project/fixhtml/Index.html.pl
index 4524e36..bf399dc 100755 (executable)
 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
 
+package project::fixhtml::Index;
 require 5.6.0; # at least 'use warnings;' but we need some 5.6.0+ modules anyway
-use vars qw($VERSION $CVS_ID);
-$VERSION=do { my @r=(q$Revision$=~/\d+/g); sprintf "%d.".("%03d"x$#r),@r; };
-$CVS_ID=q$Id$;
+our $VERSION=do { my @r=(q$Revision$=~/\d+/g); sprintf "%d.".("%03d"x$#r),@r; };
+our $CVS_ID=q$Id$;
 use strict;
 use warnings;
 
+BEGIN{ open F,"Makefile"; our $top_dir=pop @{[split /\s/,(grep /^top_srcdir/,<F>)[0]]}; eval "use lib '$top_dir'"; close F; }
 use My::Web;
-use project::fixhtml::ListItem;
+Wuse 'My::Project';
+Wuse 'project::fixhtml::ListItem';
 
 
-My::Web->init_project(
-               "ListItem"=>\%My::Project::fixhtml::ListItem,
+My::Project->init_project(
+               "__PACKAGE__"=>__PACKAGE__,
+               "ListItem"=>\@project::fixhtml::ListItem::ListItem,
                );
 
+
+print <<"HERE";
+<p>If you download/grab the whole (or its part) of some web site (for example
+by <b>WebCopy</b> tool), you will
+probably want to browse it locally on your computer offline. Unfortunately
+the authors are usually using server-name protocol reference or absolute
+path referration which will broke on your local machine.</p>
+HERE
+
+
 My::Web->footer();