X-Git-Url: http://git.jankratochvil.net/?a=blobdiff_plain;f=project%2Fcaptive%2FPreview.html.pl;fp=project%2Fpipebuf%2Findex.html.pl;h=a0856b64b49a24dc01fb0592af4a80bc12489982;hb=87881612a38624ab579efed6e93749b0e2b42fc7;hp=c06b103b787fe4b66f0b9b09f9445a825059d3c0;hpb=d33b43a5557132098003a232b6c209abd3e4d135;p=www.jankratochvil.net.git diff --git a/project/pipebuf/index.html.pl b/project/captive/Preview.html.pl similarity index 73% rename from project/pipebuf/index.html.pl rename to project/captive/Preview.html.pl index c06b103..a0856b6 100755 --- a/project/pipebuf/index.html.pl +++ b/project/captive/Preview.html.pl @@ -1,7 +1,7 @@ #! /usr/bin/perl # # $Id$ -# Main page of 'My::Project::pipebuf' +# Captive project Preview page Perl template. # Copyright (C) 2003 Jan Kratochvil # # This program is free software; you can redistribute it and/or modify @@ -18,6 +18,7 @@ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +package project::captive::Preview; 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; }; @@ -25,12 +26,20 @@ $CVS_ID=q$Id$; use strict; use warnings; +BEGIN{ open F,"Makefile"; our $top_dir=pop @{[split /\s/,(grep /^top_srcdir/,)[0]]}; eval "use lib '$top_dir'"; close F; } use My::Web; -use project::pipebuf::ListItem; -My::Web->init_project( - "ListItem"=>\%My::Project::pipebuf::ListItem, +My::Web->init( + "__PACKAGE__"=>__PACKAGE__, + "title"=>'Captive NTFS Technology Preview', ); +My::Web->heading(); + +print "

Captive NTFS Technology Preview

\n"; + +print img("doc/dia/parent-connector","Parent connector"); + + My::Web->footer();