From: short <> Date: Mon, 13 Oct 2003 15:41:56 +0000 (+0000) Subject: +int13sniff X-Git-Url: https://git.jankratochvil.net/?p=www.jankratochvil.net.git;a=commitdiff_plain;h=0188b4580c6a7c3925e301f180d5a89b4f490a45 +int13sniff --- diff --git a/autogen.pl b/autogen.pl index 7e3ab3b..5762257 100755 --- a/autogen.pl +++ b/autogen.pl @@ -54,5 +54,6 @@ AutoGen->run( ./project/Islet/*.gif ./project/surprise/*.gif ./My/*.gif + ./project/int13sniff/*.gif )], ); diff --git a/configure.ac b/configure.ac index 618700d..533499c 100644 --- a/configure.ac +++ b/configure.ac @@ -95,6 +95,7 @@ Makefile ./project/energie/Makefile ./project/MyWeb/Makefile ./project/pgsqlsubstr/Makefile +./project/int13sniff/Makefile ]) echo done. diff --git a/project/Makefile.am b/project/Makefile.am index a62a0c3..dc6a979 100644 --- a/project/Makefile.am +++ b/project/Makefile.am @@ -77,7 +77,8 @@ SUBDIRS= \ phphash \ energie \ MyWeb \ - pgsqlsubstr + pgsqlsubstr \ + int13sniff EXTRA_DIST+= \ Index.html.pl \ diff --git a/project/int13sniff/Index.html.pl b/project/int13sniff/Index.html.pl new file mode 100755 index 0000000..5380d28 --- /dev/null +++ b/project/int13sniff/Index.html.pl @@ -0,0 +1,41 @@ +#! /usr/bin/perl +# +# $Id$ +# Main page of 'My::Project::int13sniff' +# Copyright (C) 2003 Jan Kratochvil +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; exactly version 2 of June 1991 is required +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + + +package project::int13sniff::Index; +require 5.6.0; # at least 'use warnings;' but we need some 5.6.0+ modules anyway +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/,)[0]]}; eval "use lib '$top_dir'"; close F; } +use My::Web; +Wuse 'My::Project'; +Wuse 'project::int13sniff::ListItem'; + + +My::Project->init_project( + "__PACKAGE__"=>__PACKAGE__, + "ListItem"=>\@project::int13sniff::ListItem::ListItem, + ); + +print '
'.My::Web::img("int13sniff-snap","Boot Snapshot").'
'."\n"; + +My::Web->footer(); diff --git a/project/int13sniff/ListItem.pm b/project/int13sniff/ListItem.pm new file mode 100755 index 0000000..85a2d58 --- /dev/null +++ b/project/int13sniff/ListItem.pm @@ -0,0 +1,48 @@ +#! /usr/bin/perl +# +# $Id$ +# Definition of 'My::Project::int13sniff' for list.cgi.pl +# Copyright (C) 2003 Jan Kratochvil +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; exactly version 2 of June 1991 is required +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + + +package project::int13sniff::ListItem; +require 5.6.0; # at least 'use warnings;' but we need some 5.6.0+ modules anyway +our $VERSION=do { my @r=(q$Revision$=~/\d+/g); sprintf "%d.".("%03d"x$#r),@r; }; +our $CVS_ID=q$Id$; +use strict; +use warnings; + +use My::Web; + + +our @ListItem=( + "name"=>'Int13Sniff', + "platform"=>"unixdevel", + "priority"=>4, + "summary"=>'Trace bootloader disk operations', + "download-source"=>'http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/*checkout*/surprise/surprise/misc/int13sniff.S?rev=HEAD', + "download-gzip(1)ped floppy image head"=>'int13sniff.bin.gz', + "link-parent Surprise project"=>"/project/surprise/", + "license"=>"GPL", + "maintenance"=>"ready", + "language"=>"i386 asm", + "description"=><<"HERE", +

Developer tool for PC boot loading analysis. Report all sectors being read +to display, back to its own floppy disk and/or to serial port(s).

+HERE + ); + +1; diff --git a/project/int13sniff/Makefile.am b/project/int13sniff/Makefile.am new file mode 100644 index 0000000..9bffbd2 --- /dev/null +++ b/project/int13sniff/Makefile.am @@ -0,0 +1,23 @@ +# $Id$ +# automake source for the Makefile of project/int13sniff/ subdir +# Copyright (C) 2003 Jan Kratochvil +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; exactly version 2 of June 1991 is required +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + + +include $(top_srcdir)/Makefile-head.am + +EXTRA_DIST+= \ + ListItem.pm \ + Index.html.pl diff --git a/project/int13sniff/int13sniff-snap.png b/project/int13sniff/int13sniff-snap.png new file mode 100644 index 0000000..88bf21f Binary files /dev/null and b/project/int13sniff/int13sniff-snap.png differ diff --git a/project/int13sniff/int13sniff.bin.gz b/project/int13sniff/int13sniff.bin.gz new file mode 100755 index 0000000..e8e5d95 Binary files /dev/null and b/project/int13sniff/int13sniff.bin.gz differ