descriptions updated
[www.jankratochvil.net.git] / project / mdsms / ListItem.pm
1 #! /usr/bin/perl
2
3 # $Id$
4 # Definition of 'My::Project::mdsms' for list.cgi.pl
5 # Copyright (C) 2003 Jan Kratochvil <project-www.jankratochvil.net@jankratochvil.net>
6
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; exactly version 2 of June 1991 is required
10
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19
20
21 package project::mdsms::ListItem;
22 require 5.6.0;  # at least 'use warnings;' but we need some 5.6.0+ modules anyway
23 our $VERSION=do { my @r=(q$Revision$=~/\d+/g); sprintf "%d.".("%03d"x$#r),@r; };
24 our $CVS_ID=q$Id$;
25 use strict;
26 use warnings;
27
28 use My::Web;
29
30
31 our @ListItem=(
32                 "name"=>"mdsms",
33                 "platform"=>"unixuser",
34                 "priority"=>8,
35                 "download-i386 RPM package"=>"dist/mdsms-1.5.3-0.i386.rpm",
36                 "download-sources RPM package"=>"dist/mdsms-1.5.3-0.src.rpm",
37                 "download-sources .tar.gz"=>"dist/mdsms-1.5.3.tar.gz",
38                 "download-sources .tar.Z"=>"dist/mdsms-1.5.3.tar.Z",
39                 "download-logos from KESSLER Wireless Design"=>"http://www.kessler-design.com/wireless/samples.php3",
40                 "cvs"=>"mdsms",
41                 "link-".a_href('http://freshmeat.net/','Freshmeat')=>
42                                 a_href('http://freshmeat.net/projects/mdsms/','Mobile Device SMS tool'),
43                 "summary"=>"Mobile Device SMS Tool",
44                 "license"=>"GPL",
45                 "maintenance"=>"ready",
46                 "sponsorship"=>join(", ",
47                                 a_href('http://www.tencom.cz/','TENcom Trade')
48                                                 .'/'.a_href('http://www.sme.cz/default.asp?lng=en&ver=html','SME'),
49                                 a_href('http://www.readynote.com/','ReadyNote'),
50                                 a_href('http://www.atspraha.cz/','Advanced Telecom Services')),
51                 "language"=>"C",
52                 "description"=><<"HERE",
53 <p>Program sends NOL or NGG files as Nokia operator logo or group graphics through
54 @{[ a_href 'http://www.nokia.com/','Nokia' ]} @{[ a_href 'http://www.communicator.org/','Communicator' ]}
55 9110 (@{[ a_href 'http://www.nokia.com/phones/9000i','9000/9000i' ]}
56 is not compatible). Usually you need
57 to have either infra-red port in your computer or special FBUS cable to be able
58 to use conventional logo-uploading tools (such as @{[ a_href 'http://www.gnokii.org/','gnokii' ]}).
59 This program uses only standard modem cable and the integrated
60 FaxModem capability of 9110.</p>
61 HERE
62                 );
63
64 1;