+kewensis,wayback
authorshort <>
Wed, 8 Oct 2003 05:45:45 +0000 (05:45 +0000)
committershort <>
Wed, 8 Oct 2003 05:45:45 +0000 (05:45 +0000)
configure.ac
project/Makefile.am
project/kewensis/Index.html.pl [new file with mode: 0755]
project/kewensis/ListItem.pm [new file with mode: 0755]
project/kewensis/Makefile.am [new file with mode: 0644]
project/lynxilla/ListItem.pm
project/wayback/Index.html.pl [new file with mode: 0755]
project/wayback/ListItem.pm [new file with mode: 0755]
project/wayback/Makefile.am [new file with mode: 0644]

index 65eb984..2fc6add 100644 (file)
@@ -82,6 +82,8 @@ Makefile
 ./project/gsmperl/Makefile
 ./project/332/Makefile
 ./project/lynxilla/Makefile
+./project/wayback/Makefile
+./project/kewensis/Makefile
 ])
 
 echo done.
index 2c379d1..01aa558 100644 (file)
@@ -65,7 +65,9 @@ SUBDIRS= \
                AutoGen         \
                gsmperl         \
                332             \
-               lynxilla
+               lynxilla        \
+               wayback         \
+               kewensis
 
 EXTRA_DIST+= \
                Index.html.pl \
diff --git a/project/kewensis/Index.html.pl b/project/kewensis/Index.html.pl
new file mode 100755 (executable)
index 0000000..2b84f43
--- /dev/null
@@ -0,0 +1,39 @@
+#! /usr/bin/perl
+# 
+# $Id$
+# Main page of 'My::Project::kewensis'
+# 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::kewensis::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::kewensis::ListItem';
+
+
+My::Project->init_project(
+               "__PACKAGE__"=>__PACKAGE__,
+               "ListItem"=>\@project::kewensis::ListItem::ListItem,
+               );
+
+My::Web->footer();
diff --git a/project/kewensis/ListItem.pm b/project/kewensis/ListItem.pm
new file mode 100755 (executable)
index 0000000..40fabe0
--- /dev/null
@@ -0,0 +1,49 @@
+#! /usr/bin/perl
+# 
+# $Id$
+# Definition of 'My::Project::kewensis' 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::kewensis::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"=>"kewensis",
+               "platform"=>"web",
+               "priority"=>5,
+               "cvs"=>"kewensis",
+               "summary"=>a_href('http://www.ipni.org/','Plant Name Index').' custom engine',
+               "license"=>"PD",
+               "maintenance"=>"ready",
+               "language"=>"PHP, Perl",
+               "description"=><<"HERE",
+<p>@{[ a_href 'http://www.ipni.org/','International Plant Name Index' ]}
+provides information about plants in duplicated and unconveniently searchable
+pages. You can download their database and run your own engine on it locally.</p>
+<p>This engine allows you to modify the database to fix names of for your own
+plants.</p>
+HERE
+               );
+
+1;
diff --git a/project/kewensis/Makefile.am b/project/kewensis/Makefile.am
new file mode 100644 (file)
index 0000000..89d572f
--- /dev/null
@@ -0,0 +1,23 @@
+# $Id$
+# automake source for the Makefile of project/kewensis/ 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 17ed954..5f1b1ea 100755 (executable)
@@ -30,7 +30,7 @@ use My::Web;
 
 our @ListItem=(
                "name"=>"lynxilla",
-               "platform"=>"unixuser",
+               "platform"=>"web",
                "priority"=>6,
                # FIXME: 'http://cvs.jankratochvil.net/viewcvs/' -> $W->{"project_viewcvs"}
                "download"=>'http://cvs.jankratochvil.net/viewcvs/'."*checkout*/nethome/.userContent.css?rev=HEAD",
diff --git a/project/wayback/Index.html.pl b/project/wayback/Index.html.pl
new file mode 100755 (executable)
index 0000000..592f6e3
--- /dev/null
@@ -0,0 +1,39 @@
+#! /usr/bin/perl
+# 
+# $Id$
+# Main page of 'My::Project::wayback'
+# 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::wayback::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::wayback::ListItem';
+
+
+My::Project->init_project(
+               "__PACKAGE__"=>__PACKAGE__,
+               "ListItem"=>\@project::wayback::ListItem::ListItem,
+               );
+
+My::Web->footer();
diff --git a/project/wayback/ListItem.pm b/project/wayback/ListItem.pm
new file mode 100755 (executable)
index 0000000..d0d0e87
--- /dev/null
@@ -0,0 +1,48 @@
+#! /usr/bin/perl
+# 
+# $Id$
+# Definition of 'My::Project::wayback' 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::wayback::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"=>"wayback",
+               "platform"=>"unixuser",
+               "priority"=>7,
+               "cvs"=>"wayback",
+               "summary"=>"Shift system time backwards for a specific application",
+               "license"=>"PD",
+               "maintenance"=>"ready",
+               "language"=>"C",
+               "description"=><<"HERE",
+<p>This programs is userful for time-limited demo versions, of course.</p>
+<p>Just set <b>WAYBACK</b> to the number of seconds to shift system time back,
+set <b>LD_PRELOAD</b> to the provided <b>libwayback.so</b> and run your
+demo program.</P>
+HERE
+               );
+
+1;
diff --git a/project/wayback/Makefile.am b/project/wayback/Makefile.am
new file mode 100644 (file)
index 0000000..4b296dc
--- /dev/null
@@ -0,0 +1,23 @@
+# $Id$
+# automake source for the Makefile of project/wayback/ 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