+lynxilla
authorshort <>
Tue, 7 Oct 2003 21:23:07 +0000 (21:23 +0000)
committershort <>
Tue, 7 Oct 2003 21:23:07 +0000 (21:23 +0000)
configure.ac
project/Makefile.am
project/lynxilla/Index.html.pl [new file with mode: 0755]
project/lynxilla/ListItem.pm [new file with mode: 0755]
project/lynxilla/Makefile.am [new file with mode: 0644]

index 9292473..65eb984 100644 (file)
@@ -81,6 +81,7 @@ Makefile
 ./project/AutoGen/Makefile
 ./project/gsmperl/Makefile
 ./project/332/Makefile
+./project/lynxilla/Makefile
 ])
 
 echo done.
index 67a9ea0..2c379d1 100644 (file)
@@ -64,7 +64,8 @@ SUBDIRS= \
                TraceFS         \
                AutoGen         \
                gsmperl         \
-               332
+               332             \
+               lynxilla
 
 EXTRA_DIST+= \
                Index.html.pl \
diff --git a/project/lynxilla/Index.html.pl b/project/lynxilla/Index.html.pl
new file mode 100755 (executable)
index 0000000..2d971c9
--- /dev/null
@@ -0,0 +1,39 @@
+#! /usr/bin/perl
+# 
+# $Id$
+# Main page of 'My::Project::lynxilla'
+# 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::lynxilla::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::lynxilla::ListItem';
+
+
+My::Project->init_project(
+               "__PACKAGE__"=>__PACKAGE__,
+               "ListItem"=>\@project::lynxilla::ListItem::ListItem,
+               );
+
+My::Web->footer();
diff --git a/project/lynxilla/ListItem.pm b/project/lynxilla/ListItem.pm
new file mode 100755 (executable)
index 0000000..17ed954
--- /dev/null
@@ -0,0 +1,53 @@
+#! /usr/bin/perl
+# 
+# $Id$
+# Definition of 'My::Project::lynxilla' 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::lynxilla::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"=>"lynxilla",
+               "platform"=>"unixuser",
+               "priority"=>6,
+               # FIXME: 'http://cvs.jankratochvil.net/viewcvs/' -> $W->{"project_viewcvs"}
+               "download"=>'http://cvs.jankratochvil.net/viewcvs/'."*checkout*/nethome/.userContent.css?rev=HEAD",
+               "summary"=>a_href('http://lynx.isc.org/','Lynx').' look&feel with '
+                               .a_href('http://www.mozilla.org/','Mozilla').' web compatibility',
+               "license"=>"PD",
+               "maintenance"=>"ready",
+               "language"=>"CSS",
+               "description"=><<"HERE",
+<p>@{[ a_href 'http://lynx.isc.org/','Lynx' ]} brings unified colors and fonts of all web pages.
+Unfortunately it is not the one of those two browsers respected by broken websites.
+To get back the unified look and feel of all the web pages you can override CSS settings
+of your @{[ a_href 'http://www.mozilla.org/','Mozilla' ]} by placing
+@{[ a_href 'http://cvs.jankratochvil.net/viewcvs/'."*checkout*/nethome/.userContent.css?rev=HEAD",
+               'this file' ]}
+as your: @{[ '$HOME/.mozilla/$USER/*/chrome/userContent.css' ]}</p>
+HERE
+               );
+
+1;
diff --git a/project/lynxilla/Makefile.am b/project/lynxilla/Makefile.am
new file mode 100644 (file)
index 0000000..bc638eb
--- /dev/null
@@ -0,0 +1,23 @@
+# $Id$
+# automake source for the Makefile of project/lynxilla/ 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