Finally merged the branch 'apache20'(+'apache2') back to the main trunk.
[www.jankratochvil.net.git] / project / mdsms / ListItem.pm
diff --git a/project/mdsms/ListItem.pm b/project/mdsms/ListItem.pm
deleted file mode 100755 (executable)
index b807a5a..0000000
+++ /dev/null
@@ -1,65 +0,0 @@
-#! /usr/bin/perl
-# 
-# $Id$
-# Definition of 'My::Project::mdsms' 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::mdsms::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"=>"mdsms",
-               "platform"=>"unixuser",
-               "priority"=>600,
-               "icon"=>"siemens_m20t-icon.jpeg",
-               "download-i386 RPM package"=>"dist/mdsms-1.5.3-0.i386.rpm",
-               "download-sources RPM package"=>"dist/mdsms-1.5.3-0.src.rpm",
-               "download-sources .tar.gz"=>"dist/mdsms-1.5.3.tar.gz",
-               "download-sources .tar.Z"=>"dist/mdsms-1.5.3.tar.Z",
-               "download-logos from KESSLER Wireless Design"=>"http://www.kessler-design.com/wireless/samples.php3",
-               "cvs"=>"mdsms",
-               "link-".a_href('http://freshmeat.net/','Freshmeat')=>
-                               a_href('http://freshmeat.net/projects/mdsms/','Mobile Device SMS tool'),
-               "summary"=>"Mobile Device SMS Tool",
-               "license"=>"GPL",
-               "maintenance"=>"ready",
-               "sponsorship"=>join(", ",
-                               a_href('http://www.tencom.cz/','TENcom Trade')
-                                               .'/'.a_href('http://www.sme.cz/default.asp?lng=en&ver=html','SME'),
-                               a_href('http://www.readynote.com/','ReadyNote'),
-                               a_href('http://www.atspraha.cz/','Advanced Telecom Services')),
-               "language"=>"C",
-               "description"=><<"HERE",
-<p>Program sends NOL or NGG files as Nokia operator logo or group graphics through
-@{[ a_href 'http://www.nokia.com/','Nokia' ]} @{[ a_href 'http://www.communicator.org/','Communicator' ]}
-9110 (@{[ a_href 'http://www.nokia.com/phones/9000i','9000/9000i' ]}
-is not compatible). Usually you need
-to have either infra-red port in your computer or special FBUS cable to be able
-to use conventional logo-uploading tools (such as @{[ a_href 'http://www.gnokii.org/','gnokii' ]}).
-This program uses only standard modem cable and the integrated
-FaxModem capability of 9110.</p>
-HERE
-               );
-
-1;