+int13sniff
authorshort <>
Mon, 13 Oct 2003 15:41:56 +0000 (15:41 +0000)
committershort <>
Mon, 13 Oct 2003 15:41:56 +0000 (15:41 +0000)
autogen.pl
configure.ac
project/Makefile.am
project/int13sniff/Index.html.pl [new file with mode: 0755]
project/int13sniff/ListItem.pm [new file with mode: 0755]
project/int13sniff/Makefile.am [new file with mode: 0644]
project/int13sniff/int13sniff-snap.png [new file with mode: 0644]
project/int13sniff/int13sniff.bin.gz [new file with mode: 0755]

index 7e3ab3b..5762257 100755 (executable)
@@ -54,5 +54,6 @@ AutoGen->run(
                                ./project/Islet/*.gif
                                ./project/surprise/*.gif
                                ./My/*.gif
+                               ./project/int13sniff/*.gif
                                )],
                );
index 618700d..533499c 100644 (file)
@@ -95,6 +95,7 @@ Makefile
 ./project/energie/Makefile
 ./project/MyWeb/Makefile
 ./project/pgsqlsubstr/Makefile
+./project/int13sniff/Makefile
 ])
 
 echo done.
index a62a0c3..dc6a979 100644 (file)
@@ -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 (executable)
index 0000000..5380d28
--- /dev/null
@@ -0,0 +1,41 @@
+#! /usr/bin/perl
+# 
+# $Id$
+# Main page of 'My::Project::int13sniff'
+# Copyright (C) 2003 Jan Kratochvil <project-www.jankratochvil.net@jankratochvil.net>
+# 
+# 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/,<F>)[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 '<table border="0"><tr><td align="center">'.My::Web::img("int13sniff-snap","Boot Snapshot").'</td></tr></table>'."\n";
+
+My::Web->footer();
diff --git a/project/int13sniff/ListItem.pm b/project/int13sniff/ListItem.pm
new file mode 100755 (executable)
index 0000000..85a2d58
--- /dev/null
@@ -0,0 +1,48 @@
+#! /usr/bin/perl
+# 
+# $Id$
+# Definition of 'My::Project::int13sniff' for list.cgi.pl
+# Copyright (C) 2003 Jan Kratochvil <project-www.jankratochvil.net@jankratochvil.net>
+# 
+# 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",
+<p>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).</p>
+HERE
+               );
+
+1;
diff --git a/project/int13sniff/Makefile.am b/project/int13sniff/Makefile.am
new file mode 100644 (file)
index 0000000..9bffbd2
--- /dev/null
@@ -0,0 +1,23 @@
+# $Id$
+# automake source for the Makefile of project/int13sniff/ subdir
+# Copyright (C) 2003 Jan Kratochvil <project-www.jankratochvil.net@jankratochvil.net>
+# 
+# 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 (file)
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 (executable)
index 0000000..e8e5d95
Binary files /dev/null and b/project/int13sniff/int13sniff.bin.gz differ