+MyWeb,energie,phphash
authorshort <>
Sat, 11 Oct 2003 01:41:09 +0000 (01:41 +0000)
committershort <>
Sat, 11 Oct 2003 01:41:09 +0000 (01:41 +0000)
13 files changed:
configure.ac
project/Makefile.am
project/MyWeb/Index.html.pl [new file with mode: 0755]
project/MyWeb/ListItem.pm [new file with mode: 0755]
project/MyWeb/Makefile.am [new file with mode: 0644]
project/ResRAM/ListItem.pm
project/energie/Index.html.pl [new file with mode: 0755]
project/energie/ListItem.pm [new file with mode: 0755]
project/energie/Makefile.am [new file with mode: 0644]
project/phphash/Index.html.pl [new file with mode: 0755]
project/phphash/ListItem.pm [new file with mode: 0755]
project/phphash/Makefile.am [new file with mode: 0644]
project/ssht/ListItem.pm

index 2edc7f6..07d6fd0 100644 (file)
@@ -91,6 +91,9 @@ Makefile
 ./project/ssht/Makefile
 ./project/postget/Makefile
 ./project/middleman/Makefile
+./project/phphash/Makefile
+./project/energie/Makefile
+./project/MyWeb/Makefile
 ])
 
 echo done.
index db59b94..ee556d6 100644 (file)
@@ -73,7 +73,10 @@ SUBDIRS= \
                ResRAM          \
                ssht            \
                postget         \
-               middleman
+               middleman       \
+               phphash         \
+               energie         \
+               MyWeb
 
 EXTRA_DIST+= \
                Index.html.pl \
diff --git a/project/MyWeb/Index.html.pl b/project/MyWeb/Index.html.pl
new file mode 100755 (executable)
index 0000000..2f48d0c
--- /dev/null
@@ -0,0 +1,39 @@
+#! /usr/bin/perl
+# 
+# $Id$
+# Main page of 'My::Project::MyWeb'
+# 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::MyWeb::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::MyWeb::ListItem';
+
+
+My::Project->init_project(
+               "__PACKAGE__"=>__PACKAGE__,
+               "ListItem"=>\@project::MyWeb::ListItem::ListItem,
+               );
+
+My::Web->footer();
diff --git a/project/MyWeb/ListItem.pm b/project/MyWeb/ListItem.pm
new file mode 100755 (executable)
index 0000000..699ef83
--- /dev/null
@@ -0,0 +1,48 @@
+#! /usr/bin/perl
+# 
+# $Id$
+# Definition of 'My::Project::MyWeb' 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::MyWeb::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"=>"My::Web",
+               "platform"=>"web",
+               "priority"=>5,
+               "cvs"=>"www/www.jankratochvil.net",
+               "link-Example web"=>a_href('http://www.jankratochvil.net/'),
+               "summary"=>a_href('http://www.perl.org/','Perl')." web framework",
+               "license"=>"GPL",
+               "maintenance"=>"ready",
+               "language"=>"Perl",
+               "description"=><<"HERE",
+<p>Each web author has his own web framework reusable for other web developers
+as a generic engine.  Here is mine. I am not a fool to expect you would use
+it.</p>
+HERE
+               );
+
+1;
diff --git a/project/MyWeb/Makefile.am b/project/MyWeb/Makefile.am
new file mode 100644 (file)
index 0000000..abc4f09
--- /dev/null
@@ -0,0 +1,23 @@
+# $Id$
+# automake source for the Makefile of project/MyWeb/ 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
index 6893104..e621809 100755 (executable)
@@ -35,7 +35,7 @@ our @ListItem=(
                "download"=>"ResRAM.lha",
                "link-source file"=>"ResRAM.asm",
                "link-aminet README"=>"ResRAM.README",
-               "summary"=>"Reset-persisent bootable RAM-Disk",
+               "summary"=>"Reset-persisent bootable RAM filesystem",
                "license"=>"PD",
                "maintenance"=>"ready",
                "language"=>"680x0 asm",
diff --git a/project/energie/Index.html.pl b/project/energie/Index.html.pl
new file mode 100755 (executable)
index 0000000..d9b5d90
--- /dev/null
@@ -0,0 +1,39 @@
+#! /usr/bin/perl
+# 
+# $Id$
+# Main page of 'My::Project::energie'
+# 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::energie::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::energie::ListItem';
+
+
+My::Project->init_project(
+               "__PACKAGE__"=>__PACKAGE__,
+               "ListItem"=>\@project::energie::ListItem::ListItem,
+               );
+
+My::Web->footer();
diff --git a/project/energie/ListItem.pm b/project/energie/ListItem.pm
new file mode 100755 (executable)
index 0000000..f4bb417
--- /dev/null
@@ -0,0 +1,49 @@
+#! /usr/bin/perl
+# 
+# $Id$
+# Definition of 'My::Project::energie' 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::energie::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"=>"common.php",
+               "platform"=>"web",
+               "priority"=>4,
+               "cvs"=>"www/www.energie.vellum.cz",
+               "link-Example web"=>a_href('http://www.energie.vellum.cz/'),
+               "summary"=>a_href('http://www.php.net/','PHP')." web framework",
+               "license"=>"GPL",
+               "maintenance"=>"obsolete-".a_href('http://www.php.net/','PHP')." is deprecated in favor of "
+                               .a_href('http://www.perl.org/','Perl')." - use ".a_href(top_dir()."/project/MyWeb/","My::Web"),
+               "language"=>"PHP",
+               "description"=><<"HERE",
+<p>Each web author has his own web framework reusable for other web developers
+as a generic engine.  Here is mine. I am not a fool to expect you would use
+it.</p>
+HERE
+               );
+
+1;
diff --git a/project/energie/Makefile.am b/project/energie/Makefile.am
new file mode 100644 (file)
index 0000000..b04d980
--- /dev/null
@@ -0,0 +1,23 @@
+# $Id$
+# automake source for the Makefile of project/energie/ 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/phphash/Index.html.pl b/project/phphash/Index.html.pl
new file mode 100755 (executable)
index 0000000..3d28ad7
--- /dev/null
@@ -0,0 +1,39 @@
+#! /usr/bin/perl
+# 
+# $Id$
+# Main page of 'My::Project::phphash'
+# 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::phphash::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::phphash::ListItem';
+
+
+My::Project->init_project(
+               "__PACKAGE__"=>__PACKAGE__,
+               "ListItem"=>\@project::phphash::ListItem::ListItem,
+               );
+
+My::Web->footer();
diff --git a/project/phphash/ListItem.pm b/project/phphash/ListItem.pm
new file mode 100755 (executable)
index 0000000..5047f19
--- /dev/null
@@ -0,0 +1,47 @@
+#! /usr/bin/perl
+# 
+# $Id$
+# Definition of 'My::Project::phphash' 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::phphash::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"=>'PHP-3.0b6 fix',
+               "platform"=>"patch",
+               "priority"=>3,
+               "summary"=>'Avoid excessive use of memory for hashes',
+               "download-patch"=>'http://cvs.php.net/diff.php/php3/Attic/hash.c?r1=1.76&r2=1.77&ty=u',
+               "license"=>"PD",
+               "maintenance"=>"accepted",
+               "language"=>"C patch",
+               "description"=><<"HERE",
+<p>Fixed a tiny bug in the hash initialization which caused excessive use of
+memory. Fixed hash items deletion emulation by copying the hash except the item
+being deleted.</p>
+HERE
+               );
+
+1;
diff --git a/project/phphash/Makefile.am b/project/phphash/Makefile.am
new file mode 100644 (file)
index 0000000..57e201b
--- /dev/null
@@ -0,0 +1,23 @@
+# $Id$
+# automake source for the Makefile of project/phphash/ 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
index 3010071..96c41b9 100755 (executable)
@@ -33,7 +33,7 @@ our @ListItem=(
                "platform"=>"unixuser",
                "priority"=>4,
                "cvs"=>"ssht",
-               "summary"=>'Intranet host accessibility by '.a_href('http://www.openssh.org/','SSH').' tunnel',
+               "summary"=>'Unattended intranet host accessibility by '.a_href('http://www.openssh.org/','SSH').' tunnel',
                "license"=>"PD",
                "maintenance"=>"ready",
                "sponsorship"=>a_href('http://www.jklabs.cz/','JKLabs'),